ConnorRigby / bumblebee

Pre-trained and transformer Neural Network models in Axon (+ 🤗 Models integration)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Bumblebee

Bumblebee provides pre-trained and transformer Neural Network models on top of Axon. It includes integration with 🤗 Models, allowing anyone to download and perform Machine Learning tasks with few lines of code.

To see all supported architectures, check out our documentation sidebar.

Numbat and Bumblebees

Usage

First add Bumblebee and EXLA as dependencies. EXLA is an optional dependency but an important one as it allows you to compile models just-in time and run them on CPU/GPU:

def deps do
  [
    {:bumblebee, "~> 0.1.2"},
    {:exla, ">= 0.0.0"}
  ]
end

Then configure Nx to use EXLA backend by default in your config/config.exs file:

import Config
config :nx, default_backend: EXLA.Backend

To use GPUs, you must set the XLA_TARGET environment variable accordingly.

In notebooks and scripts, use the following Mix.install/2 call to both install and configure dependencies:

Mix.install(
  [
    {:bumblebee, "~> 0.1.2"},
    {:exla, ">= 0.0.0"}
  ],
  config: [nx: [default_backend: EXLA.Backend]]
)

Examples

To explore Bumblebee:

  • See examples/phoenix for single-file examples of running Neural Networks inside your Phoenix (+ LiveView) apps

  • Use Bumblebee's integration with Livebook v0.8 (or later) to automatically generate "Neural Networks tasks" from the "+ Smart" cell menu (thanks to :kino_bumblebee)

  • For a more hands on approach, read our example notebooks

License

Copyright (c) 2022 Dashbit

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

About

Pre-trained and transformer Neural Network models in Axon (+ 🤗 Models integration)

License:Apache License 2.0


Languages

Language:Elixir 100.0%