Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions saxml/tools/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,6 @@ You will also need the other directories such as `metadata` and `descriptor`,
and the `commit_success.txt` files. To do this, you can do.

```
gsutil cp -r gs://mybucket/fp32/checkpoint_00000000 gs://mybucket/int8/
gsutil cp -r path/to/output/checkpoint/checkpoint_00000000/state gs://mybucket/int8/checkpoint_00000000
gcloud storage cp --recursive gs://mybucket/fp32/checkpoint_00000000 gs://mybucket/int8/
gcloud storage cp --recursive path/to/output/checkpoint/checkpoint_00000000/state gs://mybucket/int8/checkpoint_00000000
```
2 changes: 1 addition & 1 deletion saxml/tools/benchmarks/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ git clone https://github.com/google/saxml.git
cd saxml/saxml/tools/benchmarks

# Download the SAX client.
gsutil cp -r gs://cloud-tpu-inference-public/benchmark/sax_client .
gcloud storage cp --recursive gs://cloud-tpu-inference-public/benchmark/sax_client .
export PYTHONPATH=${PYTHONPATH}:${PWD}/sax_client

# Install deps:
Expand Down
2 changes: 1 addition & 1 deletion saxml/vertex/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ You can download `google/gemma/pax/2b-it/1` and `google/gemma/pax/7b-it/1` model
pip install kaggle --break-system-packages
mkdir -p /data/gemma_2b-it &&\
kaggle models instances versions download google/gemma/pax/2b-it/1 --untar -p /data/gemma_2b-it
gsutil -m cp -R /data/gemma_2b-it/* gs://${BUCKET_NAME}/gemma_2b-it/
gcloud storage cp --recursive /data/gemma_2b-it/* gs://${BUCKET_NAME}/gemma_2b-it/
```

### LLama2
Expand Down