Skip to content

Commit

Permalink
python executables into experiments folder
Browse files Browse the repository at this point in the history
  • Loading branch information
danielbinschmid committed Jul 1, 2024
1 parent 7231fcf commit 0b53aa3
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 4 deletions.
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,20 @@ $ poetry install
2. Run experiments:

```s
$ python ./run.py --mode "single" --config "/path/to/config.yaml" --wandb "wandb-project-id"
$ python ./experiments/run.py --mode "single" --config "/path/to/config.yaml" --wandb "wandb-project-id"
```
for running a single experiment or
```s
$ python ./run.py --mode "all" --wandb "wandb-project-id"
$ python ./experiments/run.py --mode "all" --wandb "wandb-project-id"
```
for running all experiments.

3. Run benchmarking

```s
$ python ./experiments/run.py --mode "<single/all>" --checkpoints "<checkpoints/to/be/benchmarked>"
```

## Results

Results can be inspected in [notebooks/export_results.ipynb](./notebooks/export_results.ipynb)
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion test.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
python ./test.py \
python ./experiments/test.py \
--mode "single" \
--config "./configs/gat_betti_numbers_degree_transform_onehot.yaml" \
--checkpoints "./checkpoints"
2 changes: 1 addition & 1 deletion train.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

python ./run.py \
python ./experiments/run.py \
--mode "single" \
--config "./configs/gat_betti_numbers_degree_transform_onehot.yaml" \
--wandb "mantra-proj" \
Expand Down

0 comments on commit 0b53aa3

Please sign in to comment.