Triangle104
commited on
Commit
•
55864c9
1
Parent(s):
ceedc18
Update README.md
Browse files
README.md
CHANGED
@@ -19,6 +19,71 @@ language:
|
|
19 |
This model was converted to GGUF format from [`Spestly/Ava-1.0-8B`](https://huggingface.co/Spestly/Ava-1.0-8B) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
|
20 |
Refer to the [original model card](https://huggingface.co/Spestly/Ava-1.0-8B) for more details on the model.
|
21 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
## Use with llama.cpp
|
23 |
Install llama.cpp through brew (works on Mac and Linux)
|
24 |
|
|
|
19 |
This model was converted to GGUF format from [`Spestly/Ava-1.0-8B`](https://huggingface.co/Spestly/Ava-1.0-8B) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
|
20 |
Refer to the [original model card](https://huggingface.co/Spestly/Ava-1.0-8B) for more details on the model.
|
21 |
|
22 |
+
---
|
23 |
+
Model details:
|
24 |
+
-
|
25 |
+
Ava 1.0
|
26 |
+
|
27 |
+
Ava 1.0 is an advanced AI model fine-tuned on the Mistral architecture, featuring 8 billion parameters. Designed to be smarter, stronger, and swifter, Ava 1.0 excels in tasks requiring comprehension, reasoning, and language generation, making it a versatile solution for various applications.
|
28 |
+
|
29 |
+
Key Features
|
30 |
+
-
|
31 |
+
Compact Yet Powerful:
|
32 |
+
With 8 billion parameters, Ava 1.0 strikes a balance between computational efficiency and performance.
|
33 |
+
|
34 |
+
Enhanced Reasoning Capabilities:
|
35 |
+
Fine-tuned to provide better logical deductions and insightful responses across multiple domains.
|
36 |
+
|
37 |
+
Optimized for Efficiency:
|
38 |
+
Faster inference and reduced resource requirements compared to larger models.
|
39 |
+
|
40 |
+
Use Cases
|
41 |
+
-
|
42 |
+
Conversational AI: Natural and context-aware dialogue generation.
|
43 |
+
Content Creation: Generate articles, summaries, and creative writing.
|
44 |
+
Educational Tools: Assist with problem-solving and explanations.
|
45 |
+
Data Analysis: Derive insights from structured and unstructured data.
|
46 |
+
|
47 |
+
Technical Specifications
|
48 |
+
-
|
49 |
+
Model Architecture: Ministral-8B-Instruct-2410
|
50 |
+
Parameter Count: 8 Billion
|
51 |
+
Training Dataset: A curated dataset spanning diverse fields, including literature, science, technology, and general knowledge.
|
52 |
+
Framework: Hugging Face Transformers
|
53 |
+
|
54 |
+
Usage
|
55 |
+
-
|
56 |
+
To use Ava 1.0, integrate it into your Python environment with Hugging Face's transformers library:
|
57 |
+
|
58 |
+
# Use a pipeline as a high-level helper
|
59 |
+
from transformers import pipeline
|
60 |
+
|
61 |
+
messages = [
|
62 |
+
{"role": "user", "content": "Who are you?"},
|
63 |
+
]
|
64 |
+
pipe = pipeline("text-generation", model="Spestly/Ava-1.0-8B")
|
65 |
+
pipe(messages)
|
66 |
+
|
67 |
+
# Load model directly
|
68 |
+
from transformers import AutoTokenizer, AutoModelForCausalLM
|
69 |
+
|
70 |
+
tokenizer = AutoTokenizer.from_pretrained("Spestly/Ava-1.0-8B")
|
71 |
+
model = AutoModelForCausalLM.from_pretrained("Spestly/Ava-1.0-8B")
|
72 |
+
|
73 |
+
Future Plans
|
74 |
+
-
|
75 |
+
Continued optimization for domain-specific applications.
|
76 |
+
Expanding the model's adaptability and generalization capabilities.
|
77 |
+
|
78 |
+
Contributing
|
79 |
+
-
|
80 |
+
We welcome contributions and feedback to improve Ava 1.0. If you'd like to get involved, please reach out or submit a pull request.
|
81 |
+
|
82 |
+
License
|
83 |
+
-
|
84 |
+
This model is licensed under Mistral Research License. Please review the license terms before usage.
|
85 |
+
|
86 |
+
---
|
87 |
## Use with llama.cpp
|
88 |
Install llama.cpp through brew (works on Mac and Linux)
|
89 |
|