@@ -43,7 +43,7 @@ class DomainManager {
43
43
: this . settings . useMasterDomain ;
44
44
this . trainByDomain =
45
45
this . settings . trainByDomain === undefined
46
- ? true
46
+ ? false
47
47
: this . settings . trainByDomain ;
48
48
this . stemmer = this . settings . stemmer || NlpUtil . getStemmer ( this . language ) ;
49
49
this . keepStopwords =
@@ -242,53 +242,6 @@ class DomainManager {
242
242
return this . getClassifications ( stems , 'master_domain' ) ;
243
243
}
244
244
245
- // getClassifications(utterance) {
246
- // const stems = this.tokenizeAndStem(utterance);
247
- // if (this.useStemDict) {
248
- // const stemKey = this.generateStemKey(stems);
249
- // if (this.stemDict[stemKey]) {
250
- // const classifications = [];
251
- // classifications.push({
252
- // label: this.stemDict[stemKey].intent,
253
- // value: 1,
254
- // });
255
- // Object.keys(this.intentDict).forEach(intent => {
256
- // if (intent !== this.stemDict[stemKey].intent) {
257
- // if (
258
- // !this.trainByDomain ||
259
- // this.stemDict[stemKey].domain === this.intentDict[intent]
260
- // ) {
261
- // classifications.push({ label: intent, value: 0 });
262
- // }
263
- // }
264
- // });
265
- // return { domain: this.stemDict[stemKey].domain, classifications };
266
- // }
267
- // }
268
- // if (this.trainByDomain) {
269
- // let domain;
270
- // if (Object.keys(this.domains).length > 2) {
271
- // const master = this.addDomain('master_domain');
272
- // const domainClassifications = master.getClassifications(stems);
273
- // domain = domainClassifications[0].label;
274
- // } else {
275
- // [domain] = Object.keys(this.domains).filter(x => x !== 'master_domain');
276
- // }
277
- // if (domain) {
278
- // const nlu = this.addDomain(domain);
279
- // const classifications = nlu.getClassifications(stems);
280
- // return { domain, classifications };
281
- // }
282
- // return { domain, classifications: [] };
283
- // }
284
- // const nlu = this.addDomain('master_domain');
285
- // const classifications = nlu.getClassifications(stems);
286
- // return {
287
- // domain: this.intentDict[classifications[0].label],
288
- // classifications,
289
- // };
290
- // }
291
-
292
245
/**
293
246
* Exports object properties.
294
247
* @returns {Object } Object properties.
0 commit comments