EmergentSemanticDialogueFramework 0.1.0 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1b409254a4a4e80786c0c866e260cf328ad6dcac36935f4a6a6690cd7714ef10
|
|
4
|
+
data.tar.gz: c4e5c0aba0a0e3693ddf9d6b2fd21efbf58b9548637b45db773393032f6f894f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f3e0e9256f8a6699c3ca922f206780c9ecc1ef70812db4889633df03ef5eba4146c318b37b2652ce9736f93419015a18a0061361ec0513f78d3938acee7fe4e1
|
|
7
|
+
data.tar.gz: e589ae08ad7e0d5971ebf85405d54e8dc920119787e05928f24552c9e87d8454f59b67542c90ecef44772dbad124de10c1b98a500919cbe81867303964475efd
|
|
@@ -236,6 +236,11 @@ module EmergentSemanticDialogueFramework
|
|
|
236
236
|
end
|
|
237
237
|
|
|
238
238
|
def self.verb
|
|
239
|
+
avo = "avoir"
|
|
240
|
+
cou = "coupe"
|
|
241
|
+
ser = "serrure"
|
|
242
|
+
dev = "déverrouillage"
|
|
243
|
+
|
|
239
244
|
verbs = [
|
|
240
245
|
[[avo, avo], [avo, cou], [avo, ser], [avo, dev]],
|
|
241
246
|
[[cou, avo], [cou, cou], [cou, ser], [cou, dev]],
|
|
@@ -310,7 +315,7 @@ module EmergentSemanticDialogueFramework
|
|
|
310
315
|
cur_col = col_options.sample
|
|
311
316
|
cur_arr = arr_options.sample
|
|
312
317
|
|
|
313
|
-
@chosen_adverb =
|
|
318
|
+
@chosen_adverb = adverbs[cur_con][cur_row][cur_col][cur_arr]
|
|
314
319
|
end
|
|
315
320
|
|
|
316
321
|
def self.create_dialogue_input
|