Update README: change base model to Llama-3.1-70B and improve formatting
Browse files
README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
---
|
2 |
license: llama2
|
3 |
-
base_model: meta-llama/Llama-3.1-70B
|
4 |
tags:
|
5 |
- maritime
|
6 |
- navigation
|
@@ -17,11 +17,11 @@ library_name: transformers
|
|
17 |
|
18 |
# π Llamarine - Maritime Navigation Model
|
19 |
|
20 |
-
Llamarine is a specialized large language model fine-tuned for maritime navigation and seamanship. This is a merged version combining the base Llama-3.1-70B
|
21 |
|
22 |
## π’ Model Details
|
23 |
|
24 |
-
- **Base Model**: meta-llama/Llama-3.1-70B
|
25 |
- **Specialization**: Maritime navigation, seamanship, and nautical operations
|
26 |
- **Model Type**: Merged (base + LoRA adapters)
|
27 |
- **Model Size**: ~70.6B parameters
|
@@ -33,6 +33,7 @@ Llamarine is a specialized large language model fine-tuned for maritime navigati
|
|
33 |
This model excels in:
|
34 |
|
35 |
### π§ Navigation & Piloting
|
|
|
36 |
- Celestial navigation principles
|
37 |
- GPS and electronic navigation
|
38 |
- Dead reckoning and position fixing
|
@@ -41,6 +42,7 @@ This model excels in:
|
|
41 |
- Tide and current calculations
|
42 |
|
43 |
### π₯οΈ Ship Operations
|
|
|
44 |
- Anchoring procedures and techniques
|
45 |
- Docking and undocking maneuvers
|
46 |
- Ship handling in various conditions
|
@@ -48,18 +50,21 @@ This model excels in:
|
|
48 |
- Emergency procedures
|
49 |
|
50 |
### π‘ Maritime Communications
|
|
|
51 |
- Radio protocols and procedures
|
52 |
- Distress and safety communications
|
53 |
- Port communications
|
54 |
- International signal codes
|
55 |
|
56 |
### βοΈ Maritime Law & Regulations
|
|
|
57 |
- International collision regulations (COLREGS)
|
58 |
- Maritime traffic separation schemes
|
59 |
- Port state control requirements
|
60 |
- International maritime conventions
|
61 |
|
62 |
### π Weather & Oceanography
|
|
|
63 |
- Weather routing and planning
|
64 |
- Ocean currents and their effects
|
65 |
- Storm avoidance techniques
|
@@ -68,6 +73,7 @@ This model excels in:
|
|
68 |
## π Usage
|
69 |
|
70 |
### Using Transformers
|
|
|
71 |
```python
|
72 |
from transformers import AutoTokenizer, AutoModelForCausalLM
|
73 |
import torch
|
@@ -95,6 +101,7 @@ print(response)
|
|
95 |
```
|
96 |
|
97 |
### Using vLLM (Recommended for Production)
|
|
|
98 |
```python
|
99 |
from vllm import LLM, SamplingParams
|
100 |
|
@@ -132,6 +139,7 @@ print(outputs[0].outputs[0].text)
|
|
132 |
## π‘ Example Prompts
|
133 |
|
134 |
### Navigation Questions
|
|
|
135 |
```
|
136 |
"What is celestial navigation?"
|
137 |
"How do you plot a course using GPS?"
|
@@ -140,6 +148,7 @@ print(outputs[0].outputs[0].text)
|
|
140 |
```
|
141 |
|
142 |
### Ship Operations
|
|
|
143 |
```
|
144 |
"What are the steps for anchoring in emergency conditions?"
|
145 |
"How do you perform a man overboard maneuver?"
|
@@ -148,6 +157,7 @@ print(outputs[0].outputs[0].text)
|
|
148 |
```
|
149 |
|
150 |
### Safety & Regulations
|
|
|
151 |
```
|
152 |
"What are the COLREGS rules for overtaking?"
|
153 |
"How do you signal distress at sea?"
|
@@ -166,11 +176,13 @@ print(outputs[0].outputs[0].text)
|
|
166 |
## π§ Hardware Requirements
|
167 |
|
168 |
### Minimum Requirements
|
|
|
169 |
- **RAM**: 80GB+ system RAM
|
170 |
- **VRAM**: 80GB+ GPU memory (A100 recommended)
|
171 |
- **Storage**: 200GB+ available space
|
172 |
|
173 |
### Recommended Setup
|
|
|
174 |
- **GPUs**: 2x NVIDIA A100 (80GB each)
|
175 |
- **RAM**: 128GB+ system RAM
|
176 |
- **Storage**: NVMe SSD for optimal loading speed
|
@@ -178,6 +190,7 @@ print(outputs[0].outputs[0].text)
|
|
178 |
## π Training Data
|
179 |
|
180 |
This model was fine-tuned on maritime navigation data including:
|
|
|
181 |
- Navigation textbooks and manuals
|
182 |
- Maritime regulations and procedures
|
183 |
- Ship handling guides
|
@@ -192,6 +205,6 @@ This model is part of the Llamarine project aimed at advancing AI assistance in
|
|
192 |
|
193 |
This model inherits the Llama 2 license from the base model. Please review the license terms before commercial use.
|
194 |
|
195 |
-
## π Fair Winds and Following Seas
|
196 |
|
197 |
*"The sea, once it casts its spell, holds one in its net of wonder forever."* - Jacques Cousteau
|
|
|
1 |
---
|
2 |
license: llama2
|
3 |
+
base_model: meta-llama/Llama-3.1-70B
|
4 |
tags:
|
5 |
- maritime
|
6 |
- navigation
|
|
|
17 |
|
18 |
# π Llamarine - Maritime Navigation Model
|
19 |
|
20 |
+
Llamarine is a specialized large language model fine-tuned for maritime navigation and seamanship. This is a merged version combining the base Llama-3.1-70B model with maritime-specific LoRA adapters.
|
21 |
|
22 |
## π’ Model Details
|
23 |
|
24 |
+
- **Base Model**: meta-llama/Llama-3.1-70B
|
25 |
- **Specialization**: Maritime navigation, seamanship, and nautical operations
|
26 |
- **Model Type**: Merged (base + LoRA adapters)
|
27 |
- **Model Size**: ~70.6B parameters
|
|
|
33 |
This model excels in:
|
34 |
|
35 |
### π§ Navigation & Piloting
|
36 |
+
|
37 |
- Celestial navigation principles
|
38 |
- GPS and electronic navigation
|
39 |
- Dead reckoning and position fixing
|
|
|
42 |
- Tide and current calculations
|
43 |
|
44 |
### π₯οΈ Ship Operations
|
45 |
+
|
46 |
- Anchoring procedures and techniques
|
47 |
- Docking and undocking maneuvers
|
48 |
- Ship handling in various conditions
|
|
|
50 |
- Emergency procedures
|
51 |
|
52 |
### π‘ Maritime Communications
|
53 |
+
|
54 |
- Radio protocols and procedures
|
55 |
- Distress and safety communications
|
56 |
- Port communications
|
57 |
- International signal codes
|
58 |
|
59 |
### βοΈ Maritime Law & Regulations
|
60 |
+
|
61 |
- International collision regulations (COLREGS)
|
62 |
- Maritime traffic separation schemes
|
63 |
- Port state control requirements
|
64 |
- International maritime conventions
|
65 |
|
66 |
### π Weather & Oceanography
|
67 |
+
|
68 |
- Weather routing and planning
|
69 |
- Ocean currents and their effects
|
70 |
- Storm avoidance techniques
|
|
|
73 |
## π Usage
|
74 |
|
75 |
### Using Transformers
|
76 |
+
|
77 |
```python
|
78 |
from transformers import AutoTokenizer, AutoModelForCausalLM
|
79 |
import torch
|
|
|
101 |
```
|
102 |
|
103 |
### Using vLLM (Recommended for Production)
|
104 |
+
|
105 |
```python
|
106 |
from vllm import LLM, SamplingParams
|
107 |
|
|
|
139 |
## π‘ Example Prompts
|
140 |
|
141 |
### Navigation Questions
|
142 |
+
|
143 |
```
|
144 |
"What is celestial navigation?"
|
145 |
"How do you plot a course using GPS?"
|
|
|
148 |
```
|
149 |
|
150 |
### Ship Operations
|
151 |
+
|
152 |
```
|
153 |
"What are the steps for anchoring in emergency conditions?"
|
154 |
"How do you perform a man overboard maneuver?"
|
|
|
157 |
```
|
158 |
|
159 |
### Safety & Regulations
|
160 |
+
|
161 |
```
|
162 |
"What are the COLREGS rules for overtaking?"
|
163 |
"How do you signal distress at sea?"
|
|
|
176 |
## π§ Hardware Requirements
|
177 |
|
178 |
### Minimum Requirements
|
179 |
+
|
180 |
- **RAM**: 80GB+ system RAM
|
181 |
- **VRAM**: 80GB+ GPU memory (A100 recommended)
|
182 |
- **Storage**: 200GB+ available space
|
183 |
|
184 |
### Recommended Setup
|
185 |
+
|
186 |
- **GPUs**: 2x NVIDIA A100 (80GB each)
|
187 |
- **RAM**: 128GB+ system RAM
|
188 |
- **Storage**: NVMe SSD for optimal loading speed
|
|
|
190 |
## π Training Data
|
191 |
|
192 |
This model was fine-tuned on maritime navigation data including:
|
193 |
+
|
194 |
- Navigation textbooks and manuals
|
195 |
- Maritime regulations and procedures
|
196 |
- Ship handling guides
|
|
|
205 |
|
206 |
This model inherits the Llama 2 license from the base model. Please review the license terms before commercial use.
|
207 |
|
208 |
+
## π Fair Winds and Following Seas
|
209 |
|
210 |
*"The sea, once it casts its spell, holds one in its net of wonder forever."* - Jacques Cousteau
|