Skip to content

Commit

Permalink
Fix docs warning
Browse files Browse the repository at this point in the history
  • Loading branch information
jonatanklosko committed Oct 7, 2024
1 parent a77617d commit f17779f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 0 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* Whisper serving to stream input using ffmpeg when given a file path ([#361](https://github.com/elixir-nx/bumblebee/pull/361))
* **(Breaking)** Changed model params to use `%Axon.ModelState{}`, matching Axon v0.7.0 ([#375](https://github.com/elixir-nx/bumblebee/pull/375))

### Removed

### Fixed

* Token classification crashing when all tokens are special
Expand Down
2 changes: 1 addition & 1 deletion lib/bumblebee/text/llama.ex
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ defmodule Bumblebee.Text.Llama do
default: nil,
doc: """
the size of the key, value, and query projection per attention head.
Defaults to `div(hidden_size, num_attention_heads)
Defaults to `div(hidden_size, num_attention_heads)`
"""
],
num_blocks: [
Expand Down
3 changes: 2 additions & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ defmodule Bumblebee.MixProject do
Bumblebee.Vision.Deit,
Bumblebee.Vision.DinoV2,
Bumblebee.Vision.ResNet,
Bumblebee.Vision.Swin,
Bumblebee.Vision.Vit
],
Preprocessors: [
Expand Down Expand Up @@ -138,7 +139,7 @@ defmodule Bumblebee.MixProject do
Bumblebee.Text.WhisperGenerationConfig
]
],
groups_for_functions: [
groups_for_docs: [
# Bumblebee
Models: &(&1[:type] == :model),
Featurizers: &(&1[:type] == :featurizer),
Expand Down

0 comments on commit f17779f

Please sign in to comment.