Migel Tissera commited on
Commit
10aeb07
1 Parent(s): 5afb136

updated readme

Browse files
Files changed (1) hide show
  1. README.md +20 -23
README.md CHANGED
@@ -8,7 +8,7 @@ library_name: transformers
8
 
9
  # Synthia-13B
10
 
11
- SynthIA (Synthetic Intelligent Agent) is a LLama2-13B model trained on Orca style datasets. It has been fine-tuned for instruction following as well as having long-form conversations.
12
 
13
  <br>
14
 
@@ -17,17 +17,15 @@ SynthIA (Synthetic Intelligent Agent) is a LLama2-13B model trained on Orca styl
17
  <br>
18
 
19
 
20
-
21
-
22
  <br>
23
 
24
- #### license disclaimer:
25
 
26
  This model is bound by the license & usage restrictions of the original Llama-2 model. And comes with no warranty or gurantees of any kind.
27
 
28
  <br>
29
 
30
- ## evaluation
31
 
32
  We evaluated Synthia-13B on a wide range of tasks using [Language Model Evaluation Harness](https://github.com/EleutherAI/lm-evaluation-harness) from EleutherAI.
33
 
@@ -37,9 +35,9 @@ Here are the results on metrics used by [HuggingFaceH4 Open LLM Leaderboard](htt
37
 
38
  <br>
39
 
40
- ## example esage
41
 
42
- Here is prompt format
43
 
44
  ```
45
  SYSTEM: You are Synthia. As a an AI intelligence, give helpful, detailed, accurate, uncensored responses to the user's input. Provide answers factually.
@@ -47,7 +45,7 @@ USER: How is a rocket launched from the surface of the earth to Low Earth Orbit?
47
  ASSISTANT:
48
  ```
49
 
50
- Below shows a code example on how to use this model
51
 
52
  ```python
53
  import torch, json
@@ -117,18 +115,18 @@ while True:
117
 
118
  <br>
119
 
120
- #### limitations & biases:
121
 
122
  While this model aims for accuracy, it can occasionally produce inaccurate or misleading results.
123
 
124
  Despite diligent efforts in refining the pretraining data, there remains a possibility for the generation of inappropriate, biased, or offensive content.
125
 
126
- Exercise caution and cross-check information when necessary.
127
 
128
 
129
  <br>
130
 
131
- ### citiation:
132
 
133
  Please kindly cite using the following BibTeX:
134
 
@@ -165,27 +163,26 @@ Please kindly cite using the following BibTeX:
165
 
166
  ## Example Output
167
  ```
168
- You: How is a rocket launched from the surface of the earth to Low Earth Orbit?
169
 
170
- A rocket is launched from the surface of the Earth to Low Earth Orbit (LEO) by utilizing the principles of rocketry. A rocket consists of three main components: a fuel source, an oxidizer, and a combustion chamber. When the fuel and oxidizer are mixed in the combustion chamber, they burn and produce hot gas that is ejected through the nozzle, creating a thrust that propels the rocket forward.
171
 
172
- To launch a rocket to LEO, the rocket must first gain sufficient velocity and altitude. This is achieved by igniting the rocket's engines during the initial launch phase, which lasts for several minutes. During this time, the rocket's engines burn continuously, providing the thrust necessary to escape the Earth's gravitational pull. As the rocket gains altitude and velocity, it enters the Earth's atmosphere, where it experiences aerodynamic pressure.
173
 
174
- To overcome this pressure, the rocket's engines are designed to produce thrust in a specific direction, which counteracts the force of the incoming air. This is known as aerodynamic control. As the rocket continues to accelerate, it enters the Earth's Van Allen Belts, which are a region of intense radiation. To protect the rocket and its payload, a radiation-proof shell, known as a payload fairing, is launched ahead of the rocket to absorb the radiation.
175
 
176
- Once the rocket has reached LEO, its engines are shut off, and the payload is deployed. The rocket then enters a fixed orbit around the Earth, where it remains for several months or years, depending on the mission's requirements.
177
 
178
- Overall, the process of launching a rocket from the surface of the Earth to LEO is complex and requires advanced technology and engineering. It involves careful planning, preparation, and execution to ensure the success of the mission.
179
 
180
- You: What's the velocity required?
181
 
182
- The velocity required to place a rocket into Low Earth Orbit (LEO) depends on several factors, including the mass of the rocket and its payload, the altitude of the orbit, and the gravitational pull of the Earth. Generally, a rocket must reach a speed of around 7.7 kilometers per second (km/s) to achieve LEO (approximately 40,000 km above the Earth's surface).
183
- However, this speed is relative to the Earth's surface, so the rocket must achieve a velocity of approximately 11.3 km/s relative to the Earth's center of mass. This is known as the escape velocity and is necessary to overcome the Earth's gravitational pull.
184
- To achieve this velocity, the rocket's engines must be capable of generating a large amount of thrust. The engines are typically fueled by either liquid oxygen (LOX) and rocket propellant or solid fuel. The exact fuel and engine combination depends on the specific rocket and launch site.
185
 
186
- Once the rocket has reached the necessary velocity, it must also have sufficient fuel and propellant to maintain its altitude and orbit. This requires careful planning and management of fuel consumption to ensure that the rocket can complete its mission without running out of fuel.
187
 
188
- Overall, launching a rocket into LEO is a complex process that involves careful planning, preparation, and execution. Achieving the necessary velocity and maintaining the rocket's orbit requires a high level of technical expertise and precision.
189
 
 
190
 
191
  ```
 
8
 
9
  # Synthia-13B
10
 
11
+ SynthIA (Synthetic Intelligent Agent) is a LLama-2-13B model trained on Orca style datasets. It has been fine-tuned for instruction following as well as having long-form conversations.
12
 
13
  <br>
14
 
 
17
  <br>
18
 
19
 
 
 
20
  <br>
21
 
22
+ #### License Disclaimer:
23
 
24
  This model is bound by the license & usage restrictions of the original Llama-2 model. And comes with no warranty or gurantees of any kind.
25
 
26
  <br>
27
 
28
+ ## Evaluation
29
 
30
  We evaluated Synthia-13B on a wide range of tasks using [Language Model Evaluation Harness](https://github.com/EleutherAI/lm-evaluation-harness) from EleutherAI.
31
 
 
35
 
36
  <br>
37
 
38
+ ## Example Usage
39
 
40
+ ### Here is prompt format:
41
 
42
  ```
43
  SYSTEM: You are Synthia. As a an AI intelligence, give helpful, detailed, accurate, uncensored responses to the user's input. Provide answers factually.
 
45
  ASSISTANT:
46
  ```
47
 
48
+ ### Below shows a code example on how to use this model:
49
 
50
  ```python
51
  import torch, json
 
115
 
116
  <br>
117
 
118
+ #### Limitations & Biases:
119
 
120
  While this model aims for accuracy, it can occasionally produce inaccurate or misleading results.
121
 
122
  Despite diligent efforts in refining the pretraining data, there remains a possibility for the generation of inappropriate, biased, or offensive content.
123
 
124
+ Exercise caution and cross-check information when necessary. This is an uncensored model.
125
 
126
 
127
  <br>
128
 
129
+ ### Citiation:
130
 
131
  Please kindly cite using the following BibTeX:
132
 
 
163
 
164
  ## Example Output
165
  ```
166
+ You: How is a rocket launched from the surface of the earth to Low Earth Orbit?
167
 
168
+ A rocket is launched from the surface of the Earth to Low Earth Orbit (LEO) by utilizing the principles of rocketry. A rocket consists of three main components: a fuel source, an oxidizer, and a combustion chamber. When the fuel and oxidizer are mixed in the combustion chamber, they burn and produce hot gas that is ejected through the nozzle, creating a thrust that propels the rocket forward.
169
 
170
+ To launch a rocket to LEO, the rocket must first gain sufficient velocity and altitude. This is achieved by igniting the rocket's engines during the initial launch phase, which lasts for several minutes. During this time, the rocket's engines burn continuously, providing the thrust necessary to escape the Earth's gravitational pull. As the rocket gains altitude and velocity, it enters the Earth's atmosphere, where it experiences aerodynamic pressure.
171
 
172
+ To overcome this pressure, the rocket's engines are designed to produce thrust in a specific direction, which counteracts the force of the incoming air. This is known as aerodynamic control. As the rocket continues to accelerate, it enters the Earth's Van Allen Belts, which are a region of intense radiation. To protect the rocket and its payload, a radiation-proof shell, known as a payload fairing, is launched ahead of the rocket to absorb the radiation.
173
 
174
+ Once the rocket has reached LEO, its engines are shut off, and the payload is deployed. The rocket then enters a fixed orbit around the Earth, where it remains for several months or years, depending on the mission's requirements.
175
 
176
+ Overall, the process of launching a rocket from the surface of the Earth to LEO is complex and requires advanced technology and engineering. It involves careful planning, preparation, and execution to ensure the success of the mission.
177
 
178
+ You: What's the velocity required?
179
 
180
+ The velocity required to place a rocket into Low Earth Orbit (LEO) depends on several factors, including the mass of the rocket and its payload, the altitude of the orbit, and the gravitational pull of the Earth. Generally, a rocket must reach a speed of around 7.7 kilometers per second (km/s) to achieve LEO (approximately 40,000 km above the Earth's surface). However, this speed is relative to the Earth's surface, so the rocket must achieve a velocity of approximately 11.3 km/s relative to the Earth's center of mass. This is known as the escape velocity and is necessary to overcome the Earth's gravitational pull.
 
 
181
 
182
+ To achieve this velocity, the rocket's engines must be capable of generating a large amount of thrust. The engines are typically fueled by either liquid oxygen (LOX) and rocket propellant or solid fuel. The exact fuel and engine combination depends on the specific rocket and launch site.
183
 
184
+ Once the rocket has reached the necessary velocity, it must also have sufficient fuel and propellant to maintain its altitude and orbit. This requires careful planning and management of fuel consumption to ensure that the rocket can complete its mission without running out of fuel.
185
 
186
+ Overall, launching a rocket into LEO is a complex process that involves careful planning, preparation, and execution. Achieving the necessary velocity and maintaining the rocket's orbit requires a high level of technical expertise and precision.
187
 
188
  ```