We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent affd793 commit 9dde5c1Copy full SHA for 9dde5c1
tests/functional/grpo_async_gym.sh
@@ -24,6 +24,16 @@ cd $PROJECT_ROOT
24
# Follow nemo-gym instructions here to get this data:
25
# https://docs.nvidia.com/nemo/gym/0.1.0/tutorials/nemo-rl-grpo/setup.html#training-nemo-rl-grpo-setup
26
cd 3rdparty/Gym-workspace/Gym
27
+
28
+# We need HF_TOKEN to download the data from huggingface
29
+if [[ ! -f env.yaml ]]; then
30
+ if [[ -z "${HF_TOKEN:-}" ]]; then
31
+ echo "[ERROR] HF_TOKEN is not set"
32
+ exit 1
33
+ fi
34
+ echo "hf_token: $HF_TOKEN" >> env.yaml
35
+fi
36
37
config_paths="responses_api_models/vllm_model/configs/vllm_model_for_training.yaml,\
38
resources_servers/workplace_assistant/configs/workplace_assistant.yaml"
39
0 commit comments