Skip to content
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 local base model loading #315

Merged
merged 1 commit into from
Oct 12, 2023
Merged
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
7 changes: 7 additions & 0 deletions docs/configuration/large_language_model.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,13 @@ base_model: meta-llama/Llama-2-7b-hf
these models are currently unsupported. If you have interest in using one of these models,
please file a GitHub issue with your use case.

You can also pass in a path to a locally saved Hugging Face model instead of loading from Hugging Face directly.

Example:
```yaml
base_model: path/to/local/model/weights
```

## HuggingFace Access Token

Some base models like Llama-2 require authorization from HuggingFace to download,
Expand Down
Loading