This commit is contained in:
Andrzej Preibisz 2022-05-23 10:41:31 +02:00
parent f288d3ef94
commit a648c1f6d1
4 changed files with 9 additions and 1 deletions

3
.dvc/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
/config.local
/tmp
/cache

0
.dvc/config Normal file
View File

3
.dvcignore Normal file
View File

@ -0,0 +1,3 @@
# Add patterns of files dvc should ignore, which could improve
# the performance. Learn more at
# https://dvc.org/doc/user-guide/dvcignore

View File

@ -5,10 +5,12 @@ from sklearn.model_selection import train_test_split
from sklearn.preprocessing import StandardScaler
import sys
import sacred
from sacred.observers import FileStorageObserver
from sacred.observers import FileStorageObserver, MongoObserver
ex = sacred.Experiment("Training model")
ex.observers.append(FileStorageObserver('training_experiment'))
# ex.observers.append(MongoObserver(url='mongodb://admin:IUM_2021@172.17.0.1:27017',
# db_name='sacred'))
@ex.config