Compare commits
11 Commits
fix/granit
...
quantize-p
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5a51852af1 | ||
|
|
170322a1f0 | ||
|
|
5f5ae76213 | ||
|
|
a798975b7c | ||
|
|
d23f972602 | ||
|
|
8e41317250 | ||
|
|
9f2bb188a4 | ||
|
|
9dde9e1b71 | ||
|
|
f2474ef941 | ||
|
|
8a4bcacdb2 | ||
|
|
d2c3d5a954 |
16
.coderabbit.yaml
Normal file
16
.coderabbit.yaml
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
# yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json
|
||||||
|
language: "en-US"
|
||||||
|
early_access: false
|
||||||
|
reviews:
|
||||||
|
profile: "chill"
|
||||||
|
request_changes_workflow: false
|
||||||
|
high_level_summary: true
|
||||||
|
review_status: true
|
||||||
|
collapse_walkthrough: true
|
||||||
|
poem: false
|
||||||
|
sequence_diagrams: false
|
||||||
|
auto_review:
|
||||||
|
enabled: true
|
||||||
|
drafts: false
|
||||||
|
chat:
|
||||||
|
auto_reply: true
|
||||||
2
.github/workflows/main.yml
vendored
2
.github/workflows/main.yml
vendored
@@ -87,7 +87,6 @@ jobs:
|
|||||||
python_version: "3.11"
|
python_version: "3.11"
|
||||||
pytorch: 2.6.0
|
pytorch: 2.6.0
|
||||||
axolotl_extras:
|
axolotl_extras:
|
||||||
is_latest: true
|
|
||||||
- cuda: 126
|
- cuda: 126
|
||||||
cuda_version: 12.6.3
|
cuda_version: 12.6.3
|
||||||
python_version: "3.11"
|
python_version: "3.11"
|
||||||
@@ -98,6 +97,7 @@ jobs:
|
|||||||
python_version: "3.11"
|
python_version: "3.11"
|
||||||
pytorch: 2.7.1
|
pytorch: 2.7.1
|
||||||
axolotl_extras:
|
axolotl_extras:
|
||||||
|
is_latest: true
|
||||||
- cuda: 128
|
- cuda: 128
|
||||||
cuda_version: 12.8.1
|
cuda_version: 12.8.1
|
||||||
python_version: "3.11"
|
python_version: "3.11"
|
||||||
|
|||||||
49
.github/workflows/tests-nightly.yml
vendored
49
.github/workflows/tests-nightly.yml
vendored
@@ -106,6 +106,13 @@ jobs:
|
|||||||
num_gpus: 1
|
num_gpus: 1
|
||||||
axolotl_extras:
|
axolotl_extras:
|
||||||
nightly_build: "true"
|
nightly_build: "true"
|
||||||
|
- cuda: 126
|
||||||
|
cuda_version: 12.6.3
|
||||||
|
python_version: "3.11"
|
||||||
|
pytorch: 2.7.1
|
||||||
|
num_gpus: 1
|
||||||
|
axolotl_extras:
|
||||||
|
nightly_build: "true"
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
@@ -130,3 +137,45 @@ jobs:
|
|||||||
- name: Run tests job on Modal
|
- name: Run tests job on Modal
|
||||||
run: |
|
run: |
|
||||||
modal run cicd.e2e_tests
|
modal run cicd.e2e_tests
|
||||||
|
docker-e2e-multigpu-tests:
|
||||||
|
if: github.repository_owner == 'axolotl-ai-cloud'
|
||||||
|
# this job needs to be run on self-hosted GPU runners...
|
||||||
|
runs-on: [self-hosted, modal]
|
||||||
|
timeout-minutes: 120
|
||||||
|
needs: [pre-commit, pytest, docker-e2e-tests]
|
||||||
|
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
include:
|
||||||
|
- cuda: 126
|
||||||
|
cuda_version: 12.6.3
|
||||||
|
python_version: "3.11"
|
||||||
|
pytorch: 2.7.1
|
||||||
|
num_gpus: 2
|
||||||
|
axolotl_extras:
|
||||||
|
nightly_build: "true"
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: Install Python
|
||||||
|
uses: actions/setup-python@v5
|
||||||
|
with:
|
||||||
|
python-version: "3.11"
|
||||||
|
- name: Install Modal
|
||||||
|
run: |
|
||||||
|
python -m pip install --upgrade pip
|
||||||
|
pip install modal==1.0.2 jinja2
|
||||||
|
- name: Update env vars
|
||||||
|
run: |
|
||||||
|
echo "BASE_TAG=main-base-py${{ matrix.python_version }}-cu${{ matrix.cuda }}-${{ matrix.pytorch }}" >> $GITHUB_ENV
|
||||||
|
echo "PYTORCH_VERSION=${{ matrix.pytorch}}" >> $GITHUB_ENV
|
||||||
|
echo "AXOLOTL_ARGS=${{ matrix.axolotl_args}}" >> $GITHUB_ENV
|
||||||
|
echo "AXOLOTL_EXTRAS=${{ matrix.axolotl_extras}}" >> $GITHUB_ENV
|
||||||
|
echo "CUDA=${{ matrix.cuda }}" >> $GITHUB_ENV
|
||||||
|
echo "N_GPUS=${{ matrix.num_gpus }}" >> $GITHUB_ENV
|
||||||
|
echo "NIGHTLY_BUILD=${{ matrix.nightly_build }}" >> $GITHUB_ENV
|
||||||
|
echo "CODECOV_TOKEN=${{ secrets.CODECOV_TOKEN }}" >> $GITHUB_ENV
|
||||||
|
- name: Run tests job on Modal
|
||||||
|
run: |
|
||||||
|
modal run cicd.multigpu
|
||||||
|
|||||||
@@ -22,6 +22,7 @@ coverage:
|
|||||||
only_pulls: true
|
only_pulls: true
|
||||||
flags: null
|
flags: null
|
||||||
paths: null
|
paths: null
|
||||||
|
informational: true
|
||||||
patch:
|
patch:
|
||||||
default:
|
default:
|
||||||
# basic
|
# basic
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ huggingface_hub>=0.33.0
|
|||||||
peft==0.16.0
|
peft==0.16.0
|
||||||
transformers==4.53.2
|
transformers==4.53.2
|
||||||
tokenizers>=0.21.1
|
tokenizers>=0.21.1
|
||||||
accelerate==1.8.1
|
accelerate==1.9.0
|
||||||
datasets==4.0.0
|
datasets==4.0.0
|
||||||
deepspeed>=0.17.0
|
deepspeed>=0.17.0
|
||||||
trl==0.19.1
|
trl==0.19.1
|
||||||
|
|||||||
@@ -43,7 +43,7 @@ def do_quantize(
|
|||||||
"No quantization configuration found. Please specify either qat or quantization in your config file."
|
"No quantization configuration found. Please specify either qat or quantization in your config file."
|
||||||
)
|
)
|
||||||
|
|
||||||
model_path = cli_args.get("model_path") or cfg.output_dir
|
model_path = cli_args.get("base_model") or cfg.output_dir
|
||||||
if weight_dtype := cli_args.get("weight_dtype"):
|
if weight_dtype := cli_args.get("weight_dtype"):
|
||||||
weight_dtype = TorchIntDType[weight_dtype]
|
weight_dtype = TorchIntDType[weight_dtype]
|
||||||
else:
|
else:
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
chat dataset module
|
chat dataset module
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import os
|
|
||||||
from typing import Callable, Optional, Union
|
from typing import Callable, Optional, Union
|
||||||
|
|
||||||
from datasets import Dataset
|
from datasets import Dataset
|
||||||
@@ -41,14 +40,10 @@ class TokenizedChatDataset(Dataset):
|
|||||||
)
|
)
|
||||||
return ex.tokenized(model_transform)
|
return ex.tokenized(model_transform)
|
||||||
|
|
||||||
process_or_cpu_count: int = (
|
|
||||||
process_count or os.cpu_count() # type: ignore[assignment]
|
|
||||||
)
|
|
||||||
num_proc = min(32, process_or_cpu_count)
|
|
||||||
features = data.features.keys()
|
features = data.features.keys()
|
||||||
tokenized_data = data.map(
|
tokenized_data = data.map(
|
||||||
map_fn,
|
map_fn,
|
||||||
num_proc=num_proc,
|
num_proc=process_count,
|
||||||
keep_in_memory=keep_in_memory,
|
keep_in_memory=keep_in_memory,
|
||||||
remove_columns=features,
|
remove_columns=features,
|
||||||
desc="Tokenizing Chats",
|
desc="Tokenizing Chats",
|
||||||
|
|||||||
@@ -148,7 +148,7 @@ class GRPOStrategy:
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def get_blocklist_args_kwargs(cls) -> list[str]:
|
def get_blocklist_args_kwargs(cls) -> list[str]:
|
||||||
return ["dataset_num_proc", "max_length"]
|
return ["dataset_num_proc", "max_length", "include_tokens_per_second"]
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def get_reward_func(cls, reward_func_fqn: str) -> RewardFunc:
|
def get_reward_func(cls, reward_func_fqn: str) -> RewardFunc:
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
"""Module containing Dataset functionality"""
|
"""Module containing Dataset functionality"""
|
||||||
|
|
||||||
import os
|
|
||||||
|
|
||||||
import torch
|
import torch
|
||||||
from datasets import Dataset, IterableDataset
|
from datasets import Dataset, IterableDataset
|
||||||
|
|
||||||
@@ -46,7 +44,6 @@ class TokenizedPromptDataset(Dataset):
|
|||||||
|
|
||||||
def process(self, dataset):
|
def process(self, dataset):
|
||||||
features = dataset.features.keys()
|
features = dataset.features.keys()
|
||||||
num_proc = min(64, self.process_count if self.process_count else os.cpu_count())
|
|
||||||
|
|
||||||
map_kwargs = {}
|
map_kwargs = {}
|
||||||
if self.prompt_tokenizer.supports_batched:
|
if self.prompt_tokenizer.supports_batched:
|
||||||
@@ -59,13 +56,13 @@ class TokenizedPromptDataset(Dataset):
|
|||||||
):
|
):
|
||||||
dataset = dataset.filter(
|
dataset = dataset.filter(
|
||||||
self.prompt_tokenizer.filter_rows,
|
self.prompt_tokenizer.filter_rows,
|
||||||
num_proc=num_proc,
|
num_proc=self.process_count,
|
||||||
desc="Strategy Filtering Rows",
|
desc="Strategy Filtering Rows",
|
||||||
)
|
)
|
||||||
|
|
||||||
return dataset.map(
|
return dataset.map(
|
||||||
self.prompt_tokenizer.tokenize_prompt,
|
self.prompt_tokenizer.tokenize_prompt,
|
||||||
num_proc=num_proc,
|
num_proc=self.process_count,
|
||||||
remove_columns=features,
|
remove_columns=features,
|
||||||
keep_in_memory=self.keep_in_memory,
|
keep_in_memory=self.keep_in_memory,
|
||||||
desc="Tokenizing Prompts",
|
desc="Tokenizing Prompts",
|
||||||
|
|||||||
@@ -41,3 +41,13 @@ class CutCrossEntropyArgs(BaseModel):
|
|||||||
)
|
)
|
||||||
|
|
||||||
return data
|
return data
|
||||||
|
|
||||||
|
@model_validator(mode="before")
|
||||||
|
@classmethod
|
||||||
|
def check_chunked_cross_entropy_not_set(cls, data):
|
||||||
|
if data.get("chunked_cross_entropy"):
|
||||||
|
raise ValueError(
|
||||||
|
"Cut Cross Entropy does not support chunked cross entropy. "
|
||||||
|
"Please set `chunked_cross_entropy` to `False` or disable Cut Cross Entropy."
|
||||||
|
)
|
||||||
|
return data
|
||||||
|
|||||||
0
src/axolotl/loaders/adapters/__init__.py
Normal file
0
src/axolotl/loaders/adapters/__init__.py
Normal file
@@ -188,7 +188,8 @@ def load_tokenizer(cfg: DictDefault) -> PreTrainedTokenizer:
|
|||||||
tokenizer.padding_side = "left"
|
tokenizer.padding_side = "left"
|
||||||
|
|
||||||
# Qwen base only has single token, so we need to set the special tokens
|
# Qwen base only has single token, so we need to set the special tokens
|
||||||
if cfg.is_qwen_derived_model:
|
# the following check is for Qwen1 base models
|
||||||
|
if cfg.is_qwen_derived_model and hasattr(tokenizer, "eod_id"):
|
||||||
token_ids = ["bos_token_id", "eos_token_id", "pad_token_id", "unk_token_id"]
|
token_ids = ["bos_token_id", "eos_token_id", "pad_token_id", "unk_token_id"]
|
||||||
for attr_name in token_ids:
|
for attr_name in token_ids:
|
||||||
if getattr(tokenizer, attr_name) is None:
|
if getattr(tokenizer, attr_name) is None:
|
||||||
|
|||||||
@@ -113,7 +113,7 @@ DEFAULT_LOGGING_CONFIG: Dict[str, Any] = {
|
|||||||
"loggers": {
|
"loggers": {
|
||||||
"axolotl": {
|
"axolotl": {
|
||||||
"handlers": ["color_console"],
|
"handlers": ["color_console"],
|
||||||
"level": os.getenv("AXOLOTL_LOG_LEVEL", DEFAULT_AXOLOTL_LOG_LEVEL),
|
"level": os.getenv("AXOLOTL_LOG_LEVEL", DEFAULT_AXOLOTL_LOG_LEVEL).upper(),
|
||||||
"propagate": False,
|
"propagate": False,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -151,6 +151,11 @@ def get_attention_cls_from_config(cfg: DictDefault) -> Type[nn.Module]:
|
|||||||
|
|
||||||
return MllamaTextSelfAttention
|
return MllamaTextSelfAttention
|
||||||
|
|
||||||
|
if model_type == "llama4":
|
||||||
|
from transformers.models.llama4.modeling_llama4 import Llama4TextAttention
|
||||||
|
|
||||||
|
return Llama4TextAttention
|
||||||
|
|
||||||
try:
|
try:
|
||||||
# Dynamically import the module and attention class
|
# Dynamically import the module and attention class
|
||||||
module_path = f"transformers.models.{model_type}.modeling_{model_type}"
|
module_path = f"transformers.models.{model_type}.modeling_{model_type}"
|
||||||
|
|||||||
@@ -798,7 +798,7 @@ class SaveAxolotlConfigtoWandBCallback(TrainerCallback):
|
|||||||
control: TrainerControl,
|
control: TrainerControl,
|
||||||
**kwargs, # pylint: disable=unused-argument
|
**kwargs, # pylint: disable=unused-argument
|
||||||
):
|
):
|
||||||
if is_main_process():
|
if state.is_world_process_zero:
|
||||||
try:
|
try:
|
||||||
# sync config to top level in run, cannot delete file right away because wandb schedules it to be synced even w/policy = 'now', so let OS delete it later.
|
# sync config to top level in run, cannot delete file right away because wandb schedules it to be synced even w/policy = 'now', so let OS delete it later.
|
||||||
with NamedTemporaryFile(
|
with NamedTemporaryFile(
|
||||||
|
|||||||
@@ -148,8 +148,6 @@ def normalize_config(cfg):
|
|||||||
f"Invalid value for eval_steps ({eval_steps}) from evals_per_epoch and/or num_epochs. Skipping evaluations."
|
f"Invalid value for eval_steps ({eval_steps}) from evals_per_epoch and/or num_epochs. Skipping evaluations."
|
||||||
)
|
)
|
||||||
|
|
||||||
cfg.dataset_processes = cfg.dataset_processes or os.cpu_count()
|
|
||||||
|
|
||||||
if not cfg.base_model_config:
|
if not cfg.base_model_config:
|
||||||
cfg.base_model_config = cfg.base_model
|
cfg.base_model_config = cfg.base_model
|
||||||
|
|
||||||
|
|||||||
@@ -410,9 +410,8 @@ def save_preprocessed_dataset(
|
|||||||
) -> None:
|
) -> None:
|
||||||
"""Save preprocessed dataset to disk and optionally push to the HF Hub."""
|
"""Save preprocessed dataset to disk and optionally push to the HF Hub."""
|
||||||
prepared_ds_path = get_prepared_dataset_path(cfg, dataset_hash)
|
prepared_ds_path = get_prepared_dataset_path(cfg, dataset_hash)
|
||||||
|
num_workers = cfg.dataset_processes
|
||||||
if isinstance(dataset, IterableDataset):
|
if isinstance(dataset, IterableDataset):
|
||||||
num_workers = cfg.dataset_processes
|
|
||||||
|
|
||||||
ds_from_iter = Dataset.from_generator(
|
ds_from_iter = Dataset.from_generator(
|
||||||
functools.partial(_generate_from_iterable_dataset, dataset),
|
functools.partial(_generate_from_iterable_dataset, dataset),
|
||||||
features=dataset.features,
|
features=dataset.features,
|
||||||
@@ -423,10 +422,20 @@ def save_preprocessed_dataset(
|
|||||||
"num_workers": [num_workers] * num_workers,
|
"num_workers": [num_workers] * num_workers,
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
ds_from_iter.save_to_disk(str(prepared_ds_path))
|
ds_from_iter.save_to_disk(
|
||||||
|
str(prepared_ds_path),
|
||||||
|
num_proc=num_workers,
|
||||||
|
max_shard_size=None,
|
||||||
|
num_shards=cfg.num_dataset_shards_to_save,
|
||||||
|
)
|
||||||
else:
|
else:
|
||||||
os.makedirs(prepared_ds_path, exist_ok=True)
|
os.makedirs(prepared_ds_path, exist_ok=True)
|
||||||
dataset.save_to_disk(str(prepared_ds_path))
|
dataset.save_to_disk(
|
||||||
|
str(prepared_ds_path),
|
||||||
|
num_proc=num_workers,
|
||||||
|
max_shard_size=None,
|
||||||
|
num_shards=cfg.num_dataset_shards_to_save,
|
||||||
|
)
|
||||||
if cfg.push_dataset_to_hub:
|
if cfg.push_dataset_to_hub:
|
||||||
LOG.info(
|
LOG.info(
|
||||||
"Pushing merged prepared dataset to Huggingface hub at "
|
"Pushing merged prepared dataset to Huggingface hub at "
|
||||||
@@ -460,13 +469,13 @@ def load_preprocessed_dataset(cfg: DictDefault, dataset_hash: str) -> Dataset |
|
|||||||
):
|
):
|
||||||
LOG.info(
|
LOG.info(
|
||||||
f"Loading prepared dataset from disk at {prepared_ds_path}...",
|
f"Loading prepared dataset from disk at {prepared_ds_path}...",
|
||||||
main_process_only=False,
|
main_process_only=True,
|
||||||
)
|
)
|
||||||
return load_from_disk(str(prepared_ds_path))
|
return load_from_disk(str(prepared_ds_path))
|
||||||
|
|
||||||
LOG.info(
|
LOG.info(
|
||||||
f"Unable to find prepared dataset in {prepared_ds_path}",
|
f"Unable to find prepared dataset in {prepared_ds_path}",
|
||||||
main_process_only=False,
|
main_process_only=True,
|
||||||
)
|
)
|
||||||
return None
|
return None
|
||||||
|
|
||||||
|
|||||||
@@ -20,6 +20,7 @@ from torchao.quantization.quant_api import (
|
|||||||
UIntXWeightOnlyConfig,
|
UIntXWeightOnlyConfig,
|
||||||
_is_linear,
|
_is_linear,
|
||||||
)
|
)
|
||||||
|
from transformers import TorchAoConfig
|
||||||
|
|
||||||
from axolotl.utils.schemas.enums import TorchIntDType
|
from axolotl.utils.schemas.enums import TorchIntDType
|
||||||
|
|
||||||
@@ -149,7 +150,9 @@ def quantize_model_for_ptq(
|
|||||||
group_size=group_size,
|
group_size=group_size,
|
||||||
)
|
)
|
||||||
quantize_(model, linear_ptq_config)
|
quantize_(model, linear_ptq_config)
|
||||||
|
quantization_config = TorchAoConfig(linear_ptq_config)
|
||||||
if quantize_embedding:
|
if quantize_embedding:
|
||||||
|
quantization_config.include_input_output_embeddings = True
|
||||||
embedding_quantize_config = get_ptq_config(
|
embedding_quantize_config = get_ptq_config(
|
||||||
weight_dtype=weight_dtype,
|
weight_dtype=weight_dtype,
|
||||||
activation_dtype=None,
|
activation_dtype=None,
|
||||||
@@ -160,6 +163,7 @@ def quantize_model_for_ptq(
|
|||||||
embedding_quantize_config,
|
embedding_quantize_config,
|
||||||
filter_fn=lambda m, _: isinstance(m, torch.nn.Embedding),
|
filter_fn=lambda m, _: isinstance(m, torch.nn.Embedding),
|
||||||
)
|
)
|
||||||
|
model.config.quantization_config = quantization_config
|
||||||
|
|
||||||
|
|
||||||
def convert_qat_model_for_ptq(
|
def convert_qat_model_for_ptq(
|
||||||
|
|||||||
@@ -193,6 +193,12 @@ class AxolotlInputConfig(
|
|||||||
json_schema_extra={"description": "Index of shard to use for whole dataset"},
|
json_schema_extra={"description": "Index of shard to use for whole dataset"},
|
||||||
)
|
)
|
||||||
skip_prepare_dataset: bool | None = False
|
skip_prepare_dataset: bool | None = False
|
||||||
|
num_dataset_shards_to_save: int | None = Field(
|
||||||
|
default=None,
|
||||||
|
json_schema_extra={
|
||||||
|
"description": "Number of shards to save the prepared dataset"
|
||||||
|
},
|
||||||
|
)
|
||||||
|
|
||||||
pretraining_dataset: (
|
pretraining_dataset: (
|
||||||
Annotated[list[PretrainingDataset | SFTDataset], MinLen(1)] | None
|
Annotated[list[PretrainingDataset | SFTDataset], MinLen(1)] | None
|
||||||
@@ -203,11 +209,12 @@ class AxolotlInputConfig(
|
|||||||
},
|
},
|
||||||
)
|
)
|
||||||
dataset_processes: int | None = Field(
|
dataset_processes: int | None = Field(
|
||||||
default=min(
|
default=None,
|
||||||
int(os.environ.get("AXOLOTL_DATASET_PROCESSES", 32)), os.cpu_count()
|
|
||||||
), # type: ignore[type-var]
|
|
||||||
json_schema_extra={
|
json_schema_extra={
|
||||||
"description": "The maximum number of processes to use while preprocessing your input dataset. This defaults to `os.cpu_count()` if not set."
|
"description": (
|
||||||
|
"The maximum number of processes to use while preprocessing your input dataset. This defaults to `os.cpu_count()` if not set.\n"
|
||||||
|
"For Runpod VMs, it will default to number of vCPUs via RUNPOD_CPU_COUNT."
|
||||||
|
)
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
dataset_exact_deduplication: bool | None = Field(
|
dataset_exact_deduplication: bool | None = Field(
|
||||||
@@ -1199,3 +1206,16 @@ class AxolotlConfigWCapabilities(AxolotlInputConfig):
|
|||||||
data["dataloader_prefetch_factor"] = 256
|
data["dataloader_prefetch_factor"] = 256
|
||||||
|
|
||||||
return data
|
return data
|
||||||
|
|
||||||
|
@model_validator(mode="before")
|
||||||
|
@classmethod
|
||||||
|
def default_dataset_processes(cls, data):
|
||||||
|
if data.get("dataset_processes") is None:
|
||||||
|
if axolotl_dataset_processes := os.environ.get("AXOLOTL_DATASET_PROCESSES"):
|
||||||
|
data["dataset_processes"] = int(axolotl_dataset_processes)
|
||||||
|
elif runpod_cpu_count := os.environ.get("RUNPOD_CPU_COUNT"):
|
||||||
|
data["dataset_processes"] = int(runpod_cpu_count)
|
||||||
|
else:
|
||||||
|
data["dataset_processes"] = os.cpu_count()
|
||||||
|
|
||||||
|
return data
|
||||||
|
|||||||
Reference in New Issue
Block a user