ndrean

ndrean

I tried the 3 “standard” Image-To-Text models for image captioninng: “facebook/deit-base-distilled-patch16-224” and “microsoft/resnet-50” and "“google/vit-base-patch16-224”.

Results are poor, at least as low as the score :slight_smile:

This car is predicted as:

%{predictions: [%{label: "speedboat", score: 0.136890709400177}]}

Among the 280 proposed I2T models by Hugging Face, does anyone has a recommendation?

Showing Posts 1 to 10

jonatanklosko

jonatanklosko

Creator of Livebook

Are you looking for “Image classification” (pick one of predefined labels) or “Image-to-text” (describe image with text)? Also, how are you making the prediction? You can use Livebook Neural network smart cell to explore the various models, here’s one example per each of the tasks:

ndrean

ndrean OP

I did not try Neural Network, just Image classification with Bumblebee from a Phoenix app.

But your Livebook prediction seems much better. I may need to import this into the Phoenix app. What is your set up? The following fails:

Mix.install(
  [
    {:nx, "~> 0.6.2"},
    {:exla, "~> 0.6.1"},
    {:axon, "~> 0.6.0"},
    {:kino, "~> 0.11.0"},
    {:kino_bumblebee, "~> 0.4.0"}
  ],
  config: [nx: [default_backend: EXLA.Backend]]
)

Nx.global_default_backend(EXLA.Backend)
jonatanklosko

jonatanklosko

Creator of Livebook

For kino_bumblebee 0.4.0 (released today) you want to use Livebook main (we will have a new release next week).

jonatanklosko

jonatanklosko

Creator of Livebook

How did you arrive at that score? Using the example from the docs:

# Image classification

```elixir
Mix.install([
  {:bumblebee, "~> 0.4.0"},
  {:exla, ">= 0.0.0"},
  {:kino, "~> 0.11.0"}
])

Nx.global_default_backend(EXLA.Backend)
```

## 🐈‍⬛

```elixir
{:ok, resnet} = Bumblebee.load_model({:hf, "microsoft/resnet-50"})
{:ok, featurizer} = Bumblebee.load_featurizer({:hf, "microsoft/resnet-50"})
:ok
```

<!-- livebook:{"output":true} -->

```
:ok
```

```elixir
serving = Bumblebee.Vision.image_classification(resnet, featurizer)

image_input = Kino.Input.image("Image", size: {224, 224})
```

```elixir
image = Kino.Input.read(image_input)

# Build a tensor from the raw pixel data
image =
  image.file_ref
  |> Kino.Input.file_path()
  |> File.read!()
  |> Nx.from_binary(:u8)
  |> Nx.reshape({image.height, image.width, 3})

Nx.Serving.run(serving, image)
```

<!-- livebook:{"output":true} -->

```
%{
  predictions: [
    %{
      label: "beach wagon, station wagon, wagon, estate car, beach waggon, station waggon, waggon",
      score: 0.9962531328201294
    },
    %{label: "convertible", score: 0.0015192109858617187},
    %{label: "grille, radiator grille", score: 3.9919803384691477e-4},
    %{label: "passenger car, coach, carriage", score: 2.2876601724419743e-4},
    %{label: "car wheel", score: 2.235681313322857e-4}
  ]
}
```
ndrean

ndrean OP

With the Livebook, yes, but I used this in Phoenix:

{:ok, resnet} = Bumblebee.load_model({:hf, model})
{:ok, featurizer} = Bumblebee.load_featurizer({:hf, model})

serving = 
 Bumblebee.Vision.image_classification(resnet, featurizer,
   defn_options: [compiler: EXLA],
   top_k: 1,
   compile: [batch_size: 10]
 )
{:ok, image} = Vix.Vips.Image.new_from_file("/.../my-image.webp")
{:ok, %Vix.Tensor{data: data, shape: shape, names: names, type: type}} =
      Vix.Vips.Image.write_to_tensor(image)

t_img = Nx.from_binary(data, type) |> Nx.reshape(shape, names: names)

%{predictions: predictions} = Nx.Serving.run(serving, t_img)
predictions
ndrean

ndrean OP

This doesn’t compile neither, or I don’t know how: {:kino_bumblebee, git: "https://github.com/livebook-dev/kino_bumblebee", branch: "main", override: true}

jonatanklosko

jonatanklosko

Creator of Livebook

I think this is a bug in Vix, the binary is laid out as {height, width, channels}, but Vix returns {width, height, channels}.

This doesn’t compile neither, or I don’t know how

You can use kino_bumblebee 0.4.0 and livebook main. What error are you getting?

jonatanklosko

jonatanklosko

Creator of Livebook
ndrean

ndrean OP

It is in fact in Nx.shape that I did not pay attention… Thanks for finding this one.

Mix.install(
  [
    {:nx, "~> 0.6.2"},
    {:exla, "~> 0.6.1"},
    {:axon, "~> 0.6.0"},
    {:kino, "~> 0.11.0"},
    {:kino_bumblebee, git: "https://github.com/livebook-dev/kino_bumblebee", branch: "main"}
  ],
  config: [nx: [default_backend: EXLA.Backend]]
)

Nx.global_default_backend(EXLA.Backend)

gives me:

Unknown output format: %{chunk: false, text: "{\e[34mEXLA.Backend\e[0m, []}", type: :terminal_text}. If you're using Kino,
you may want to update Kino and Livebook to the latest version.
jonatanklosko

jonatanklosko

Creator of Livebook

Yeah, you need to either run Livebook main (until the release next week) or use kino ~> 0.10.0 and kino_bumblebee ~> 0.3.0, sorry for the inconvenience : )

Where Next? Top

Trending in Questions Top

Blokh
Hey guys, I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly Do you guys have any suggestions what is the best prac...
New
kszambelanczyk
Hello! Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app. I creat...
New
Onor.io
I have what I’ve heard referred to as a “lookup table” in my database. This is a way of assigning codes to common values. One common lo...
New
Trolleger
What approach to take when sending live updates to “random” users Hi! I have a question, I have a little chat app, and when I create a DM...
New
matt-savvy
Anyone here using Honeybadger? My Honeybadger account is being overwhelmed with noise from some bots. Seeing a lot of Bandit.HTTPError...
New
RemyXRenard
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
samoloth
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New

Other Trending Topics Top

mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
garrison
Hobbes is a low-level distributed database for the Elixir programming language. Hobbes provides a simple, safe, and scalable storage lay...
New
mcass19
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Damirados
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge &amp; Solve. They are GUI (Emerge) and State management (S...
New
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
wintermeyer
There are three potential reasons for members of this forum to have a look at https://vutuv.de You are tired or annoyed of LinkedIn. Yo...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews