@nlpjs/nlu
Advanced tools
Comparing version 4.1.2 to 4.1.3
{ | ||
"name": "@nlpjs/nlu", | ||
"version": "4.1.2", | ||
"version": "4.1.3", | ||
"description": "Natural Language Understanding", | ||
@@ -33,3 +33,3 @@ "author": { | ||
}, | ||
"gitHead": "7aef3948a9f913f44889143b98b122a85cbf8af4" | ||
"gitHead": "3224f8d21514f680c067f77a1d94a56799963f6e" | ||
} |
@@ -58,4 +58,6 @@ /* | ||
super.fromJSON(json); | ||
this.neuralNetwork = new NeuralNetwork(); | ||
this.neuralNetwork.fromJSON(json.neuralNetwork); | ||
if (json.neuralNetwork) { | ||
this.neuralNetwork = new NeuralNetwork(); | ||
this.neuralNetwork.fromJSON(json.neuralNetwork); | ||
} | ||
} | ||
@@ -62,0 +64,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
42675
1228