我正在AWS Server中进行Cron作业,并且具有此文件处理功能,该功能可创建JSON文件。我已经有Amazon S3 Cloud Storage,并且我希望将JSON文件保存在其中。我该怎么做?我尝试使用Filezilla找到Amazon S3存储的目录,但未找到任何内容。谢谢!
答案 0 :(得分:1)
您必须在cron中输入另一个命令。
创建Json文件后,必须使用awscli将json上载到S3存储。
这里是安装方法。
设置完成后,可以使用aws s3命令将其上传。
在这里查看更多信息。
我想这是您需要添加的命令。
from sklearn.feature_extraction.text import CountVectorizer
from sklearn.ensemble import RandomForestClassifier
from sklearn.preprocessing import LabelEncoder
from sklearn.model_selection import train_test_split
count_vect = CountVectorizer()
text = ['text1', ..]
targets = ['abuse', ...]
matrix = count_vect.fit_transform(text)
encoder = LabelEncoder()
targets = encoder.fit_transform(targets)
randomForest = RandomForestClassifier()
randomForest.fit(matrix, targets)