diff --git a/CHANGELOG.md b/CHANGELOG.md index db501fc..81a16ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -33,3 +33,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [#10]: https://github.com/sugarme/gotch/issues/10 +## [0.2.0] + +### Changed +- Convert all APIs to using **Pointer Receiver** + +### Added +- Added drawing image label at `example/yolo` example +- Added some example images and README files for `example/yolo` and `example/neural-style-transfer` diff --git a/setup-cpu.sh b/setup-cpu.sh index 0e19cb3..101dcfe 100755 --- a/setup-cpu.sh +++ b/setup-cpu.sh @@ -1,7 +1,7 @@ #!/bin/bash # Env -GOTCH_VERSION="${GOTCH_VER:-v0.1.10}" +GOTCH_VERSION="${GOTCH_VER:-v0.2.0}" LIBTORCH_VERSION="${LIBTORCH_VER:-1.5.1}" GOTCH="$GOPATH/pkg/mod/github.com/sugarme/gotch@$GOTCH_VERSION" diff --git a/setup-gpu.sh b/setup-gpu.sh index 8d85b44..72537ee 100755 --- a/setup-gpu.sh +++ b/setup-gpu.sh @@ -1,6 +1,6 @@ #!/bin/bash -GOTCH_VERSION="${GOTCH_VER:-v0.1.10}" +GOTCH_VERSION="${GOTCH_VER:-v0.2.0}" LIBTORCH_VERSION="${LIBTORCH_VER:-1.5.1}" CUDA_VERSION="${CUDA_VER:-10.1}" CU_VERSION="${CUDA_VERSION//./}"