File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -30,8 +30,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
30
30
* Whisper serving to stream input using ffmpeg when given a file path ([ #361 ] ( https://github.com/elixir-nx/bumblebee/pull/361 ) )
31
31
* ** (Breaking)** Changed model params to use ` %Axon.ModelState{} ` , matching Axon v0.7.0 ([ #375 ] ( https://github.com/elixir-nx/bumblebee/pull/375 ) )
32
32
33
- ### Removed
34
-
35
33
### Fixed
36
34
37
35
* Token classification crashing when all tokens are special
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ defmodule Bumblebee.Text.Llama do
30
30
default: nil ,
31
31
doc: """
32
32
the size of the key, value, and query projection per attention head.
33
- Defaults to `div(hidden_size, num_attention_heads)
33
+ Defaults to `div(hidden_size, num_attention_heads)`
34
34
"""
35
35
] ,
36
36
num_blocks: [
Original file line number Diff line number Diff line change @@ -108,6 +108,7 @@ defmodule Bumblebee.MixProject do
108
108
Bumblebee.Vision.Deit ,
109
109
Bumblebee.Vision.DinoV2 ,
110
110
Bumblebee.Vision.ResNet ,
111
+ Bumblebee.Vision.Swin ,
111
112
Bumblebee.Vision.Vit
112
113
] ,
113
114
Preprocessors: [
@@ -138,7 +139,7 @@ defmodule Bumblebee.MixProject do
138
139
Bumblebee.Text.WhisperGenerationConfig
139
140
]
140
141
] ,
141
- groups_for_functions : [
142
+ groups_for_docs : [
142
143
# Bumblebee
143
144
Models: & ( & 1 [ :type ] == :model ) ,
144
145
Featurizers: & ( & 1 [ :type ] == :featurizer ) ,
You can’t perform that action at this time.
0 commit comments