Skip to content

Commit

Permalink
Update test.py
Browse files Browse the repository at this point in the history
Arena-of-AI authored May 26, 2023
1 parent 995daec commit 8cee2a6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import datetime
import openai
import streamlit as st

@@ -14,8 +15,10 @@ def parse_terminal_output(terminal_output):
hyperparams = task["hyperparams"]
training_file = task["training_files"][0]["filename"]

created_at = datetime.datetime.fromtimestamp(task["created_at"]).strftime("%Y-%m-%d %H:%M:%S")

row = {
"Time": task["created_at"],
"Time": created_at,
"Model Name": task["fine_tuned_model"],
"Job ID": task["id"],
"Parent Model": task["model"],

0 comments on commit 8cee2a6

Please sign in to comment.