stanford-crfm / helm

Holistic Evaluation of Language Models (HELM), a framework to increase the transparency of language models (https://arxiv.org/abs/2211.09110). This framework is also used to evaluate text-to-image models in Holistic Evaluation of Text-to-Image Models (HEIM) (https://arxiv.org/abs/2311.04287).
https://crfm.stanford.edu/helm
Apache License 2.0
1.89k stars 244 forks source link

Change `gsutil rsync` to `gcloud storage rsync` in documentation #2676

Open yifanmai opened 4 months ago

yifanmai commented 4 months ago

gsutil rsync is deprecated and users should use gcloud storage rsync instead.

Valentin also reports:

Quick comment on the downloading instructions: gsutil -m rsync -r $GCS_BENCHMARK_OUTPUT_PATH $LOCAL_BENCHMARK_OUTPUT_PATH doesn't work for Windows machines since the folder names contain colons (e.g., commonsense:dataset=openbookqa,method=multiple_choice_joint,model=google_gemini-1.0-pro-001), which is not allowed on Windows. A simple work-around is to use gcloud storage rsync -r $GCS_BENCHMARK_OUTPUT_PATH $LOCAL_BENCHMARK_OUTPUT_PATH instead, which automatically renames folders on Windows.