Skip to content

Commit

Permalink
remove prints
Browse files Browse the repository at this point in the history
  • Loading branch information
rayg1234 committed Jul 25, 2024
1 parent 147de9a commit f09335e
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/fairchem/core/trainers/base_trainer.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def __init__(
evaluation_metrics,
identifier: str,
timestamp_id: str | None = None,
run_dir: str,
run_dir: str | None = None,
is_debug: bool = False,
print_every: int = 100,
seed: int | None = None,
Expand Down Expand Up @@ -106,9 +106,7 @@ def __init__(
commit_hash = get_commit_hash()

# Fill in SLURM information in config, if applicable
logging.info(f"slurm before {slurm}")
slurm_config = update_slurm_config(slurm)
logging.info(f"slurm afer {slurm}")
# the unique job id is either the timestampe_id or slurm_id (if it is a slurm job)
uuid = unique_job_id(timestamp_id, slurm_config.get("job_id", None))

Expand Down

0 comments on commit f09335e

Please sign in to comment.