Den4ikAI commited on
Commit
fe15f26
·
1 Parent(s): 2b93bf7

Update README.md

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