Skip to content

Commit c0f8d05

Browse files
stevhliuyounesbelkadaArthurZuckerqgallouedec
authored
[docs] Redesign (#31757)
* toctree * not-doctested.txt * collapse sections * feedback * update * rewrite get started sections * fixes * fix * loading models * fix * customize models * share * fix link * contribute part 1 * contribute pt 2 * fix toctree * tokenization pt 1 * Add new model (#32615) * v1 - working version * fix * fix * fix * fix * rename to correct name * fix title * fixup * rename files * fix * add copied from on tests * rename to `FalconMamba` everywhere and fix bugs * fix quantization + accelerate * fix copies * add `torch.compile` support * fix tests * fix tests and add slow tests * copies on config * merge the latest changes * fix tests * add few lines about instruct * Apply suggestions from code review Co-authored-by: Arthur <[email protected]> * fix * fix tests --------- Co-authored-by: Arthur <[email protected]> * "to be not" -> "not to be" (#32636) * "to be not" -> "not to be" * Update sam.md * Update trainer.py * Update modeling_utils.py * Update test_modeling_utils.py * Update test_modeling_utils.py * fix hfoption tag * tokenization pt. 2 * image processor * fix toctree * backbones * feature extractor * fix file name * processor * update not-doctested * update * make style * fix toctree * revision * make fixup * fix toctree * fix * make style * fix hfoption tag * pipeline * pipeline gradio * pipeline web server * add pipeline * fix toctree * not-doctested * prompting * llm optims * fix toctree * fixes * cache * text generation * fix * chat pipeline * chat stuff * xla * torch.compile * cpu inference * toctree * gpu inference * agents and tools * gguf/tiktoken * finetune * toctree * trainer * trainer pt 2 * optims * optimizers * accelerate * parallelism * fsdp * update * distributed cpu * hardware training * gpu training * gpu training 2 * peft * distrib debug * deepspeed 1 * deepspeed 2 * chat toctree * quant pt 1 * quant pt 2 * fix toctree * fix * fix * quant pt 3 * quant pt 4 * serialization * torchscript * scripts * tpu * review * model addition timeline * modular * more reviews * reviews * fix toctree * reviews reviews * continue reviews * more reviews * modular transformers * more review * zamba2 * fix * all frameworks * pytorch * supported model frameworks * flashattention * rm check_table * not-doctested.txt * rm check_support_list.py * feedback * updates/feedback * review * feedback * fix * update * feedback * updates * update --------- Co-authored-by: Younes Belkada <[email protected]> Co-authored-by: Arthur <[email protected]> Co-authored-by: Quentin Gallouédec <[email protected]>
1 parent 6aa9888 commit c0f8d05

File tree

423 files changed

+10520
-14164
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

423 files changed

+10520
-14164
lines changed

.circleci/config.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -178,8 +178,7 @@ jobs:
178178
- store_artifacts:
179179
path: ~/transformers/installed.txt
180180
- run: python utils/check_copies.py
181-
- run: python utils/check_modular_conversion.py --num_workers 4
182-
- run: python utils/check_table.py
181+
- run: python utils/check_modular_conversion.py
183182
- run: python utils/check_dummies.py
184183
- run: python utils/check_repo.py
185184
- run: python utils/check_inits.py
@@ -189,7 +188,6 @@ jobs:
189188
- run: make deps_table_check_updated
190189
- run: python utils/update_metadata.py --check-only
191190
- run: python utils/check_docstrings.py
192-
- run: python utils/check_support_list.py
193191

194192
workflows:
195193
version: 2

Makefile

-3
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ autogenerate_code: deps_table_update
3737
repo-consistency:
3838
python utils/check_copies.py
3939
python utils/check_modular_conversion.py
40-
python utils/check_table.py
4140
python utils/check_dummies.py
4241
python utils/check_repo.py
4342
python utils/check_inits.py
@@ -46,7 +45,6 @@ repo-consistency:
4645
python utils/check_doctest_list.py
4746
python utils/update_metadata.py --check-only
4847
python utils/check_docstrings.py
49-
python utils/check_support_list.py
5048

5149
# this target runs checks on all files
5250

@@ -82,7 +80,6 @@ fixup: modified_only_fixup extra_style_checks autogenerate_code repo-consistency
8280
fix-copies:
8381
python utils/check_copies.py --fix_and_overwrite
8482
python utils/check_modular_conversion.py --fix_and_overwrite
85-
python utils/check_table.py --fix_and_overwrite
8683
python utils/check_dummies.py --fix_and_overwrite
8784
python utils/check_doctest_list.py --fix_and_overwrite
8885
python utils/check_docstrings.py --fix_and_overwrite

0 commit comments

Comments
 (0)