From 7994fb415c47cf9f7763614ac5bcfc8aecdf6074 Mon Sep 17 00:00:00 2001 From: Quarto GHA Workflow Runner Date: Thu, 24 Jul 2025 20:16:24 +0000 Subject: [PATCH] Built site for gh-pages --- .nojekyll | 2 +- docs/faq.html | 4 + search.json | 2 +- sitemap.xml | 382 +++++++++++++++++++++++++------------------------- 4 files changed, 197 insertions(+), 193 deletions(-) diff --git a/.nojekyll b/.nojekyll index f4c719da2..5fe1187e5 100644 --- a/.nojekyll +++ b/.nojekyll @@ -1 +1 @@ -6bb3f4e1 \ No newline at end of file +a3ae9d01 \ No newline at end of file diff --git a/docs/faq.html b/docs/faq.html index ad3f18d2d..f8bc786c4 100644 --- a/docs/faq.html +++ b/docs/faq.html @@ -661,6 +661,10 @@ gtag('config', 'G-9KYCVJBNMQ', { 'anonymize_ip': true}); dynamic: false mode: max-autotune-no-cudagraphs +

**Q: ValueError("Backward pass should have cleared tracker of all tensors")

+
+

A: This may happen due to edge cases in using the modern OffloadActivations context manager for CUDA streams. If you encounter this error, you may have success using the naive implementation with offload_activations: legacy in your YAML.

+
diff --git a/search.json b/search.json index 00514e7e4..34b01f28c 100644 --- a/search.json +++ b/search.json @@ -2296,7 +2296,7 @@ "href": "docs/faq.html", "title": "FAQ", "section": "", - "text": "General\nQ: The trainer stopped and hasn’t progressed in several minutes.\n\nA: Usually an issue with the GPUs communicating with each other. See the NCCL doc\n\nQ: exitcode: -9\n\nA: This usually happens when you run out of system RAM.\n\nQ: exitcode: -7 while using deepspeed\n\nA: Try upgrading deepspeed w: pip install -U deepspeed\n\nQ: AttributeError: ‘DummyOptim’ object has no attribute ‘step’\nQ: ModuleNotFoundError: No module named ‘mpi4py’ using single GPU with deepspeed\n\nA: You may be using deepspeed with single gpu. Please remove the deepspeed: section in the yaml file or --deepspeed CLI flag.\n\nQ: The codes is stuck on saving preprocessed datasets.\n\nA: This is usually an issue with the GPU. This can be resolved through setting the os environment variable CUDA_VISIBLE_DEVICES=0. If you are on runpod, this is usually a pod issue. Starting a new pod should take care of it.\n\nQ: Received mismatch error on merge adapters / loading adapters between torch.Size of checkpoint and model.\n\nA: This is likely due to vocab size mismatch. By default, Axolotl expands the model’s embeddings if the tokenizer has more tokens than the model. Please use the axolotl merge-lora command to merge the adapters instead of using your own scripts.\n\n\nOn the other hand, if the model has more tokens than the tokenizer, Axolotl does not shrink the model’s embeddings unless shrink_embeddings: true is set in the config.\n\nQ: How to call Axolotl via custom python scripts?\n\nA: Since Axolotl is just Python, please see src/axolotl/cli/main.py on how each command is called.\n\nQ: How to know the value to use for fsdp_transformer_layer_cls_to_wrap?\n\nA: This is the class name of the transformer layer to wrap with FSDP. For example, for LlamaForCausalLM, the value is LlamaDecoderLayer. To find this for a specific model, check the model’s PreTrainedModel definition and look for _no_split_modules variable in the modeling_<model_name>.py file within transformers library.\n\nQ: ValueError: Asking to pad but the tokenizer does not have a padding token. Please select a token to use as pad_token\n\nA: This is because the tokenizer does not have a padding token. Please add a padding token to the tokenizer via:\n\n\nspecial_tokens:\n # str. If you're not sure, set to same as `eos_token`.\n pad_token: \"...\"\n\nQ: IterableDataset error or KeyError: 'input_ids' when using preprocess CLI\n\nA: This is because you may be using preprocess CLI with pretraining_dataset: or skip_prepare_dataset: true respectively. Please use axolotl train CLI directly instead as these datasets are prepared on demand.\n\nQ: vLLM is not working with Axolotl\n\nA: We currently recommend torch 2.6.0 for use with vllm. Please ensure you use the right version. For Docker, please use the main-py3.11-cu124-2.6.0 tag.\n\nQ: FA2 2.8.0 undefined symbol runtime error on CUDA 12.4\n\nA: There seems to be a wheel issue with FA2 2.8.0 on CUDA 12.4. Try CUDA 12.6 instead or downgrade to FA2 2.7.4. Please refer to the upstream issue: https://github.com/Dao-AILab/flash-attention/issues/1717.\n\n\n\nChat templates\nQ: jinja2.exceptions.UndefinedError: 'dict object' has no attribute 'content' / 'role' / ____\n\nA: This means that the property mapping for the stated attribute does not exist when building chat_template prompt. For example, if no attribute 'content', please check you have added the correct mapping for content under message_property_mappings.\n\nQ: Empty template generated for turn ___\n\nA: The content is empty for that turn.\n\nQ: Could not find content start/end boundary for turn __\n\nA: The specific turn’s start/end could not be detected. Please ensure you have set the eos_token following your chat_template. Otherwise, this could be a chat_template which doesn’t use proper boundaries for each turn (like system). On the rare occurrence, make sure your content is not [[dummy_message]]. Please let us know about this.\n\nQ: Content end boundary is before start boundary for turn ___\n\nA: This is an edge case which should not occur. Please create an Issue if this happens.\n\nQ: Content end boundary is the same as start boundary for turn ___. This is likely an empty turn.\n\nA: This is likely an empty turn.\n\nQ: The EOS token is incorrectly being masked or not being masked / EOS token __ not found in chat template.\n\nA: There can be two reasons:\n\n\n\nThis is because of the mismatch between tokenizer.eos_token and EOS token in template. Please make sure to set eos_token: under special_tokens: to the same EOS token as in template.\n\n\n\n\nThe EOS token is not in the template. Please check if your template is correct. As an example, phi_35 template does not use its dedicated EOS token <|endoftext|> at the end.\n\n\nQ: “chat_template choice is tokenizer_default but tokenizer’s chat_template is null. Please add a chat_template in tokenizer config”\n\nA: This is because the tokenizer does not have a chat template. Please add a chat template in the tokenizer config. See chat_template for more details.\n\nQ: The EOT token(s) are incorrectly being masked or not being masked / EOT token __ not found in chat template.\n\nA: There can be two reasons:\n\n\n\nThe EOT token is different from the EOS token and was not specified under eot_tokens:. Please set eot_tokens: to the same EOT token(s) as in template.\n\n\n\n\nThere is more than one EOT token per turn in the template. Please raise an issue with examples as we recognize this as an edge case.\n\n\nQ: EOT token encoding failed. Please check if the token is valid and can be encoded.\n\nA: There could be some issue with the tokenizer or unicode encoding. Please raise an issue with examples with the EOT token & tokenizer causing the issue.\n\nQ: EOT token __ is encoded as multiple tokens.\n\nA: This is because the EOT token is encoded as multiple tokens which can cause unexpected behavior. Please add it under tokens: or (recommended) override unused added_tokens via added_tokens_overrides:.\n\nQ: Conflict between train_on_eos and train_on_eot. eos_token is in eot_tokens and train_on_eos != train_on_eot\n\nA: This is because the EOS token is in the eot_tokens: while mismatch between train_on_eos: and train_on_eot:. This will cause one to override the other. Please ensure that train_on_eos: and train_on_eot: are the same or remove the EOS token from eot_tokens:.\n\nQ: If eot_tokens: is not provided, what happens?\n\nA: If eot_tokens: is not provided, the default behavior is the same as before. EOS tokens used to delimit turns are masked/unmasked depending on whether the turn is trainable.\n\n\nInternally, eot_tokens: tokenizer.eos_token and train_on_eot: train_on_eos (which defaults to turn). This transition helps clarify the naming and behavior of EOT/EOS tokens.\n\nQ: Data processing error: CAS service error\n\nA: Try disabling XET with export HF_HUB_DISABLE_XET=1\n\nQ: torch._inductor.exc.LoweringException: NoValidChoicesError: No choices to select, please consider adding ATEN into max_autotune_gemm_backends config (defined in torch/_inductor/config.py) to allow at least one choice.\n\nA: Depending on the version of torch, you may need to include this in your YAML:\n\n\nflex_attn_compile_kwargs:\n dynamic: false\n mode: max-autotune-no-cudagraphs", + "text": "General\nQ: The trainer stopped and hasn’t progressed in several minutes.\n\nA: Usually an issue with the GPUs communicating with each other. See the NCCL doc\n\nQ: exitcode: -9\n\nA: This usually happens when you run out of system RAM.\n\nQ: exitcode: -7 while using deepspeed\n\nA: Try upgrading deepspeed w: pip install -U deepspeed\n\nQ: AttributeError: ‘DummyOptim’ object has no attribute ‘step’\nQ: ModuleNotFoundError: No module named ‘mpi4py’ using single GPU with deepspeed\n\nA: You may be using deepspeed with single gpu. Please remove the deepspeed: section in the yaml file or --deepspeed CLI flag.\n\nQ: The codes is stuck on saving preprocessed datasets.\n\nA: This is usually an issue with the GPU. This can be resolved through setting the os environment variable CUDA_VISIBLE_DEVICES=0. If you are on runpod, this is usually a pod issue. Starting a new pod should take care of it.\n\nQ: Received mismatch error on merge adapters / loading adapters between torch.Size of checkpoint and model.\n\nA: This is likely due to vocab size mismatch. By default, Axolotl expands the model’s embeddings if the tokenizer has more tokens than the model. Please use the axolotl merge-lora command to merge the adapters instead of using your own scripts.\n\n\nOn the other hand, if the model has more tokens than the tokenizer, Axolotl does not shrink the model’s embeddings unless shrink_embeddings: true is set in the config.\n\nQ: How to call Axolotl via custom python scripts?\n\nA: Since Axolotl is just Python, please see src/axolotl/cli/main.py on how each command is called.\n\nQ: How to know the value to use for fsdp_transformer_layer_cls_to_wrap?\n\nA: This is the class name of the transformer layer to wrap with FSDP. For example, for LlamaForCausalLM, the value is LlamaDecoderLayer. To find this for a specific model, check the model’s PreTrainedModel definition and look for _no_split_modules variable in the modeling_<model_name>.py file within transformers library.\n\nQ: ValueError: Asking to pad but the tokenizer does not have a padding token. Please select a token to use as pad_token\n\nA: This is because the tokenizer does not have a padding token. Please add a padding token to the tokenizer via:\n\n\nspecial_tokens:\n # str. If you're not sure, set to same as `eos_token`.\n pad_token: \"...\"\n\nQ: IterableDataset error or KeyError: 'input_ids' when using preprocess CLI\n\nA: This is because you may be using preprocess CLI with pretraining_dataset: or skip_prepare_dataset: true respectively. Please use axolotl train CLI directly instead as these datasets are prepared on demand.\n\nQ: vLLM is not working with Axolotl\n\nA: We currently recommend torch 2.6.0 for use with vllm. Please ensure you use the right version. For Docker, please use the main-py3.11-cu124-2.6.0 tag.\n\nQ: FA2 2.8.0 undefined symbol runtime error on CUDA 12.4\n\nA: There seems to be a wheel issue with FA2 2.8.0 on CUDA 12.4. Try CUDA 12.6 instead or downgrade to FA2 2.7.4. Please refer to the upstream issue: https://github.com/Dao-AILab/flash-attention/issues/1717.\n\n\n\nChat templates\nQ: jinja2.exceptions.UndefinedError: 'dict object' has no attribute 'content' / 'role' / ____\n\nA: This means that the property mapping for the stated attribute does not exist when building chat_template prompt. For example, if no attribute 'content', please check you have added the correct mapping for content under message_property_mappings.\n\nQ: Empty template generated for turn ___\n\nA: The content is empty for that turn.\n\nQ: Could not find content start/end boundary for turn __\n\nA: The specific turn’s start/end could not be detected. Please ensure you have set the eos_token following your chat_template. Otherwise, this could be a chat_template which doesn’t use proper boundaries for each turn (like system). On the rare occurrence, make sure your content is not [[dummy_message]]. Please let us know about this.\n\nQ: Content end boundary is before start boundary for turn ___\n\nA: This is an edge case which should not occur. Please create an Issue if this happens.\n\nQ: Content end boundary is the same as start boundary for turn ___. This is likely an empty turn.\n\nA: This is likely an empty turn.\n\nQ: The EOS token is incorrectly being masked or not being masked / EOS token __ not found in chat template.\n\nA: There can be two reasons:\n\n\n\nThis is because of the mismatch between tokenizer.eos_token and EOS token in template. Please make sure to set eos_token: under special_tokens: to the same EOS token as in template.\n\n\n\n\nThe EOS token is not in the template. Please check if your template is correct. As an example, phi_35 template does not use its dedicated EOS token <|endoftext|> at the end.\n\n\nQ: “chat_template choice is tokenizer_default but tokenizer’s chat_template is null. Please add a chat_template in tokenizer config”\n\nA: This is because the tokenizer does not have a chat template. Please add a chat template in the tokenizer config. See chat_template for more details.\n\nQ: The EOT token(s) are incorrectly being masked or not being masked / EOT token __ not found in chat template.\n\nA: There can be two reasons:\n\n\n\nThe EOT token is different from the EOS token and was not specified under eot_tokens:. Please set eot_tokens: to the same EOT token(s) as in template.\n\n\n\n\nThere is more than one EOT token per turn in the template. Please raise an issue with examples as we recognize this as an edge case.\n\n\nQ: EOT token encoding failed. Please check if the token is valid and can be encoded.\n\nA: There could be some issue with the tokenizer or unicode encoding. Please raise an issue with examples with the EOT token & tokenizer causing the issue.\n\nQ: EOT token __ is encoded as multiple tokens.\n\nA: This is because the EOT token is encoded as multiple tokens which can cause unexpected behavior. Please add it under tokens: or (recommended) override unused added_tokens via added_tokens_overrides:.\n\nQ: Conflict between train_on_eos and train_on_eot. eos_token is in eot_tokens and train_on_eos != train_on_eot\n\nA: This is because the EOS token is in the eot_tokens: while mismatch between train_on_eos: and train_on_eot:. This will cause one to override the other. Please ensure that train_on_eos: and train_on_eot: are the same or remove the EOS token from eot_tokens:.\n\nQ: If eot_tokens: is not provided, what happens?\n\nA: If eot_tokens: is not provided, the default behavior is the same as before. EOS tokens used to delimit turns are masked/unmasked depending on whether the turn is trainable.\n\n\nInternally, eot_tokens: tokenizer.eos_token and train_on_eot: train_on_eos (which defaults to turn). This transition helps clarify the naming and behavior of EOT/EOS tokens.\n\nQ: Data processing error: CAS service error\n\nA: Try disabling XET with export HF_HUB_DISABLE_XET=1\n\nQ: torch._inductor.exc.LoweringException: NoValidChoicesError: No choices to select, please consider adding ATEN into max_autotune_gemm_backends config (defined in torch/_inductor/config.py) to allow at least one choice.\n\nA: Depending on the version of torch, you may need to include this in your YAML:\n\n\nflex_attn_compile_kwargs:\n dynamic: false\n mode: max-autotune-no-cudagraphs\n\n**Q: ValueError(\"Backward pass should have cleared tracker of all tensors\")\n\nA: This may happen due to edge cases in using the modern OffloadActivations context manager for CUDA streams. If you encounter this error, you may have success using the naive implementation with offload_activations: legacy in your YAML.", "crumbs": [ "Troubleshooting", "FAQ" diff --git a/sitemap.xml b/sitemap.xml index ae06c503c..283d70d5c 100644 --- a/sitemap.xml +++ b/sitemap.xml @@ -2,766 +2,766 @@ https://docs.axolotl.ai/TODO.html - 2025-07-24T08:11:54.887Z + 2025-07-24T20:10:46.971Z https://docs.axolotl.ai/index.html - 2025-07-24T08:11:54.908Z + 2025-07-24T20:10:46.992Z https://docs.axolotl.ai/docs/debugging.html - 2025-07-24T08:11:54.889Z + 2025-07-24T20:10:46.973Z https://docs.axolotl.ai/docs/amd_hpc.html - 2025-07-24T08:11:54.888Z + 2025-07-24T20:10:46.973Z https://docs.axolotl.ai/docs/api/utils.callbacks.mlflow_.html - 2025-07-24T08:15:17.466Z + 2025-07-24T20:14:22.664Z https://docs.axolotl.ai/docs/api/monkeypatch.llama_expand_mask.html - 2025-07-24T08:15:16.896Z + 2025-07-24T20:14:22.096Z https://docs.axolotl.ai/docs/api/loaders.patch_manager.html - 2025-07-24T08:15:16.498Z + 2025-07-24T20:14:21.699Z https://docs.axolotl.ai/docs/api/core.chat.format.llama3x.html - 2025-07-24T08:15:16.188Z + 2025-07-24T20:14:21.391Z https://docs.axolotl.ai/docs/api/cli.train.html - 2025-07-24T08:15:16.242Z + 2025-07-24T20:14:21.445Z https://docs.axolotl.ai/docs/api/utils.callbacks.perplexity.html - 2025-07-24T08:15:17.457Z + 2025-07-24T20:14:22.655Z https://docs.axolotl.ai/docs/api/core.chat.messages.html - 2025-07-24T08:15:16.185Z + 2025-07-24T20:14:21.388Z https://docs.axolotl.ai/docs/api/utils.callbacks.lisa.html - 2025-07-24T08:15:17.463Z + 2025-07-24T20:14:22.660Z https://docs.axolotl.ai/docs/api/cli.merge_sharded_fsdp_weights.html - 2025-07-24T08:15:16.330Z + 2025-07-24T20:14:21.531Z https://docs.axolotl.ai/docs/api/cli.sweeps.html - 2025-07-24T08:15:16.345Z + 2025-07-24T20:14:21.545Z https://docs.axolotl.ai/docs/api/utils.chat_templates.html - 2025-07-24T08:15:16.993Z + 2025-07-24T20:14:22.193Z https://docs.axolotl.ai/docs/api/core.chat.format.shared.html - 2025-07-24T08:15:16.189Z + 2025-07-24T20:14:21.392Z https://docs.axolotl.ai/docs/api/core.trainers.mixins.optimizer.html - 2025-07-24T08:15:16.505Z + 2025-07-24T20:14:21.706Z https://docs.axolotl.ai/docs/api/utils.collators.mamba.html - 2025-07-24T08:15:17.406Z + 2025-07-24T20:14:22.603Z https://docs.axolotl.ai/docs/api/logging_config.html - 2025-07-24T08:15:16.133Z + 2025-07-24T20:14:21.337Z https://docs.axolotl.ai/docs/api/utils.collators.mm_chat.html - 2025-07-24T08:15:17.410Z + 2025-07-24T20:14:22.608Z https://docs.axolotl.ai/docs/api/prompt_strategies.completion.html - 2025-07-24T08:15:16.628Z + 2025-07-24T20:14:21.828Z https://docs.axolotl.ai/docs/api/kernels.utils.html - 2025-07-24T08:15:16.844Z + 2025-07-24T20:14:22.043Z https://docs.axolotl.ai/docs/api/prompt_strategies.dpo.chat_template.html - 2025-07-24T08:15:16.662Z + 2025-07-24T20:14:21.861Z https://docs.axolotl.ai/docs/api/kernels.swiglu.html - 2025-07-24T08:15:16.835Z + 2025-07-24T20:14:22.034Z https://docs.axolotl.ai/docs/api/common.const.html - 2025-07-24T08:15:17.366Z + 2025-07-24T20:14:22.563Z https://docs.axolotl.ai/docs/api/cli.cloud.base.html - 2025-07-24T08:15:16.387Z + 2025-07-24T20:14:21.587Z https://docs.axolotl.ai/docs/api/utils.callbacks.comet_.html - 2025-07-24T08:15:17.470Z + 2025-07-24T20:14:22.667Z https://docs.axolotl.ai/docs/api/monkeypatch.gradient_checkpointing.offload_cpu.html - 2025-07-24T08:15:16.959Z + 2025-07-24T20:14:22.159Z https://docs.axolotl.ai/docs/api/common.architectures.html - 2025-07-24T08:15:17.364Z + 2025-07-24T20:14:22.562Z https://docs.axolotl.ai/docs/api/prompt_strategies.pygmalion.html - 2025-07-24T08:15:16.656Z + 2025-07-24T20:14:21.856Z https://docs.axolotl.ai/docs/api/utils.schemas.peft.html - 2025-07-24T08:15:17.169Z + 2025-07-24T20:14:22.367Z https://docs.axolotl.ai/docs/api/prompt_strategies.dpo.user_defined.html - 2025-07-24T08:15:16.686Z + 2025-07-24T20:14:21.885Z https://docs.axolotl.ai/docs/api/utils.schemas.datasets.html - 2025-07-24T08:15:17.160Z + 2025-07-24T20:14:22.359Z https://docs.axolotl.ai/docs/api/prompt_strategies.alpaca_w_system.html - 2025-07-24T08:15:16.601Z + 2025-07-24T20:14:21.801Z https://docs.axolotl.ai/docs/api/prompt_strategies.base.html - 2025-07-24T08:15:16.540Z + 2025-07-24T20:14:21.741Z https://docs.axolotl.ai/docs/api/utils.lora.html - 2025-07-24T08:15:16.998Z + 2025-07-24T20:14:22.198Z https://docs.axolotl.ai/docs/api/prompt_strategies.input_output.html - 2025-07-24T08:15:16.634Z + 2025-07-24T20:14:21.834Z https://docs.axolotl.ai/docs/api/utils.schemas.trl.html - 2025-07-24T08:15:17.172Z + 2025-07-24T20:14:22.371Z https://docs.axolotl.ai/docs/api/prompt_strategies.dpo.zephyr.html - 2025-07-24T08:15:16.684Z + 2025-07-24T20:14:21.883Z https://docs.axolotl.ai/docs/api/integrations.kd.trainer.html - 2025-07-24T08:15:17.353Z + 2025-07-24T20:14:22.550Z https://docs.axolotl.ai/docs/api/monkeypatch.gradient_checkpointing.offload_disk.html - 2025-07-24T08:15:16.985Z + 2025-07-24T20:14:22.185Z https://docs.axolotl.ai/docs/api/utils.optimizers.adopt.html - 2025-07-24T08:15:17.087Z + 2025-07-24T20:14:22.287Z https://docs.axolotl.ai/docs/api/monkeypatch.data.batch_dataset_fetcher.html - 2025-07-24T08:15:16.954Z + 2025-07-24T20:14:22.154Z https://docs.axolotl.ai/docs/api/cli.cloud.modal_.html - 2025-07-24T08:15:16.394Z + 2025-07-24T20:14:21.594Z https://docs.axolotl.ai/docs/api/prompt_strategies.alpaca_chat.html - 2025-07-24T08:15:16.587Z + 2025-07-24T20:14:21.788Z https://docs.axolotl.ai/docs/api/utils.freeze.html - 2025-07-24T08:15:17.015Z + 2025-07-24T20:14:22.215Z https://docs.axolotl.ai/docs/api/prompt_strategies.bradley_terry.llama3.html - 2025-07-24T08:15:16.729Z + 2025-07-24T20:14:21.928Z https://docs.axolotl.ai/docs/api/integrations.base.html - 2025-07-24T08:15:17.341Z + 2025-07-24T20:14:22.538Z https://docs.axolotl.ai/docs/api/monkeypatch.unsloth_.html - 2025-07-24T08:15:16.953Z + 2025-07-24T20:14:22.153Z https://docs.axolotl.ai/docs/api/prompt_strategies.kto.chatml.html - 2025-07-24T08:15:16.703Z + 2025-07-24T20:14:21.903Z https://docs.axolotl.ai/docs/api/cli.main.html - 2025-07-24T08:15:16.234Z + 2025-07-24T20:14:21.437Z https://docs.axolotl.ai/docs/api/common.datasets.html - 2025-07-24T08:15:17.381Z + 2025-07-24T20:14:22.578Z https://docs.axolotl.ai/docs/api/train.html - 2025-07-24T08:15:16.045Z + 2025-07-24T20:14:21.252Z https://docs.axolotl.ai/docs/api/core.trainers.base.html - 2025-07-24T08:15:16.409Z + 2025-07-24T20:14:21.609Z https://docs.axolotl.ai/docs/api/core.trainers.mixins.scheduler.html - 2025-07-24T08:15:16.515Z + 2025-07-24T20:14:21.716Z https://docs.axolotl.ai/docs/api/utils.ctx_managers.sequence_parallel.html - 2025-07-24T08:15:16.538Z + 2025-07-24T20:14:21.739Z https://docs.axolotl.ai/docs/api/utils.schemas.config.html - 2025-07-24T08:15:17.130Z + 2025-07-24T20:14:22.329Z https://docs.axolotl.ai/docs/api/loaders.tokenizer.html - 2025-07-24T08:15:16.482Z + 2025-07-24T20:14:21.683Z https://docs.axolotl.ai/docs/api/integrations.liger.args.html - 2025-07-24T08:15:17.356Z + 2025-07-24T20:14:22.554Z https://docs.axolotl.ai/docs/api/cli.config.html - 2025-07-24T08:15:16.295Z + 2025-07-24T20:14:21.496Z https://docs.axolotl.ai/docs/api/loaders.processor.html - 2025-07-24T08:15:16.484Z + 2025-07-24T20:14:21.685Z https://docs.axolotl.ai/docs/api/monkeypatch.utils.html - 2025-07-24T08:15:16.933Z + 2025-07-24T20:14:22.133Z https://docs.axolotl.ai/docs/api/integrations.cut_cross_entropy.args.html - 2025-07-24T08:15:17.344Z + 2025-07-24T20:14:22.541Z https://docs.axolotl.ai/docs/api/core.trainers.dpo.trainer.html - 2025-07-24T08:15:16.440Z + 2025-07-24T20:14:21.641Z https://docs.axolotl.ai/docs/api/loaders.adapter.html - 2025-07-24T08:15:16.489Z + 2025-07-24T20:14:21.690Z https://docs.axolotl.ai/docs/api/prompt_strategies.dpo.llama3.html - 2025-07-24T08:15:16.672Z + 2025-07-24T20:14:21.872Z https://docs.axolotl.ai/docs/api/core.datasets.transforms.chat_builder.html - 2025-07-24T08:15:16.202Z + 2025-07-24T20:14:21.405Z https://docs.axolotl.ai/docs/api/monkeypatch.transformers_fa_utils.html - 2025-07-24T08:15:16.951Z + 2025-07-24T20:14:22.151Z https://docs.axolotl.ai/docs/api/datasets.html - 2025-07-24T08:15:16.067Z + 2025-07-24T20:14:21.273Z https://docs.axolotl.ai/docs/api/monkeypatch.btlm_attn_hijack_flash.html - 2025-07-24T08:15:16.934Z + 2025-07-24T20:14:22.134Z https://docs.axolotl.ai/docs/api/cli.inference.html - 2025-07-24T08:15:16.309Z + 2025-07-24T20:14:21.511Z https://docs.axolotl.ai/docs/api/cli.utils.html - 2025-07-24T08:15:16.377Z + 2025-07-24T20:14:21.577Z https://docs.axolotl.ai/docs/api/cli.preprocess.html - 2025-07-24T08:15:16.339Z + 2025-07-24T20:14:21.539Z https://docs.axolotl.ai/docs/api/loaders.model.html - 2025-07-24T08:15:16.474Z + 2025-07-24T20:14:21.675Z https://docs.axolotl.ai/docs/api/core.trainers.grpo.sampler.html - 2025-07-24T08:15:16.463Z + 2025-07-24T20:14:21.663Z https://docs.axolotl.ai/docs/api/core.trainers.grpo.trainer.html - 2025-07-24T08:15:16.450Z + 2025-07-24T20:14:21.651Z https://docs.axolotl.ai/docs/batch_vs_grad.html - 2025-07-24T08:11:54.888Z + 2025-07-24T20:10:46.973Z https://docs.axolotl.ai/docs/custom_integrations.html - 2025-07-24T08:11:54.888Z + 2025-07-24T20:10:46.973Z https://docs.axolotl.ai/docs/quantize.html - 2025-07-24T08:11:54.892Z + 2025-07-24T20:10:46.977Z https://docs.axolotl.ai/docs/installation.html - 2025-07-24T08:11:54.892Z + 2025-07-24T20:10:46.976Z https://docs.axolotl.ai/docs/docker.html - 2025-07-24T08:11:54.889Z + 2025-07-24T20:10:46.973Z https://docs.axolotl.ai/docs/reward_modelling.html - 2025-07-24T08:11:54.893Z + 2025-07-24T20:10:46.977Z https://docs.axolotl.ai/docs/dataset-formats/inst_tune.html - 2025-07-24T08:11:54.889Z + 2025-07-24T20:10:46.973Z https://docs.axolotl.ai/docs/dataset-formats/conversation.html - 2025-07-24T08:11:54.889Z + 2025-07-24T20:10:46.973Z https://docs.axolotl.ai/docs/dataset-formats/tokenized.html - 2025-07-24T08:11:54.889Z + 2025-07-24T20:10:46.973Z https://docs.axolotl.ai/docs/rlhf.html - 2025-07-24T08:11:54.893Z + 2025-07-24T20:10:46.977Z https://docs.axolotl.ai/docs/sequence_parallelism.html - 2025-07-24T08:11:54.893Z + 2025-07-24T20:10:46.977Z https://docs.axolotl.ai/docs/inference.html - 2025-07-24T08:11:54.892Z + 2025-07-24T20:10:46.976Z https://docs.axolotl.ai/docs/fsdp_qlora.html - 2025-07-24T08:11:54.889Z + 2025-07-24T20:10:46.973Z https://docs.axolotl.ai/docs/multi-node.html - 2025-07-24T08:11:54.892Z + 2025-07-24T20:10:46.976Z https://docs.axolotl.ai/docs/lora_optims.html - 2025-07-24T08:11:54.892Z + 2025-07-24T20:10:46.976Z https://docs.axolotl.ai/docs/getting-started.html - 2025-07-24T08:11:54.889Z + 2025-07-24T20:10:46.974Z https://docs.axolotl.ai/docs/dataset_loading.html - 2025-07-24T08:11:54.889Z + 2025-07-24T20:10:46.973Z https://docs.axolotl.ai/docs/lr_groups.html - 2025-07-24T08:11:54.892Z + 2025-07-24T20:10:46.976Z https://docs.axolotl.ai/docs/mac.html - 2025-07-24T08:11:54.892Z + 2025-07-24T20:10:46.976Z https://docs.axolotl.ai/src/axolotl/integrations/cut_cross_entropy/ACKNOWLEDGEMENTS.html - 2025-07-24T08:11:54.912Z + 2025-07-24T20:10:46.996Z https://docs.axolotl.ai/src/axolotl/integrations/LICENSE.html - 2025-07-24T08:11:54.912Z + 2025-07-24T20:10:46.996Z https://docs.axolotl.ai/docs/input_output.html - 2025-07-24T08:11:54.892Z + 2025-07-24T20:10:46.976Z https://docs.axolotl.ai/docs/gradient_checkpointing.html - 2025-07-24T08:11:54.889Z + 2025-07-24T20:10:46.974Z https://docs.axolotl.ai/docs/qat.html - 2025-07-24T08:11:54.892Z + 2025-07-24T20:10:46.977Z https://docs.axolotl.ai/docs/faq.html - 2025-07-24T08:11:54.889Z + 2025-07-24T20:10:46.973Z https://docs.axolotl.ai/docs/dataset_preprocessing.html - 2025-07-24T08:11:54.889Z + 2025-07-24T20:10:46.973Z https://docs.axolotl.ai/docs/nccl.html - 2025-07-24T08:11:54.892Z + 2025-07-24T20:10:46.977Z https://docs.axolotl.ai/docs/cli.html - 2025-07-24T08:11:54.888Z + 2025-07-24T20:10:46.973Z https://docs.axolotl.ai/docs/torchao.html - 2025-07-24T08:11:54.893Z + 2025-07-24T20:10:46.977Z https://docs.axolotl.ai/docs/multi-gpu.html - 2025-07-24T08:11:54.892Z + 2025-07-24T20:10:46.976Z https://docs.axolotl.ai/docs/dataset-formats/pretraining.html - 2025-07-24T08:11:54.889Z + 2025-07-24T20:10:46.973Z https://docs.axolotl.ai/docs/dataset-formats/index.html - 2025-07-24T08:11:54.889Z + 2025-07-24T20:10:46.973Z https://docs.axolotl.ai/docs/dataset-formats/template_free.html - 2025-07-24T08:11:54.889Z + 2025-07-24T20:10:46.973Z https://docs.axolotl.ai/docs/dataset-formats/stepwise_supervised.html - 2025-07-24T08:11:54.889Z + 2025-07-24T20:10:46.973Z https://docs.axolotl.ai/docs/ray-integration.html - 2025-07-24T08:11:54.892Z + 2025-07-24T20:10:46.977Z https://docs.axolotl.ai/docs/unsloth.html - 2025-07-24T08:11:54.893Z + 2025-07-24T20:10:46.977Z https://docs.axolotl.ai/docs/mixed_precision.html - 2025-07-24T08:11:54.892Z + 2025-07-24T20:10:46.976Z https://docs.axolotl.ai/docs/multimodal.html - 2025-07-24T08:11:54.892Z + 2025-07-24T20:10:46.977Z https://docs.axolotl.ai/docs/config-reference.html - 2025-07-24T08:15:31.132Z + 2025-07-24T20:14:36.394Z https://docs.axolotl.ai/docs/api/prompt_tokenizers.html - 2025-07-24T08:15:16.124Z + 2025-07-24T20:14:21.328Z https://docs.axolotl.ai/docs/api/utils.schedulers.html - 2025-07-24T08:15:17.056Z + 2025-07-24T20:14:22.257Z https://docs.axolotl.ai/docs/api/utils.samplers.multipack.html - 2025-07-24T08:15:17.451Z + 2025-07-24T20:14:22.648Z https://docs.axolotl.ai/docs/api/prompt_strategies.orcamini.html - 2025-07-24T08:15:16.649Z + 2025-07-24T20:14:21.849Z https://docs.axolotl.ai/docs/api/core.trainers.trl.html - 2025-07-24T08:15:16.423Z + 2025-07-24T20:14:21.624Z https://docs.axolotl.ai/docs/api/prompt_strategies.metharme.html - 2025-07-24T08:15:16.645Z + 2025-07-24T20:14:21.845Z https://docs.axolotl.ai/docs/api/utils.callbacks.profiler.html - 2025-07-24T08:15:17.461Z + 2025-07-24T20:14:22.659Z https://docs.axolotl.ai/docs/api/utils.schemas.enums.html - 2025-07-24T08:15:17.200Z + 2025-07-24T20:14:22.398Z https://docs.axolotl.ai/docs/api/core.trainers.mamba.html - 2025-07-24T08:15:16.429Z + 2025-07-24T20:14:21.629Z https://docs.axolotl.ai/docs/api/monkeypatch.llama_attn_hijack_flash.html - 2025-07-24T08:15:16.870Z + 2025-07-24T20:14:22.069Z https://docs.axolotl.ai/docs/api/monkeypatch.relora.html - 2025-07-24T08:15:16.894Z + 2025-07-24T20:14:22.094Z https://docs.axolotl.ai/docs/api/monkeypatch.stablelm_attn_hijack_flash.html - 2025-07-24T08:15:16.941Z + 2025-07-24T20:14:22.141Z https://docs.axolotl.ai/docs/api/loaders.constants.html - 2025-07-24T08:15:16.499Z + 2025-07-24T20:14:21.700Z https://docs.axolotl.ai/docs/api/utils.callbacks.qat.html - 2025-07-24T08:15:17.477Z + 2025-07-24T20:14:22.674Z https://docs.axolotl.ai/docs/api/utils.schemas.model.html - 2025-07-24T08:15:17.137Z + 2025-07-24T20:14:22.336Z https://docs.axolotl.ai/docs/api/prompt_strategies.stepwise_supervised.html - 2025-07-24T08:15:16.638Z + 2025-07-24T20:14:21.839Z https://docs.axolotl.ai/docs/api/integrations.grokfast.optimizer.html - 2025-07-24T08:15:17.345Z + 2025-07-24T20:14:22.543Z https://docs.axolotl.ai/docs/api/convert.html - 2025-07-24T08:15:16.081Z + 2025-07-24T20:14:21.286Z https://docs.axolotl.ai/docs/api/kernels.quantize.html - 2025-07-24T08:15:16.842Z + 2025-07-24T20:14:22.042Z https://docs.axolotl.ai/docs/api/core.training_args.html - 2025-07-24T08:15:16.162Z + 2025-07-24T20:14:21.365Z https://docs.axolotl.ai/docs/api/prompt_strategies.chat_template.html - 2025-07-24T08:15:16.574Z + 2025-07-24T20:14:21.774Z https://docs.axolotl.ai/docs/api/index.html - 2025-07-24T08:15:15.984Z + 2025-07-24T20:14:21.191Z https://docs.axolotl.ai/docs/api/prompt_strategies.llama2_chat.html - 2025-07-24T08:15:16.622Z + 2025-07-24T20:14:21.822Z https://docs.axolotl.ai/docs/api/utils.trainer.html - 2025-07-24T08:15:17.032Z + 2025-07-24T20:14:22.232Z https://docs.axolotl.ai/docs/api/prompt_strategies.messages.chat.html - 2025-07-24T08:15:16.660Z + 2025-07-24T20:14:21.860Z https://docs.axolotl.ai/docs/api/monkeypatch.lora_kernels.html - 2025-07-24T08:15:16.925Z + 2025-07-24T20:14:22.125Z https://docs.axolotl.ai/docs/api/kernels.lora.html - 2025-07-24T08:15:16.814Z + 2025-07-24T20:14:22.013Z https://docs.axolotl.ai/docs/api/cli.vllm_serve.html - 2025-07-24T08:15:16.384Z + 2025-07-24T20:14:21.584Z https://docs.axolotl.ai/docs/api/utils.schemas.multimodal.html - 2025-07-24T08:15:17.177Z + 2025-07-24T20:14:22.376Z https://docs.axolotl.ai/docs/api/utils.schemas.utils.html - 2025-07-24T08:15:17.205Z + 2025-07-24T20:14:22.404Z https://docs.axolotl.ai/docs/api/monkeypatch.llama_attn_hijack_xformers.html - 2025-07-24T08:15:16.871Z + 2025-07-24T20:14:22.071Z https://docs.axolotl.ai/docs/api/integrations.lm_eval.args.html - 2025-07-24T08:15:17.360Z + 2025-07-24T20:14:22.557Z https://docs.axolotl.ai/docs/api/monkeypatch.mistral_attn_hijack_flash.html - 2025-07-24T08:15:16.886Z + 2025-07-24T20:14:22.086Z https://docs.axolotl.ai/docs/api/utils.collators.core.html - 2025-07-24T08:15:17.383Z + 2025-07-24T20:14:22.581Z https://docs.axolotl.ai/docs/api/core.chat.format.chatml.html - 2025-07-24T08:15:16.186Z + 2025-07-24T20:14:21.390Z https://docs.axolotl.ai/docs/api/prompt_strategies.dpo.passthrough.html - 2025-07-24T08:15:16.687Z + 2025-07-24T20:14:21.886Z https://docs.axolotl.ai/docs/api/core.datasets.chat.html - 2025-07-24T08:15:16.194Z + 2025-07-24T20:14:21.397Z https://docs.axolotl.ai/docs/api/utils.bench.html - 2025-07-24T08:15:17.007Z + 2025-07-24T20:14:22.207Z https://docs.axolotl.ai/docs/api/utils.schemas.training.html - 2025-07-24T08:15:17.142Z + 2025-07-24T20:14:22.341Z https://docs.axolotl.ai/docs/api/utils.collators.batching.html - 2025-07-24T08:15:17.402Z + 2025-07-24T20:14:22.599Z https://docs.axolotl.ai/docs/api/monkeypatch.llama_patch_multipack.html - 2025-07-24T08:15:16.936Z + 2025-07-24T20:14:22.136Z https://docs.axolotl.ai/docs/api/monkeypatch.multipack.html - 2025-07-24T08:15:16.887Z + 2025-07-24T20:14:22.088Z https://docs.axolotl.ai/docs/api/core.builders.causal.html - 2025-07-24T08:15:16.144Z + 2025-07-24T20:14:21.348Z https://docs.axolotl.ai/docs/api/cli.evaluate.html - 2025-07-24T08:15:16.251Z + 2025-07-24T20:14:21.453Z https://docs.axolotl.ai/docs/api/monkeypatch.trainer_fsdp_optim.html - 2025-07-24T08:15:16.945Z + 2025-07-24T20:14:22.145Z https://docs.axolotl.ai/docs/api/core.trainers.utils.html - 2025-07-24T08:15:16.464Z + 2025-07-24T20:14:21.665Z https://docs.axolotl.ai/docs/api/utils.schemas.integrations.html - 2025-07-24T08:15:17.189Z + 2025-07-24T20:14:22.388Z https://docs.axolotl.ai/docs/api/utils.dict.html - 2025-07-24T08:15:17.080Z + 2025-07-24T20:14:22.280Z https://docs.axolotl.ai/docs/api/core.builders.rl.html - 2025-07-24T08:15:16.149Z + 2025-07-24T20:14:21.353Z https://docs.axolotl.ai/docs/api/prompt_strategies.orpo.chat_template.html - 2025-07-24T08:15:16.725Z + 2025-07-24T20:14:21.925Z https://docs.axolotl.ai/docs/api/core.trainers.relora.html - 2025-07-24T08:15:16.433Z + 2025-07-24T20:14:21.634Z https://docs.axolotl.ai/docs/api/integrations.spectrum.args.html - 2025-07-24T08:15:17.363Z + 2025-07-24T20:14:22.560Z https://docs.axolotl.ai/docs/api/cli.quantize.html - 2025-07-24T08:15:16.398Z + 2025-07-24T20:14:21.598Z https://docs.axolotl.ai/docs/api/cli.checks.html - 2025-07-24T08:15:16.277Z + 2025-07-24T20:14:21.479Z https://docs.axolotl.ai/docs/api/prompt_strategies.kto.llama3.html - 2025-07-24T08:15:16.695Z + 2025-07-24T20:14:21.894Z https://docs.axolotl.ai/docs/api/utils.model_shard_quant.html - 2025-07-24T08:15:17.004Z + 2025-07-24T20:14:22.204Z https://docs.axolotl.ai/docs/api/utils.quantization.html - 2025-07-24T08:15:17.117Z + 2025-07-24T20:14:22.316Z https://docs.axolotl.ai/docs/api/core.trainers.mixins.rng_state_loader.html - 2025-07-24T08:15:16.508Z + 2025-07-24T20:14:21.709Z https://docs.axolotl.ai/docs/api/kernels.geglu.html - 2025-07-24T08:15:16.825Z + 2025-07-24T20:14:22.024Z https://docs.axolotl.ai/docs/api/utils.data.pretraining.html - 2025-07-24T08:15:17.089Z + 2025-07-24T20:14:22.289Z https://docs.axolotl.ai/docs/api/prompt_strategies.kto.user_defined.html - 2025-07-24T08:15:16.705Z + 2025-07-24T20:14:21.904Z https://docs.axolotl.ai/docs/api/core.builders.base.html - 2025-07-24T08:15:16.140Z + 2025-07-24T20:14:21.343Z https://docs.axolotl.ai/docs/api/cli.merge_lora.html - 2025-07-24T08:15:16.318Z + 2025-07-24T20:14:21.519Z https://docs.axolotl.ai/docs/api/monkeypatch.mixtral.html - 2025-07-24T08:15:16.956Z + 2025-07-24T20:14:22.156Z https://docs.axolotl.ai/docs/api/utils.data.sft.html - 2025-07-24T08:15:17.096Z + 2025-07-24T20:14:22.295Z https://docs.axolotl.ai/docs/api/prompt_strategies.user_defined.html - 2025-07-24T08:15:16.609Z + 2025-07-24T20:14:21.809Z https://docs.axolotl.ai/docs/api/utils.tokenization.html - 2025-07-24T08:15:16.992Z + 2025-07-24T20:14:22.192Z https://docs.axolotl.ai/docs/api/prompt_strategies.dpo.chatml.html - 2025-07-24T08:15:16.683Z + 2025-07-24T20:14:21.882Z https://docs.axolotl.ai/docs/api/models.mamba.modeling_mamba.html - 2025-07-24T08:15:17.382Z + 2025-07-24T20:14:22.579Z https://docs.axolotl.ai/docs/api/cli.args.html - 2025-07-24T08:15:16.270Z + 2025-07-24T20:14:21.472Z https://docs.axolotl.ai/docs/api/evaluate.html - 2025-07-24T08:15:16.056Z + 2025-07-24T20:14:21.262Z https://docs.axolotl.ai/docs/api/prompt_strategies.alpaca_instruct.html - 2025-07-24T08:15:16.589Z + 2025-07-24T20:14:21.789Z https://docs.axolotl.ai/docs/api/utils.distributed.html - 2025-07-24T08:15:17.076Z + 2025-07-24T20:14:22.276Z https://docs.axolotl.ai/docs/multipack.html - 2025-07-24T08:11:54.892Z + 2025-07-24T20:10:46.977Z https://docs.axolotl.ai/examples/colab-notebooks/colab-axolotl-example.html - 2025-07-24T08:11:54.897Z + 2025-07-24T20:10:46.981Z https://docs.axolotl.ai/FAQS.html - 2025-07-24T08:11:54.887Z + 2025-07-24T20:10:46.971Z