1
0
mirror of https://github.com/microsoft/qlib.git synced 2026-07-10 14:26:56 +08:00

[DDG-DA] Update crowd-sourced data results (#1405)

* [DDG-DA] Update crowd-sourced data experiments

* Remove internal data version

* Modify README
This commit is contained in:
Wendi Li
2023-01-02 10:15:50 -06:00
committed by GitHub
parent 4fe3ffccfd
commit ebb8ec34f3
2 changed files with 12 additions and 6 deletions

View File

@@ -170,7 +170,7 @@ class DDGDA:
# 3) train and logging meta model
with R.start(experiment_name=self.meta_exp_name):
R.log_params(**kwargs)
mm = MetaModelDS(step=self.step, hist_step_n=kwargs["hist_step_n"], lr=0.001, max_epoch=200, seed=43)
mm = MetaModelDS(step=self.step, hist_step_n=kwargs["hist_step_n"], lr=0.001, max_epoch=100, seed=43)
mm.fit(md)
R.save_objects(model=mm)