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 information on model tagging to import.md. #4109

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 11 additions & 1 deletion docs/import.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,9 +144,19 @@ ollama push <your username>/example

After publishing, your model will be available at `https://ollama.com/<your username>/example`.

### Tagging models

If your model has different versions you can optionally tag them, without a tag, it will be `latest`:

```
ollama push <your username>/example[:tag]
thinkverse marked this conversation as resolved.
Show resolved Hide resolved
```

All your tags will be available at `https://ollama.com/<your username>/example/tags`.

## Quantization reference

The quantization options are as follow (from highest highest to lowest levels of quantization). Note: some architectures such as Falcon do not support K quants.
The quantization options are as follows (from highest to lowest levels of quantization). Note: some architectures such as Falcon do not support K quants.

- `q2_K`
- `q3_K`
Expand Down