Spaces:
Runtime error
Runtime error
""" | |
Main Gradio module. | |
""" | |
import gradio as gr | |
from src.interfaces import fen_feature_interface, game_feature_interface, act_max_interface | |
demo = gr.TabbedInterface( | |
[ | |
fen_feature_interface.interface, | |
game_feature_interface.interface, | |
act_max_interface.interface, | |
], | |
[ | |
"Feature Activation (FEN) (not up to date)", | |
"Feature Activation (Game) (not up to date)", | |
"Feature Activation Maximisation (not up to date)", | |
], | |
title="Lczero Planning Demo", | |
analytics_enabled=False, | |
) | |
demo.launch() | |