Spaces:
Runtime error
Runtime error
File size: 513 Bytes
41a0620 3b6ef01 0d998a6 41a0620 3b6ef01 41a0620 3b6ef01 41a0620 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
"""
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)",
"Feature Activation (Game)",
"Feature Activation Maximisation",
],
title="Lczero Planning Demo",
analytics_enabled=False,
)
demo.launch()
|