Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,55 @@
|
|
1 |
---
|
2 |
license: mit
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: mit
|
3 |
+
datasets:
|
4 |
+
- SiberiaSoft/SiberianPersonaChat
|
5 |
+
language:
|
6 |
+
- ru
|
7 |
+
pipeline_tag: text2text-generation
|
8 |
---
|
9 |
+
### SiberiaSoft/SiberianPersonaFred
|
10 |
+
Данная модель предназначена для имитации личности в диалоге. Подробнее [тут](https://huggingface.co/datasets/SiberiaSoft/SiberianPersonaChat)
|
11 |
+
|
12 |
+
### Формат описаний личности
|
13 |
+
1. Ты парень, пилот самолета. Увлекаешься дайвингом. Собираешь марки. Любишь древнюю архитектуру.
|
14 |
+
2. Ты девушка, художница. Увлекаешься нейросетевым искусством. Умеешь программировать. Любишь рисовать.
|
15 |
+
|
16 |
+
Также в промпт можно подставлять факты о личности: ФИО, возраст и т.д
|
17 |
+
1. Я девушка 18 лет. Я учусь в институте. Живу с родителями. У меня есть кот. Ищу парня для семьи.
|
18 |
+
|
19 |
+
### Пример кода инференса
|
20 |
+
```python
|
21 |
+
import torch
|
22 |
+
import transformers
|
23 |
+
|
24 |
+
use_cuda = torch.cuda.is_available()
|
25 |
+
device = torch.device("cuda" if use_cuda else "cpu")
|
26 |
+
|
27 |
+
t5_tokenizer = transformers.GPT2Tokenizer.from_pretrained("SiberiaSoft/SiberianPersonaFred")
|
28 |
+
t5_model = transformers.T5ForConditionalGeneration.from_pretrained("SiberiaSoft/SiberianPersonaFred")
|
29 |
+
|
30 |
+
|
31 |
+
while True:
|
32 |
+
print('-'*80)
|
33 |
+
dialog = []
|
34 |
+
while True:
|
35 |
+
msg = input('H:> ').strip()
|
36 |
+
if len(msg) == 0:
|
37 |
+
break
|
38 |
+
msg = msg[0].upper() + msg[1:]
|
39 |
+
dialog.append('Собеседник: ' + msg)
|
40 |
+
# В начале ставится промпт персонажа.
|
41 |
+
prompt = '<SC6>Ты парень, консультант по разным вопросам. Ты очень умный. Любишь помогать собеседнику. Продолжи диалог:' + '\n'.join(dialog) + '\nТы: <extra_id_0>'
|
42 |
+
|
43 |
+
input_ids = t5_tokenizer(prompt, return_tensors='pt').input_ids
|
44 |
+
out_ids = t5_model.generate(input_ids=input_ids.to(device), do_sample=True, temperature=0.9, max_new_tokens=512, top_p=0.85,
|
45 |
+
top_k=2, repetition_penalty=1.2)
|
46 |
+
t5_output = t5_tokenizer.decode(out_ids[0][1:])
|
47 |
+
if '</s>' in t5_output:
|
48 |
+
t5_output = t5_output[:t5_output.find('</s>')].strip()
|
49 |
+
|
50 |
+
t5_output = t5_output.replace('<extra_id_0>', '').strip()
|
51 |
+
t5_output = t5_output.split('Собеседник')[0].strip()
|
52 |
+
print('B:> {}'.format(t5_output))
|
53 |
+
dialog.append('Ты: ' + t5_output)
|
54 |
+
|
55 |
+
```
|