bump version v0.6.1

This commit is contained in:
sugarme 2022-02-24 15:28:39 +11:00
parent 36b61bf719
commit cd7cc90d02
2 changed files with 8 additions and 6 deletions

View File

@ -6,12 +6,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
- Fixed wrong `cacheDir` and switch off logging.
- Added more pickle classes to handle unpickling
## [Nofix]
- ctype `long` caused compiling error in MacOS as noted on [#44]. Not working on linux box.
## [0.6.1]
- Fixed wrong `cacheDir` and switch off logging.
- Added more pickle classes to handle unpickling
## [0.6.0]
- Added subpackage `pickle`. Now we can load directly Python Pytorch pretrained model without any Python script conversion.
- Added `gotch.CachePath()` and `gotch.ModelUrls`

View File

@ -16,7 +16,7 @@
`gotch` is in active development mode and may have API breaking changes. Feel free to pull request, report issues or discuss any concerns. All contributions are welcome.
`gotch` current version is **v0.6.0**
`gotch` current version is **v0.6.1**
## Dependencies
@ -53,7 +53,7 @@
```bash
wget https://raw.githubusercontent.com/sugarme/gotch/master/setup-gotch.sh
chmod +x setup-gotch.sh
export CUDA_VER=cpu && export GOTCH_VER=v0.6.0 && bash setup-gotch.sh
export CUDA_VER=cpu && export GOTCH_VER=v0.6.1 && bash setup-gotch.sh
```
### GPU
@ -91,9 +91,9 @@
wget https://raw.githubusercontent.com/sugarme/gotch/master/setup-gotch.sh
chmod +x setup-gotch.sh
# CUDA 10.2
export CUDA_VER=10.2 && export GOTCH_VER=v0.6.0 && bash setup-gotch.sh
export CUDA_VER=10.2 && export GOTCH_VER=v0.6.1 && bash setup-gotch.sh
# CUDA 11.1
export CUDA_VER=11.1 && export GOTCH_VER=v0.6.0 && bash setup-gotch.sh
export CUDA_VER=11.1 && export GOTCH_VER=v0.6.1 && bash setup-gotch.sh
```
## Examples