Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
@telefonica/language-model-converter
Advanced tools
Language model converter yaml <-> json for LUIS
This is a tool to convert language files defined in yaml language model into the LUIS internal JSON representation.
This is a yaml format file that is conveted to a JSON file that LUIS can undestand
Words preceed by #
are comments, and its purpose is to leave some insights to people that will help on understanding whats going on. These words will be removed when training luis, so feel free to add as much as you want to help next colleagues that will manage the file
list.${examples}: # Defines a example list to make substitutions in the utterances
- heaven
- hell
tef.intent.info: # Defines a Luis Intent
- Tell me about the purgatory # Simple utterance
- What is ${examples} # Substitution with list: Will generate for you "What is heaven" and "What is hell"
tef.intent.go: # Defines a Luis Intent
- Go to [purgatory:tef.places] # Defines an entity "tef.places" giving "purgatory" as an example. The example is mandatory
- Head to [${examples}:tef.places] # You can make substitution in the entity examples too!
- We will go to [hell:tef.places] from [january 1:tef.date::start] until [december 31:tef.date::enf] # Hierarchical Entities are supported also
phraselist:
aksforinfo: # ex: How to ask for something synonims:
words:
- Tell me about
- What is
tef.places: # ex: Place examples here for training entities
words:
- heaven
- hell
- purgatory
- home
# if you want no have a not-exangeable phraselist, add the property `mode: false` to it. Example:
# tef.relations
# mode: false
# words:
# - leader
# - area
# more info: https://github.com/Microsoft/Cognitive-Documentation/issues/97#issuecomment-265738124
builtin: # LUIS builtin entities that should be used
- age
- datetime
- dimension
- encyclopedia
- geography
- money
- number
- ordinal
- percentage
- temperature
The list of builtin entities can be found in the LUIS Help and/or the Cognitive Services Help Please, read carefully about what entities are available for the target language you are writting utterances to, as
Unless otherwise noted, each pre-built entity is available in all LUIS application locales (cultures).
Note: maybe the doc page is not actualized with all the entities
You dont need to declare with brackets the builtin entities. They are recognized by default on LUIS. I.E:
# DONT DO THIS
tef.intent.money:
- It's worth [$30:builtin.money]
# DO THIS
builtin:
- money
tef.intent.money:
- It's worth $30
As of writing this doc, the following limitations apply in LUIS Service
tef.intent.info
+ tef.intent.go
= 2)tef.intent.info
= 15)askforinfo
+ tef.places
= 2)tef.places
]) You can provide as much examples as you want for the entitiestef.date::start
])npm install -g @telefonica/language-model-converter
language-model-converter --help
Usage: language-model-converter [options] <files>
Convert language files defined to LUIS format
Options:
-h, --help output usage information
-c, --culture <culture> Culture code this files belongs to (ex. "en-us")
-n, --ner Generate a model compatible with NER
Examples:
Convert all files in 'models' and its subfolders, starting with 'en',
setting the locale to en-us
$ language-model-converter ./models/**/en*.yaml -c en-us
Notice that you can use luis-cli to import or update the generated LUIS models.
You can also use this module from code:
import { LanguageModelParser, culture } from '@telefonica/language-model-converter';
let parser = new LanguageModelParser();
let files = 'model.yaml';
try {
let luisModel = parser.parse(files, 'en-us' as culture);
// Do something with the LUIS model
} catch (err) {
// Manage errors
}
Copyright 2016 Telefónica I+D
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
FAQs
Language model converter yaml <-> json for LUIS
The npm package @telefonica/language-model-converter receives a total of 4 weekly downloads. As such, @telefonica/language-model-converter popularity was classified as not popular.
We found that @telefonica/language-model-converter demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.