adrianpintilie
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -6,12 +6,14 @@ tags:
|
|
6 |
- lora
|
7 |
- finetuning
|
8 |
license: mit
|
|
|
|
|
9 |
---
|
10 |
|
11 |
# EminescuAI
|
12 |
|
13 |
## Overview
|
14 |
-
EminescuAI is a specialized language model based on meta-llama/Llama-3.1-8B, fine-tuned using LoRA (Low-Rank Adaptation) technology. The model was trained on the public literary works of Mihai Eminescu, one of Romania's most influential poets and writers.Due to its relatively compact size of 8B parameters, the model has limited reasoning capabilities. While it excels at creative and stylistic tasks that mirror Eminescu's writing style, it may struggle with complex logical reasoning, long input prompts, or sophisticated dialogue.
|
15 |
|
16 |
## Technical Details
|
17 |
|
@@ -57,4 +59,4 @@ text = "Scrie o poezie despre:"
|
|
57 |
inputs = tokenizer(text, return_tensors="pt")
|
58 |
outputs = model.generate(**inputs, max_length=200)
|
59 |
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
|
60 |
-
```
|
|
|
6 |
- lora
|
7 |
- finetuning
|
8 |
license: mit
|
9 |
+
base_model:
|
10 |
+
- meta-llama/Llama-3.1-8B-Instruct
|
11 |
---
|
12 |
|
13 |
# EminescuAI
|
14 |
|
15 |
## Overview
|
16 |
+
EminescuAI is a specialized language model based on meta-llama/Llama-3.1-8B, fine-tuned using LoRA (Low-Rank Adaptation) technology. The model was trained on the public literary works of Mihai Eminescu, one of Romania's most influential poets and writers. Due to its relatively compact size of 8B parameters, the model has limited reasoning capabilities. While it excels at creative and stylistic tasks that mirror Eminescu's writing style, it may struggle with complex logical reasoning, long input prompts, or sophisticated dialogue.
|
17 |
|
18 |
## Technical Details
|
19 |
|
|
|
59 |
inputs = tokenizer(text, return_tensors="pt")
|
60 |
outputs = model.generate(**inputs, max_length=200)
|
61 |
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
|
62 |
+
```
|