Coder Social home page Coder Social logo

lemez / ark_tweet_nlp_ruby Goto Github PK

View Code? Open in Web Editor NEW

This project forked from bernardo-cs/ark_tweet_nlp_ruby

0.0 3.0 0.0 14.5 MB

Ruby wrapper of http://www.ark.cs.cmu.edu/TweetNLP/ Carnegie Mellon

License: MIT License

Ruby 98.21% Shell 1.79%

ark_tweet_nlp_ruby's Introduction

ArkTweetNlp

Ruby wrapper for the Carnegie Mellon Twitter NLP and Part-of-Speech Tagging Not all features are implemented yet, check the examples to see how to use it.

Installation

Add this line to your application's Gemfile:

gem 'ark_tweet_nlp'

And then execute:

$ bundle

Or install it yourself as:

$ gem install ark_tweet_nlp

Usage

See the list of supported tags:

ArkTweetNlp::Parser::TAGSET

Tag a tweet text:

tagged_result = ArkTweetNlp::Parser.find_tags('faceboooooooook is awesome')
#=> [ {'faceboooooooook' => :^,'is' => :V,'awesome' => :A }]

Or multiple tweets separated by \n:

tagged_result = ArkTweetNlp::Parser.find_tags("faceboooooooook is awesome\nfaceboooooooook is awesome")
#=> [{'faceboooooooook' => :^,'is' => :V,'awesome' => :A},{'faceboooooooook' => :^,'is' => :V,'awesome' => :A} ]

Get all words tagged as a specific tag:

tagged_result = [{'faceboooooooook' => :^,'is' => :V,'awesome' => :A}]
ArkTweetNlp::Parser.get_words_tagged_as(tagged_result, :A,:V,:^)
#=>  {:^ => ["faceboooooooook"], :V => ["is"], :A => ["awesome"]}

Count all types of tags:

tweets = "tweet 1\n tweet 2\n tweet 3\n"
tagged_result = ArkTweetNlp::Parser.find_tags( tweets )
tagged_result = ArkTweetNlp::Parser.get_words_tagged_as(tagged_result, *ArkTweetNlp::Parser::TAGSET.keys)
tagged_result.each_pair do |k,v|
 puts("#{ArkTweetNlp::Parser::TAGSET[k]}\t#{Set.new(v).size}")
end

Contributing

  1. Fork it ( https://github.com/[my-github-username]/ark_tweet_nlp/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

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.