Giter Club home page Giter Club logo

moby-thesaurus's Introduction

#Moby Thesaurus and Part of Speech Dictionary

A class for parsing the Moby Thesaurus and Moby Part of Speech dictionary.

This is imported from moby thesaurus project on google code. written by [email protected] .

It wasn't active for last 5 year's but i be using it for one my NLP projects and be contributing back . If you want to contribute, feel free to fork and do so .

######To Do : rewrite the class to use mysql .

###Features: Get synonyms for a particular word. If the exact word is not available, the class uses php_stem and levenshtein distance to get the word that is closest to the given word. This feature requires the PECL php_stem extension to be available on the server.

Get parts of speech for a word. Returns a list of parts of speech for the given word.

#####Note:

This PHP class uses the The Project Gutenberg Etext of Moby Thesaurus II by Grady Ward and Moby Part-of-Speech II by Grady Ward. These are freely available public domain files from http://www.gutenberg.org/. These files are distributable in the United States. Copyright laws are changing all over the world, be sure to check the laws for your country before redistributing these files.

###Demonstrating MobyThesaurus PHP Class - Example Output

#####Getting Synonyms for 'medications' - (MobyThesaurus::GetSynonyms)

array ( 0 => 'medication', 1 => 'balm', 2 => 'balsam', 3 => 'curative measures', 4 => 'cure', 5 => 'drops', 6 => 'drug', 7 => 'electuary', 8 => 'elixir', 9 => 'ethical drug', 10 => 'first aid', 11 => 'generic name', 12 => 'healing arts', 13 => 'herbs', 14 => 'hospitalization', 15 => 'inhalant', 16 => 'lincture', 17 => 'linctus', 18 => 'materia medica', 19 => 'medical care', 20 => 'medical treatment', 21 => 'medicament', 22 => 'medicamentation', 23 => 'medicinal', 24 => 'medicinal herbs', 25 => 'medicine', 26 => 'medicines', 27 => 'mixture', 28 => 'nonprescription drug', 29 => 'officinal', 30 => 'patent medicine', 31 => 'pharmacon', 32 => 'physic', 33 => 'powder', 34 => 'preparation', 35 => 'prescription drug', 36 => 'proprietary', 37 => 'proprietary medicine', 38 => 'proprietary name', 39 => 'psychotherapy', 40 => 'regime', 41 => 'regimen', 42 => 'simples', 43 => 'syrup', 44 => 'therapeusis', 45 => 'therapeutics', 46 => 'theraputant', 47 => 'therapy', 48 => 'tisane', 49 => 'treatment', 50 => 'vegetable remedies ', )

Processing Time: 1.6467730998993 seconds

#####Getting Part of Speech for 'feel' - (MobyThesaurus::GetPartsOfSpeech)

array ( 'feeler gauge' => array ( 0 => 'h', ), 'feeler' => array ( 0 => 'N', ), 'feeless' => array ( 0 => 'A', ), 'feelingful' => array ( 0 => 'A', ), 'feelinglessly' => array ( 0 => 'v', ), 'feelingless' => array ( 0 => 'A', ), 'feelingly' => array ( 0 => 'v', ), 'feelingness' => array ( 0 => 'N', ), 'feeling' => array ( 0 => 'N', 1 => 'A', ), 'feel' => array ( 0 => 'V', 1 => 't', 2 => 'i', 3 => 'N', ), )

Processing Time: 0.7630729675293 seconds

###Faster Processing with MySQL Database Version of Moby Thesaurus If you are planning on processing many words in real time, you may want to use the MySQL version of the Moby Thesaurus. There is an sql dump file included , import it into moby_thesaurus database . we will be writing code to include this .

#####Example SQL:

SELECT synonyms.* FROM words LEFT JOIN synonyms ON synonyms.word_id = words.word_id WHERE word = "feeling"; That query is executed in 266 ms, rather than 1.6 seconds.

Have a look at the moby_thesaurus code for an example of using stemming to find words that are similar to the word you're looking for.

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.