Views
No views yet
| Training Data | Params | Input modalities | Output modalities | Context length | GQA | Token count | Knowledge cutoff | |
|---|---|---|---|---|---|---|---|---|
| Llama 3.1 (text only) | A new mix of publicly available online data. | 70B | Multilingual Text | Multilingual Text and code | 128k | Yes | 15T+ | December 2023 |
| Weight Quantization | PPL |
|---|---|
| FP16 | 4.1892 +/- 0.01430 |
| IQ_1S | 8.5005 +/- 0.03298 |
imatrix can be downloaded from imatrix.datllama-cpp-python1from llama_cpp import Llama
2
3llm = Llama.from_pretrained(
4 repo_id="npc0/Meta-Llama-3.1-70B-Instruct-IQ_1S",
5 filename="GGUF_FILE",
6)
7
8llm.create_chat_completion(
9 messages = [
10 {
11 "role": "user",
12 "content": "What is the capital of France?"
13 }
14 ]
15)