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