File size: 1,161 Bytes
68dcd67
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f27bb99
68dcd67
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
---
license: llama2
language:
- fa
---
Base Model:
https://huggingface.co/mostafaamiri/persian_llama_7B_merged

---
Model fine-tuned on a real news dataset and optimized for neural news generation.

Note: Turkish was not in pretraining.

```python
from transformers import AutoModelForSequenceClassification, AutoTokenizer, pipeline

# Load model and tokenizer
tokenizer = AutoTokenizer.from_pretrained(""mostafaamiri/persian_llama_7B_merged"")
model = AutoModelForSequenceClassification.from_pretrained('tum-nlp/neural-news-generator-llama-7b-fa')

# Create the pipeline for neural news generation and set the repetition penalty >1.1 to punish repetition.
generator = pipeline('text-generation',
                      model=model,
                      tokenizer=tokenizer,
                      repetition_penalty=1.2)

# Define the prompt
prompt = " [EOP] به‌ دنبال «شورش مسلحانه» مزدوران نظامی واگنر و تصرف برخی "

# Generate
generator(prompt, max_length=1000, num_return_sequences=1)

```

Trained on 6k datapoints (including all splits) from:
https://huggingface.co/datasets/RohanAiLab/persian_news_dataset