├── .gitattributes ├── .gitignore ├── MLFRScgForClass_w1.m ├── MLFRScgForClass_w2.m ├── MLFRScgForClass_w3.m └── MLNB ├── Average_precision.m ├── Hamming_loss.m ├── MLNB.m ├── MLNB_Basic_test.m ├── MLNB_Basic_train.m ├── One_error.m ├── Ranking_loss.m ├── coverage.m └── readme.m /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatlymitang/FRS_ML/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatlymitang/FRS_ML/HEAD/.gitignore -------------------------------------------------------------------------------- /MLFRScgForClass_w1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatlymitang/FRS_ML/HEAD/MLFRScgForClass_w1.m -------------------------------------------------------------------------------- /MLFRScgForClass_w2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatlymitang/FRS_ML/HEAD/MLFRScgForClass_w2.m -------------------------------------------------------------------------------- /MLFRScgForClass_w3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatlymitang/FRS_ML/HEAD/MLFRScgForClass_w3.m -------------------------------------------------------------------------------- /MLNB/Average_precision.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatlymitang/FRS_ML/HEAD/MLNB/Average_precision.m -------------------------------------------------------------------------------- /MLNB/Hamming_loss.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatlymitang/FRS_ML/HEAD/MLNB/Hamming_loss.m -------------------------------------------------------------------------------- /MLNB/MLNB.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatlymitang/FRS_ML/HEAD/MLNB/MLNB.m -------------------------------------------------------------------------------- /MLNB/MLNB_Basic_test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatlymitang/FRS_ML/HEAD/MLNB/MLNB_Basic_test.m -------------------------------------------------------------------------------- /MLNB/MLNB_Basic_train.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatlymitang/FRS_ML/HEAD/MLNB/MLNB_Basic_train.m -------------------------------------------------------------------------------- /MLNB/One_error.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatlymitang/FRS_ML/HEAD/MLNB/One_error.m -------------------------------------------------------------------------------- /MLNB/Ranking_loss.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatlymitang/FRS_ML/HEAD/MLNB/Ranking_loss.m -------------------------------------------------------------------------------- /MLNB/coverage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatlymitang/FRS_ML/HEAD/MLNB/coverage.m -------------------------------------------------------------------------------- /MLNB/readme.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatlymitang/FRS_ML/HEAD/MLNB/readme.m --------------------------------------------------------------------------------