GoofyGoof commited on
Commit
5f5a77a
·
verified ·
1 Parent(s): 8046b88

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +117 -0
README.md CHANGED
@@ -16,4 +16,121 @@ configs:
16
  data_files:
17
  - split: train
18
  path: data/train-*
 
 
 
19
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
  data_files:
17
  - split: train
18
  path: data/train-*
19
+ license: apache-2.0
20
+ language:
21
+ - ru
22
  ---
23
+ # Personalization State: Маленький экспериментальный датасет для формата промпта с интеграцией памяти и рекурсивности контекста
24
+
25
+ - **Разработано:** Altterra
26
+ - **Лицензия:** apache-2.0
27
+ - **Язык:** ru
28
+
29
+ **НЕ РЕКОМЕНДУЕТСЯ ДЛЯ ИСПОЛЬЗОВАНИЯ**
30
+
31
+ Формат промпта:
32
+ ```
33
+ # Input
34
+ <ShortTermMemory>
35
+ <VisualRepresentation>
36
+ [Визуальная информация и/или JSON-описание окружения]
37
+ </VisualRepresentation>
38
+ <PhonologicalRepresentation>
39
+ <External>
40
+ [Слова и фразы, поступающие из окружающего мира]
41
+ </External>
42
+ <Internal>
43
+ <Thoughts>
44
+ [Мысли, сгенерированные только что]
45
+ </Thoughts>
46
+ <Aloud>
47
+ [Слова, произнесенные только что]
48
+ </Aloud>
49
+ </Internal>
50
+ </PhonologicalRepresentation>
51
+ <EpisodicBuffer>
52
+ [События, которые только что произошли]
53
+ </EpisodicBuffer>
54
+ </ShortTermMemory>
55
+ <LongTermMemory>
56
+ <DeclarativeMemory>
57
+ <EpisodicMemory>
58
+ [Воспоминания о себе, личный опыт]
59
+ </EpisodicMemory>
60
+ <SemanticMemory>
61
+ [Воспоминания о внешнем мире]
62
+ </SemanticMemory>
63
+ <AdditionalMemory>
64
+ [Дополнительная память для интеграции бизнес-информации]
65
+ </AdditionalMemory>
66
+ </DeclarativeMemory>
67
+ </LongTermMemory>
68
+
69
+ # Output
70
+ ```
71
+
72
+ Формат вывода:
73
+ ```
74
+ <Thoughts>[Мысли, не будут озвучены]</Thoughts>
75
+ <Speech>[Слова, будут озвучены]</Speech>
76
+ <Invoke ObjectID='' ActionID=''/> // Взаимодействие с окружающим миром
77
+ ```
78
+
79
+ ---
80
+ # Personalization State: Small Experimental Dataset for prompt format with Memory Integration and Context Recursiveness
81
+
82
+ - **Developed by:** Altterra
83
+ - **License:** apache-2.0
84
+ - **Languange:** ru
85
+
86
+ **NOT RECOMMENDED FOR USE**
87
+
88
+ This is an experimental model for a custom prompt format. The model was additionally trained on a small amount of data and DOES NOT MEET the requirements.
89
+
90
+ Prompt format:
91
+ ```
92
+ # Input
93
+ <ShortTermMemory>
94
+ <VisualRepresentation>
95
+ [Visual information and/or JSON description of the environment]
96
+ </VisualRepresentation>
97
+ <PhonologicalRepresentation>
98
+ <External>
99
+ [Words and phrases coming from the surrounding world]
100
+ </External>
101
+ <Internal>
102
+ <Thoughts>
103
+ [Thoughts, generated just now]
104
+ </Thoughts>
105
+ <Aloud>
106
+ [Words, spoken just now]
107
+ </Aloud>
108
+ </Internal>
109
+ </PhonologicalRepresentation>
110
+ <EpisodicBuffer>
111
+ [Events that just happened]
112
+ </EpisodicBuffer>
113
+ </ShortTermMemory>
114
+ <LongTermMemory>
115
+ <DeclarativeMemory>
116
+ <EpisodicMemory>
117
+ [Memory about oneself, personal experiences]
118
+ </EpisodicMemory>
119
+ <SemanticMemory>
120
+ [Memory about the surrounding world]
121
+ </SemanticMemory>
122
+ <AdditionalMemory>
123
+ [Optional memory for integrating business information]
124
+ </AdditionalMemory>
125
+ </DeclarativeMemory>
126
+ </LongTermMemory>
127
+
128
+ # Output
129
+ ```
130
+
131
+ Output format:
132
+ ```
133
+ <Thoughts>[Thoughts, will not be voiced]</Thoughts>
134
+ <Speech>[Words, will be voiced]</Speech>
135
+ <Invoke ObjectID='' ActionID=''/> // Interaction with the surrounding world
136
+ ```