Skip to content
Snippets Groups Projects
README.md 1.39 KiB
Newer Older
Steffen Knapp's avatar
Steffen Knapp committed
# Sarcasm Detection In Amazon Reviews
Maximilian Blunck's avatar
Maximilian Blunck committed

Steffen Knapp's avatar
Steffen Knapp committed
## About
Steffen Knapp's avatar
Steffen Knapp committed
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
Steffen Knapp's avatar
Steffen Knapp committed
## Prerequirements 
Steffen Knapp's avatar
Steffen Knapp committed
We suggest using a virtual environment in order to use this program.
Steffen Knapp's avatar
Steffen Knapp committed
	# apt install python-virtualenv
Steffen Knapp's avatar
Steffen Knapp committed
You then need to create a new virtual environment (in this example, it is named virtual-env), preferably in the project's folder:

	$ virtualenv virtual-env
	$ source virtual-env/bin/activate

## Requirements

The program requires NLTK, NumPy, SciPy, SciKit Learn, requests, textblob and vaderSentiment.
Please note that SciPy and NumPy need to be installed before SciKit Learn.

    $ pip install --upgrade pip
	$ pip install nltk
	$ pip install numpy
	$ pip install scipy
	$ pip install sklearn
	$ pip install requests
	$ pip install textblob
	$ pip install vaderSentiment
	
## Starting

The command for using the program is as follows: 

	$ python ...