├── .gitignore ├── README.md ├── clusters100.txt ├── examples ├── load_predict.py ├── rbf-mu-212243-2400.hdf5 ├── rbf-sigma-212243-2400.hdf5 ├── rbf-w-212243-2400.hdf5 ├── target.csv ├── test.csv ├── train.csv └── train_predict.py └── rbfnnpy.py /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | *.pyc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugeniashurko/rbfnnpy/HEAD/README.md -------------------------------------------------------------------------------- /clusters100.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugeniashurko/rbfnnpy/HEAD/clusters100.txt -------------------------------------------------------------------------------- /examples/load_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugeniashurko/rbfnnpy/HEAD/examples/load_predict.py -------------------------------------------------------------------------------- /examples/rbf-mu-212243-2400.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugeniashurko/rbfnnpy/HEAD/examples/rbf-mu-212243-2400.hdf5 -------------------------------------------------------------------------------- /examples/rbf-sigma-212243-2400.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugeniashurko/rbfnnpy/HEAD/examples/rbf-sigma-212243-2400.hdf5 -------------------------------------------------------------------------------- /examples/rbf-w-212243-2400.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugeniashurko/rbfnnpy/HEAD/examples/rbf-w-212243-2400.hdf5 -------------------------------------------------------------------------------- /examples/target.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugeniashurko/rbfnnpy/HEAD/examples/target.csv -------------------------------------------------------------------------------- /examples/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugeniashurko/rbfnnpy/HEAD/examples/test.csv -------------------------------------------------------------------------------- /examples/train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugeniashurko/rbfnnpy/HEAD/examples/train.csv -------------------------------------------------------------------------------- /examples/train_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugeniashurko/rbfnnpy/HEAD/examples/train_predict.py -------------------------------------------------------------------------------- /rbfnnpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugeniashurko/rbfnnpy/HEAD/rbfnnpy.py --------------------------------------------------------------------------------