├── .gitignore ├── Code ├── CP.py ├── Data.py ├── Load.py ├── QualityMeasures.py ├── RunDE.py ├── RunDropout.py ├── RunGP.py ├── RunKG.py ├── RunNNCP.py ├── RunQR.py ├── RunRFCP.py ├── RunSVGP.py ├── SEEDS.csv └── Utils.py ├── Data ├── blog │ ├── blogData_train.csv │ └── results │ │ └── .gitkeep ├── concrete │ ├── Concrete_Data.csv │ ├── Concrete_Data.xls │ └── results │ │ └── .gitkeep ├── crime2 │ ├── communities.data │ ├── communities_attributes.csv │ └── results │ │ └── .gitkeep ├── fb1 │ ├── Features_Variant_1.csv │ ├── Test_Case_1.csv │ ├── Test_Case_10.csv │ ├── Test_Case_2.csv │ ├── Test_Case_3.csv │ ├── Test_Case_4.csv │ ├── Test_Case_5.csv │ ├── Test_Case_6.csv │ ├── Test_Case_7.csv │ ├── Test_Case_8.csv │ ├── Test_Case_9.csv │ └── results │ │ └── .gitkeep ├── naval │ ├── Features.txt │ ├── README.txt │ ├── data.txt │ └── results │ │ └── .gitkeep ├── puma32H │ ├── puma32H.data │ ├── puma32H.domain │ ├── puma32H.test │ └── results │ │ └── .gitkeep ├── residential │ ├── Residential-Building-Data-Set.xlsx │ └── results │ │ └── .gitkeep ├── star │ ├── STAR.csv │ └── results │ │ └── .gitkeep ├── traffic │ ├── data.arff │ ├── data.csv │ └── results │ │ └── .gitkeep └── turbine │ ├── Folds5x2_pp.ods │ ├── Folds5x2_pp.xlsx │ ├── Readme.txt │ └── results │ └── .gitkeep ├── README.md └── ValidPredictionIntervals.ipynb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdwolf/ValidPredictionIntervals/HEAD/.gitignore -------------------------------------------------------------------------------- /Code/CP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdwolf/ValidPredictionIntervals/HEAD/Code/CP.py -------------------------------------------------------------------------------- /Code/Data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdwolf/ValidPredictionIntervals/HEAD/Code/Data.py -------------------------------------------------------------------------------- /Code/Load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdwolf/ValidPredictionIntervals/HEAD/Code/Load.py -------------------------------------------------------------------------------- /Code/QualityMeasures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdwolf/ValidPredictionIntervals/HEAD/Code/QualityMeasures.py -------------------------------------------------------------------------------- /Code/RunDE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdwolf/ValidPredictionIntervals/HEAD/Code/RunDE.py -------------------------------------------------------------------------------- /Code/RunDropout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdwolf/ValidPredictionIntervals/HEAD/Code/RunDropout.py -------------------------------------------------------------------------------- /Code/RunGP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdwolf/ValidPredictionIntervals/HEAD/Code/RunGP.py -------------------------------------------------------------------------------- /Code/RunKG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdwolf/ValidPredictionIntervals/HEAD/Code/RunKG.py -------------------------------------------------------------------------------- /Code/RunNNCP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdwolf/ValidPredictionIntervals/HEAD/Code/RunNNCP.py -------------------------------------------------------------------------------- /Code/RunQR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdwolf/ValidPredictionIntervals/HEAD/Code/RunQR.py -------------------------------------------------------------------------------- /Code/RunRFCP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdwolf/ValidPredictionIntervals/HEAD/Code/RunRFCP.py -------------------------------------------------------------------------------- /Code/RunSVGP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdwolf/ValidPredictionIntervals/HEAD/Code/RunSVGP.py -------------------------------------------------------------------------------- /Code/SEEDS.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdwolf/ValidPredictionIntervals/HEAD/Code/SEEDS.csv -------------------------------------------------------------------------------- /Code/Utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdwolf/ValidPredictionIntervals/HEAD/Code/Utils.py -------------------------------------------------------------------------------- /Data/blog/blogData_train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdwolf/ValidPredictionIntervals/HEAD/Data/blog/blogData_train.csv -------------------------------------------------------------------------------- /Data/blog/results/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data/concrete/Concrete_Data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdwolf/ValidPredictionIntervals/HEAD/Data/concrete/Concrete_Data.csv -------------------------------------------------------------------------------- /Data/concrete/Concrete_Data.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdwolf/ValidPredictionIntervals/HEAD/Data/concrete/Concrete_Data.xls -------------------------------------------------------------------------------- /Data/concrete/results/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data/crime2/communities.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdwolf/ValidPredictionIntervals/HEAD/Data/crime2/communities.data -------------------------------------------------------------------------------- /Data/crime2/communities_attributes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdwolf/ValidPredictionIntervals/HEAD/Data/crime2/communities_attributes.csv -------------------------------------------------------------------------------- /Data/crime2/results/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data/fb1/Features_Variant_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdwolf/ValidPredictionIntervals/HEAD/Data/fb1/Features_Variant_1.csv -------------------------------------------------------------------------------- /Data/fb1/Test_Case_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdwolf/ValidPredictionIntervals/HEAD/Data/fb1/Test_Case_1.csv -------------------------------------------------------------------------------- /Data/fb1/Test_Case_10.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdwolf/ValidPredictionIntervals/HEAD/Data/fb1/Test_Case_10.csv -------------------------------------------------------------------------------- /Data/fb1/Test_Case_2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdwolf/ValidPredictionIntervals/HEAD/Data/fb1/Test_Case_2.csv -------------------------------------------------------------------------------- /Data/fb1/Test_Case_3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdwolf/ValidPredictionIntervals/HEAD/Data/fb1/Test_Case_3.csv -------------------------------------------------------------------------------- /Data/fb1/Test_Case_4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdwolf/ValidPredictionIntervals/HEAD/Data/fb1/Test_Case_4.csv -------------------------------------------------------------------------------- /Data/fb1/Test_Case_5.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdwolf/ValidPredictionIntervals/HEAD/Data/fb1/Test_Case_5.csv -------------------------------------------------------------------------------- /Data/fb1/Test_Case_6.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdwolf/ValidPredictionIntervals/HEAD/Data/fb1/Test_Case_6.csv -------------------------------------------------------------------------------- /Data/fb1/Test_Case_7.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdwolf/ValidPredictionIntervals/HEAD/Data/fb1/Test_Case_7.csv -------------------------------------------------------------------------------- /Data/fb1/Test_Case_8.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdwolf/ValidPredictionIntervals/HEAD/Data/fb1/Test_Case_8.csv -------------------------------------------------------------------------------- /Data/fb1/Test_Case_9.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdwolf/ValidPredictionIntervals/HEAD/Data/fb1/Test_Case_9.csv -------------------------------------------------------------------------------- /Data/fb1/results/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data/naval/Features.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdwolf/ValidPredictionIntervals/HEAD/Data/naval/Features.txt -------------------------------------------------------------------------------- /Data/naval/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdwolf/ValidPredictionIntervals/HEAD/Data/naval/README.txt -------------------------------------------------------------------------------- /Data/naval/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdwolf/ValidPredictionIntervals/HEAD/Data/naval/data.txt -------------------------------------------------------------------------------- /Data/naval/results/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data/puma32H/puma32H.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdwolf/ValidPredictionIntervals/HEAD/Data/puma32H/puma32H.data -------------------------------------------------------------------------------- /Data/puma32H/puma32H.domain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdwolf/ValidPredictionIntervals/HEAD/Data/puma32H/puma32H.domain -------------------------------------------------------------------------------- /Data/puma32H/puma32H.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdwolf/ValidPredictionIntervals/HEAD/Data/puma32H/puma32H.test -------------------------------------------------------------------------------- /Data/puma32H/results/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data/residential/Residential-Building-Data-Set.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdwolf/ValidPredictionIntervals/HEAD/Data/residential/Residential-Building-Data-Set.xlsx -------------------------------------------------------------------------------- /Data/residential/results/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data/star/STAR.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdwolf/ValidPredictionIntervals/HEAD/Data/star/STAR.csv -------------------------------------------------------------------------------- /Data/star/results/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data/traffic/data.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdwolf/ValidPredictionIntervals/HEAD/Data/traffic/data.arff -------------------------------------------------------------------------------- /Data/traffic/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdwolf/ValidPredictionIntervals/HEAD/Data/traffic/data.csv -------------------------------------------------------------------------------- /Data/traffic/results/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data/turbine/Folds5x2_pp.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdwolf/ValidPredictionIntervals/HEAD/Data/turbine/Folds5x2_pp.ods -------------------------------------------------------------------------------- /Data/turbine/Folds5x2_pp.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdwolf/ValidPredictionIntervals/HEAD/Data/turbine/Folds5x2_pp.xlsx -------------------------------------------------------------------------------- /Data/turbine/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdwolf/ValidPredictionIntervals/HEAD/Data/turbine/Readme.txt -------------------------------------------------------------------------------- /Data/turbine/results/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdwolf/ValidPredictionIntervals/HEAD/README.md -------------------------------------------------------------------------------- /ValidPredictionIntervals.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdwolf/ValidPredictionIntervals/HEAD/ValidPredictionIntervals.ipynb --------------------------------------------------------------------------------