2018-07-21 active learning记录

git: active-learning

  • 运行create_data.py时出现数据下载不下来的情况

    1. create_data.py中更改datasets为自己需要的部分,如只使用wikipedia的数据集
    2. 通过链接直接下载tsv文件,然后修改read_tableread_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)

你可能感兴趣的:(2018-07-21 active learning记录)