Spaces:
Runtime error
Runtime error
Update Llama 3.1 8B robot planning space with improvements
Browse files
README.md
CHANGED
@@ -69,7 +69,7 @@ Convert natural language commands into structured task sequences for constructio
|
|
69 |
- **Quantization**: 4-bit (NF4) with double quantization
|
70 |
- **Framework**: Transformers + PEFT + BitsAndBytesConfig
|
71 |
- **Interface**: Gradio 4.44.0
|
72 |
-
- **Hardware**: T4
|
73 |
|
74 |
## ⚡ Performance Notes
|
75 |
|
|
|
69 |
- **Quantization**: 4-bit (NF4) with double quantization
|
70 |
- **Framework**: Transformers + PEFT + BitsAndBytesConfig
|
71 |
- **Interface**: Gradio 4.44.0
|
72 |
+
- **Hardware**: T4-MEDIUM (16GB VRAM)
|
73 |
|
74 |
## ⚡ Performance Notes
|
75 |
|
app.py
CHANGED
@@ -227,16 +227,7 @@ with gr.Blocks(
|
|
227 |
|
228 |
# 示例对话
|
229 |
gr.Examples(
|
230 |
-
examples=[
|
231 |
-
["Deploy Excavator 1 to Soil Area 1 for excavation."],
|
232 |
-
["Send Dump Truck 1 to collect material from Excavator 1, then unload at storage area."],
|
233 |
-
["Move all robots to avoid Puddle 1 after inspection."],
|
234 |
-
["Deploy multiple excavators to different soil areas simultaneously."],
|
235 |
-
["Coordinate dump trucks to transport materials from excavation site to storage."],
|
236 |
-
["Send robot to inspect rock area, then avoid with all other robots if dangerous."],
|
237 |
-
["Return all robots to start position after completing tasks."],
|
238 |
-
["Create a sequence: excavate, load, transport, unload, repeat."]
|
239 |
-
],
|
240 |
inputs=msg,
|
241 |
label="💡 Example Robot Commands"
|
242 |
)
|
|
|
227 |
|
228 |
# 示例对话
|
229 |
gr.Examples(
|
230 |
+
examples=[['Deploy Excavator 1 to Soil Area 1 for excavation.'], ['Send Dump Truck 1 to collect material from Excavator 1, then unload at storage area.'], ['Move all robots to avoid Puddle 1 after inspection.'], ['Deploy multiple excavators to different soil areas simultaneously.'], ['Coordinate dump trucks to transport materials from excavation site to storage.'], ['Send robot to inspect rock area, then avoid with all other robots if dangerous.'], ['Return all robots to start position after completing tasks.'], ['Create a sequence: excavate, load, transport, unload, repeat.']],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
231 |
inputs=msg,
|
232 |
label="💡 Example Robot Commands"
|
233 |
)
|