Skip to content

Commit dd87192

Browse files
committed
Update readme to reflect older the fact that an older pytorch is needed for now
1 parent a564c5d commit dd87192

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

README.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
```
88
python3 -m venv env
99
source env/bin/activate
10-
pip install python-chess==0.31.4 pytorch-lightning torch matplotlib
10+
pip install python-chess==0.31.4 pytorch-lightning==1.9.5 torch matplotlib tensorboard
1111
```
1212

1313
#### Install CuPy
@@ -41,18 +41,14 @@ sh compile_data_loader.bat
4141

4242
```
4343
source env/bin/activate
44-
python train.py train_data.bin val_data.bin
44+
python train.py --gpus 1 train_data.bin val_data.bin
4545
```
4646

4747
## Resuming from a checkpoint
4848
```
49-
python train.py --resume_from_checkpoint <path> ...
49+
python train.py --gpus 1 --resume_from_checkpoint <path> ...
5050
```
5151

52-
## Training on GPU
53-
```
54-
python train.py --gpus 1 ...
55-
```
5652
## Feature set selection
5753
By default the trainer uses a factorized HalfKAv2_hm feature set (named "HalfKAv2_hm^")
5854
If you wish to change the feature set used then you can use the `--features=NAME` option. For the list of available features see `--help`

0 commit comments

Comments
 (0)