-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Seperate pytorch and mxnet imports * Refactoring of supervised training * Removed importing MXNet when training with pytorch * Added data_loader helper method * Removed _template suffix from config files * Updated requirement.txt * Updated READMEs * Updated Dockerfile (now downloads cutechess, example NNs and calls git pull)
- Loading branch information
1 parent
c8ad1de
commit 608e958
Showing
13 changed files
with
338 additions
and
214 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,9 +1,9 @@ | ||
| ### Configuration files for CrazyAra | ||
|
|
||
| This is the configuration directory of CrazyAra for both supervised training and reinforcement learning. | ||
|
|
||
| If you want to test sample MCTS predictions in [MCTS_eval_demo.ipynb](https://github.com/QueensGambit/CrazyAra/blob/master/DeepCrazyhouse/src/samples/MCTS_eval_demo.ipynb), | ||
| then follow these steps: | ||
|
|
||
| * First rename `main_config_template.py` into `main_config.py` | ||
|
|
||
| * Specify the fields `main_config["model_architecture_dir"]` and `main_config["model_weights_dir"]` in the file | ||
| `main_config.py` to the appropriate paths of your system. Make sure that the path has a "/" at the end of the path. |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,20 +1,18 @@ | ||
| torch | ||
| numpy | ||
| python-chess==0.23.11 | ||
| zarr | ||
| numcodecs | ||
| ipywidgets | ||
| matplotlib | ||
| tqdm | ||
| mxboard | ||
| tensorflow | ||
| tensorboard | ||
| onnx==1.3.0 | ||
| onnx | ||
| ipytree | ||
| setproctitle | ||
| rtpt | ||
| dataclasses | ||
| mxnet | ||
| torch | ||
| torchsummary | ||
| onnxruntime | ||
| onnxsim | ||
| fvcore |
Oops, something went wrong.