demo / app.py
Xmaster6y's picture
not up to date
8aa9ea6
raw
history blame contribute delete
564 Bytes
"""
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()