├── .gitignore ├── README.md ├── data └── tweets.csv ├── gen_vec.py ├── model.py └── 基于支持向量机、随机森林与XGBoost的推特情感分类.pdf /.gitignore: -------------------------------------------------------------------------------- 1 | textvecs.npy -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengyima/twitter_sentiment_bert_scikit/HEAD/README.md -------------------------------------------------------------------------------- /data/tweets.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengyima/twitter_sentiment_bert_scikit/HEAD/data/tweets.csv -------------------------------------------------------------------------------- /gen_vec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengyima/twitter_sentiment_bert_scikit/HEAD/gen_vec.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengyima/twitter_sentiment_bert_scikit/HEAD/model.py -------------------------------------------------------------------------------- /基于支持向量机、随机森林与XGBoost的推特情感分类.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengyima/twitter_sentiment_bert_scikit/HEAD/基于支持向量机、随机森林与XGBoost的推特情感分类.pdf --------------------------------------------------------------------------------