An interactive grammar of machine learning.
Project description
Overview
Nylon is a python library that lets you customize automated machine learning workflows through a concise, JSON syntax. It provides a built in grammar, in which you can access different operations in ML with the english language.
Installation
Install latest release version:
pip install -U nylon-ai
Install directory from github:
git clone https://github.com/Palashio/nylon.git
cd nylon-ai
pip install .
Usage: the basics
A new Polymer
object should be created everytime you're working with a new dataset. When initializing an object, a dataset in the form of a .csv
or .xs
file should be passed to it by path:
nylon_object = Polymer('housing.csv')
Now, it's time to create a specifications file using the nylon grammar. Here's a basic one, that lets Nylon handle most of the work. Nylon currently has four major parts in it's grammar: the data reader, preprocessor, modeler, and analysis modules. In the example below, you can see that we're specifying the target column under data (which is always required), and manually specifying the type of preprocessing we'd like. Everything we haven't specified will be handled for us.
{
"data": {
"target": "ocean_proximity"
},
"preprocessor": {
"fill": "ALL",
"label-encode": "ocean_proximity"
}
}
Now, we can override more components to take advantage of the built in ensembling of SVM's, and nearest neighbors modeling in nylon.
json_file = {
"data": {
"target": "ocean_proximity"
},
"preprocessor": {
"fill": "ALL",
"label-encode": "ocean_proximity"
},
"modeling": {
"type": ["svms", "neighbors"]
}
}
Now we can call,
nylon_object.run(json_file)
This will return a fully trained nylon object. You can access all information about this particular iteration in the .results
field of the object.
Demos
Asking for help
Welcome to the Nylon community!
If you have any questions, feel free to:
Contact
Shoot me an email at hello@paraglide.ai if you'd like to get in touch!
Follow me on twitter for updates and my insights about modern AI!
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file nylon-ai-0.0.7.tar.gz
.
File metadata
- Download URL: nylon-ai-0.0.7.tar.gz
- Upload date:
- Size: 18.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.5.0.1 requests/2.23.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 26fcba18b356c5f50813ad005c8e468a342570ae00726ebf9725d3ea6648a2bb |
|
MD5 | 0af7dae75ccbba4329044787477cb40a |
|
BLAKE2b-256 | e97648ca9860f6948c61b241fb1eeac07238e2aff8cc9a94ab0768ba8455f054 |
File details
Details for the file nylon_ai-0.0.7-py3-none-any.whl
.
File metadata
- Download URL: nylon_ai-0.0.7-py3-none-any.whl
- Upload date:
- Size: 22.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.5.0.1 requests/2.23.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1445b504cd622a68e11de04c35e9d15dd2eb172e9edad6044acab48b9f18b41a |
|
MD5 | 6efd9a37f8cf9b6894e25411b0132751 |
|
BLAKE2b-256 | 736c43d018f59b16e444838e3c64c5997870d6059aa7e3646bb9b5fd7681c1fd |