demo / app.py
Xmaster6y's picture
better demo
3b6ef01 unverified
raw
history blame contribute delete
No virus
513 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)",
"Feature Activation (Game)",
"Feature Activation Maximisation",
],
title="Lczero Planning Demo",
analytics_enabled=False,
)
demo.launch()