initialized experiment
Some checks failed
s444354-training/pipeline/head There was a failure building this commit
Some checks failed
s444354-training/pipeline/head There was a failure building this commit
This commit is contained in:
parent
fb3ea65baa
commit
ddb9f31f6b
@ -21,6 +21,22 @@ import sys
|
||||
|
||||
|
||||
# In[2]:
|
||||
ex = Experiment(save_git_info=False)
|
||||
|
||||
ex.observers.append(FileStorageObserver('my_runs'))
|
||||
|
||||
# ex.observers.append(MongoObserver(url='mongodb://mongo_user:mongo_password_IUM_2021@localhost:27017', db_name='sacred'))
|
||||
|
||||
try:
|
||||
numberOfEpochParam = int(sys.argv[1])
|
||||
except:
|
||||
# dafault val
|
||||
numberOfEpochParam = 1500
|
||||
|
||||
@ex.config
|
||||
def my_config():
|
||||
epochs = numberOfEpochParam
|
||||
|
||||
|
||||
|
||||
dataframe_raw = pd.read_csv("winequality-red.csv")
|
||||
|
Loading…
Reference in New Issue
Block a user