Update README.md
Browse files
README.md
CHANGED
|
@@ -33,13 +33,24 @@ language:
|
|
| 33 |
See: [Getting Started: set-up](https://huggingface.co/docs/hub/repositories-getting-started#set-up)
|
| 34 |
|
| 35 |
```bash
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 36 |
pip install huggingface-hub
|
| 37 |
|
| 38 |
-
|
| 39 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40 |
|
| 41 |
# configure lfs for local repo
|
| 42 |
-
git lfs install
|
| 43 |
huggingface-cli lfs-enable-largefiles .
|
| 44 |
|
| 45 |
# tell lfs what files to track (.gitattributes)
|
|
|
|
| 33 |
See: [Getting Started: set-up](https://huggingface.co/docs/hub/repositories-getting-started#set-up)
|
| 34 |
|
| 35 |
```bash
|
| 36 |
+
# install git lfs
|
| 37 |
+
# Ubuntu
|
| 38 |
+
git lfs install
|
| 39 |
+
# Mac
|
| 40 |
+
brew install git-lfs
|
| 41 |
+
|
| 42 |
+
# install huggingface CLI tools in a python environment
|
| 43 |
pip install huggingface-hub
|
| 44 |
|
| 45 |
+
# Clone this repo
|
| 46 |
+
# https
|
| 47 |
+
git clone https://huggingface.co/onicai/llama2_c_canister_models
|
| 48 |
+
# ssh
|
| 49 |
+
git clone git@hf.co:onicai/llama2_c_canister_models
|
| 50 |
+
|
| 51 |
+
cd llama2_c_canister_models
|
| 52 |
|
| 53 |
# configure lfs for local repo
|
|
|
|
| 54 |
huggingface-cli lfs-enable-largefiles .
|
| 55 |
|
| 56 |
# tell lfs what files to track (.gitattributes)
|