Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/flowertune-llm-general-nlp/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dependencies = [
"bitsandbytes==0.49.1",
"scipy==1.13.0",
"peft==0.6.2",
"transformers==4.53.0",
"transformers==5.0.0rc3",
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Keep Transformers v4 until TRL/PEFT are upgraded

This change upgrades only transformers to 5.0.0rc3 while the same file still pins trl==0.8.1 and peft==0.6.2; this app imports SFTTrainer (flowertune_generalnlp/client_app.py:12) and PEFT k-bit helpers (flowertune_generalnlp/models.py:7-8), so a v5 API removal in the RC can make the training app fail during import/startup and break the baseline workflow. Please keep Transformers on the existing v4 line or upgrade the TRL/PEFT pins together to a known v5-compatible set.

Useful? React with 👍 / 👎.

"sentencepiece==0.2.1",
"omegaconf==2.3.0",
"hf_transfer==0.1.8",
Expand Down
Loading