We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a38ff5 commit 1ad3abaCopy full SHA for 1ad3aba
star_shine/api/run_first_use.py
@@ -32,14 +32,10 @@ def first_use_script():
32
# start new pipeline for the second part
33
pipeline = sts.Pipeline(data, save_dir=data_path, logger=None)
34
35
- # do a first run without fitting every step and lower group size
+ # do a full run without fitting every step and lower group size
36
sts.update_config(settings={'optimise_step': False, 'min_group': 15, 'max_group': 20})
37
pipeline.run()
38
39
- # do a second run with fitting every step
40
- sts.update_config(settings={'optimise_step': True})
41
- pipeline.run()
42
-
43
44
if __name__ == '__main__':
45
first_use_script()
0 commit comments