Spaces:
Configuration error
Configuration error
Commit ·
cd403c6
1
Parent(s): f70a10c
more
Browse files- .gitignore +33 -0
- app.py +2 -1
.gitignore
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
__pycache__
|
| 3 |
+
venv
|
| 4 |
+
env
|
| 5 |
+
.env
|
| 6 |
+
.venv
|
| 7 |
+
.pytest_cache
|
| 8 |
+
.coverage
|
| 9 |
+
.idea
|
| 10 |
+
.vscode
|
| 11 |
+
lightning_logs
|
| 12 |
+
.ipynb_checkpoints
|
| 13 |
+
.ckpt
|
| 14 |
+
example.ckpt
|
| 15 |
+
.neptune
|
| 16 |
+
logs_for_plots
|
| 17 |
+
logs_for_heuristics
|
| 18 |
+
logs_for_graphs
|
| 19 |
+
logs_for_freedom_maps
|
| 20 |
+
logs_for_experiments
|
| 21 |
+
heuristic_tables
|
| 22 |
+
stats
|
| 23 |
+
videos
|
| 24 |
+
algs_RL/stasts
|
| 25 |
+
.DS_Store
|
| 26 |
+
saved_replays
|
| 27 |
+
my_folder
|
| 28 |
+
results
|
| 29 |
+
test-trainer
|
| 30 |
+
.gradio
|
| 31 |
+
.python-version
|
| 32 |
+
pyproject.toml
|
| 33 |
+
uv.lock
|
app.py
CHANGED
|
@@ -36,4 +36,5 @@ demo = gr.Interface(
|
|
| 36 |
|
| 37 |
# Launch the interface and MCP server
|
| 38 |
if __name__ == "__main__":
|
| 39 |
-
demo.launch(mcp_server=True)
|
|
|
|
|
|
| 36 |
|
| 37 |
# Launch the interface and MCP server
|
| 38 |
if __name__ == "__main__":
|
| 39 |
+
demo.launch(mcp_server=True)
|
| 40 |
+
print()
|