-
Notifications
You must be signed in to change notification settings - Fork 908
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add git LFS hint #112
base: master
Are you sure you want to change the base?
add git LFS hint #112
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,6 +49,13 @@ Once you've downloaded the weights, you can run the following command to enter c | |
|
||
If you have more than 32GB of RAM (and a beefy CPU), you can use the higher quality 30B `alpaca-30B-ggml.bin` model. To download the weights, you can use | ||
|
||
require git LFS installed | ||
|
||
windows ```winget install -e --id GitHub.GitLFS``` | ||
|
||
linux ```sudo apt-get install git-lfs``` | ||
|
||
|
||
``` | ||
git clone https://huggingface.co/Pi3141/alpaca-30B-ggml | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. the line also needs to change to There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. my git version is git version 2.32.0.windows.1, but ref to https://stackoverflow.com/questions/48392440/git-lfs-clone-vs-git-clone seems use git clone is fine. anyway, just an experience share. |
||
``` | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here you should include
OSX - brew install git-lfs
and thengit lfs install --system
for OSX instructions.