Dixing Xu
commited on
feat: Add huggingface example
Browse files- .gitignore +2 -0
- README.md +12 -0
- app.py +5 -0
.gitignore
CHANGED
|
@@ -168,3 +168,5 @@ logs
|
|
| 168 |
|
| 169 |
.gradio/
|
| 170 |
.ruff_cache/
|
|
|
|
|
|
|
|
|
| 168 |
|
| 169 |
.gradio/
|
| 170 |
.ruff_cache/
|
| 171 |
+
|
| 172 |
+
scripts/
|
README.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
<h1 align="center">AIDE: The Machine Learning Engineer Agent</h1>
|
| 2 |
|
| 3 |
<p align="center">
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: AIDE (The Machine Learning Engineer Agent)
|
| 3 |
+
emoji: 🔥
|
| 4 |
+
colorFrom: purple
|
| 5 |
+
colorTo: purple
|
| 6 |
+
sdk: streamlit
|
| 7 |
+
sdk_version: 1.40.1
|
| 8 |
+
app_file: app.py
|
| 9 |
+
pinned: false
|
| 10 |
+
python_version: "3.10.15"
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
<h1 align="center">AIDE: The Machine Learning Engineer Agent</h1>
|
| 14 |
|
| 15 |
<p align="center">
|
app.py
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from aide.webui.app import WebUI
|
| 2 |
+
|
| 3 |
+
if __name__ == "__main__":
|
| 4 |
+
app = WebUI()
|
| 5 |
+
app.run()
|