@nlpjs/ner
Advanced tools
Comparing version 4.9.2 to 4.9.3
{ | ||
"name": "@nlpjs/ner", | ||
"version": "4.9.2", | ||
"version": "4.9.3", | ||
"description": "Named Entity Recognition", | ||
@@ -28,7 +28,7 @@ "author": { | ||
"dependencies": { | ||
"@nlpjs/core": "^4.9.2", | ||
"@nlpjs/core": "^4.9.3", | ||
"@nlpjs/language-min": "^4.6.0", | ||
"@nlpjs/similarity": "^4.9.1" | ||
}, | ||
"gitHead": "956809b1d31b96962f588bff97aef9b73794af4d" | ||
"gitHead": "defca61ee1127e88d73a0808c544028fa4f0e7f5" | ||
} |
@@ -313,6 +313,14 @@ /* | ||
let output = await this.decideRules(input); | ||
output = await this.cache.extractEnum.run(output); | ||
output = await this.cache.extractRegex.run(output); | ||
output = await this.cache.extractTrim.run(output); | ||
output = await this.cache.extractBuiltin.run(output); | ||
if (this.cache.extractEnum) { | ||
output = await this.cache.extractEnum.run(output); | ||
} | ||
if (this.cache.extractRegex) { | ||
output = await this.cache.extractRegex.run(output); | ||
} | ||
if (this.cache.extractTrim) { | ||
output = await this.cache.extractTrim.run(output); | ||
} | ||
if (this.cache.extractBuiltin) { | ||
output = await this.cache.extractBuiltin.run(output); | ||
} | ||
output = await this.reduceEdges(output); | ||
@@ -319,0 +327,0 @@ return output; |
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
45827
1343
Updated@nlpjs/core@^4.9.3