Skip to content

Commit

Permalink
v0.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
cocoa-xu committed Mar 19, 2023
1 parent 9d2c729 commit 4b03eab
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 5 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## v0.1.6 (2022-03-19)
[Browse the Repository](https://github.com/cocoa-xu/tflite_elixir/tree/v0.1.6) | [Released Assets](https://github.com/cocoa-xu/tflite_elixir/releases/tag/v0.1.6)

### Fixed
- [edgetpu] Improved edgetpu context handling, and bumped libedgetpu_runtime_version to v0.1.5. Fixed [#30](https://github.com/cocoa-xu/tflite_elixir/issues/30)

### Added
- [example] artistic-style-transfer example (#27) @mnishiguchi

## v0.1.5 (2022-03-18)
[Browse the Repository](https://github.com/cocoa-xu/tflite_elixir/tree/v0.1.5) | [Released Assets](https://github.com/cocoa-xu/tflite_elixir/releases/tag/v0.1.5)

Expand Down
2 changes: 1 addition & 1 deletion examples/artistic_style_transfer.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

```elixir
Mix.install([
{:tflite_elixir, "0.1.5"},
{:tflite_elixir, "0.1.6"},
{:evision, "0.1.29"},
{:kino, "~> 0.8.0"},
{:req, "~> 0.3.0"}
Expand Down
2 changes: 1 addition & 1 deletion examples/super_resolution.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

```elixir
Mix.install([
{:tflite_elixir, "0.1.5"},
{:tflite_elixir, "0.1.6"},
{:evision, "0.1.29"},
{:kino, "~> 0.8.0"},
{:req, "~> 0.3.0"}
Expand Down
2 changes: 1 addition & 1 deletion examples/tflite_benchmark_densenet.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

```elixir
Mix.install([
{:tflite_elixir, "~> 0.1.5"},
{:tflite_elixir, "~> 0.1.6"},
{:req, "~> 0.3.0"}
])
```
Expand Down
2 changes: 1 addition & 1 deletion examples/tpu.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

```elixir
Mix.install([
{:tflite_elixir, "~> 0.1.5"},
{:tflite_elixir, "~> 0.1.6"},
{:nx, "~> 0.5.0"},
{:req, "~> 0.3.0"},
{:stb_image, "~> 0.6.0"}
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defmodule TfliteElixir.MixProject do
require Logger

@app :tflite_elixir
@version "0.1.5"
@version "0.1.6"
@tflite_version "2.11.0"
@prefer_precompiled "YES"
@github_url "https://github.com/cocoa-xu/tflite_elixir"
Expand Down

0 comments on commit 4b03eab

Please sign in to comment.