CHANGELOG.md
CONTRIBUTING.md
LICENSE
MANIFEST.in
PROJECT_MAP.md
README.md
pyproject.toml
requirements-dev.txt
requirements.txt
setup.py
arclm/__init__.py
arclm/__main__.py
arclm/_version.py
arclm/api.py
arclm/benchmarks.py
arclm/cache.py
arclm/checkpoints.py
arclm/cli.py
arclm/config.py
arclm/config_loader.py
arclm/config_validation.py
arclm/data.py
arclm/data_pipeline.py
arclm/data_processor.py
arclm/data_quality.py
arclm/data_sources.py
arclm/dataset.py
arclm/deprecation.py
arclm/diagnostics.py
arclm/evaluation.py
arclm/events.py
arclm/exceptions.py
arclm/external_inference.py
arclm/generator.py
arclm/inference.py
arclm/instruction_dataset.py
arclm/logging.py
arclm/model.py
arclm/pipeline.py
arclm/pipeline_v2.py
arclm/registry.py
arclm/regularization.py
arclm/report_schemas.py
arclm/reproducibility.py
arclm/resources.py
arclm/runs.py
arclm/schemas.py
arclm/security.py
arclm/sft.py
arclm/simple_interface.py
arclm/supported_models.py
arclm/tokenization.py
arclm/tokenizer.py
arclm/tracking.py
arclm/trainer.py
arclm/utils.py
arclm/workflow.py
arclm.egg-info/PKG-INFO
arclm.egg-info/SOURCES.txt
arclm.egg-info/dependency_links.txt
arclm.egg-info/entry_points.txt
arclm.egg-info/requires.txt
arclm.egg-info/top_level.txt
arclm/loaders/__init__.py
arclm/loaders/adapters.py
arclm/loaders/arclm_checkpoint.py
arclm/loaders/base.py
arclm/loaders/hf_loader.py
arclm/loaders/registry.py
arclm/loaders/safetensors_loader.py
arclm/loaders/smart_loader.py
arclm/loaders/state_dict_loader.py
arclm/logics/__init__.py
arclm/logics/and_.py
arclm/logics/biconditional.py
arclm/logics/exceptions.py
arclm/logics/implication.py
arclm/logics/model_check.py
arclm/logics/not_.py
arclm/logics/or_.py
arclm/logics/sentence.py
arclm/logics/symbol.py
arclm/models/__init__.py
arclm/preprocess/__init__.py
arclm/preprocess/cleaner.py
arclm/preprocess/cli.py
arclm/preprocess/config.py
arclm/preprocess/duplicate.py
arclm/preprocess/filters.py
arclm/preprocess/io.py
arclm/preprocess/language.py
arclm/preprocess/perplexity.py
arclm/preprocess/pii.py
arclm/preprocess/pipeline.py
arclm/preprocess/report.py
arclm/preprocess/statistics.py
arclm/preprocess/tokenizer_stats.py
arclm/preprocess/toxicity.py
arclm/templates/index.html
arclm/tokenizers/__init__.py
arclm/training/__init__.py
arclm/training/base.py
arclm/training/engine.py
arclm/training/unified.py
docs/changelog.md
docs/cli-reference.md
docs/configuration-reference.md
docs/contributing.md
docs/data-at-scale.md
docs/evaluation-guide.md
docs/faq.md
docs/index.md
docs/inference-guide.md
docs/installation.md
docs/introduction.md
docs/migration-guide.md
docs/production-readiness.md
docs/project-vision.md
docs/quick-start.md
docs/release-readiness.md
docs/roadmap.md
docs/security.md
docs/supported-models.md
docs/tokenization-workflows.md
docs/troubleshooting.md
docs/why-arclm.md
docs/workflow-runner.md
docs/api-reference/configuration-api.md
docs/api-reference/data-api.md
docs/api-reference/evaluation-api.md
docs/api-reference/exceptions.md
docs/api-reference/index.md
docs/api-reference/inference-api.md
docs/api-reference/model-api.md
docs/api-reference/tokenization-api.md
docs/api-reference/training-api.md
docs/audit/documentation-gaps.md
docs/audit/public-api-inventory.md
docs/audit/repository-audit.md
docs/core-concepts/data-first-workflows.md
docs/core-concepts/datasets.md
docs/core-concepts/evaluation.md
docs/core-concepts/inference.md
docs/core-concepts/models.md
docs/core-concepts/preprocessing.md
docs/core-concepts/records-and-schemas.md
docs/core-concepts/tokenization.md
docs/core-concepts/training.md
docs/core-concepts/validation.md
docs/data-guide/cleaning-data.md
docs/data-guide/dataset-splitting.md
docs/data-guide/dataset-validation.md
docs/data-guide/filtering-data.md
docs/data-guide/formatting-conversations.md
docs/data-guide/loading-data.md
docs/data-guide/preparing-sft-data.md
docs/data-guide/reproducible-pipelines.md
docs/data-guide/saving-processed-data.md
docs/data-guide/transforming-data.md
docs/examples/end-to-end-workflow.md
docs/examples/evaluate-model.md
docs/examples/fine-tune-causal-model.md
docs/examples/load-supported-model.md
docs/examples/prepare-text-dataset.md
docs/examples/run-inference.md
docs/examples/tokenize-dataset.md
docs/examples/validate-dataset.md
docs/model-guide/checkpoints.md
docs/model-guide/device-selection.md
docs/model-guide/known-limitations.md
docs/model-guide/loading-models.md
docs/model-guide/loading-tokenizers.md
docs/model-guide/precision.md
docs/model-guide/supported-architectures.md
docs/model-guide/supported-models.md
docs/training-guide/checkpointing.md
docs/training-guide/fine-tuning.md
docs/training-guide/metrics.md
docs/training-guide/pretraining.md
docs/training-guide/resuming-training.md
docs/training-guide/supervised-fine-tuning.md
docs/training-guide/training-configuration.md
docs/training-guide/troubleshooting.md
docs/versions/0.5.0/CUSTOM_TRAINER.md
docs/versions/0.5.0/EXTERNAL_INFERENCE.md
docs/versions/0.5.0/FULL_FEATURE_GUIDE.md
docs/versions/0.5.0/PROJECT_MAP.md
docs/versions/0.5.0/README copy.md
docs/versions/0.5.0/README.md
docs/versions/0.5.0/USAGE.md
docs/versions/0.5.0/VERSIONING.md
docs/versions/0.5.0/reference/LIBRARY_README.md
examples/01_quickstart.py
examples/02_tokenization.py
examples/03_data_processing.py
examples/04_pretraining.py
examples/05_continue_training.py
examples/06_finetuning.py
examples/07_native_sft.py
examples/08_huggingface_sft.py
examples/09_lora_sft.py
examples/10_preprocess_pipeline.py
examples/11_inference.py
examples/12_smart_loader.py
examples/13_diagnostics.py
examples/14_custom_trainer.py
examples/15_custom_hf_sft_loop.py
examples/README.md
examples/qwen3_0_6b_sft/README.md
examples/qwen3_0_6b_sft/benchmark_base_vs_finetuned.py
examples/qwen3_0_6b_sft/test_base_model.py
examples/qwen3_0_6b_sft/test_finetuned_model.py
examples/qwen3_0_6b_sft/train_qwen3_0_6b_sft.py
examples/qwen3_0_6b_sft/data/benchmark_prompts.jsonl
examples/qwen3_0_6b_sft/data/sample_sft.jsonl
templates/index.html
tests/test_checkpoint_reliability.py
tests/test_cli.py
tests/test_config_validation.py
tests/test_data_pipeline.py
tests/test_data_processor.py
tests/test_data_scale.py
tests/test_deprecations.py
tests/test_docs_inventory.py
tests/test_evaluation_inference.py
tests/test_extensibility_security_benchmarks.py
tests/test_external_engine.py
tests/test_gpt2_certification.py
tests/test_instruction_sft.py
tests/test_library_smoke.py
tests/test_model_support_runtime.py
tests/test_package_structure.py
tests/test_phase3_cli.py
tests/test_preprocess_pipeline.py
tests/test_runs_events_workflow.py
tests/test_schemas.py
tests/test_sft_api.py
tests/test_smart_loader.py
tests/test_supported_models.py
tests/test_tokenization_cache.py