aboutsummaryrefslogtreecommitdiffstats
path: root/config.yml
diff options
context:
space:
mode:
authorMalik Talha <talhamalik727x@gmail.com>2023-10-22 20:46:05 +0500
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>2023-10-23 15:01:16 +0000
commit99afa6724dda1844c4645df4849cbd32b78937a1 (patch)
tree3716b6e43516ed056d6f62c6c05e1c382efca90b /config.yml
parentbaa34d71c6f61db4697113ba4bc7557e781f976b (diff)
Add pre-trained RASA model
Add a RASA model trained on HVAC Temperature, Fan Speed, and Volume Control intents. Bug-AGL: SPEC-4856 Signed-off-by: Malik Talha <talhamalik727x@gmail.com> Change-Id: I3ad2d315320ee7bd73a1e78e721357738974ac88
Diffstat (limited to 'config.yml')
-rw-r--r--config.yml45
1 files changed, 45 insertions, 0 deletions
diff --git a/config.yml b/config.yml
new file mode 100644
index 0000000..69ca0ea
--- /dev/null
+++ b/config.yml
@@ -0,0 +1,45 @@
+language: en # your 2-letter language code
+assistant_id: 20230807-130137-kind-easement
+
+# pipeline: null
+# # No configuration for the NLU pipeline was provided. The following default pipeline was used to train your model.
+# # If you'd like to customize it, uncomment and adjust the pipeline.
+# # See https://rasa.com/docs/rasa/tuning-your-model for more information.
+# - name: WhitespaceTokenizer
+# - name: RegexFeaturizer
+# - name: LexicalSyntacticFeaturizer
+# - name: CountVectorsFeaturizer
+# - name: CountVectorsFeaturizer
+# analyzer: char_wb
+# min_ngram: 1
+# max_ngram: 4
+# - name: DIETClassifier
+# epochs: 100
+# constrain_similarities: true
+# - name: EntitySynonymMapper
+# - name: ResponseSelector
+# epochs: 100
+# constrain_similarities: true
+# - name: FallbackClassifier
+# threshold: 0.3
+# ambiguity_threshold: 0.1
+
+pipeline:
+ - name: WhitespaceTokenizer
+ - name: RegexFeaturizer
+ - name: LexicalSyntacticFeaturizer
+ - name: CountVectorsFeaturizer
+ - name: CountVectorsFeaturizer
+ analyzer: "char_wb"
+ min_ngram: 1
+ max_ngram: 4
+ - name: DIETClassifier
+ epochs: 100
+ constrain_similarities: true
+ - name: EntitySynonymMapper
+ - name: ResponseSelector
+ epochs: 100
+ constrain_similarities: true
+ - name: FallbackClassifier
+ threshold: 0.3
+ ambiguity_threshold: 0.1 \ No newline at end of file