@nlpjs/nlu
Advanced tools
Comparing version 4.7.0 to 4.7.2
{ | ||
"name": "@nlpjs/nlu", | ||
"version": "4.7.0", | ||
"version": "4.7.2", | ||
"description": "Natural Language Understanding", | ||
@@ -33,3 +33,3 @@ "author": { | ||
}, | ||
"gitHead": "effa099be538aebb6586995d6751383e55560516" | ||
"gitHead": "17fdf147f3d6f2c8221880cbf4b2449f5ab96515" | ||
} |
@@ -35,6 +35,6 @@ /* | ||
class NeuralNlu extends Nlu { | ||
innerTrain(srcInput) { | ||
async innerTrain(srcInput) { | ||
const input = srcInput; | ||
this.neuralNetwork = new NeuralNetwork(input.settings, this.container); | ||
input.status = this.neuralNetwork.train(input.corpus); | ||
input.status = await this.neuralNetwork.train(input.corpus); | ||
return input; | ||
@@ -41,0 +41,0 @@ } |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
43230