Skip to content
Snippets Groups Projects

merge with main delete prints

Merged Desiree Wyrzykala requested to merge dev_desi/ploy into main
2 files
+ 11
8
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -8,7 +8,7 @@ from src.run_model_wrapper import main
#optimal hyperparameters from autors: 'POLY': {'periodicity': 1, 'power': 4}
params = {
'periodicity': [1, 2, 3],
'power': [1, 2, 3, 4,5,7]
'power': [1, 2, 3, 4,5]
}
def run_POLY(data, periodicity=1, power=3, n_jobs=1):
@@ -22,4 +22,7 @@ model = 'POLY'
output_path = '../../../docs/evaluation/'
#writes results in .csv
main(run_POLY,params,model,data_folders = '../../../data/', model_type='unsupervised',output_dir = output_path)
\ No newline at end of file
main(run_POLY,params,model,data_folders = '../../../data/', model_type='unsupervised',output_dir = output_path)
#pip3 install -r requirements.txt
# python src/models/desi/call_poly.py
\ No newline at end of file
Loading