Spaces:
Sleeping
Sleeping
| """ | |
| Gradio demo for lczerolens. | |
| """ | |
| import gradio as gr | |
| from demo.interfaces import ( | |
| board, | |
| encodings, | |
| gradients, | |
| play, | |
| activations, | |
| ) | |
| demo = gr.TabbedInterface( | |
| [ | |
| board.interface, | |
| play.interface, | |
| encodings.interface, | |
| activations.interface, | |
| gradients.interface, | |
| ], | |
| [ | |
| "Board", | |
| "Play", | |
| "Encodings", | |
| "Activations", | |
| "Gradients", | |
| ], | |
| title="lczerolens Demo", | |
| analytics_enabled=False, | |
| ) | |
| if __name__ == "__main__": | |
| demo.launch() | |