Triangle104 commited on
Commit
fcd072e
·
verified ·
1 Parent(s): 2c25403

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +0 -84
README.md CHANGED
@@ -19,90 +19,6 @@ language:
19
  This model was converted to GGUF format from [`Spestly/Athena-1-3B`](https://huggingface.co/Spestly/Athena-1-3B) 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/Athena-1-3B) for more details on the model.
21
 
22
- ---
23
- Model details:
24
- -
25
- Athena-1 3B is a fine-tuned, instruction-following large language model derived from Qwen/Qwen2.5-3B-Instruct. It is designed to provide efficient, high-quality text generation while maintaining a compact size. Athena 3B is optimized for lightweight applications, conversational AI, and structured data tasks, making it ideal for real-world use cases where performance and resource efficiency are critical.
26
-
27
- Key Features
28
- -
29
- ⚡ Lightweight and Efficient
30
- -
31
- Compact Size: At just 3.09 billion parameters, Athena-1 3B offers excellent performance with reduced computational requirements.
32
-
33
- Instruction Following: Fine-tuned for precise and reliable adherence to user prompts.
34
-
35
- Coding and Mathematics: Proficient in solving coding challenges and handling mathematical tasks.
36
-
37
- 📖 Long-Context Understanding
38
- -
39
- Context Length: Supports up to 32,768 tokens, enabling the processing of moderately lengthy documents or conversations.
40
-
41
- Token Generation: Can generate up to 8K tokens of output.
42
-
43
- 🌍 Multilingual Support
44
- -
45
- Supports 29+ languages, including:
46
- English, Chinese, French, Spanish, Portuguese, German, Italian, Russian
47
- Japanese, Korean, Vietnamese, Thai, Arabic, and more.
48
-
49
- 📊 Structured Data & Outputs
50
- -
51
- Structured Data Interpretation: Processes structured formats like tables and JSON.
52
-
53
- Structured Output Generation: Generates well-formatted outputs, including JSON and other structured formats.
54
-
55
- Details
56
- -
57
- Base Model: Qwen/Qwen2.5-3B-Instruct
58
-
59
- Architecture: Transformers with RoPE, SwiGLU, RMSNorm, Attention QKV bias, and tied word embeddings.
60
-
61
- Parameters: 3.09B total (2.77B non-embedding).
62
-
63
- Layers: 36
64
-
65
- Attention Heads: 16 for Q, 2 for KV.
66
-
67
- Context Length: Up to 32,768 tokens.
68
-
69
- Applications
70
- -
71
- Athena 3B is designed for a variety of real-world applications:
72
-
73
- Conversational AI: Build fast, responsive, and lightweight chatbots.
74
-
75
- Code Generation: Generate, debug, or explain code snippets.
76
-
77
- Mathematical Problem Solving: Assist with calculations and reasoning.
78
-
79
- Document Processing: Summarize and analyze moderately large documents.
80
-
81
- Multilingual Applications: Support for global use cases with diverse language requirements.
82
-
83
- Structured Data: Process and generate structured data, such as tables and JSON.
84
-
85
- Quickstart
86
- -
87
- Here’s how you can use Athena 3B for quick text generation:
88
-
89
- ---
90
- # Use a pipeline as a high-level helper
91
- from transformers import pipeline
92
-
93
- messages = [
94
- {"role": "user", "content": "Who are you?"},
95
- ]
96
- pipe = pipeline("text-generation", model="Spestly/Athena-1-3B")
97
- pipe(messages)
98
-
99
- # Load model directly
100
- from transformers import AutoTokenizer, AutoModelForCausalLM
101
-
102
- tokenizer = AutoTokenizer.from_pretrained("Spestly/Athena-1-3B")
103
- model = AutoModelForCausalLM.from_pretrained("Spestly/Athena-1-3B")
104
-
105
- ---
106
  ## Use with llama.cpp
107
  Install llama.cpp through brew (works on Mac and Linux)
108
 
 
19
  This model was converted to GGUF format from [`Spestly/Athena-1-3B`](https://huggingface.co/Spestly/Athena-1-3B) 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/Athena-1-3B) for more details on the model.
21
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
  ## Use with llama.cpp
23
  Install llama.cpp through brew (works on Mac and Linux)
24