11 lines
231 B
Bash
11 lines
231 B
Bash
#!/bin/bash
|
|
|
|
source /home/hegn/miniconda3/bin/activate lerobot
|
|
|
|
export CUDA_VISIBLE_DEVICES=1
|
|
export HF_HUB_OFFLINE=1
|
|
|
|
# Inference on server
|
|
python src/lerobot/scripts/server/policy_server.py \
|
|
--host=0.0.0.0 \
|
|
--port=28080 |