Skip to content

Commit

Permalink
revert the changes in constants.py
Browse files Browse the repository at this point in the history
Signed-off-by: LimitingFactor <[email protected]>
  • Loading branch information
LimitingFactor authored and cfd1 committed Sep 26, 2023
1 parent 2576ff0 commit 30b9f7d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/cfd/vortex_shedding_mgn/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class Constants(BaseModel):
"""vortex shedding constants"""

# data configs
data_dir: str = "/home/swifta/modulus/datasets/cylinder_flow/cylinder_flow"
data_dir: str = "./raw_dataset/cylinder_flow/cylinder_flow"

# training configs
batch_size: int = 1
Expand All @@ -34,8 +34,8 @@ class Constants(BaseModel):
num_input_features: int = 6
num_output_features: int = 3
num_edge_features: int = 3
ckpt_path: str = "checkpoints_test_3"
ckpt_name: str = "test_3.pt"
ckpt_path: str = "checkpoints"
ckpt_name: str = "model.pt"

# performance configs
amp: bool = False
Expand Down

0 comments on commit 30b9f7d

Please sign in to comment.