├── .DS_Store ├── Classification_system ├── .DS_Store ├── build_feature_vector.py ├── classification.py ├── extract_tweets.py ├── feature_properties.py └── preprocessing.py ├── Dataset ├── Sarcasm_tweet_truth.txt ├── Sarcasm_tweets.txt └── Sarcasm_tweets_with_language.txt ├── LICENSE └── README.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilswami96/SarcasmDetection_CodeMixed/HEAD/.DS_Store -------------------------------------------------------------------------------- /Classification_system/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilswami96/SarcasmDetection_CodeMixed/HEAD/Classification_system/.DS_Store -------------------------------------------------------------------------------- /Classification_system/build_feature_vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilswami96/SarcasmDetection_CodeMixed/HEAD/Classification_system/build_feature_vector.py -------------------------------------------------------------------------------- /Classification_system/classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilswami96/SarcasmDetection_CodeMixed/HEAD/Classification_system/classification.py -------------------------------------------------------------------------------- /Classification_system/extract_tweets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilswami96/SarcasmDetection_CodeMixed/HEAD/Classification_system/extract_tweets.py -------------------------------------------------------------------------------- /Classification_system/feature_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilswami96/SarcasmDetection_CodeMixed/HEAD/Classification_system/feature_properties.py -------------------------------------------------------------------------------- /Classification_system/preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilswami96/SarcasmDetection_CodeMixed/HEAD/Classification_system/preprocessing.py -------------------------------------------------------------------------------- /Dataset/Sarcasm_tweet_truth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilswami96/SarcasmDetection_CodeMixed/HEAD/Dataset/Sarcasm_tweet_truth.txt -------------------------------------------------------------------------------- /Dataset/Sarcasm_tweets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilswami96/SarcasmDetection_CodeMixed/HEAD/Dataset/Sarcasm_tweets.txt -------------------------------------------------------------------------------- /Dataset/Sarcasm_tweets_with_language.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilswami96/SarcasmDetection_CodeMixed/HEAD/Dataset/Sarcasm_tweets_with_language.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilswami96/SarcasmDetection_CodeMixed/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilswami96/SarcasmDetection_CodeMixed/HEAD/README.md --------------------------------------------------------------------------------