Skip to content

Commit

Permalink
Dev
Browse files Browse the repository at this point in the history
  • Loading branch information
knc6 committed Nov 27, 2024
1 parent 0a0fce6 commit c9bed52
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion atomgpt/forward_models/forward_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ def __getitem__(self, idx):
# Example usage


def run_atomgpt(config_file="config.json"):
def main(config_file="config.json"):
print("Running AtomGPT prop predictor.")
# run_path = os.path.abspath(config_file).split("config.json")[0]
config = loadjson(config_file)
Expand Down
2 changes: 1 addition & 1 deletion atomgpt/inverse_models/inverse_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ def batch_evaluate(
f.close()


def run_atomgpt_inverse(config_file="config.json"):
def main(config_file="config.json"):
figlet = get_figlet()
print(figlet)
t1 = time.time()
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"protobuf",
# "alignn",
],
# scripts=["atomgpt/train_prop.py"],
scripts=["atomgpt/train_prop.py"],
entry_points={
"console_scripts": [
"atomgpt_forward=atomgpt.forward_models.forward_models:main",
Expand Down

0 comments on commit c9bed52

Please sign in to comment.