Code Monkey home page Code Monkey logo

elasticsearch-word2vec's Introduction

elasticsearch-word2vec

Build Status

Word2vec plugin for Elasticsearch

unzip -q model-uploader-0.1.0-SNAPSHOT.zip

Example

GET /_analyze
{
  "tokenizer": "whitespace",
  "filter": [
    "lowercase",
    {
      "type": "stop",
      "stopwords": "_english_"
    },
    {
      "type": "synonym_word2vec",
      "model": "GoogleNews-vectors-negative300-SLIM",
      "nearest_words": 3
    }
  ],
  "text": "The quick brown fox jumps over the lazy dog"
}

// Found synonyms:
//   [quick -> swift speedy fast]
//   [brown -> brownish reddish white]
//   [fox -> foxes squirrel rabbit]
//   [jumps -> jump climbs jumping]
//   [over -> past Over within]
//   [lazy -> laziness slothful layabouts]
//   [dog -> dogs puppy pooch]

Another example:

GET /_analyze
{
  "tokenizer": "standard",
  "filter": [
    "lowercase",
    {
      "type": "stop",
      "stopwords": "_english_"
    },
    {
      "type": "synonym_word2vec",
      "model": "GoogleNews-vectors-negative300-SLIM",
      "threshold": 0.7
    }
  ],
  "text": "Very soon the Rabbit noticed Alice, as she went hunting about, and called out to her
           in an angry tone"
}

// Produces tokens: [ very extremely incredibly quite pretty extraordinarily 
// exceedingly unbelievably soon rabbit rabbits noticed noticing alice
// she her She went came hunting hunters hunts Hunting hunt about called out
// her she herself Her angry irate enraged indignant tone ]

Relative cosine similarity

Plugin provides synonym extraction using Relative Consine Similarity from paper A Minimally Supervised Approach for Synonym Extraction with Word Embeddings by Artuur Leeuwenbergtuur, Mihaela Vela, Jon Dehdari and Josef van Genabith. To use it set flag rcs to true.

Example:

GET /_analyze
{
  "tokenizer": "standard",
  "filter": [
    "lowercase",
    {
      "type": "stop",
      "stopwords": "_english_"
    },
    {
      "type": "synonym_word2vec",
      "model": "GoogleNews-vectors-negative300-SLIM",
      "rcs": true,              // activates relative cosine similarity
      "nearest_words": 20,      // default: 10
      "threshold": 0.05         // default: (1.0 / nearest_words)
    }
  ],
  "text": "The quick brown fox jumps over the lazy dog"
}

elasticsearch-word2vec's People

Contributors

hosuaby avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.