DrChamyoung commited on
Commit
b445706
1 Parent(s): 7ad0980

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +88 -3
README.md CHANGED
@@ -1,3 +1,88 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ ---
4
+ # Quin Beta 1.1
5
+
6
+ Quin Beta 1.1 is an advanced Transformer-based language model with 2.7 billion parameters. It is an extension of Quin Beta 1.1, trained on an enhanced dataset that includes synthetic NLP texts and curated web content. The model demonstrates near state-of-the-art performance in benchmarks for common sense, language understanding, and logical reasoning within its parameter class. Quin Beta 1.1 is designed for QA, chat, and code formats and has a context length of 2048 tokens.
7
+
8
+ - Key Features
9
+ - Parameter Count: 2.7 billion
10
+ - Training Data: 250 billion tokens from a combination of AOAI synthetic data and filtered web data
11
+ - Training Tokens: 1.4 trillion tokens
12
+ - Hardware Used: 96xA100-80G GPUs
13
+ - Training Duration: 14 days
14
+ - Frameworks: ONNX and JAX
15
+ - Reinforcement Learning: Not applied (intended for enabling safety research)
16
+ - Applications: QA, chat, and code formats
17
+ - Context Length: 2048 tokens
18
+ - Open-Source: Yes, aimed at enabling safety research like toxicity reduction and bias understanding
19
+
20
+ # Performance
21
+
22
+ Quin Beta 1.1 has demonstrated near state-of-the-art performance on various benchmarks, specifically targeting:
23
+
24
+ - Common sense reasoning
25
+ - Language understanding
26
+ - Logical reasoning
27
+
28
+ # Usage
29
+
30
+ ## Installation
31
+ To use Quin Beta 1.1, you will need to have ONNX and JAX installed. Follow the installation instructions for each framework:
32
+
33
+ ## ONNX
34
+ ````md
35
+ pip install onnxruntime
36
+ ````
37
+ ### JAX
38
+ ````md
39
+ pip install jax jaxlib
40
+ ````
41
+ ## Loading the Model
42
+ Here is a basic example of how to load and use Quin Beta 1.1 using ONNX:
43
+
44
+ ````py
45
+ import onnxruntime as ort
46
+
47
+ # Load the ONNX model
48
+ ort_session = ort.InferenceSession("quin_beta_1.1.onnx")
49
+
50
+ # Prepare input
51
+ input_text = "Your input text here."
52
+ inputs = {
53
+ "input_ids": [input_text],
54
+ }
55
+
56
+ # Run inference
57
+ outputs = ort_session.run(None, inputs)
58
+
59
+ # Get the result
60
+ result = outputs[0]
61
+ print(result)
62
+
63
+ ````
64
+
65
+ ## Research and Safety
66
+
67
+ Quin Beta 1.1 is open-source and designed to enable research in safety domains such as:
68
+
69
+ - Toxicity reduction
70
+ - Bias understanding and mitigation
71
+
72
+ The model has not undergone reinforcement learning fine-tuning, providing a baseline for safety research efforts.
73
+
74
+ Contributing
75
+ Contributions to Quin Beta 1.1 are welcome. If you would like to contribute, please follow these steps:
76
+
77
+ 1. Fork the repository.
78
+ 2. Create a new branch (git checkout -b feature-branch).
79
+ 3. Make your changes.
80
+ 4. Commit your changes (git commit -am 'Add new feature').
81
+ 5. Push to the branch (git push origin feature-branch).
82
+ 6. Create a new Pull Request.
83
+ ## License
84
+ Quin Beta 1.1 is released under the apache-2.0 License. See the LICENSE file for more details.
85
+
86
+ ## Contact
87
+
88
+ For any questions or issues, please contact drchamyoung@gmail.com