npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@telefonica/language-model-converter

v3.3.0

Published

Language model converter yaml <-> json for LUIS

Downloads

28

Readme

language-model-converter

This is a tool to convert language files defined in yaml language model into the LUIS internal JSON representation.

The language model

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

Limitations

As of writing this doc, the following limitations apply in LUIS Service

  • Max of 40 intents (tef.intent.info + tef.intent.go = 2)
  • Max of 50 chars for the intent name (tef.intent.info = 15)
  • Max of 10 phraselists (askforinfo + tef.places = 2)
  • Max of 10 entities ([something:tef.places]) You can provide as much examples as you want for the entities
  • Max of 10 children entities per parent ([something:tef.date::start])

Usage examples

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.

USE IT PROGRAMMATICALLY

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
}

LICENSE

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.