├── .gitignore ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── examples ├── Distributed Randomized Tree Growing.ipynb └── Model Selection for the Nystroem Method.ipynb ├── pyrallel ├── __init__.py ├── common.py ├── ensemble.py ├── mmap_utils.py └── model_selection.py ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/pyrallel/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/pyrallel/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/pyrallel/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/pyrallel/HEAD/README.md -------------------------------------------------------------------------------- /examples/Distributed Randomized Tree Growing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/pyrallel/HEAD/examples/Distributed Randomized Tree Growing.ipynb -------------------------------------------------------------------------------- /examples/Model Selection for the Nystroem Method.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/pyrallel/HEAD/examples/Model Selection for the Nystroem Method.ipynb -------------------------------------------------------------------------------- /pyrallel/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.3-dev" 2 | -------------------------------------------------------------------------------- /pyrallel/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/pyrallel/HEAD/pyrallel/common.py -------------------------------------------------------------------------------- /pyrallel/ensemble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/pyrallel/HEAD/pyrallel/ensemble.py -------------------------------------------------------------------------------- /pyrallel/mmap_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/pyrallel/HEAD/pyrallel/mmap_utils.py -------------------------------------------------------------------------------- /pyrallel/model_selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/pyrallel/HEAD/pyrallel/model_selection.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/pyrallel/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydata/pyrallel/HEAD/setup.py --------------------------------------------------------------------------------