├── HungaBunga.png ├── LICENSE.txt ├── README.txt ├── Readme.md ├── dist └── hunga_bunga-0.1.tar.gz ├── example.py ├── hunga_bunga.egg-info ├── PKG-INFO ├── SOURCES.txt ├── dependency_links.txt ├── requires.txt └── top_level.txt ├── hunga_bunga ├── __init__.py ├── __init__.pyc ├── classification.py ├── classification.pyc ├── core.py ├── core.pyc ├── params.py ├── params.pyc ├── regression.py └── regression.pyc └── setup.py /HungaBunga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ypeleg/HungaBunga/HEAD/HungaBunga.png -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ypeleg/HungaBunga/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- 1 | Lol, why do you read this? 2 | -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ypeleg/HungaBunga/HEAD/Readme.md -------------------------------------------------------------------------------- /dist/hunga_bunga-0.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ypeleg/HungaBunga/HEAD/dist/hunga_bunga-0.1.tar.gz -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ypeleg/HungaBunga/HEAD/example.py -------------------------------------------------------------------------------- /hunga_bunga.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ypeleg/HungaBunga/HEAD/hunga_bunga.egg-info/PKG-INFO -------------------------------------------------------------------------------- /hunga_bunga.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ypeleg/HungaBunga/HEAD/hunga_bunga.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /hunga_bunga.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /hunga_bunga.egg-info/requires.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | -------------------------------------------------------------------------------- /hunga_bunga.egg-info/top_level.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ypeleg/HungaBunga/HEAD/hunga_bunga.egg-info/top_level.txt -------------------------------------------------------------------------------- /hunga_bunga/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ypeleg/HungaBunga/HEAD/hunga_bunga/__init__.py -------------------------------------------------------------------------------- /hunga_bunga/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ypeleg/HungaBunga/HEAD/hunga_bunga/__init__.pyc -------------------------------------------------------------------------------- /hunga_bunga/classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ypeleg/HungaBunga/HEAD/hunga_bunga/classification.py -------------------------------------------------------------------------------- /hunga_bunga/classification.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ypeleg/HungaBunga/HEAD/hunga_bunga/classification.pyc -------------------------------------------------------------------------------- /hunga_bunga/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ypeleg/HungaBunga/HEAD/hunga_bunga/core.py -------------------------------------------------------------------------------- /hunga_bunga/core.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ypeleg/HungaBunga/HEAD/hunga_bunga/core.pyc -------------------------------------------------------------------------------- /hunga_bunga/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ypeleg/HungaBunga/HEAD/hunga_bunga/params.py -------------------------------------------------------------------------------- /hunga_bunga/params.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ypeleg/HungaBunga/HEAD/hunga_bunga/params.pyc -------------------------------------------------------------------------------- /hunga_bunga/regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ypeleg/HungaBunga/HEAD/hunga_bunga/regression.py -------------------------------------------------------------------------------- /hunga_bunga/regression.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ypeleg/HungaBunga/HEAD/hunga_bunga/regression.pyc -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ypeleg/HungaBunga/HEAD/setup.py --------------------------------------------------------------------------------