Triangle104 commited on
Commit
28bac84
·
verified ·
1 Parent(s): f4d947a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +65 -0
README.md CHANGED
@@ -18,6 +18,71 @@ library_name: transformers
18
  This model was converted to GGUF format from [`Spestly/AwA-0.5B`](https://huggingface.co/Spestly/AwA-0.5B) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
19
  Refer to the [original model card](https://huggingface.co/Spestly/AwA-0.5B) for more details on the model.
20
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  ## Use with llama.cpp
22
  Install llama.cpp through brew (works on Mac and Linux)
23
 
 
18
  This model was converted to GGUF format from [`Spestly/AwA-0.5B`](https://huggingface.co/Spestly/AwA-0.5B) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
19
  Refer to the [original model card](https://huggingface.co/Spestly/AwA-0.5B) for more details on the model.
20
 
21
+ ---
22
+ Model details:
23
+ -
24
+ AwA (Answers with Athena) is my portfolio project, showcasing a cutting-edge Chain-of-Thought (CoT) reasoning model. I created AwA to excel in providing detailed, step-by-step answers to complex questions across diverse domains. This model represents my dedication to advancing AI’s capability for enhanced comprehension, problem-solving, and knowledge synthesis.
25
+ Key Features
26
+
27
+ Chain-of-Thought Reasoning: AwA delivers step-by-step breakdowns of solutions, mimicking logical human thought processes.
28
+
29
+ Domain Versatility: Performs exceptionally across a wide range of domains, including mathematics, science, literature, and more.
30
+
31
+ Adaptive Responses: Adjusts answer depth and complexity based on input queries, catering to both novices and experts.
32
+
33
+ Interactive Design: Designed for educational tools, research assistants, and decision-making systems.
34
+
35
+ Intended Use Cases
36
+
37
+ Educational Applications: Supports learning by breaking down complex problems into manageable steps.
38
+
39
+ Research Assistance: Generates structured insights and explanations in academic or professional research.
40
+
41
+ Decision Support: Enhances understanding in business, engineering, and scientific contexts.
42
+
43
+ General Inquiry: Provides coherent, in-depth answers to everyday questions.
44
+
45
+ Type: Chain-of-Thought (CoT) Reasoning Model
46
+
47
+ Base Architecture: Adapted from [qwen2]
48
+
49
+ Parameters: [540m]
50
+
51
+ Fine-tuning: Specialized fine-tuning on Chain-of-Thought reasoning datasets to enhance step-by-step explanatory capabilities.
52
+
53
+ Ethical Considerations
54
+
55
+ Bias Mitigation: I have taken steps to minimise biases in the training data. However, users are encouraged to cross-verify outputs in sensitive contexts.
56
+
57
+ Limitations: May not provide exhaustive answers for niche topics or domains outside its training scope.
58
+
59
+ User Responsibility: Designed as an assistive tool, not a replacement for expert human judgment.
60
+
61
+ Usage
62
+
63
+ Option A: Local
64
+
65
+ Using locally with the Transformers library
66
+
67
+ # Use a pipeline as a high-level helper
68
+ from transformers import pipeline
69
+
70
+ messages = [
71
+ {"role": "user", "content": "Who are you?"},
72
+ ]
73
+ pipe = pipeline("text-generation", model="Spestly/AwA-0.5B")
74
+ pipe(messages)
75
+
76
+ Option B: API & Space
77
+
78
+ You can use the AwA HuggingFace space or the AwA API (Coming soon!)
79
+
80
+ Roadmap
81
+
82
+ More AwA model sizes e.g 7B and 14B
83
+ Create AwA API via spestly package
84
+
85
+ ---
86
  ## Use with llama.cpp
87
  Install llama.cpp through brew (works on Mac and Linux)
88