echogarden 2.1.1 → 2.2.0

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.
Files changed (57) hide show
  1. package/README.md +18 -15
  2. package/data/lexicons/heteronyms.en.json +327 -122
  3. package/data/lexicons/words.en.json +260 -0
  4. package/data/schemas/options.json +20 -4
  5. package/dist/api/Recognition.d.ts +3 -1
  6. package/dist/api/Recognition.js +17 -0
  7. package/dist/api/Recognition.js.map +1 -1
  8. package/dist/api/Synthesis.d.ts +2 -2
  9. package/dist/api/Synthesis.js +3 -3
  10. package/dist/api/Synthesis.js.map +1 -1
  11. package/dist/codecs/FFMpegTranscoder.js +2 -0
  12. package/dist/codecs/FFMpegTranscoder.js.map +1 -1
  13. package/dist/nlp/EspeakPhonemizer.d.ts +2 -2
  14. package/dist/nlp/EspeakPhonemizer.js +36 -36
  15. package/dist/nlp/Lexicon.d.ts +2 -0
  16. package/dist/nlp/Lexicon.js +19 -19
  17. package/dist/nlp/Lexicon.js.map +1 -1
  18. package/dist/nlp/PhoneConversion.d.ts +1 -0
  19. package/dist/nlp/PhoneConversion.js +151 -222
  20. package/dist/nlp/PhoneConversion.js.map +1 -1
  21. package/dist/recognition/DeepgramSTT.d.ts +11 -0
  22. package/dist/recognition/DeepgramSTT.js +64 -0
  23. package/dist/recognition/DeepgramSTT.js.map +1 -0
  24. package/dist/recognition/GoogleCloudSTT.js.map +1 -1
  25. package/dist/synthesis/{ElevenlabsTTS.d.ts → ElevenLabsTTS.d.ts} +3 -3
  26. package/dist/synthesis/{ElevenlabsTTS.js → ElevenLabsTTS.js} +3 -3
  27. package/dist/synthesis/{ElevenlabsTTS.js.map → ElevenLabsTTS.js.map} +1 -1
  28. package/dist/synthesis/EspeakTTS.d.ts +1 -1
  29. package/dist/synthesis/EspeakTTS.js +9 -8
  30. package/dist/synthesis/EspeakTTS.js.map +1 -1
  31. package/dist/synthesis/KokoroTTS.js +14 -14
  32. package/dist/synthesis/VitsTTS.js +9 -9
  33. package/dist/utilities/Utilities.d.ts +1 -0
  34. package/dist/utilities/Utilities.js +5 -0
  35. package/dist/utilities/Utilities.js.map +1 -1
  36. package/dist/utilities/WasmMemoryManager.d.ts +1 -1
  37. package/docs/CLI.md +1 -1
  38. package/docs/CUDA.md +17 -0
  39. package/docs/Development.md +10 -2
  40. package/docs/Engines.md +2 -1
  41. package/docs/Options.md +19 -14
  42. package/docs/Tasklist.md +0 -1
  43. package/docs/Technical.md +18 -11
  44. package/package.json +6 -6
  45. package/src/api/Recognition.ts +29 -1
  46. package/src/api/Synthesis.ts +7 -7
  47. package/src/codecs/FFMpegTranscoder.ts +2 -0
  48. package/src/nlp/EspeakPhonemizer.ts +36 -36
  49. package/src/nlp/Lexicon.ts +24 -21
  50. package/src/nlp/PhoneConversion.ts +176 -225
  51. package/src/recognition/DeepgramSTT.ts +136 -0
  52. package/src/recognition/GoogleCloudSTT.ts +0 -1
  53. package/src/synthesis/{ElevenlabsTTS.ts → ElevenLabsTTS.ts} +4 -4
  54. package/src/synthesis/EspeakTTS.ts +9 -8
  55. package/src/synthesis/KokoroTTS.ts +15 -15
  56. package/src/synthesis/VitsTTS.ts +9 -9
  57. package/src/utilities/Utilities.ts +6 -0
@@ -21,10 +21,10 @@
21
21
  "to", "please", "will", "would", "could", "may", "might"
22
22
  ],
23
23
 
24
- "succeededBy": [
24
+ "followedBy": [
25
25
  ],
26
26
 
27
- "notSucceededBy": [
27
+ "notFollowedBy": [
28
28
  "is", "isn't", "was", "wasn't", "will", "would"
29
29
  ],
30
30
 
@@ -55,18 +55,18 @@
55
55
  ],
56
56
 
57
57
  "precededBy": [
58
- "to", "can", "can't", "will", "would", "we", "they", "i", "you", "me", "don't", "doesn't", "should", "shouldn't", "wouldn't", "may", "might", "could", "couldn't", "these", "those", "must", "mustn't", "shall", "people", "just"
58
+ "to", "can", "can't", "will", "would", "we", "they", "i", "you", "me", "don't", "doesn't", "should", "shouldn't", "wouldn't", "may", "might", "could", "couldn't", "these", "those", "must", "mustn't", "shall", "people", "just", "then"
59
59
  ],
60
60
 
61
61
  "notPrecededBy": [
62
- "the", "a", "some", "at", "be", "were", "was", "are", "our", "of", "its", "my", "your", "this", "been"
62
+ "the", "a", "some", "at", "be", "were", "was", "are", "our", "of", "its", "my", "your", "this", "been", "wrapped", "mysterious", "nice", "cute", "great", "awesome"
63
63
  ],
64
64
 
65
- "succeededBy": [
65
+ "followedBy": [
66
66
  "a", "an", "the", "your", "their", "it", "its", "his", "her", "our", "this", "their", "them", "some", "himself", "herself", "themselves", "unique", "special", "great", "excellent", "nice"
67
67
  ],
68
68
 
69
- "notSucceededBy": [
69
+ "notFollowedBy": [
70
70
  "day", "moment", "time", "times"
71
71
  ],
72
72
 
@@ -97,18 +97,18 @@
97
97
  ],
98
98
 
99
99
  "precededBy": [
100
- "he", "she", "it", "who", "this", "opportunity", "still", "situation", "often", "research"
100
+ "he", "she", "it", "who", "this", "opportunity", "still", "situation", "often", "research", "then"
101
101
  ],
102
102
 
103
103
  "notPrecededBy": [
104
104
  "the", "to", "those", "my", "your", "these", "those", "more", "some", "of", "are", "few", "some", "many"
105
105
  ],
106
106
 
107
- "succeededBy": [
107
+ "followedBy": [
108
108
  "itself", "us", "opportunities", "them", "a", "an", "his", "her", "our", "my", "its", "this", "no", "some", "another", "different", "various", "several", "many", "few", "other", "unique", "special", "great", "excellent", "nice"
109
109
  ],
110
110
 
111
- "notSucceededBy": [
111
+ "notFollowedBy": [
112
112
 
113
113
  ],
114
114
 
@@ -146,11 +146,11 @@
146
146
  "the", "a", "for", "no", "in", "emergency", "of", "make", "its", "single", "drug", "substance", "land", "their", "good", "making", "mask", "public", "police", "future", "day", "marijuana", "efficient", "tobacco", "mandatory", "full", "own", "first", "her", "his", "its", "our", "your", "my", "any", "mixed", "personal"
147
147
  ],
148
148
 
149
- "succeededBy": [
149
+ "followedBy": [
150
150
  "the", "a", "an", "their", "it", "this", "them", "his", "our", "your", "its", "these", "all", "him", "her", "my", "any", "those", "some", "authorization", "one", "more", "social", "public", "hand", "force", "every", "up", "technology", "data", "other"
151
151
  ],
152
152
 
153
- "notSucceededBy": [
153
+ "notFollowedBy": [
154
154
  "of", "for"
155
155
  ],
156
156
 
@@ -185,14 +185,14 @@
185
185
  ],
186
186
 
187
187
  "notPrecededBy": [
188
- "the", "a", "be", "for", "no", "in", "of", "make", "its", "single", "their", "good", "making", "her", "his", "its", "our", "your", "my", "any", "personal"
188
+ "the", "a", "be", "for", "no", "in", "of", "make", "its", "single", "their", "good", "making", "her", "his", "its", "our", "your", "my", "any", "personal", "how"
189
189
  ],
190
190
 
191
- "succeededBy": [
191
+ "followedBy": [
192
192
  "the", "a", "an", "their", "it", "this", "them", "his", "her", "our", "your", "its", "these", "all", "my", "any", "those", "some", "one", "more", "every", "up", "down", "other"
193
193
  ],
194
194
 
195
- "notSucceededBy": [
195
+ "notFollowedBy": [
196
196
  "to", "with"
197
197
  ],
198
198
 
@@ -229,11 +229,11 @@
229
229
  "a", "the", "of", "be", "no", "broadcast", "for", "on", "with", "went", "in", "streamed", "is", "going", "my", "our", "it", "been", "was", "were"
230
230
  ],
231
231
 
232
- "succeededBy": [
232
+ "followedBy": [
233
233
  "their", "her", "his", "your", "my", "it", "our", "this", "that", "all", "away", "up", "a", "the", "of", "as", "well", "carefully", "long", "longer", "anywhere", "together", "alone", "near", "forever", "close", "far", "further", "nearby", "right", "happily", "peacefully", "alongside", "independently", "away", "with", "without"
234
234
  ],
235
235
 
236
- "notSucceededBy": [
236
+ "notFollowedBy": [
237
237
  "action", "stream", "streaming", "streamed", "audience", "performance", "performances", "work", "video", "event", "events", "show", "shows", "tv", "television", "internet", "ammunition", "coverage", "broadcast", "broadcast", "entertainment", "sport", "sports", "chat", "updates", "blog", "feed", "feeds", "fire", "fires", "online", "birth", "births", "webcast", "webcasts", "theater", "concert", "concerts", "today", "tomorrow", "yesterday", "animal", "animals", "virtual", "session", "sessions", "auction", "auctions", "crowd", "audience", "service", "theatre", "virus", "viruses", "studio", "interview", "album", "cartridges", "radio", "games", "tour", "musical"
238
238
  ],
239
239
 
@@ -271,11 +271,11 @@
271
271
  "the", "to", "their", "our", "these", "those", "some", "saved", "matter", "few", "some", "many", "innocent", "improve", "better"
272
272
  ],
273
273
 
274
- "succeededBy": [
274
+ "followedBy": [
275
275
  "a", "an", "here", "there"
276
276
  ],
277
277
 
278
- "notSucceededBy": [
278
+ "notFollowedBy": [
279
279
  "public", "have", "be"
280
280
  ],
281
281
 
@@ -313,10 +313,10 @@
313
313
  "the", "be", "are", "is", "be", "a", "this", "that", "was", "were", "any", "his", "her", "their", "its","every", "each", "its", "one", "pilot", "new", "research", "housing", "million", "development", "construction", "next", "rail"
314
314
  ],
315
315
 
316
- "succeededBy": [
316
+ "followedBy": [
317
317
  ],
318
318
 
319
- "notSucceededBy": [
319
+ "notFollowedBy": [
320
320
  "of", "in"
321
321
  ],
322
322
 
@@ -347,18 +347,18 @@
347
347
  ],
348
348
 
349
349
  "precededBy": [
350
- "he", "she", "it", "who"
350
+ "he", "she", "it", "who", "that"
351
351
  ],
352
352
 
353
353
  "notPrecededBy": [
354
354
  "the", "to", "his", "her", "our", "your", "these", "those", "whose", "few", "some", "many", "most", "all", "different", "various", "of", "these", "other", "pilot", "new", "research", "housing", "development", "construction", "next", "rail"
355
355
  ],
356
356
 
357
- "succeededBy": [
357
+ "followedBy": [
358
358
  "it", "you", "them", "her", "his", "our", "my", "your", "their", "a", "an"
359
359
  ],
360
360
 
361
- "notSucceededBy":[
361
+ "notFollowedBy":[
362
362
  "were", "on", "whose", "are"
363
363
  ],
364
364
 
@@ -396,11 +396,11 @@
396
396
  "the", "this", "that", "a", "my", "our", "your", "their", "due"
397
397
  ],
398
398
 
399
- "succeededBy": [
399
+ "followedBy": [
400
400
  "the", "their", "its", "out", "all", "a", "an", "his", "her", "this", "our", "my", "your"
401
401
  ],
402
402
 
403
- "notSucceededBy":[
403
+ "notFollowedBy":[
404
404
  "of", "is", "to", "for", "will"
405
405
  ],
406
406
 
@@ -438,10 +438,10 @@
438
438
  "the", "be", "are", "is", "be", "a", "this", "was", "were", "been", "that", "being", "any", "his", "her", "its", "their", "every", "of", "years", "each", "sensetive", "its", "one"
439
439
  ],
440
440
 
441
- "succeededBy": [
441
+ "followedBy": [
442
442
  ],
443
443
 
444
- "notSucceededBy": [
444
+ "notFollowedBy": [
445
445
  "matter", "matters", "of", "in"
446
446
  ],
447
447
 
@@ -479,11 +479,11 @@
479
479
  "the", "to", "his", "her", "our", "your", "their", "these", "those", "few", "some", "many", "most", "all", "different", "various", "of", "such", "other", "are", "were"
480
480
  ],
481
481
 
482
- "succeededBy": [
482
+ "followedBy": [
483
483
  "it", "you", "them", "her", "his", "our", "my", "your", "their", "a", "an"
484
484
  ],
485
485
 
486
- "notSucceededBy":[
486
+ "notFollowedBy":[
487
487
  "was", "were", "on", "whose"
488
488
  ],
489
489
 
@@ -521,11 +521,11 @@
521
521
  "the", "an", "one", "some", "sharp", "this", "every", "foreign", "small", "shiny", "metal", "any", "immovable", "moving", "that", "large", "earth", "new", "blunt", "shared", "mystical", "another", "single", "different", "shaped", "unwanted", "use", "suspicious", "celestial", "integral", "your", "hot", "invisible", "shared", "mystical"
522
522
  ],
523
523
 
524
- "succeededBy": [
524
+ "followedBy": [
525
525
  "to", "themselves", "it", "you", "her", "his", "our", "my", "your", "their", "a", "an", "the"
526
526
  ],
527
527
 
528
- "notSucceededBy": [
528
+ "notFollowedBy": [
529
529
  "of", "in", "was", "like", "is", "oriented", "which", "made", "be", "looks", "made"
530
530
  ],
531
531
 
@@ -563,11 +563,11 @@
563
563
  "the", "to", "some", "more", "many", "some", "their", "these", "those", "of", "any", "in", "sharp", "large", "small", "other", "falling", "varied", "different", "unusual", "unwanted"
564
564
  ],
565
565
 
566
- "succeededBy": [
567
- "to", "it", "you", "her", "his", "our", "my", "your", "their", "a", "an"
566
+ "followedBy": [
567
+ "to", "it", "her", "his", "our", "my", "your", "their", "a", "an"
568
568
  ],
569
569
 
570
- "notSucceededBy": [
570
+ "notFollowedBy": [
571
571
  ],
572
572
 
573
573
  "example": "She objects to the idea."
@@ -604,11 +604,11 @@
604
604
  "the", "an", "this", "that", "any", "his", "her", "my", "our", "its", "their", "every", "each", "one", "percent", "cent", "significant", "tax", "sharp", "daily", "price", "small", "large", "slight", "tiny", "huge", "minor", "major"
605
605
  ],
606
606
 
607
- "succeededBy": [
607
+ "followedBy": [
608
608
  "the"
609
609
  ],
610
610
 
611
- "notSucceededBy": [
611
+ "notFollowedBy": [
612
612
  "of", "in"
613
613
  ],
614
614
 
@@ -646,11 +646,11 @@
646
646
  "a", "the", "this", "that", "any", "his", "her", "its", "their", "every", "each", "one", "percent", "cent", "significant", "tax", "sharp", "daily", "price", "small", "slight", "minor", "major"
647
647
  ],
648
648
 
649
- "succeededBy": [
649
+ "followedBy": [
650
650
  "the"
651
651
  ],
652
652
 
653
- "notSucceededBy": [
653
+ "notFollowedBy": [
654
654
  "of", "in"
655
655
  ],
656
656
 
@@ -688,10 +688,10 @@
688
688
  "the", "a", "this", "that", "any", "his", "her", "its", "their", "whose", "every", "each", "one", "year", "new", "of", "under", "current"
689
689
  ],
690
690
 
691
- "succeededBy": [
691
+ "followedBy": [
692
692
  ],
693
693
 
694
- "notSucceededBy": [
694
+ "notFollowedBy": [
695
695
  ],
696
696
 
697
697
  "example": "I don't want to contract pneumonia."
@@ -728,11 +728,11 @@
728
728
  "the", "to", "his", "her", "our", "your", "few", "some", "many", "most", "all", "different", "various", "of", "these", "those", "other", "new", "two", "three", "four", "usual", "no"
729
729
  ],
730
730
 
731
- "succeededBy": [
731
+ "followedBy": [
732
732
  "it", "his", "her", "our", "my", "your", "their", "a", "an"
733
733
  ],
734
734
 
735
- "notSucceededBy": [
735
+ "notFollowedBy": [
736
736
  "were", "on", "whose", "are", "who"
737
737
  ],
738
738
 
@@ -770,11 +770,11 @@
770
770
  "high", "low", "strong"
771
771
  ],
772
772
 
773
- "succeededBy": [
773
+ "followedBy": [
774
774
  "up", "down", "out", "the", "my", "his", "her", "our"
775
775
  ],
776
776
 
777
- "notSucceededBy": [
777
+ "notFollowedBy": [
778
778
  "gust", "gusts"
779
779
  ],
780
780
 
@@ -812,11 +812,11 @@
812
812
  "the", "to", "his", "her", "our", "your", "few", "some", "many", "most", "all", "different", "various", "of", "these", "those", "other", "new", "usual", "no"
813
813
  ],
814
814
 
815
- "succeededBy": [
815
+ "followedBy": [
816
816
  "it", "his", "her", "our", "my", "your", "their", "a", "an"
817
817
  ],
818
818
 
819
- "notSucceededBy": [
819
+ "notFollowedBy": [
820
820
  "were", "on", "whose", "are"
821
821
  ],
822
822
 
@@ -854,11 +854,11 @@
854
854
  "deep", "her", "his", "its", "my", "their", "open", "closed", "gunshot"
855
855
  ],
856
856
 
857
- "succeededBy": [
857
+ "followedBy": [
858
858
  "up", "down"
859
859
  ],
860
860
 
861
- "notSucceededBy": [
861
+ "notFollowedBy": [
862
862
  ],
863
863
 
864
864
  "example": "I wound the clock several times."
@@ -895,11 +895,11 @@
895
895
  "the", "with", "a", "one"
896
896
  ],
897
897
 
898
- "succeededBy": [
898
+ "followedBy": [
899
899
  "down", "up", "out", "through", "the", "it", "each", "a", "an", "you", "me", "us", "them", "your", "their", "his", "her", "herself", "himself", "itself", "everybody", "our"
900
900
  ],
901
901
 
902
- "notSucceededBy": [
902
+ "notFollowedBy": [
903
903
  "gas", "shedding", "jerking"
904
904
  ],
905
905
 
@@ -937,11 +937,11 @@
937
937
  "the", "to", "some", "in", "into", "to", "with", "shed", "through", "my", "no", "brought", "any", "these", "those", "our", "only", "cause", "make", "shed", "shedding", "crocodile", "back", "more", "saw", "cause", "whose"
938
938
  ],
939
939
 
940
- "succeededBy": [
940
+ "followedBy": [
941
941
  "to", "it", "you", "her", "his", "our", "my", "your", "their", "a", "an"
942
942
  ],
943
943
 
944
- "notSucceededBy": [
944
+ "notFollowedBy": [
945
945
  "of", "in", "after", "flowed"
946
946
  ],
947
947
 
@@ -979,11 +979,11 @@
979
979
  "a", "the", "been"
980
980
  ],
981
981
 
982
- "succeededBy": [
982
+ "followedBy": [
983
983
  "the", "a", "all", "his", "her", "its", "our", "me", "you", "us"
984
984
  ],
985
985
 
986
- "notSucceededBy": [
986
+ "notFollowedBy": [
987
987
  "was", "had"
988
988
  ],
989
989
 
@@ -1020,11 +1020,11 @@
1020
1020
  "the", "to", "his", "her", "our", "were", "your", "these", "those", "few", "some", "many", "most", "all", "different", "various", "of", "these", "other", "new", "two", "three", "four", "usual", "no", "identifying", "find", "gather", "interview", "finding", "gathering", "interviewing"
1021
1021
  ],
1022
1022
 
1023
- "succeededBy": [
1023
+ "followedBy": [
1024
1024
  "it", "you", "them", "her", "his", "our", "my", "your", "their", "a", "an"
1025
1025
  ],
1026
1026
 
1027
- "notSucceededBy": [
1027
+ "notFollowedBy": [
1028
1028
  "were", "on", "whose", "are", "who"
1029
1029
  ],
1030
1030
 
@@ -1062,11 +1062,11 @@
1062
1062
  "a", "the", "new", "of", "track", "on", "his", "her", "our", "its", "their", "some", "same", "world", "previous", "personal", "this", "that", "criminal", "another", "in", "daily", "day", "time", "school", "public", "no", "historical", "winning"
1063
1063
  ],
1064
1064
 
1065
- "succeededBy": [
1065
+ "followedBy": [
1066
1066
  "the", "a", "all", "his", "her", "its", "our", "your", "me", "you", "us", "button"
1067
1067
  ],
1068
1068
 
1069
- "notSucceededBy": [
1069
+ "notFollowedBy": [
1070
1070
  "i", "we", "was", "has", "had", "will", "not", "should", "shouldn't", "will", "would", "wouldn't", "won't", "does", "doesn't", "can", "can't", "may", "might", "could", "couldn't", "must", "mustn't", "shall", "of", "number"
1071
1071
  ],
1072
1072
 
@@ -1103,11 +1103,11 @@
1103
1103
  "the", "to", "his", "her", "our", "your", "their", "few", "some", "many", "most", "all", "different", "various", "of", "these", "those", "other", "new", "two", "three", "four", "no", "medical", "criminal", "since", "financial", "tax", "own", "state", "jail", "track", "break", "broke", "broken", "health"
1104
1104
  ],
1105
1105
 
1106
- "succeededBy": [
1107
- "it", "you", "them", "her", "his", "our", "my", "your", "their", "a", "an"
1106
+ "followedBy": [
1107
+ "it", "you", "them", "her", "his", "our", "my", "your", "their", "a", "an", "how", "why"
1108
1108
  ],
1109
1109
 
1110
- "notSucceededBy": [
1110
+ "notFollowedBy": [
1111
1111
  "were", "on", "whose", "are"
1112
1112
  ],
1113
1113
 
@@ -1145,11 +1145,11 @@
1145
1145
  "a", "the", "new", "of", "on", "his", "her", "our", "its", "their", "some", "same", "previous", "this", "that", "another", "in", "no", "historical"
1146
1146
  ],
1147
1147
 
1148
- "succeededBy": [
1148
+ "followedBy": [
1149
1149
  "the", "a", "all", "his", "her", "its", "our", "your"
1150
1150
  ],
1151
1151
 
1152
- "notSucceededBy": [
1152
+ "notFollowedBy": [
1153
1153
  "i", "we", "was", "has", "had", "will", "not", "should", "shouldn't", "will", "would", "wouldn't", "won't", "does", "doesn't", "can", "can't", "may", "might", "could", "couldn't", "must", "mustn't", "shall", "of"
1154
1154
  ],
1155
1155
 
@@ -1186,11 +1186,11 @@
1186
1186
  "to", "the", "his", "her", "our", "your", "their", "few", "some", "many", "most", "all", "different", "various", "of", "these", "those", "other", "new", "no", "since"
1187
1187
  ],
1188
1188
 
1189
- "succeededBy": [
1189
+ "followedBy": [
1190
1190
  "with", "her", "his", "our", "my", "your", "their", "a", "an"
1191
1191
  ],
1192
1192
 
1193
- "notSucceededBy": [
1193
+ "notFollowedBy": [
1194
1194
  "were", "on", "whose", "are"
1195
1195
  ],
1196
1196
 
@@ -1227,11 +1227,11 @@
1227
1227
  "notPrecededBy": [
1228
1228
  ],
1229
1229
 
1230
- "succeededBy": [
1230
+ "followedBy": [
1231
1231
  "out"
1232
1232
  ],
1233
1233
 
1234
- "notSucceededBy": [
1234
+ "notFollowedBy": [
1235
1235
  ],
1236
1236
 
1237
1237
  "example": "You can see it on the inside of the box."
@@ -1267,10 +1267,10 @@
1267
1267
  "notPrecededBy": [
1268
1268
  ],
1269
1269
 
1270
- "succeededBy": [
1270
+ "followedBy": [
1271
1271
  ],
1272
1272
 
1273
- "notSucceededBy": [
1273
+ "notFollowedBy": [
1274
1274
  ],
1275
1275
 
1276
1276
  "example": "This is the outside area."
@@ -1307,11 +1307,11 @@
1307
1307
  "misleading", "such", "course", "streaming", "most", "free", "original", "whatever", "which", "that", "the", "of", "full", "partial"
1308
1308
  ],
1309
1309
 
1310
- "succeededBy": [
1310
+ "followedBy": [
1311
1311
 
1312
1312
  ],
1313
1313
 
1314
- "notSucceededBy": [
1314
+ "notFollowedBy": [
1315
1315
  "creators", "rules", "which", "to", "on", "is", "was", "from", "as", "at", "moderation", "officer", "creation", "generation", "which", "will", "would", "won't", "wouldn't", "may", "might", "must", "mustn't", "including"
1316
1316
  ],
1317
1317
 
@@ -1349,11 +1349,11 @@
1349
1349
  "of", "for", "this", "similar", "with", "criminal", "dangerous", "ethical", "unethical", "good", "future", "disorderly", "his", "her", "our", "my"
1350
1350
  ],
1351
1351
 
1352
- "succeededBy": [
1352
+ "followedBy": [
1353
1353
  "it", "her", "his", "our", "my", "your", "their", "a", "an", "tests", "exams", "classes", "surveys", "ongoing"
1354
1354
  ],
1355
1355
 
1356
- "notSucceededBy": [
1356
+ "notFollowedBy": [
1357
1357
  "of", "authority"
1358
1358
  ],
1359
1359
 
@@ -1391,11 +1391,11 @@
1391
1391
  "the", "a", "is", "be", "been", "was", "were", "weren't", "are", "makes", "picture", "with", "via", "so", "isn't", "from"
1392
1392
  ],
1393
1393
 
1394
- "succeededBy": [
1394
+ "followedBy": [
1395
1395
  "its", "her", "his", "our", "my", "your", "their", "a", "an"
1396
1396
  ],
1397
1397
 
1398
- "notSucceededBy": [
1398
+ "notFollowedBy": [
1399
1399
  "time", "but", "storm", "opportunity", "fit", "example", "way", "match", "sense", "place", "world", "solution", "as", "record", "gift", "game", "partner", "balance", "in", "day", "choice", "combination", "spot", "score", "recipe", "person", "union", "season", "timing", "home", "size", "candidate", "of", "start", "amount", "soundtrack", "blend", "marriage", "setting", "thing"
1400
1400
  ],
1401
1401
 
@@ -1433,11 +1433,11 @@
1433
1433
  "keynote", "public"
1434
1434
  ],
1435
1435
 
1436
- "succeededBy": [
1436
+ "followedBy": [
1437
1437
  "the", "this", "these", "their", "it", "issues", "any", "some", "those", "all", "them", "concerns", "how", "our", "what", "a", "an", "its", "his", "her", "various", "specific", "ongoing", "whether", "your", "every", "critical"
1438
1438
  ],
1439
1439
 
1440
- "notSucceededBy": [
1440
+ "notFollowedBy": [
1441
1441
  ],
1442
1442
 
1443
1443
  "example": "I will address the issue."
@@ -1474,11 +1474,11 @@
1474
1474
  "the", "in", "of", "made", "good", "its", "significant", "some", "little", "their", "his", "her", "my"
1475
1475
  ],
1476
1476
 
1477
- "succeededBy": [
1477
+ "followedBy": [
1478
1478
 
1479
1479
  ],
1480
1480
 
1481
- "notSucceededBy": [
1481
+ "notFollowedBy": [
1482
1482
  ],
1483
1483
 
1484
1484
  "example": "I will progress into the darkness."
@@ -1504,7 +1504,7 @@
1504
1504
  },
1505
1505
 
1506
1506
  "pos": [
1507
- "NNP"
1507
+ "NN"
1508
1508
  ],
1509
1509
 
1510
1510
  "precededBy": [
@@ -1515,11 +1515,11 @@
1515
1515
  "to", "i", "we", "they", "can", "could"
1516
1516
  ],
1517
1517
 
1518
- "succeededBy": [
1518
+ "followedBy": [
1519
1519
  "worth"
1520
1520
  ],
1521
1521
 
1522
- "notSucceededBy": [
1522
+ "notFollowedBy": [
1523
1523
  ],
1524
1524
 
1525
1525
  "example": "I gave her all the produce."
@@ -1539,7 +1539,7 @@
1539
1539
  {
1540
1540
  "pronunciation": {
1541
1541
  "espeak": {
1542
- "en-us": "d ᵻ z ˈɜː t",
1542
+ "en-us": "d ᵻ z ˈə ɹ t",
1543
1543
  "en-gb-x-rp": "d ɪ z ˈɜː t"
1544
1544
  }
1545
1545
  },
@@ -1549,18 +1549,19 @@
1549
1549
  ],
1550
1550
 
1551
1551
  "precededBy": [
1552
- "i", "we", "would", "wouldn't", "won't", "do", "don't", "doesn't", "should", "shouldn't", "could", "couldn't", "must", "mustn't", "shall", "can", "can't", "may", "might", "did", "didn't", "does", "doesn't"
1552
+ "i", "we", "would", "wouldn't", "won't", "do", "don't", "does", "doesn't", "should", "shouldn't", "could", "couldn't", "must", "mustn't", "shall", "can", "can't", "may", "might", "did", "didn't"
1553
1553
  ],
1554
1554
 
1555
1555
  "notPrecededBy": [
1556
1556
  "the", "a", "with", "semi", "harsh"
1557
1557
  ],
1558
1558
 
1559
- "succeededBy": [
1559
+ "followedBy": [
1560
1560
  "me", "us", "your", "our", "his", "her", "its"
1561
1561
  ],
1562
1562
 
1563
- "notSucceededBy": [
1563
+ "notFollowedBy": [
1564
+ "island", "road"
1564
1565
  ],
1565
1566
 
1566
1567
  "example": "Please don't desert me."
@@ -1596,11 +1597,11 @@
1596
1597
  "notPrecededBy":[
1597
1598
  ],
1598
1599
 
1599
- "succeededBy": [
1600
+ "followedBy": [
1600
1601
  "detail", "details", "difference", "differences", "variation", "variations", "change", "changes"
1601
1602
  ],
1602
1603
 
1603
- "notSucceededBy":[
1604
+ "notFollowedBy":[
1604
1605
  ],
1605
1606
 
1606
1607
  "example": "There's a minute difference between the two."
@@ -1636,11 +1637,11 @@
1636
1637
  "is", "are", "was", "were", "not", "i", "we", "they", "it's", "we're", "wasn't", "weren't"
1637
1638
  ],
1638
1639
 
1639
- "succeededBy": [
1640
+ "followedBy": [
1640
1641
  "source", "right", "goal", "murder", "concern", "evidence", "solution"
1641
1642
  ],
1642
1643
 
1643
- "notSucceededBy": [
1644
+ "notFollowedBy": [
1644
1645
  "to", "that", "anything"
1645
1646
  ],
1646
1647
 
@@ -1677,11 +1678,11 @@
1677
1678
  "notPrecededBy": [
1678
1679
  ],
1679
1680
 
1680
- "succeededBy": [
1681
+ "followedBy": [
1681
1682
  "person", "individual", "man", "woman"
1682
1683
  ],
1683
1684
 
1684
- "notSucceededBy":[
1685
+ "notFollowedBy":[
1685
1686
  ],
1686
1687
 
1687
1688
  "example": "She is a very learned person."
@@ -1717,11 +1718,11 @@
1717
1718
  "i'm"
1718
1719
  ],
1719
1720
 
1720
- "succeededBy": [
1721
+ "followedBy": [
1721
1722
  "person", "individual", "man", "woman"
1722
1723
  ],
1723
1724
 
1724
- "notSucceededBy": [
1725
+ "notFollowedBy": [
1725
1726
  ],
1726
1727
 
1727
1728
  "example": "This has been given by the blessed."
@@ -1758,11 +1759,11 @@
1758
1759
  "a", "two", "in", "three", "four", "is", "the", "their", "his", "her"
1759
1760
  ],
1760
1761
 
1761
- "succeededBy": [
1762
+ "followedBy": [
1762
1763
  "it", "the", "a", "an", "all", "some"
1763
1764
  ],
1764
1765
 
1765
- "notSucceededBy": [
1766
+ "notFollowedBy": [
1766
1767
  "parts"
1767
1768
  ],
1768
1769
 
@@ -1800,11 +1801,11 @@
1800
1801
  "a", "in", "is", "the", "this", "these", "their", "his", "her", "its", "your", "our", "my", "any", "of", "new", "for", "medical", "scientific", "several", "one", "more", "recent", "related", "extensive", "clinical", "own", "good", "bad", "great", "useful"
1801
1802
  ],
1802
1803
 
1803
- "succeededBy": [
1804
+ "followedBy": [
1804
1805
  "it", "the", "a", "an", "all", "some", "into", "these"
1805
1806
  ],
1806
1807
 
1807
- "notSucceededBy": [
1808
+ "notFollowedBy": [
1808
1809
  "report", "note"
1809
1810
  ],
1810
1811
 
@@ -1841,11 +1842,11 @@
1841
1842
  "notPrecededBy": [
1842
1843
  ],
1843
1844
 
1844
- "succeededBy": [
1845
+ "followedBy": [
1845
1846
  "the", "a", "all", "his", "her", "its", "our", "me", "you", "us"
1846
1847
  ],
1847
1848
 
1848
- "notSucceededBy":[
1849
+ "notFollowedBy":[
1849
1850
  ],
1850
1851
 
1851
1852
  "example": "Excuse me? Can you help me?"
@@ -1875,17 +1876,17 @@
1875
1876
  ],
1876
1877
 
1877
1878
  "precededBy": [
1878
- "to", "i", "me", "will", "would", "they", "we", "don't", "doesn't", "wouldn't", "can", "can't", "may", "might", "did", "didn't", "could", "couldn't", "must", "mustn't"
1879
+ "to", "i", "me", "will", "would", "wouldn't", "they", "we", "don't", "doesn't", "can", "can't", "may", "might", "did", "didn't", "could", "couldn't", "must", "mustn't", "not"
1879
1880
  ],
1880
1881
 
1881
1882
  "notPrecededBy": [
1882
1883
  ],
1883
1884
 
1884
- "succeededBy": [
1885
+ "followedBy": [
1885
1886
  "to", "our", "my", "down"
1886
1887
  ],
1887
1888
 
1888
- "notSucceededBy":[
1889
+ "notFollowedBy":[
1889
1890
  ],
1890
1891
 
1891
1892
  "example": "Bow to the queen."
@@ -1911,7 +1912,7 @@
1911
1912
  },
1912
1913
 
1913
1914
  "pos": [
1914
- "NNP"
1915
+ "NN"
1915
1916
  ],
1916
1917
 
1917
1918
  "precededBy": [
@@ -1919,14 +1920,14 @@
1919
1920
  ],
1920
1921
 
1921
1922
  "notPrecededBy": [
1922
- "to"
1923
+ "to", "i", "will", "would", "wouldn't", "they", "we", "don't", "doesn't", "can", "can't", "may", "might", "did", "didn't", "could", "couldn't", "must", "mustn't", "not"
1923
1924
  ],
1924
1925
 
1925
- "succeededBy": [
1926
+ "followedBy": [
1926
1927
  "to"
1927
1928
  ],
1928
1929
 
1929
- "notSucceededBy":[
1930
+ "notFollowedBy":[
1930
1931
  ],
1931
1932
 
1932
1933
  "example": "I've sent my resume."
@@ -1934,7 +1935,7 @@
1934
1935
  {
1935
1936
  "pronunciation": {
1936
1937
  "espeak": {
1937
- "en-us": "ɹ ˈeɪ s m",
1938
+ "en-us": "ɹ ə z ˈu m",
1938
1939
  "en-gb-x-rp": "ɹ ɪ z j ˈuː m"
1939
1940
  }
1940
1941
  },
@@ -1942,6 +1943,8 @@
1942
1943
  "example": "Wait until they resume the game."
1943
1944
  }
1944
1945
  ],
1946
+ "resumes [placeholder]": [
1947
+ ],
1945
1948
  "entrance": [
1946
1949
  {
1947
1950
  "pronunciation": {
@@ -1962,10 +1965,10 @@
1962
1965
  "an", "special", "dedicated"
1963
1966
  ],
1964
1967
 
1965
- "succeededBy": [
1968
+ "followedBy": [
1966
1969
  ],
1967
1970
 
1968
- "notSucceededBy": [
1971
+ "notFollowedBy": [
1969
1972
  ],
1970
1973
 
1971
1974
  "example": "The music will entrance you."
@@ -1980,19 +1983,205 @@
1980
1983
  "example": "Please go to the entrance."
1981
1984
  }
1982
1985
  ],
1983
- "row [disabled]": [
1986
+ "refuse": [
1984
1987
  {
1985
1988
  "pronunciation": {
1986
1989
  "espeak": {
1987
- "en-us": "ɹ ˈoʊ",
1988
- "en-gb-x-rp": "ɹ ˈoʊ"
1990
+ "en-us": "ɹ ᵻ f j ˈu z",
1991
+ "en-gb-x-rp": "ɹ ᵻ f j ˈuː z"
1992
+ }
1993
+ },
1994
+ "pos": [
1995
+ "VB"
1996
+ ],
1997
+
1998
+ "precededBy": [
1999
+ "to", "i", "me", "they", "we", "should", "will", "would", "wouldn't", "won't", "don't", "doesn't", "should", "shouldn't", "could", "couldn't", "must", "mustn't", "shall", "can", "can't", "may", "might", "did", "didn't", "does", "doesn't"
2000
+ ],
2001
+
2002
+ "notPrecededBy": [
2003
+ "the"
2004
+ ],
2005
+
2006
+ "followedBy": [
2007
+ "to"
2008
+ ],
2009
+
2010
+ "notFollowedBy": [
2011
+ ],
2012
+
2013
+ "example": "I must refuse."
2014
+ },
2015
+ {
2016
+ "pronunciation": {
2017
+ "espeak": {
2018
+ "en-us": "ɹ ˈɛ f j uː s",
2019
+ "en-gb-x-rp": "ɹ ˈɛ f j uː s"
2020
+ }
2021
+ },
2022
+ "example": "We separate refuse from recyclables."
2023
+ }
2024
+ ],
2025
+ "import": [
2026
+ {
2027
+ "pronunciation": {
2028
+ "espeak": {
2029
+ "en-us": "ɪ m p ˈɔːɹ t",
2030
+ "en-gb-x-rp": "ɪ m p ˈɔː t"
1989
2031
  }
1990
2032
  },
2033
+ "pos": [
2034
+ "VB"
2035
+ ],
2036
+
2037
+ "precededBy": [
2038
+ "to", "i", "me", "they", "we", "should", "will", "would", "wouldn't", "won't", "don't", "doesn't", "should", "shouldn't", "could", "couldn't", "must", "mustn't", "shall", "can", "can't", "may", "might", "did", "didn't", "does", "doesn't", "not"
2039
+ ],
2040
+
2041
+ "notPrecededBy": [
2042
+ "the", "an", "this", "our", "my"
2043
+ ],
1991
2044
 
2045
+ "followedBy": [
2046
+ "to"
2047
+ ],
2048
+
2049
+ "notFollowedBy": [
2050
+ ],
2051
+
2052
+ "example": "I will import the car from China."
2053
+ },
2054
+ {
2055
+ "pronunciation": {
2056
+ "espeak": {
2057
+ "en-us": "ˈɪ m p ɔːɹ t",
2058
+ "en-gb-x-rp": "ˈɪ m p ɔː t"
2059
+ }
2060
+ },
2061
+ "example": "That car is an import."
2062
+ }
2063
+ ],
2064
+ "imports": [
2065
+ {
2066
+ "pronunciation": {
2067
+ "espeak": {
2068
+ "en-us": "ɪ m p ˈɔːɹ t z",
2069
+ "en-gb-x-rp": "ɪ m p ˈɔː t z"
2070
+ }
2071
+ },
1992
2072
  "pos": [
1993
2073
  "VB"
1994
2074
  ],
1995
2075
 
2076
+ "precededBy": [
2077
+ "he", "she", "it"
2078
+ ],
2079
+
2080
+ "notPrecededBy": [
2081
+ "the", "those", "their", "our"
2082
+ ],
2083
+
2084
+ "followedBy": [
2085
+ "to"
2086
+ ],
2087
+
2088
+ "notFollowedBy": [
2089
+ ],
2090
+
2091
+ "example": "The company imports these cars."
2092
+ },
2093
+ {
2094
+ "pronunciation": {
2095
+ "espeak": {
2096
+ "en-us": "ˈɪ m p ɔːɹ t z",
2097
+ "en-gb-x-rp": "ˈɪ m p ɔː t z"
2098
+ }
2099
+ },
2100
+ "example": "These cars are all imports."
2101
+ }
2102
+ ],
2103
+ "extract": [
2104
+ {
2105
+ "pronunciation": {
2106
+ "espeak": {
2107
+ "en-us": "ˈɛ k s t ɹ æ k t",
2108
+ "en-gb-x-rp": "ˈɛ k s t ɹ a k t"
2109
+ }
2110
+ },
2111
+ "pos": [
2112
+ "NN"
2113
+ ],
2114
+ "precededBy": [
2115
+ "the", "this", "our", "an", "short", "long", "lengthy", "interesting", "fascinating"
2116
+ ],
2117
+ "notPrecededBy": [
2118
+ "to", "i", "they", "we", "should", "will", "would", "wouldn't", "won't", "don't", "doesn't", "should", "shouldn't", "could", "couldn't", "must", "mustn't", "shall", "can", "can't", "may", "might", "did", "didn't", "does", "doesn't", "not"
2119
+ ],
2120
+ "followedBy": [
2121
+ ],
2122
+ "notFollowedBy": [
2123
+ "to"
2124
+ ],
2125
+ "example": "The plant extracts the metal."
2126
+ },
2127
+ {
2128
+ "pronunciation": {
2129
+ "espeak": {
2130
+ "en-us": "ˌɪ k s t ɹ ˈæ k t",
2131
+ "en-gb-x-rp": "ᵻ k s t ɹ ˈa k t"
2132
+ }
2133
+ },
2134
+ "example": "Here is an extract."
2135
+ }
2136
+ ],
2137
+ "segment": [],
2138
+ "segments": [],
2139
+ "extracts": [],
2140
+ "conducts": [],
2141
+ "survey": [],
2142
+ "protest": [],
2143
+ "transport": [],
2144
+ "abuse": [],
2145
+ "combat": [],
2146
+ "combats": [],
2147
+ "affect": [],
2148
+ "contest": [],
2149
+ "detail": [],
2150
+ "marked": [],
2151
+ "contrast": [],
2152
+ "construct": [],
2153
+ "constructs": [],
2154
+ "console": [],
2155
+ "recall": [],
2156
+ "permit": [],
2157
+ "permits": [],
2158
+ "prospect": [],
2159
+ "prospects": [],
2160
+ "proceed": [],
2161
+ "proceeds": [],
2162
+ "invite": [],
2163
+ "reject": [],
2164
+ "deserts": [],
2165
+ "transcript": [],
2166
+ "transcripts": [],
2167
+ "compact": [],
2168
+ "impact": [],
2169
+ "impacts": [],
2170
+ "estimate": [],
2171
+ "update": [],
2172
+ "updates": [],
2173
+
2174
+ "row [disabled]": [
2175
+ {
2176
+ "pronunciation": {
2177
+ "espeak": {
2178
+ "en-us": "ɹ ˈoʊ",
2179
+ "en-gb-x-rp": "ɹ ˈoʊ"
2180
+ }
2181
+ },
2182
+ "pos": [
2183
+ "NN"
2184
+ ],
1996
2185
  "example": "I ordered them in a row."
1997
2186
  },
1998
2187
  {
@@ -2002,11 +2191,9 @@
2002
2191
  "en-gb-x-rp": "ɹ ˈoʊ"
2003
2192
  }
2004
2193
  },
2005
-
2006
2194
  "pos": [
2007
- "NNP"
2195
+ "VB"
2008
2196
  ],
2009
-
2010
2197
  "example": "Row the boat!"
2011
2198
  },
2012
2199
  {
@@ -2016,11 +2203,9 @@
2016
2203
  "en-gb-x-rp": "ɹ ˈəʊ"
2017
2204
  }
2018
2205
  },
2019
-
2020
2206
  "pos": [
2021
- "NNP"
2207
+ "NN"
2022
2208
  ],
2023
-
2024
2209
  "example": "There was a row among those people."
2025
2210
  }
2026
2211
  ],
@@ -2070,7 +2255,7 @@
2070
2255
  },
2071
2256
 
2072
2257
  "pos": [
2073
- "NNP"
2258
+ "NN"
2074
2259
  ],
2075
2260
 
2076
2261
  "case": "capitalized",
@@ -2083,11 +2268,11 @@
2083
2268
 
2084
2269
  ],
2085
2270
 
2086
- "succeededBy": [
2271
+ "followedBy": [
2087
2272
 
2088
2273
  ],
2089
2274
 
2090
- "notSucceededBy": [
2275
+ "notFollowedBy": [
2091
2276
 
2092
2277
  ],
2093
2278
 
@@ -2102,6 +2287,26 @@
2102
2287
  },
2103
2288
  "example": "You should lead the way."
2104
2289
  }
2290
+ ],
2291
+ "subsequence [disabled]": [
2292
+ {
2293
+ "pronunciation": {
2294
+ "espeak": {
2295
+ "en-us": "s ˈʌ b s ˌi k w ə n s",
2296
+ "en-gb-x-rp": "s ˈʌ b s ˌi k w ə n s"
2297
+ }
2298
+ }
2299
+ }
2300
+ ],
2301
+ "subsequences [disabled]": [
2302
+ {
2303
+ "pronunciation": {
2304
+ "espeak": {
2305
+ "en-us": "s ˈʌ b s ˌi k w ə n s ᵻ z",
2306
+ "en-gb-x-rp": "s ˈʌ b s ˌi k w ə n s ᵻ z"
2307
+ }
2308
+ }
2309
+ }
2105
2310
  ]
2106
2311
  }
2107
2312
  }