Installing Newron using pip
!pip install newron
newron.init()
newron.init(project_name: str, value: Any, experiment_name: Optional[str]= 'Default', value: Any, description: Optional[str]=None, value: Any) → None
Initialize and Create a New Project.
Parameters
- Project Name - The name of the project with which your project will be stored in the newron cloud server
- value – Parameter value (string, but will be string-ified if not). All backend stores support values up to length 500, but some may support larger values.
- Experiment Id - The experiment id that will be used by the newron server to keep track of the parameters and hyperparameters of your current experiment
- description - A short summary of your project and experiments if you would like to have it
Example
import newron
newron.init('newron-project-quickstart')