Skip to content

Commit f17779f

Browse files
committed
Fix docs warning
1 parent a77617d commit f17779f

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

CHANGELOG.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3030
* Whisper serving to stream input using ffmpeg when given a file path ([#361](https://github.com/elixir-nx/bumblebee/pull/361))
3131
* **(Breaking)** Changed model params to use `%Axon.ModelState{}`, matching Axon v0.7.0 ([#375](https://github.com/elixir-nx/bumblebee/pull/375))
3232

33-
### Removed
34-
3533
### Fixed
3634

3735
* Token classification crashing when all tokens are special

lib/bumblebee/text/llama.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ defmodule Bumblebee.Text.Llama do
3030
default: nil,
3131
doc: """
3232
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)`
3434
"""
3535
],
3636
num_blocks: [

mix.exs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ defmodule Bumblebee.MixProject do
108108
Bumblebee.Vision.Deit,
109109
Bumblebee.Vision.DinoV2,
110110
Bumblebee.Vision.ResNet,
111+
Bumblebee.Vision.Swin,
111112
Bumblebee.Vision.Vit
112113
],
113114
Preprocessors: [
@@ -138,7 +139,7 @@ defmodule Bumblebee.MixProject do
138139
Bumblebee.Text.WhisperGenerationConfig
139140
]
140141
],
141-
groups_for_functions: [
142+
groups_for_docs: [
142143
# Bumblebee
143144
Models: &(&1[:type] == :model),
144145
Featurizers: &(&1[:type] == :featurizer),

0 commit comments

Comments
 (0)