Update README.md
Browse files
README.md
CHANGED
@@ -7,6 +7,7 @@ tags:
|
|
7 |
base_model:
|
8 |
- jpacifico/French-Alpaca-7B-Instruct-beta
|
9 |
- bofenghuang/vigostral-7b-chat
|
|
|
10 |
---
|
11 |
|
12 |
# Vigalpaca-French-7B-ties
|
@@ -42,4 +43,14 @@ pipeline = transformers.pipeline(
|
|
42 |
|
43 |
outputs = pipeline(prompt, max_new_tokens=256, do_sample=True, temperature=0.7, top_k=50, top_p=0.95)
|
44 |
print(outputs[0]["generated_text"])
|
45 |
-
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
base_model:
|
8 |
- jpacifico/French-Alpaca-7B-Instruct-beta
|
9 |
- bofenghuang/vigostral-7b-chat
|
10 |
+
license: apache-2.0
|
11 |
---
|
12 |
|
13 |
# Vigalpaca-French-7B-ties
|
|
|
43 |
|
44 |
outputs = pipeline(prompt, max_new_tokens=256, do_sample=True, temperature=0.7, top_k=50, top_p=0.95)
|
45 |
print(outputs[0]["generated_text"])
|
46 |
+
```
|
47 |
+
|
48 |
+
### Limitations
|
49 |
+
|
50 |
+
The Vigalpaca model is a quick demonstration that a base 7B model can be easily merged/fine-tuned to specialize in a particular language.
|
51 |
+
It does not have any moderation mechanisms.
|
52 |
+
|
53 |
+
- **Developed by:** Jonathan Pacifico. Vigostral model by Bofeng Huang (special thanks), 2024
|
54 |
+
- **Model type:** LLM
|
55 |
+
- **Language(s) (NLP):** French
|
56 |
+
- **License:** Apache-2.0
|