├── .gitignore ├── Attack ├── IncBP.py ├── IncDS.py ├── IncPR.py └── Random.py ├── Detector ├── MinTree.py ├── SpEagle.py ├── eval_Fraudar.py ├── eval_GANG.py ├── eval_Prior.py ├── eval_SpEagle.py ├── eval_fBox.py ├── fBox.py ├── gang.py └── greedy.py ├── LICENSE ├── README.md ├── Testing ├── YelpChi │ ├── IncBP.pickle │ ├── IncDS.pickle │ ├── IncPR.pickle │ ├── Random.pickle │ └── Singleton.pickle ├── YelpNYC │ ├── IncBP.pickle │ ├── IncDS.pickle │ ├── IncPR.pickle │ ├── Random.pickle │ └── Singleton.pickle └── YelpZip │ ├── IncBP.pickle │ ├── IncDS.pickle │ ├── IncPR.pickle │ ├── Random.pickle │ └── Singleton.pickle ├── Training ├── YelpChi │ ├── IncBP.pickle │ ├── IncDS.pickle │ ├── IncPR.pickle │ ├── Random.pickle │ └── Singleton.pickle ├── YelpNYC │ ├── IncBP.pickle │ ├── IncDS.pickle │ ├── IncPR.pickle │ ├── Random.pickle │ └── Singleton.pickle └── YelpZip │ ├── IncBP.pickle │ ├── IncDS.pickle │ ├── IncPR.pickle │ ├── Random.pickle │ └── Singleton.pickle ├── Utils ├── eval_helper.py ├── feature_configuration.txt ├── iohelper.py └── yelpFeatureExtraction.py ├── attack_generation.py ├── nash_detect.py ├── overview.png ├── requirements.txt ├── testing.py ├── training.py └── worst_case.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/.gitignore -------------------------------------------------------------------------------- /Attack/IncBP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/Attack/IncBP.py -------------------------------------------------------------------------------- /Attack/IncDS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/Attack/IncDS.py -------------------------------------------------------------------------------- /Attack/IncPR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/Attack/IncPR.py -------------------------------------------------------------------------------- /Attack/Random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/Attack/Random.py -------------------------------------------------------------------------------- /Detector/MinTree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/Detector/MinTree.py -------------------------------------------------------------------------------- /Detector/SpEagle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/Detector/SpEagle.py -------------------------------------------------------------------------------- /Detector/eval_Fraudar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/Detector/eval_Fraudar.py -------------------------------------------------------------------------------- /Detector/eval_GANG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/Detector/eval_GANG.py -------------------------------------------------------------------------------- /Detector/eval_Prior.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/Detector/eval_Prior.py -------------------------------------------------------------------------------- /Detector/eval_SpEagle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/Detector/eval_SpEagle.py -------------------------------------------------------------------------------- /Detector/eval_fBox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/Detector/eval_fBox.py -------------------------------------------------------------------------------- /Detector/fBox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/Detector/fBox.py -------------------------------------------------------------------------------- /Detector/gang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/Detector/gang.py -------------------------------------------------------------------------------- /Detector/greedy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/Detector/greedy.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/README.md -------------------------------------------------------------------------------- /Testing/YelpChi/IncBP.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/Testing/YelpChi/IncBP.pickle -------------------------------------------------------------------------------- /Testing/YelpChi/IncDS.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/Testing/YelpChi/IncDS.pickle -------------------------------------------------------------------------------- /Testing/YelpChi/IncPR.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/Testing/YelpChi/IncPR.pickle -------------------------------------------------------------------------------- /Testing/YelpChi/Random.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/Testing/YelpChi/Random.pickle -------------------------------------------------------------------------------- /Testing/YelpChi/Singleton.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/Testing/YelpChi/Singleton.pickle -------------------------------------------------------------------------------- /Testing/YelpNYC/IncBP.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/Testing/YelpNYC/IncBP.pickle -------------------------------------------------------------------------------- /Testing/YelpNYC/IncDS.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/Testing/YelpNYC/IncDS.pickle -------------------------------------------------------------------------------- /Testing/YelpNYC/IncPR.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/Testing/YelpNYC/IncPR.pickle -------------------------------------------------------------------------------- /Testing/YelpNYC/Random.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/Testing/YelpNYC/Random.pickle -------------------------------------------------------------------------------- /Testing/YelpNYC/Singleton.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/Testing/YelpNYC/Singleton.pickle -------------------------------------------------------------------------------- /Testing/YelpZip/IncBP.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/Testing/YelpZip/IncBP.pickle -------------------------------------------------------------------------------- /Testing/YelpZip/IncDS.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/Testing/YelpZip/IncDS.pickle -------------------------------------------------------------------------------- /Testing/YelpZip/IncPR.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/Testing/YelpZip/IncPR.pickle -------------------------------------------------------------------------------- /Testing/YelpZip/Random.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/Testing/YelpZip/Random.pickle -------------------------------------------------------------------------------- /Testing/YelpZip/Singleton.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/Testing/YelpZip/Singleton.pickle -------------------------------------------------------------------------------- /Training/YelpChi/IncBP.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/Training/YelpChi/IncBP.pickle -------------------------------------------------------------------------------- /Training/YelpChi/IncDS.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/Training/YelpChi/IncDS.pickle -------------------------------------------------------------------------------- /Training/YelpChi/IncPR.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/Training/YelpChi/IncPR.pickle -------------------------------------------------------------------------------- /Training/YelpChi/Random.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/Training/YelpChi/Random.pickle -------------------------------------------------------------------------------- /Training/YelpChi/Singleton.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/Training/YelpChi/Singleton.pickle -------------------------------------------------------------------------------- /Training/YelpNYC/IncBP.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/Training/YelpNYC/IncBP.pickle -------------------------------------------------------------------------------- /Training/YelpNYC/IncDS.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/Training/YelpNYC/IncDS.pickle -------------------------------------------------------------------------------- /Training/YelpNYC/IncPR.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/Training/YelpNYC/IncPR.pickle -------------------------------------------------------------------------------- /Training/YelpNYC/Random.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/Training/YelpNYC/Random.pickle -------------------------------------------------------------------------------- /Training/YelpNYC/Singleton.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/Training/YelpNYC/Singleton.pickle -------------------------------------------------------------------------------- /Training/YelpZip/IncBP.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/Training/YelpZip/IncBP.pickle -------------------------------------------------------------------------------- /Training/YelpZip/IncDS.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/Training/YelpZip/IncDS.pickle -------------------------------------------------------------------------------- /Training/YelpZip/IncPR.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/Training/YelpZip/IncPR.pickle -------------------------------------------------------------------------------- /Training/YelpZip/Random.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/Training/YelpZip/Random.pickle -------------------------------------------------------------------------------- /Training/YelpZip/Singleton.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/Training/YelpZip/Singleton.pickle -------------------------------------------------------------------------------- /Utils/eval_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/Utils/eval_helper.py -------------------------------------------------------------------------------- /Utils/feature_configuration.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/Utils/feature_configuration.txt -------------------------------------------------------------------------------- /Utils/iohelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/Utils/iohelper.py -------------------------------------------------------------------------------- /Utils/yelpFeatureExtraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/Utils/yelpFeatureExtraction.py -------------------------------------------------------------------------------- /attack_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/attack_generation.py -------------------------------------------------------------------------------- /nash_detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/nash_detect.py -------------------------------------------------------------------------------- /overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/overview.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/requirements.txt -------------------------------------------------------------------------------- /testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/testing.py -------------------------------------------------------------------------------- /training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/training.py -------------------------------------------------------------------------------- /worst_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingtongDou/Nash-Detect/HEAD/worst_case.py --------------------------------------------------------------------------------