Spaces:
Runtime error
Runtime error
Adding Component diagram
Browse files
README.md
CHANGED
@@ -11,3 +11,32 @@ license: cc-by-4.0
|
|
11 |
---
|
12 |
|
13 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
---
|
12 |
|
13 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
14 |
+
|
15 |
+
|
16 |
+
|
17 |
+
```mermaid
|
18 |
+
---
|
19 |
+
config:
|
20 |
+
flowchart:
|
21 |
+
defaultRenderer: elk
|
22 |
+
---
|
23 |
+
flowchart TB
|
24 |
+
interface(Model \n Interface)
|
25 |
+
model(Chosen Model)
|
26 |
+
logger(Logger)
|
27 |
+
coordinator(Game \n Coordinator)
|
28 |
+
database("Game Database \n display_analytics()")
|
29 |
+
|
30 |
+
coordinator --model_vs_model(model names)-->interface
|
31 |
+
coordinator --human_vs_model(model name) -->interface
|
32 |
+
|
33 |
+
interface --send_move(model_name, UCI_notation) \n returns response-->model
|
34 |
+
|
35 |
+
interface --create(model_names) \n creates a few logger for each game--> logger
|
36 |
+
interface --new_move(FEN_notation)-->logger
|
37 |
+
interface--cheated(model_name)-->logger
|
38 |
+
interface--checkmate(winner)-->logger
|
39 |
+
|
40 |
+
logger --add_game(game_in_FEN, time_of_cheating)-->database
|
41 |
+
```
|
42 |
+
|