def main(argv):
warnings.filterwarnings('ignore', category=DeprecationWarning)
input_file = ''
model_file = ''
output_folder = ''
output_posts = ''
try:
opts, args = getopt.getopt(argv, "hi:m:f:n:")
except getopt.GetoptError:
print('bitcointalk_sentiment_classifier.py -i <inputfile> -m <model> -f <output folder> -n <number of output posts [number|fraction|all]>')
sys.exit(2)
for opt, arg in opts:
if opt == '-h':
print('bitcointalk_sentiment_classifier.py -i <inputfile> -m <model> -f <output folder> -n <number of output posts [number|fraction|all]>')
sys.exit()
elif opt == '-i':
input_file = arg
elif opt == '-m':
model_file = arg
elif opt == '-f':
output_folder = arg
elif opt == '-n':
output_posts = arg
classify(input_file, model_file, output_folder, output_posts)
bitcointalk_sentiment_classifier.py 文件源码
python
阅读 21
收藏 0
点赞 0
评论 0
评论列表
文章目录