-
运行
create_data.py
时出现数据下载不下来的情况- 在
create_data.py
中更改datasets
为自己需要的部分,如只使用wikipedia的数据集 - 通过链接直接下载
tsv
文件,然后修改read_table
为read_csv
,从本地的目录上直接读取
- 在
运行
run_experiment.py
时如何指定参数
README中有写,直接在运行的时候指定参数
如python run_experiment.py --dataset=wikipedia_attack
报错 ValueError: Cannot center sparse matrices: pass
with_mean=False
instead. See docstring for motivation and alternatives.
标准化稀疏矩阵会报的错,修改run_experiment.py
中标准化的参数,参考:
from sklearn.preprocessing import StandardScaler
scaler = StandardScaler(with_mean=False).fit(X_train)