All Projects → biolab → Orange3 Text

biolab / Orange3 Text

Licence: other
🍊 📄 Text Mining add-on for Orange3

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Orange3 Text

Artificial Adversary
🗣️ Tool to generate adversarial text examples and test machine learning models against them
Stars: ✭ 348 (+319.28%)
Mutual labels:  text-mining, text, text-analysis
Stocksight
Stock market analyzer and predictor using Elasticsearch, Twitter, News headlines and Python natural language processing and sentiment analysis
Stars: ✭ 1,037 (+1149.4%)
Mutual labels:  sentiment-analysis, nltk, twitter
Awesome Sentiment Analysis
Repository with all what is necessary for sentiment analysis and related areas
Stars: ✭ 459 (+453.01%)
Mutual labels:  sentiment-analysis, text-mining, text-analysis
Learning Social Media Analytics With R
This repository contains code and bonus content which will be added from time to time for the book "Learning Social Media Analytics with R" by Packt
Stars: ✭ 102 (+22.89%)
Mutual labels:  sentiment-analysis, text-mining, twitter
converse
Conversational text Analysis using various NLP techniques
Stars: ✭ 147 (+77.11%)
Mutual labels:  text-mining, sentiment-analysis, text
text-analysis
Weaving analytical stories from text data
Stars: ✭ 12 (-85.54%)
Mutual labels:  text-mining, sentiment-analysis, text-analysis
Awesome Text Classification
Awesome-Text-Classification Projects,Papers,Tutorial .
Stars: ✭ 158 (+90.36%)
Mutual labels:  text-mining, nltk, text-analysis
TwEater
A Python Bot for Scraping Conversations from Twitter
Stars: ✭ 16 (-80.72%)
Mutual labels:  text-mining, twitter, sentiment-analysis
Text mining resources
Resources for learning about Text Mining and Natural Language Processing
Stars: ✭ 358 (+331.33%)
Mutual labels:  sentiment-analysis, text-mining, text-analysis
Notify
A dead simple Go library for sending notifications to various messaging services.
Stars: ✭ 727 (+775.9%)
Mutual labels:  hacktoberfest, twitter
Stocktalk
Data collection tool for social media analytics
Stars: ✭ 765 (+821.69%)
Mutual labels:  sentiment-analysis, twitter
Rake Nltk
Python implementation of the Rapid Automatic Keyword Extraction algorithm using NLTK.
Stars: ✭ 793 (+855.42%)
Mutual labels:  text-mining, nltk
Awesome Twitter Data
A list of Twitter datasets and related resources.
Stars: ✭ 533 (+542.17%)
Mutual labels:  sentiment-analysis, twitter
Kroki
Creates diagrams from textual descriptions!
Stars: ✭ 774 (+832.53%)
Mutual labels:  hacktoberfest, text
Nlp.js
An NLP library for building bots, with entity extraction, sentiment analysis, automatic language identify, and so more
Stars: ✭ 4,670 (+5526.51%)
Mutual labels:  hacktoberfest, sentiment-analysis
Yii2 Authclient
Yii 2 authclient extension.
Stars: ✭ 430 (+418.07%)
Mutual labels:  hacktoberfest, twitter
Twitter sentiment analysis word2vec convnet
Twitter Sentiment Analysis with Gensim Word2Vec and Keras Convolutional Network
Stars: ✭ 24 (-71.08%)
Mutual labels:  sentiment-analysis, twitter
Art
🎨 ASCII art library for Python
Stars: ✭ 1,026 (+1136.14%)
Mutual labels:  twitter, text
Php Open Graph
This package provides a fluent PHP OOP builder for Open Graph protocol.
Stars: ✭ 46 (-44.58%)
Mutual labels:  hacktoberfest, twitter
Konlpy
Python package for Korean natural language processing.
Stars: ✭ 1,098 (+1222.89%)
Mutual labels:  hacktoberfest, text-mining

Orange3 Text

Discord Chat Build Status codecov Documentation Status

Orange3 Text extends Orange3, a data mining software package, with common functionality for text mining. It provides access to publicly available data, like NY Times, Twitter, Wikipedia and PubMed. Furthermore, it provides tools for preprocessing, constructing vector spaces (like bag-of-words, topic modeling, and similarity hashing) and visualizations like word cloud end geo map. All features can be combined with powerful data mining techniques from the Orange data mining framework.

Please note that Text add-on won't work on 32-bit Windows systems. The add-on depends on conda-forge and they have removed support for Windows 32 in April 2018.

Anaconda installation

The easiest way to install Orange3-Text is with Anaconda distribution. Download Anaconda for your OS (Python version 3.5). In your Anaconda Prompt first add conda-forge to your channels:

conda config --add channels conda-forge

Then install Orange3-Text

conda install orange3-text

Run

python -m Orange.canvas

to open Orange and check if everything is installed properly.

Installation from source

To install the add-on from source

# Clone the repository and move into it
git clone https://github.com/biolab/orange3-text.git
cd orange3-text

# Install the dependencies:
pip install -r requirements.txt

# Finally install Orange3-Text in editable/development mode.
pip install -e .

To register this add-on with Orange, but keep the code in the development directory (do not copy it to Python's site-packages directory), run

python setup.py develop

Windows setup for biopython library

If you're not using Anaconda distribution, you can manually install biopython library before installing the add-on. First, download the compiler Visual Studio and run the setup with:

python setup.py build_ext --inplace --compiler=msvc install

Usage

After the installation, the widgets from this add-on are registered with Orange. To run Orange from the terminal, use

python3 -m Orange.canvas

or

orange-canvas

The new widgets are in the toolbox bar under Text Mining section.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].