Predictive Models: Build once, Run Anywhere
From the post:
We have released a new version of our open source Python bindings. This new version aims at showing how the BigML API can be used to build predictive models capable of generating predictions locally or remotely. You can get full access to the code at Github and read the full documentation at Read the Docs.
The complete list of updates includes (drum roll, please):
Development Mode
We recently introduced a free sandbox to help developers play with BigML on smaller datasets without being concerned about credits. In the new Python bindings you can use BigML in development mode, and all dataset and models smaller than 1MB can be created for free:
from bigml.api import BigML api = BigML(dev_mode=True)
A “sandbox” for your machine learning experiments!