|
37 | 37 | ) |
38 | 38 |
|
39 | 39 | app = typer.Typer() |
40 | | -app.add_typer(animate.app, name='animate') |
41 | | -app.add_typer(architectures.app, name='architectures') |
42 | | -app.add_typer(automl.app, name='automl') |
43 | | -app.add_typer(automl_cross_surface.app, name='automl-cross-surface') |
44 | | -app.add_typer(automl_learning_curve.app, name='automl-learning-curve') |
45 | | -app.add_typer(automl_strategies.app, name='automl-strategies') |
46 | | -app.add_typer(automl_transfer_learning_curve.app, name='automl-transfer-learning-curve') |
47 | | -app.add_typer(boiling_curve.app, name='boiling-curve') |
48 | | -app.add_typer(consecutive_frames.app, name='consecutive-frames') |
49 | | -app.add_typer(cross_surface.app, name='cross-surface') |
50 | | -app.add_typer(data_augmentation.app, name='data-augmentation') |
51 | | -app.add_typer(data_augmentation_automl.app, name='data-augmentation-automl') |
52 | | -app.add_typer(data_split.app, name='data-split') |
53 | | -app.add_typer(dataset_sizes.app, name='dataset-sizes') |
54 | | -app.add_typer(diameter_effects.app, name='diameter-effects') |
55 | | -app.add_typer(downscaling_preprocessing.app, name='downscaling-preprocessing') |
56 | | -app.add_typer(downscaling_training.app, name='downscaling-training') |
57 | | -app.add_typer(example_frames.app, name='example-frames') |
58 | | -app.add_typer(example_frames_matrix.app, name='example-frames-matrix') |
59 | | -app.add_typer(heat_flux_levels.app, name='heat-flux-levels') |
60 | | -app.add_typer(image_brightness.app, name='image-brightness') |
61 | | -app.add_typer(image_normalization.app, name='image-normalization') |
62 | | -app.add_typer(image_standardization.app, name='image-standardization') |
63 | | -app.add_typer(inclination_effects.app, name='inclination-effects') |
64 | | -app.add_typer(learning_curve.app, name='learning-curve') |
65 | | -app.add_typer(preprocessing.app, name='preprocessing') |
66 | | -app.add_typer(single_surface.app, name='single-surface') |
67 | | -app.add_typer(transfer_learning_curve.app, name='transfer-learning-curve') |
68 | | -app.add_typer(uncertainties.app, name='uncertainties') |
69 | | -app.add_typer(validate.app, name='validate') |
70 | | -app.add_typer(visualization_window.app, name='visualization-window') |
71 | | -app.add_typer(visualization_window_multi_surface.app, name='visualization-window-multi-surface') |
| 40 | +app.add_typer(animate.app, name="animate") |
| 41 | +app.add_typer(architectures.app, name="architectures") |
| 42 | +app.add_typer(automl.app, name="automl") |
| 43 | +app.add_typer(automl_cross_surface.app, name="automl-cross-surface") |
| 44 | +app.add_typer(automl_learning_curve.app, name="automl-learning-curve") |
| 45 | +app.add_typer(automl_strategies.app, name="automl-strategies") |
| 46 | +app.add_typer(automl_transfer_learning_curve.app, name="automl-transfer-learning-curve") |
| 47 | +app.add_typer(boiling_curve.app, name="boiling-curve") |
| 48 | +app.add_typer(consecutive_frames.app, name="consecutive-frames") |
| 49 | +app.add_typer(cross_surface.app, name="cross-surface") |
| 50 | +app.add_typer(data_augmentation.app, name="data-augmentation") |
| 51 | +app.add_typer(data_augmentation_automl.app, name="data-augmentation-automl") |
| 52 | +app.add_typer(data_split.app, name="data-split") |
| 53 | +app.add_typer(dataset_sizes.app, name="dataset-sizes") |
| 54 | +app.add_typer(diameter_effects.app, name="diameter-effects") |
| 55 | +app.add_typer(downscaling_preprocessing.app, name="downscaling-preprocessing") |
| 56 | +app.add_typer(downscaling_training.app, name="downscaling-training") |
| 57 | +app.add_typer(example_frames.app, name="example-frames") |
| 58 | +app.add_typer(example_frames_matrix.app, name="example-frames-matrix") |
| 59 | +app.add_typer(heat_flux_levels.app, name="heat-flux-levels") |
| 60 | +app.add_typer(image_brightness.app, name="image-brightness") |
| 61 | +app.add_typer(image_normalization.app, name="image-normalization") |
| 62 | +app.add_typer(image_standardization.app, name="image-standardization") |
| 63 | +app.add_typer(inclination_effects.app, name="inclination-effects") |
| 64 | +app.add_typer(learning_curve.app, name="learning-curve") |
| 65 | +app.add_typer(preprocessing.app, name="preprocessing") |
| 66 | +app.add_typer(single_surface.app, name="single-surface") |
| 67 | +app.add_typer(transfer_learning_curve.app, name="transfer-learning-curve") |
| 68 | +app.add_typer(uncertainties.app, name="uncertainties") |
| 69 | +app.add_typer(validate.app, name="validate") |
| 70 | +app.add_typer(visualization_window.app, name="visualization-window") |
| 71 | +app.add_typer( |
| 72 | + visualization_window_multi_surface.app, name="visualization-window-multi-surface" |
| 73 | +) |
72 | 74 |
|
73 | 75 |
|
74 | | -if __name__ == '__main__': |
| 76 | +if __name__ == "__main__": |
75 | 77 | app() |
0 commit comments