├── .gitignore ├── README.md ├── attacks ├── Bi-XCor.py ├── CaOSAD.py ├── Ha-kFP.py ├── Makefile ├── Pa-CUMUL.py ├── Pa-FeaturesSVM.py ├── Wa-kNN.py ├── clLev.cpp ├── clgen_stratify.cpp ├── dist-open.cpp ├── dist.cpp ├── fextractor.py ├── flearner.cpp ├── loaders.py ├── notes ├── options ├── run-Pa-FeaturesSVM-score.py ├── svm-predict └── svm-train ├── po ├── acc.py ├── conf-po.py ├── dist-process.py ├── dist-tooclose.py ├── dist-toofar.py ├── ensemble-short.py ├── loaders.py └── options ├── precisebatch-small.zip └── scripts ├── top-100 ├── top-100-censor ├── top-100-random ├── top-100-wiki ├── top-10000-wiki ├── top-1m ├── userscript-click.txt └── userscript-move.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/literaltao/openwf/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/literaltao/openwf/HEAD/README.md -------------------------------------------------------------------------------- /attacks/Bi-XCor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/literaltao/openwf/HEAD/attacks/Bi-XCor.py -------------------------------------------------------------------------------- /attacks/CaOSAD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/literaltao/openwf/HEAD/attacks/CaOSAD.py -------------------------------------------------------------------------------- /attacks/Ha-kFP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/literaltao/openwf/HEAD/attacks/Ha-kFP.py -------------------------------------------------------------------------------- /attacks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/literaltao/openwf/HEAD/attacks/Makefile -------------------------------------------------------------------------------- /attacks/Pa-CUMUL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/literaltao/openwf/HEAD/attacks/Pa-CUMUL.py -------------------------------------------------------------------------------- /attacks/Pa-FeaturesSVM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/literaltao/openwf/HEAD/attacks/Pa-FeaturesSVM.py -------------------------------------------------------------------------------- /attacks/Wa-kNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/literaltao/openwf/HEAD/attacks/Wa-kNN.py -------------------------------------------------------------------------------- /attacks/clLev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/literaltao/openwf/HEAD/attacks/clLev.cpp -------------------------------------------------------------------------------- /attacks/clgen_stratify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/literaltao/openwf/HEAD/attacks/clgen_stratify.cpp -------------------------------------------------------------------------------- /attacks/dist-open.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/literaltao/openwf/HEAD/attacks/dist-open.cpp -------------------------------------------------------------------------------- /attacks/dist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/literaltao/openwf/HEAD/attacks/dist.cpp -------------------------------------------------------------------------------- /attacks/fextractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/literaltao/openwf/HEAD/attacks/fextractor.py -------------------------------------------------------------------------------- /attacks/flearner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/literaltao/openwf/HEAD/attacks/flearner.cpp -------------------------------------------------------------------------------- /attacks/loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/literaltao/openwf/HEAD/attacks/loaders.py -------------------------------------------------------------------------------- /attacks/notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/literaltao/openwf/HEAD/attacks/notes -------------------------------------------------------------------------------- /attacks/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/literaltao/openwf/HEAD/attacks/options -------------------------------------------------------------------------------- /attacks/run-Pa-FeaturesSVM-score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/literaltao/openwf/HEAD/attacks/run-Pa-FeaturesSVM-score.py -------------------------------------------------------------------------------- /attacks/svm-predict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/literaltao/openwf/HEAD/attacks/svm-predict -------------------------------------------------------------------------------- /attacks/svm-train: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/literaltao/openwf/HEAD/attacks/svm-train -------------------------------------------------------------------------------- /po/acc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/literaltao/openwf/HEAD/po/acc.py -------------------------------------------------------------------------------- /po/conf-po.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/literaltao/openwf/HEAD/po/conf-po.py -------------------------------------------------------------------------------- /po/dist-process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/literaltao/openwf/HEAD/po/dist-process.py -------------------------------------------------------------------------------- /po/dist-tooclose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/literaltao/openwf/HEAD/po/dist-tooclose.py -------------------------------------------------------------------------------- /po/dist-toofar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/literaltao/openwf/HEAD/po/dist-toofar.py -------------------------------------------------------------------------------- /po/ensemble-short.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/literaltao/openwf/HEAD/po/ensemble-short.py -------------------------------------------------------------------------------- /po/loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/literaltao/openwf/HEAD/po/loaders.py -------------------------------------------------------------------------------- /po/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/literaltao/openwf/HEAD/po/options -------------------------------------------------------------------------------- /precisebatch-small.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/literaltao/openwf/HEAD/precisebatch-small.zip -------------------------------------------------------------------------------- /scripts/top-100: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/literaltao/openwf/HEAD/scripts/top-100 -------------------------------------------------------------------------------- /scripts/top-100-censor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/literaltao/openwf/HEAD/scripts/top-100-censor -------------------------------------------------------------------------------- /scripts/top-100-random: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/literaltao/openwf/HEAD/scripts/top-100-random -------------------------------------------------------------------------------- /scripts/top-100-wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/literaltao/openwf/HEAD/scripts/top-100-wiki -------------------------------------------------------------------------------- /scripts/top-10000-wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/literaltao/openwf/HEAD/scripts/top-10000-wiki -------------------------------------------------------------------------------- /scripts/top-1m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/literaltao/openwf/HEAD/scripts/top-1m -------------------------------------------------------------------------------- /scripts/userscript-click.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/literaltao/openwf/HEAD/scripts/userscript-click.txt -------------------------------------------------------------------------------- /scripts/userscript-move.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/literaltao/openwf/HEAD/scripts/userscript-move.txt --------------------------------------------------------------------------------