├── .gitignore ├── LICENSE.txt ├── README.md ├── environment.yml ├── example.py ├── example.sh ├── setup.py └── socialsent ├── __init__.py ├── constants.py ├── data └── lexicons │ ├── 140-scores.json │ ├── bingliu.json │ ├── concreteness.json │ ├── finance.json │ ├── inquirer.json │ ├── kuperman.json │ ├── mpqa.json │ ├── qwn-scores.json │ ├── qwn.json │ ├── qwn2.json │ ├── twitter-scores.json │ └── twitter.json ├── embedding_transformer.py ├── evaluate_methods.py ├── graph_construction.py ├── historical ├── __init__.py ├── explore_polarities.py ├── make_adj_lexicons.py ├── make_freq_lexicons.py ├── synthetic_test.py └── vocab.py ├── lexicons.py ├── polarity_induction_methods.py ├── reddit ├── __init__.py ├── subreddit_run.py └── subredditgen.py ├── representations ├── __init__.py ├── cooccurgen.py ├── embedding.py ├── explicit.py ├── makelowdim.py ├── matrix_serializer.py ├── ppmigen.py ├── representation_factory.py ├── sequentialembedding.py └── sparse_io.pyx ├── run_evalution.sh ├── seeds.py └── util.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamleif/socialsent/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamleif/socialsent/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamleif/socialsent/HEAD/README.md -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamleif/socialsent/HEAD/environment.yml -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamleif/socialsent/HEAD/example.py -------------------------------------------------------------------------------- /example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamleif/socialsent/HEAD/example.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamleif/socialsent/HEAD/setup.py -------------------------------------------------------------------------------- /socialsent/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /socialsent/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamleif/socialsent/HEAD/socialsent/constants.py -------------------------------------------------------------------------------- /socialsent/data/lexicons/140-scores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamleif/socialsent/HEAD/socialsent/data/lexicons/140-scores.json -------------------------------------------------------------------------------- /socialsent/data/lexicons/bingliu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamleif/socialsent/HEAD/socialsent/data/lexicons/bingliu.json -------------------------------------------------------------------------------- /socialsent/data/lexicons/concreteness.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamleif/socialsent/HEAD/socialsent/data/lexicons/concreteness.json -------------------------------------------------------------------------------- /socialsent/data/lexicons/finance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamleif/socialsent/HEAD/socialsent/data/lexicons/finance.json -------------------------------------------------------------------------------- /socialsent/data/lexicons/inquirer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamleif/socialsent/HEAD/socialsent/data/lexicons/inquirer.json -------------------------------------------------------------------------------- /socialsent/data/lexicons/kuperman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamleif/socialsent/HEAD/socialsent/data/lexicons/kuperman.json -------------------------------------------------------------------------------- /socialsent/data/lexicons/mpqa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamleif/socialsent/HEAD/socialsent/data/lexicons/mpqa.json -------------------------------------------------------------------------------- /socialsent/data/lexicons/qwn-scores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamleif/socialsent/HEAD/socialsent/data/lexicons/qwn-scores.json -------------------------------------------------------------------------------- /socialsent/data/lexicons/qwn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamleif/socialsent/HEAD/socialsent/data/lexicons/qwn.json -------------------------------------------------------------------------------- /socialsent/data/lexicons/qwn2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamleif/socialsent/HEAD/socialsent/data/lexicons/qwn2.json -------------------------------------------------------------------------------- /socialsent/data/lexicons/twitter-scores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamleif/socialsent/HEAD/socialsent/data/lexicons/twitter-scores.json -------------------------------------------------------------------------------- /socialsent/data/lexicons/twitter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamleif/socialsent/HEAD/socialsent/data/lexicons/twitter.json -------------------------------------------------------------------------------- /socialsent/embedding_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamleif/socialsent/HEAD/socialsent/embedding_transformer.py -------------------------------------------------------------------------------- /socialsent/evaluate_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamleif/socialsent/HEAD/socialsent/evaluate_methods.py -------------------------------------------------------------------------------- /socialsent/graph_construction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamleif/socialsent/HEAD/socialsent/graph_construction.py -------------------------------------------------------------------------------- /socialsent/historical/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /socialsent/historical/explore_polarities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamleif/socialsent/HEAD/socialsent/historical/explore_polarities.py -------------------------------------------------------------------------------- /socialsent/historical/make_adj_lexicons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamleif/socialsent/HEAD/socialsent/historical/make_adj_lexicons.py -------------------------------------------------------------------------------- /socialsent/historical/make_freq_lexicons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamleif/socialsent/HEAD/socialsent/historical/make_freq_lexicons.py -------------------------------------------------------------------------------- /socialsent/historical/synthetic_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamleif/socialsent/HEAD/socialsent/historical/synthetic_test.py -------------------------------------------------------------------------------- /socialsent/historical/vocab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamleif/socialsent/HEAD/socialsent/historical/vocab.py -------------------------------------------------------------------------------- /socialsent/lexicons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamleif/socialsent/HEAD/socialsent/lexicons.py -------------------------------------------------------------------------------- /socialsent/polarity_induction_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamleif/socialsent/HEAD/socialsent/polarity_induction_methods.py -------------------------------------------------------------------------------- /socialsent/reddit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /socialsent/reddit/subreddit_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamleif/socialsent/HEAD/socialsent/reddit/subreddit_run.py -------------------------------------------------------------------------------- /socialsent/reddit/subredditgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamleif/socialsent/HEAD/socialsent/reddit/subredditgen.py -------------------------------------------------------------------------------- /socialsent/representations/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'User' 2 | -------------------------------------------------------------------------------- /socialsent/representations/cooccurgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamleif/socialsent/HEAD/socialsent/representations/cooccurgen.py -------------------------------------------------------------------------------- /socialsent/representations/embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamleif/socialsent/HEAD/socialsent/representations/embedding.py -------------------------------------------------------------------------------- /socialsent/representations/explicit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamleif/socialsent/HEAD/socialsent/representations/explicit.py -------------------------------------------------------------------------------- /socialsent/representations/makelowdim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamleif/socialsent/HEAD/socialsent/representations/makelowdim.py -------------------------------------------------------------------------------- /socialsent/representations/matrix_serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamleif/socialsent/HEAD/socialsent/representations/matrix_serializer.py -------------------------------------------------------------------------------- /socialsent/representations/ppmigen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamleif/socialsent/HEAD/socialsent/representations/ppmigen.py -------------------------------------------------------------------------------- /socialsent/representations/representation_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamleif/socialsent/HEAD/socialsent/representations/representation_factory.py -------------------------------------------------------------------------------- /socialsent/representations/sequentialembedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamleif/socialsent/HEAD/socialsent/representations/sequentialembedding.py -------------------------------------------------------------------------------- /socialsent/representations/sparse_io.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamleif/socialsent/HEAD/socialsent/representations/sparse_io.pyx -------------------------------------------------------------------------------- /socialsent/run_evalution.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamleif/socialsent/HEAD/socialsent/run_evalution.sh -------------------------------------------------------------------------------- /socialsent/seeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamleif/socialsent/HEAD/socialsent/seeds.py -------------------------------------------------------------------------------- /socialsent/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamleif/socialsent/HEAD/socialsent/util.py --------------------------------------------------------------------------------