From 843fe05fda4725c87f464794c0936a13d6cddce7 Mon Sep 17 00:00:00 2001 From: andife Date: Mon, 9 Oct 2023 19:35:24 +0200 Subject: [PATCH 1/3] minor cleanups --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b36f9c7..f18df28 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ conda activate spherinator [LightningCLI](https://lightning.ai/docs/pytorch/latest/cli/lightning_cli.html#lightning-cli) is a command line interface separating source code from hyperparameters. Hyperparameters are defined in a YAML file `config.yaml` and passed to the CLI. ```bash -python main.py fit -c experiments/Illustris.yaml +python main.py fit -c experiments/illustris.yaml ``` From 6350e8fc7e542d7b03dec6c116f68ceef7f91fab Mon Sep 17 00:00:00 2001 From: Andreas Fehlner Date: Mon, 9 Oct 2023 20:02:41 +0200 Subject: [PATCH 2/3] update --- experiments/{GZ.yaml => gz.yaml} | 0 experiments/{Illustris.yaml => illustris.yaml} | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename experiments/{GZ.yaml => gz.yaml} (100%) rename experiments/{Illustris.yaml => illustris.yaml} (100%) diff --git a/experiments/GZ.yaml b/experiments/gz.yaml similarity index 100% rename from experiments/GZ.yaml rename to experiments/gz.yaml diff --git a/experiments/Illustris.yaml b/experiments/illustris.yaml similarity index 100% rename from experiments/Illustris.yaml rename to experiments/illustris.yaml From c23044149f6deeafd280d9c87f47f832bc088498 Mon Sep 17 00:00:00 2001 From: Bernd Doser Date: Tue, 10 Oct 2023 09:03:44 +0200 Subject: [PATCH 3/3] Adapt to lower case --- .vscode/launch.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index ca86945..de84055 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -9,7 +9,7 @@ "type": "python", "request": "launch", "program": "main.py", - "args": "fit -c experiments/Illustris.yaml", + "args": "fit -c experiments/illustris.yaml", "console": "integratedTerminal", "justMyCode": true }, @@ -18,7 +18,7 @@ "type": "python", "request": "launch", "program": "main.py", - "args": "fit -c experiments/GZ.yaml", + "args": "fit -c experiments/gz.yaml", "console": "integratedTerminal", "justMyCode": true }, @@ -49,4 +49,4 @@ "justMyCode": true } ] -} \ No newline at end of file +}