This repository has been archived by the owner on Jun 26, 2023. It is now read-only.
Releases: segmind/segmind-old
Releases · segmind/segmind-old
v0.1.9: Adds stop notebook instance feature
Version 0.1.9 adds stop instances functionality, allowing people to stop notebook instances in code from cloud notebooks.
from segmind import instance
instance.stop()
Add Stop Functionality
Stop an Instance.
0.1.9-beta1
Creating beta release for stop instance feature
[0.1.8] New-Features & Improvements
[0.1.8.b4] Progress bar enhancements for `segmind upload`
[0.1.8.b3] Fixes issues while uploading folder
Minor Fixes/Improvements:
[0.1.8.b2] Fixes issues while uploading folder
Minor Fixes/Improvements:
[0.1.8.b] Improvements
Minor Fixes/Improvements:
[0.1.7] MMdetection Integration, Run Tags, API Based Authentication
This version includes multiple upgrades:
- MMDetection Integration, which includes:
- SegmindLoggerHook
- Use this Hook in your config file, and we can see the logs automatically on Segmind Platform
- init_segmind_hook(cfg=cfg)
- This function must be used before training.
- SegmindLoggerHook
- Run-Tags, which includes:
- segmind_run_name
- segmind_run_algo_name
- segmind_user_username
- segmind_user_email
- User can set any Tag, except above tags.
from segmind.tracking import start_run start_run( run_name="My Custom Run Name", # Optional run_algo_name="Linear Regression with Gradient Descent" # Optional )
- User can set any Tag, except above tags.
segmind config
now uses API based Authenticationsegmind config --access_token=<Bearer ...>
segmind version
displays the version installedsegmind version
Segmind 0.1.7
MMDetection Integration
MMDetection Integration includes:
- SegmindLoggerHook
Use this Hook in your config file, and we can see the logs automatically on Segmind Platform - init_segmind_hook(cfg=cfg)
This function must be used before training.