Push model using huggingface_hub.
Browse files- README.md +29 -27
- model.safetensors +1 -1
- model_head.pkl +1 -1
README.md
CHANGED
@@ -10,17 +10,20 @@ tags:
|
|
10 |
- text-classification
|
11 |
- generated_from_setfit_trainer
|
12 |
widget:
|
13 |
-
- text:
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
the
|
22 |
-
- text: The
|
23 |
-
|
|
|
|
|
|
|
24 |
inference: true
|
25 |
model-index:
|
26 |
- name: SetFit with BAAI/bge-small-en-v1.5
|
@@ -66,11 +69,11 @@ The model has been trained using an efficient few-shot learning technique that i
|
|
66 |
- **Blogpost:** [SetFit: Efficient Few-Shot Learning Without Prompts](https://huggingface.co/blog/setfit)
|
67 |
|
68 |
### Model Labels
|
69 |
-
| Label | Examples
|
70 |
-
|
71 |
-
|
|
72 |
-
| Power Subsystem | <ul><li>'
|
73 |
-
|
|
74 |
|
75 |
## Evaluation
|
76 |
|
@@ -97,7 +100,7 @@ from setfit import SetFitModel
|
|
97 |
# Download from the 🤗 Hub
|
98 |
model = SetFitModel.from_pretrained("patrickfleith/my-awesome-astro-text-classifier")
|
99 |
# Run inference
|
100 |
-
preds = model("The thrust
|
101 |
```
|
102 |
|
103 |
<!--
|
@@ -127,13 +130,13 @@ preds = model("The thrust produced by a rocket engine is a function of the mass
|
|
127 |
## Training Details
|
128 |
|
129 |
### Training Set Metrics
|
130 |
-
| Training set | Min | Median
|
131 |
-
|
132 |
-
| Word count | 11 |
|
133 |
|
134 |
| Label | Training Sample Count |
|
135 |
|:----------------|:----------------------|
|
136 |
-
| Propulsion |
|
137 |
| Thermal Control | 10 |
|
138 |
| Power Subsystem | 11 |
|
139 |
|
@@ -157,12 +160,11 @@ preds = model("The thrust produced by a rocket engine is a function of the mass
|
|
157 |
### Training Results
|
158 |
| Epoch | Step | Training Loss | Validation Loss |
|
159 |
|:------:|:----:|:-------------:|:---------------:|
|
160 |
-
| 0.
|
161 |
-
|
|
162 |
-
|
|
163 |
-
|
|
164 |
-
|
|
165 |
-
| 9.2593 | 250 | 0.0023 | - |
|
166 |
|
167 |
### Framework Versions
|
168 |
- Python: 3.10.12
|
|
|
10 |
- text-classification
|
11 |
- generated_from_setfit_trainer
|
12 |
widget:
|
13 |
+
- text: Deep throttling capability, which allows a rocket engine to vary its thrust
|
14 |
+
over a wide range, is essential for applications requiring precise landing maneuvers,
|
15 |
+
such as lunar landers.
|
16 |
+
- text: The use of staged combustion cycles, such as the full-flow staged combustion
|
17 |
+
cycle, can enhance the performance of liquid rocket engines by utilizing propellants
|
18 |
+
more efficiently.
|
19 |
+
- text: The satellite's power budget, which balances generation, storage, and consumption,
|
20 |
+
is meticulously planned to ensure that all systems remain operational throughout
|
21 |
+
the mission duration.
|
22 |
+
- text: The thrust chamber is a critical component where the combustion of propellants
|
23 |
+
occurs, generating high-pressure and high-temperature exhaust gases.
|
24 |
+
- text: The electrical generation capability of a satellite is primarily determined
|
25 |
+
by the efficiency and surface area of its photovoltaic cells, which convert incident
|
26 |
+
solar radiation into electrical energy.
|
27 |
inference: true
|
28 |
model-index:
|
29 |
- name: SetFit with BAAI/bge-small-en-v1.5
|
|
|
69 |
- **Blogpost:** [SetFit: Efficient Few-Shot Learning Without Prompts](https://huggingface.co/blog/setfit)
|
70 |
|
71 |
### Model Labels
|
72 |
+
| Label | Examples |
|
73 |
+
|:----------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
74 |
+
| Thermal Control | <ul><li>'The satellite thermal control subsystem (TCS) is crucial for maintaining operational temperatures of all onboard instruments and systems within their specified limits.'</li><li>'Phase change materials (PCMs) are employed in some satellite TCS designs to absorb and release thermal energy, stabilizing temperature fluctuations during orbital transitions.'</li><li>'Describe the process and importance of using computational fluid dynamics (CFD) in analyzing spacecraft thermal environments.'</li></ul> |
|
75 |
+
| Power Subsystem | <ul><li>'Electromagnetic interference (EMI) shielding and grounding techniques are essential in satellite design to prevent power system noise from affecting sensitive communication and navigation subsystems.'</li><li>'The structural integrity of solar panels must be robust enough to withstand the mechanical stresses of launch and the harsh thermal cycles of the space environment.'</li><li>'The integration of maximum power point tracking (MPPT) technology enhances the efficiency of solar arrays by dynamically adjusting the load to match the optimal power output of the photovoltaic cells.'</li></ul> |
|
76 |
+
| Propulsion | <ul><li>'The efficiency of a rocket engine is primarily determined by its specific impulse (Isp), which measures the thrust produced per unit of propellant consumed.'</li><li>'Liquid rocket engines utilize cryogenic fuels and oxidizers, such as liquid hydrogen and liquid oxygen, which require complex storage and handling systems to maintain their extremely low temperatures.'</li><li>"Rocket engines operate on the principle of Newton's Third Law of Motion, where the expulsion of high-speed exhaust gases produces a reaction force that propels the rocket forward."</li></ul> |
|
77 |
|
78 |
## Evaluation
|
79 |
|
|
|
100 |
# Download from the 🤗 Hub
|
101 |
model = SetFitModel.from_pretrained("patrickfleith/my-awesome-astro-text-classifier")
|
102 |
# Run inference
|
103 |
+
preds = model("The thrust chamber is a critical component where the combustion of propellants occurs, generating high-pressure and high-temperature exhaust gases.")
|
104 |
```
|
105 |
|
106 |
<!--
|
|
|
130 |
## Training Details
|
131 |
|
132 |
### Training Set Metrics
|
133 |
+
| Training set | Min | Median | Max |
|
134 |
+
|:-------------|:----|:--------|:----|
|
135 |
+
| Word count | 11 | 23.6176 | 30 |
|
136 |
|
137 |
| Label | Training Sample Count |
|
138 |
|:----------------|:----------------------|
|
139 |
+
| Propulsion | 13 |
|
140 |
| Thermal Control | 10 |
|
141 |
| Power Subsystem | 11 |
|
142 |
|
|
|
160 |
### Training Results
|
161 |
| Epoch | Step | Training Loss | Validation Loss |
|
162 |
|:------:|:----:|:-------------:|:---------------:|
|
163 |
+
| 0.0417 | 1 | 0.2181 | - |
|
164 |
+
| 2.0833 | 50 | 0.0145 | - |
|
165 |
+
| 4.1667 | 100 | 0.0047 | - |
|
166 |
+
| 6.25 | 150 | 0.0035 | - |
|
167 |
+
| 8.3333 | 200 | 0.0028 | - |
|
|
|
168 |
|
169 |
### Framework Versions
|
170 |
- Python: 3.10.12
|
model.safetensors
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 133462128
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:177637aff42e430a15bb5ead7d26d990ee7ceec2aebf8122ae4893907d5b12ca
|
3 |
size 133462128
|
model_head.pkl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 10255
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f8c4d0a79e9dcd77799fb6c440f357aed0b46f3cc2929b2279f12766b157f094
|
3 |
size 10255
|