nextmv-py icon indicating copy to clipboard operation
nextmv-py copied to clipboard

The Python SDK for Nextmv

Results 7 nextmv-py issues
Sort by recently updated
recently updated
newest added

# Description Adds new `Configuration` and `Parameter` classes used for options/configurations. A parameter dictates an option that, as the bare minimum, has a name and a type. A configuration can...

# Description Adds functionality for logging. For the Nextmv platform, logging implies streaming to `stderr`. Two new features are introduced: - `log`: it is a function to simply print to...

# Description Adds the `push()` function to the `cloud.Application` class. It _should_ be an equivalent to `nextmv app push` with the CLI. ## Testing Kind of hard to add tests...

# Description > :warning: Work in progress This update introduces a new decision pipelines feature to the Nextmv SDK, enabling complex decision automation workflows. ## Changes - Added `pathos` dependency...

For scikit-learn and other integrations, I need to be able to do this: ```python nextmv.Parameter( "criterion", str, choices=["squared_error", "friedman_mse", "absolute_error", "poisson"], description="The function to measure the quality of a split.",...

# Description > [!WARNING] > WIP

# Description Allows the user to specify requirements as code. I.e., the user can now setup their app **_without_** having to create _app.yaml_ and _requirements.txt_ files. Example of a **_push.py_**...