Releases: floydhub/floyd-cli
Releases · floydhub/floyd-cli
Release 0.10.18
Improvements:
- Add option to login with username and password:
floyd login -u <username> -p <password
This can be used as an alternative to using the token from the website.
Bug fix:
- Remove whitespace in tokens pasted during login.
Release 0.10.13
bug fixes:
- fixed default input mount path for mounting datasets
- make output command work with running job's output
UX improvement:
- suggest user to split out data for large code sync
Release 0.10.10
- fix exception in floyd clone command
- improve error message
Release 0.10.6
- added to_dict method to jobs
- replace all IDs with human friendly names
- make human friendly name consistent with what's on the web UI
- show error message when a data delete request is sent for job output
Release 0.10.5
- fixed issue with fetching job and data outputs
- updated default ignore list
- fixed bug with force version upgrade
Release 0.10.4
- Update the logs request to use Resource api. (Hotfix)
- Log cli output to stdout
- Replace more IDs with NAME from output
Release 0.9.5
- Tensorflow 1.1 environment is now available. It becomes the default environment.
- Keras environment now contains Keras 2.0.4 and Tensorflow 1.1.0.
- For backwards compatibility,
tensorflow-0.12
andtensorflow-1.0
environments are also available.
Release 0.9.4
- Support for attaching multiple datasets to the same floyd run. Now you can specify
--data <ID1> --data <ID2>
- Specify mount points for data. You can specify the path where your data should be mounted. Eg:
--data <ID>:pathname
and the data will be available at/pathname
. - Support for deleting multiple datasets and experiments in a single command. #14 and #21
- Bug Fix: Too many files error was getting thrown even if directories were added to .floydignore
- Additional tests