Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #1

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ python -u finetune_Drop.py --data ogbg-molhiv --gpu 3 --dropout 0.1 --lr 0.005 -

1. Search Architecture
```
python model_search.py --gpu 0 --num_layers 5 --epochs 5 --data ogbg-molpcba
python train_search.py --gpu 0 --num_layers 5 --epochs 5 --data ogbg-molpcba
--remove_pooling True
```
2. Finetune the model.
Expand All @@ -79,7 +79,7 @@ python finetune.py --gpu 0 --dropout 0.5 --lr 0.001 --batch_size 100 --num_layer

1. Search Architecture
```
python model_search.py --gpu 0 --num_layers 3 --epochs 5 --data ogbg-ppa
python train_search.py --gpu 0 --num_layers 3 --epochs 5 --data ogbg-ppa
--remove_pooling True
```
2. Finetune the model.
Expand All @@ -92,7 +92,7 @@ python finetune.py --gpu 1 --dropout 0.5 --lr 0.0005 --batch_size 24 --num_layer

1. Search Architecture
```
python model_search.py --gpu 0 --num_layers 5 --epochs 10 --batch_size 24 --hidden_size 64 --data ogbg-ppa
python train_search.py --gpu 0 --num_layers 5 --epochs 10 --batch_size 24 --hidden_size 64 --data ogbg-ppa
--remove_pooling True
```
2. Finetune the model.
Expand Down