Skip to content

Commit

Permalink
prints model ID to the console
Browse files Browse the repository at this point in the history
  • Loading branch information
Holden Schermer committed Oct 8, 2023
1 parent 85cb4fd commit 6d54b5a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ersilia/core/tracking.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ def track(self, input, result, meta):
print("Run output file:", result)
print(self.read_csv(result))

model_id = meta['metadata'].get ('Identifier', 'Unknown')
print ("Model ID:", model_id)

print("Model metadata:", meta)

model_id = meta['metadata'].get ('Identifier', 'Unknown')
print ("Model ID:", model_id)

def log_to_console(self, data):
print(f"\n{json.dumps(data)}\n")

Expand Down

0 comments on commit 6d54b5a

Please sign in to comment.