├── .gitignore ├── LICENSE ├── Pipfile ├── Pipfile.lock ├── README.md ├── handson_tutorial.ipynb ├── iris.csv └── reservoir.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenabreu7/handson_reservoir/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenabreu7/handson_reservoir/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenabreu7/handson_reservoir/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenabreu7/handson_reservoir/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenabreu7/handson_reservoir/HEAD/README.md -------------------------------------------------------------------------------- /handson_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenabreu7/handson_reservoir/HEAD/handson_tutorial.ipynb -------------------------------------------------------------------------------- /iris.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenabreu7/handson_reservoir/HEAD/iris.csv -------------------------------------------------------------------------------- /reservoir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenabreu7/handson_reservoir/HEAD/reservoir.py --------------------------------------------------------------------------------