Paul Bird
commited on
Commit
·
0afbc92
1
Parent(s):
2be138d
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,21 @@
|
|
1 |
---
|
2 |
license: mit
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: mit
|
3 |
---
|
4 |
+
|
5 |
+
|
6 |
+
## Othello game playing model in Unity Sentis format
|
7 |
+
This is an Othello game playing model based on a modified version of Alpha Go called [Generalized Alpha Zero](https://github.com/suragnair/alpha-zero-general)
|
8 |
+
|
9 |
+
## How to Use
|
10 |
+
Source code to run this model can be found at: [Source Code](https://github.com/Unity-Technologies/sentis-samples/tree/main/BoardGameAISample)
|
11 |
+
|
12 |
+
To use *.sentis precompiled file, place the file in the Assets/StreamingAssets folder. And replace the loading code with:
|
13 |
+
```
|
14 |
+
Model model = ModelLoader.Load("Othello.sentis");
|
15 |
+
```
|
16 |
+
|
17 |
+
|
18 |
+
## Unity Sentis
|
19 |
+
Unity Sentis is the inference engine that runs in Unity 3D. More information can be found at [here](https://unity.com/products/sentis)
|
20 |
+
|
21 |
+
|