From 484aea9c3f820681991549444f6263772db7c965 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 19 Jan 2026 16:04:59 +0000 Subject: [PATCH 1/2] Initial plan From cf0fa1f6218c739dd469bab383199dcfd2245653 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 19 Jan 2026 16:51:47 +0000 Subject: [PATCH 2/2] Organize GitHub Actions workflows and clean up auto-generated files Co-authored-by: Bryan-Roe <74067792+Bryan-Roe@users.noreply.github.com> --- .github/workflows/README.md | 117 ++++++++++++++++++++ .github/workflows/aria-tests.yml | 14 +++ .github/workflows/auto-validation.yml | 9 ++ .github/workflows/azureml-train.yml | 10 ++ .github/workflows/ci-pipeline.yml | 11 ++ .github/workflows/e2e-tests.yml | 12 ++ .github/workflows/quantum-orchestration.yml | 10 ++ .gitignore | 1 + autotrain_autogen_20251124_164817.yaml | 21 ---- autotrain_autogen_20251124_165037.yaml | 21 ---- autotrain_autogen_20251124_165435.yaml | 21 ---- autotrain_autogen_20251124_165629.yaml | 21 ---- autotrain_autogen_20251124_165710.yaml | 21 ---- autotrain_autogen_20251124_170505.yaml | 21 ---- autotrain_autogen_20251124_170646.yaml | 21 ---- autotrain_autogen_20251124_170910.yaml | 21 ---- autotrain_autogen_20251124_171042.yaml | 21 ---- autotrain_autogen_20251124_171705.yaml | 21 ---- autotrain_autogen_20251124_171830.yaml | 21 ---- autotrain_autogen_20251124_172030.yaml | 21 ---- autotrain_autogen_20251124_172043.yaml | 21 ---- autotrain_autogen_20251124_172515.yaml | 21 ---- autotrain_autogen_20251124_172559.yaml | 21 ---- autotrain_autogen_20251124_200353.yaml | 21 ---- autotrain_autogen_20251124_200414.yaml | 21 ---- autotrain_autogen_20251124_200606.yaml | 21 ---- autotrain_autogen_20251124_215919.yaml | 21 ---- autotrain_autogen_20251125_004210.yaml | 21 ---- autotrain_autogen_20251128_155329.yaml | 21 ---- 29 files changed, 184 insertions(+), 441 deletions(-) create mode 100644 .github/workflows/README.md delete mode 100644 autotrain_autogen_20251124_164817.yaml delete mode 100644 autotrain_autogen_20251124_165037.yaml delete mode 100644 autotrain_autogen_20251124_165435.yaml delete mode 100644 autotrain_autogen_20251124_165629.yaml delete mode 100644 autotrain_autogen_20251124_165710.yaml delete mode 100644 autotrain_autogen_20251124_170505.yaml delete mode 100644 autotrain_autogen_20251124_170646.yaml delete mode 100644 autotrain_autogen_20251124_170910.yaml delete mode 100644 autotrain_autogen_20251124_171042.yaml delete mode 100644 autotrain_autogen_20251124_171705.yaml delete mode 100644 autotrain_autogen_20251124_171830.yaml delete mode 100644 autotrain_autogen_20251124_172030.yaml delete mode 100644 autotrain_autogen_20251124_172043.yaml delete mode 100644 autotrain_autogen_20251124_172515.yaml delete mode 100644 autotrain_autogen_20251124_172559.yaml delete mode 100644 autotrain_autogen_20251124_200353.yaml delete mode 100644 autotrain_autogen_20251124_200414.yaml delete mode 100644 autotrain_autogen_20251124_200606.yaml delete mode 100644 autotrain_autogen_20251124_215919.yaml delete mode 100644 autotrain_autogen_20251125_004210.yaml delete mode 100644 autotrain_autogen_20251128_155329.yaml diff --git a/.github/workflows/README.md b/.github/workflows/README.md new file mode 100644 index 000000000..a2adcb1cc --- /dev/null +++ b/.github/workflows/README.md @@ -0,0 +1,117 @@ +# GitHub Actions Workflows + +This directory contains all GitHub Actions workflows for the Aria repository. Workflows are organized by purpose and execution pattern. + +## Workflow Organization + +### 🔄 Continuous Integration (CI) +- **`ci-pipeline.yml`** - Main CI pipeline + - Runs on: Push/PR to main/dev, daily schedule + - Purpose: Code validation, tests, daily training, model deployment + - Duration: ~15-30 minutes + +### ✅ Testing Workflows +- **`aria-tests.yml`** - Comprehensive Aria testing + - Runs on: Changes to `aria_web/` or Aria test files + - Purpose: Multi-version (3.10-3.12), multi-browser E2E tests + - Duration: ~20-30 minutes + - Note: Path-filtered, more thorough + +- **`e2e-tests.yml`** - Quick regression testing + - Runs on: Any push/PR to main + - Purpose: Fast Aria regression tests + - Duration: ~10-15 minutes + - Note: No path filtering, catches broader regressions + +### 🔬 Validation Workflows +- **`auto-validation.yml`** - Orchestrator validation + - Runs on: Changes to orchestrator configs/scripts, daily schedule + - Purpose: Validates `autotrain.yaml` and `quantum_autorun.yaml` + - Duration: ~5-10 minutes + +### ☁️ Cloud Workflows +- **`azureml-train.yml`** - Azure ML training + - Runs on: Manual trigger only + - Purpose: Submit LoRA fine-tuning jobs to Azure ML + - Requires: Azure credentials, ML workspace + +- **`quantum-orchestration.yml`** - Azure Quantum + - Runs on: Push to main, manual trigger + - Purpose: Execute quantum workflows on Azure Quantum + - Requires: Azure credentials, Quantum workspace + +## Workflow Patterns + +### Automatic Triggers +```yaml +on: + push: + branches: [main] # Runs on commits to main + pull_request: + branches: [main] # Runs on PRs targeting main + schedule: + - cron: '0 2 * * *' # Runs daily at 2 AM UTC +``` + +### Manual Triggers +```yaml +on: + workflow_dispatch: # Allows manual execution via GitHub UI + inputs: + parameter: ... # Custom parameters +``` + +### Path Filtering +```yaml +on: + push: + paths: + - 'aria_web/**' # Only runs if these paths change + - 'tests/**' +``` + +## Best Practices + +### When to Use Each Workflow +- **Local Development**: Run tests locally first with `pytest` +- **PR Review**: `e2e-tests.yml` provides quick validation +- **Aria Changes**: `aria-tests.yml` runs comprehensive tests automatically +- **Daily CI**: `ci-pipeline.yml` catches integration issues overnight +- **Training**: Use `azureml-train.yml` for GPU-accelerated cloud training +- **Quantum**: Use `quantum-orchestration.yml` for quantum computing tasks + +### Workflow Naming Convention +- Use descriptive names that indicate purpose +- Suffix with type: `-tests.yml`, `-validation.yml`, `-train.yml` +- Group related workflows with consistent prefixes + +### Adding New Workflows +1. Choose appropriate trigger pattern (push/PR/schedule/manual) +2. Add header comment block explaining purpose +3. Use path filtering when possible to reduce unnecessary runs +4. Set appropriate timeout limits +5. Upload artifacts for debugging +6. Update this README with workflow description + +## Troubleshooting + +### Workflow Not Running +- Check branch filters match your target branch +- Verify path filters include your changed files +- Ensure required secrets are configured + +### Workflow Failing +- Check job logs in GitHub Actions tab +- Download artifacts for detailed results +- Run equivalent commands locally for debugging + +### Reducing CI Time +- Use path filtering to avoid unnecessary runs +- Cache dependencies (pip, npm) +- Run expensive jobs only on schedule or manual trigger +- Parallelize independent jobs with `needs:` dependencies + +## Resources +- [GitHub Actions Documentation](https://docs.github.com/en/actions) +- [Workflow Syntax](https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions) +- [Repository Root README](../../README.md) diff --git a/.github/workflows/aria-tests.yml b/.github/workflows/aria-tests.yml index dacb22819..82c04a89d 100644 --- a/.github/workflows/aria-tests.yml +++ b/.github/workflows/aria-tests.yml @@ -1,3 +1,17 @@ +# ============================================================================= +# Aria Comprehensive Tests - Full Aria character system testing +# ============================================================================= +# Purpose: Comprehensive testing of Aria web interface with multiple browsers +# Triggers: Changes to aria_web or test files (path-filtered) +# Jobs: +# - unit-integration-tests: Tests across Python 3.10, 3.11, 3.12 +# - playwright-e2e: Playwright browser automation tests +# - pyppeteer-e2e: Pyppeteer-based E2E tests +# - containerized-chrome-e2e: Selenium containerized tests +# - test-summary: Aggregates results from all test jobs +# Note: More comprehensive but slower than e2e-tests.yml +# ============================================================================= + name: Aria E2E Tests on: diff --git a/.github/workflows/auto-validation.yml b/.github/workflows/auto-validation.yml index b39ed05fb..7032ddbbb 100644 --- a/.github/workflows/auto-validation.yml +++ b/.github/workflows/auto-validation.yml @@ -1,3 +1,12 @@ +# ============================================================================= +# Auto Validation - Orchestrator configuration validation +# ============================================================================= +# Purpose: Validates autotrain.yaml and quantum_autorun.yaml configurations +# Triggers: Changes to YAML configs, training scripts, or daily schedule +# Jobs: +# - dry-run: Validates orchestrator configs without execution +# ============================================================================= + name: Auto Validation on: diff --git a/.github/workflows/azureml-train.yml b/.github/workflows/azureml-train.yml index 62e5ceb0e..f8da4d602 100644 --- a/.github/workflows/azureml-train.yml +++ b/.github/workflows/azureml-train.yml @@ -1,3 +1,13 @@ +# ============================================================================= +# AzureML LoRA Training - Cloud-based model fine-tuning +# ============================================================================= +# Purpose: Submits LoRA fine-tuning jobs to Azure ML +# Triggers: Manual workflow_dispatch only +# Jobs: +# - submit-job: Submits Azure ML training job with specified parameters +# Note: Requires Azure credentials and ML workspace configuration +# ============================================================================= + name: AzureML LoRA Train on: diff --git a/.github/workflows/ci-pipeline.yml b/.github/workflows/ci-pipeline.yml index c4b8fda49..e78526674 100644 --- a/.github/workflows/ci-pipeline.yml +++ b/.github/workflows/ci-pipeline.yml @@ -1,3 +1,14 @@ +# ============================================================================= +# QAI CI Pipeline - Main continuous integration workflow +# ============================================================================= +# Purpose: Validates code quality, runs tests, and performs daily training +# Triggers: Push/PR to main/dev branches, daily scheduled runs +# Jobs: +# - validate: Code validation, unit & integration tests +# - train: Daily scheduled training workflow (requires validate pass) +# - deploy: Model deployment after successful training +# ============================================================================= + name: QAI CI Pipeline on: diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml index 9cd0f4692..49b16c3cc 100644 --- a/.github/workflows/e2e-tests.yml +++ b/.github/workflows/e2e-tests.yml @@ -1,3 +1,15 @@ +# ============================================================================= +# E2E + Integration Tests - Quick Aria regression testing +# ============================================================================= +# Purpose: Fast regression tests for Aria character system +# Triggers: Any push/PR to main (no path filtering) +# Jobs: +# - integration: Quick unit & integration tests +# - e2e_playwright: Playwright E2E tests +# - containerized_chrome: Pyppeteer containerized tests +# Note: Faster subset of aria-tests.yml, runs on all changes +# ============================================================================= + name: E2E + Integration Tests on: diff --git a/.github/workflows/quantum-orchestration.yml b/.github/workflows/quantum-orchestration.yml index 8ff82f68e..1290e0917 100644 --- a/.github/workflows/quantum-orchestration.yml +++ b/.github/workflows/quantum-orchestration.yml @@ -1,3 +1,13 @@ +# ============================================================================= +# Quantum Automation - Azure Quantum workflow orchestration +# ============================================================================= +# Purpose: Executes quantum computing workflows on Azure Quantum +# Triggers: Push to main or manual workflow_dispatch +# Jobs: +# - run-quantum: Runs quantum orchestration scripts +# Note: Requires Azure credentials for quantum workspace access +# ============================================================================= + name: Quantum Automation on: diff --git a/.gitignore b/.gitignore index 104d84767..769e300d8 100644 --- a/.gitignore +++ b/.gitignore @@ -177,3 +177,4 @@ data_out/quantum_autorun/status.json # Auto-generated config files config/autogen/ autotrain_testtoken.yaml +autotrain_autogen_*.yaml diff --git a/autotrain_autogen_20251124_164817.yaml b/autotrain_autogen_20251124_164817.yaml deleted file mode 100644 index 1d9953460..000000000 --- a/autotrain_autogen_20251124_164817.yaml +++ /dev/null @@ -1,21 +0,0 @@ -version: 1 - -# Auto-generated training config for synthetic data -# Dataset: C:/Users/Bryan/OneDrive/AI/datasets/chat/auto_generated -# Generated: 2025-11-24T16:48:17.493572 -# Model: microsoft/Phi-3.5-mini-instruct - -jobs: - - name: phi35_ultra_autogen_20251124_164817 - category: autogen - runner: hf - config: AI/microsoft_phi-silica-3.6_v1/lora/lora_ultrafast.yaml - dataset: "C:/Users/Bryan/OneDrive/AI/datasets/chat/auto_generated" - save_dir: data_out/lora_training/autogen_20251124_164817 - epochs: 1 - max_train_samples: null - max_eval_samples: null - learning_rate: 0.0004 - lora_dropout: 0.05 - lora_rank: 4 - hf_model_id: microsoft/Phi-3.5-mini-instruct diff --git a/autotrain_autogen_20251124_165037.yaml b/autotrain_autogen_20251124_165037.yaml deleted file mode 100644 index 4611a5831..000000000 --- a/autotrain_autogen_20251124_165037.yaml +++ /dev/null @@ -1,21 +0,0 @@ -version: 1 - -# Auto-generated training config for synthetic data -# Dataset: C:/Users/Bryan/OneDrive/AI/datasets/chat/auto_generated -# Generated: 2025-11-24T16:50:37.014885 -# Model: Qwen/Qwen2.5-3B-Instruct - -jobs: - - name: qwen_ultra_autogen_20251124_165037 - category: autogen - runner: hf - config: AI/microsoft_phi-silica-3.6_v1/lora/lora_qwen_ultrafast.yaml - dataset: "C:/Users/Bryan/OneDrive/AI/datasets/chat/auto_generated" - save_dir: data_out/lora_training/autogen_20251124_165037 - epochs: 1 - max_train_samples: null - max_eval_samples: null - learning_rate: 0.0003 - lora_dropout: 0.05 - lora_rank: 4 - hf_model_id: Qwen/Qwen2.5-3B-Instruct diff --git a/autotrain_autogen_20251124_165435.yaml b/autotrain_autogen_20251124_165435.yaml deleted file mode 100644 index 22d58e4b2..000000000 --- a/autotrain_autogen_20251124_165435.yaml +++ /dev/null @@ -1,21 +0,0 @@ -version: 1 - -# Auto-generated training config for synthetic data -# Dataset: C:/Users/Bryan/OneDrive/AI/datasets/chat/auto_generated -# Generated: 2025-11-24T16:54:35.357849 -# Model: microsoft/Phi-3.5-mini-instruct - -jobs: - - name: phi35_ultra_autogen_20251124_165435 - category: autogen - runner: hf - config: AI/microsoft_phi-silica-3.6_v1/lora/lora_ultrafast.yaml - dataset: "C:/Users/Bryan/OneDrive/AI/datasets/chat/auto_generated" - save_dir: data_out/lora_training/autogen_20251124_165435 - epochs: 1 - max_train_samples: null - max_eval_samples: null - learning_rate: 0.0004 - lora_dropout: 0.05 - lora_rank: 4 - hf_model_id: microsoft/Phi-3.5-mini-instruct diff --git a/autotrain_autogen_20251124_165629.yaml b/autotrain_autogen_20251124_165629.yaml deleted file mode 100644 index 420b8275c..000000000 --- a/autotrain_autogen_20251124_165629.yaml +++ /dev/null @@ -1,21 +0,0 @@ -version: 1 - -# Auto-generated training config for synthetic data -# Dataset: C:/Users/Bryan/OneDrive/AI/datasets/chat/auto_generated -# Generated: 2025-11-24T16:56:29.529507 -# Model: microsoft/Phi-3.5-mini-instruct - -jobs: - - name: phi35_ultra_autogen_20251124_165629 - category: autogen - runner: hf - config: AI/microsoft_phi-silica-3.6_v1/lora/lora_ultrafast.yaml - dataset: "C:/Users/Bryan/OneDrive/AI/datasets/chat/auto_generated" - save_dir: data_out/lora_training/autogen_20251124_165629 - epochs: 1 - max_train_samples: null - max_eval_samples: null - learning_rate: 0.0004 - lora_dropout: 0.05 - lora_rank: 4 - hf_model_id: microsoft/Phi-3.5-mini-instruct diff --git a/autotrain_autogen_20251124_165710.yaml b/autotrain_autogen_20251124_165710.yaml deleted file mode 100644 index b8c7410fd..000000000 --- a/autotrain_autogen_20251124_165710.yaml +++ /dev/null @@ -1,21 +0,0 @@ -version: 1 - -# Auto-generated training config for synthetic data -# Dataset: C:/Users/Bryan/OneDrive/AI/datasets/chat/auto_generated -# Generated: 2025-11-24T16:57:10.730068 -# Model: microsoft/Phi-3.5-mini-instruct - -jobs: - - name: phi35_ultra_autogen_20251124_165710 - category: autogen - runner: hf - config: AI/microsoft_phi-silica-3.6_v1/lora/lora_ultrafast.yaml - dataset: "C:/Users/Bryan/OneDrive/AI/datasets/chat/auto_generated" - save_dir: data_out/lora_training/autogen_20251124_165710 - epochs: 1 - max_train_samples: null - max_eval_samples: null - learning_rate: 0.0004 - lora_dropout: 0.05 - lora_rank: 4 - hf_model_id: microsoft/Phi-3.5-mini-instruct diff --git a/autotrain_autogen_20251124_170505.yaml b/autotrain_autogen_20251124_170505.yaml deleted file mode 100644 index ce3669f78..000000000 --- a/autotrain_autogen_20251124_170505.yaml +++ /dev/null @@ -1,21 +0,0 @@ -version: 1 - -# Auto-generated training config for synthetic data -# Dataset: C:/Users/Bryan/OneDrive/AI/datasets/chat/auto_generated -# Generated: 2025-11-24T17:05:05.969149 -# Model: microsoft/Phi-3.5-mini-instruct - -jobs: - - name: phi35_ultra_autogen_20251124_170505 - category: autogen - runner: hf - config: AI/microsoft_phi-silica-3.6_v1/lora/lora_ultrafast.yaml - dataset: "C:/Users/Bryan/OneDrive/AI/datasets/chat/auto_generated" - save_dir: data_out/lora_training/autogen_20251124_170505 - epochs: 1 - max_train_samples: null - max_eval_samples: null - learning_rate: 0.0004 - lora_dropout: 0.05 - lora_rank: 4 - hf_model_id: microsoft/Phi-3.5-mini-instruct diff --git a/autotrain_autogen_20251124_170646.yaml b/autotrain_autogen_20251124_170646.yaml deleted file mode 100644 index cfbfc3c80..000000000 --- a/autotrain_autogen_20251124_170646.yaml +++ /dev/null @@ -1,21 +0,0 @@ -version: 1 - -# Auto-generated training config for synthetic data -# Dataset: C:/Users/Bryan/OneDrive/AI/datasets/chat/auto_generated -# Generated: 2025-11-24T17:06:46.014298 -# Model: Qwen/Qwen2.5-3B-Instruct - -jobs: - - name: qwen_ultra_autogen_20251124_170646 - category: autogen - runner: hf - config: AI/microsoft_phi-silica-3.6_v1/lora/lora_qwen_ultrafast.yaml - dataset: "C:/Users/Bryan/OneDrive/AI/datasets/chat/auto_generated" - save_dir: data_out/lora_training/autogen_20251124_170646 - epochs: 1 - max_train_samples: null - max_eval_samples: null - learning_rate: 0.0003 - lora_dropout: 0.05 - lora_rank: 4 - hf_model_id: Qwen/Qwen2.5-3B-Instruct diff --git a/autotrain_autogen_20251124_170910.yaml b/autotrain_autogen_20251124_170910.yaml deleted file mode 100644 index 9ba007811..000000000 --- a/autotrain_autogen_20251124_170910.yaml +++ /dev/null @@ -1,21 +0,0 @@ -version: 1 - -# Auto-generated training config for synthetic data -# Dataset: C:/Users/Bryan/OneDrive/AI/datasets/chat/auto_generated -# Generated: 2025-11-24T17:09:10.158345 -# Model: microsoft/Phi-3.5-mini-instruct - -jobs: - - name: phi35_ultra_autogen_20251124_170910 - category: autogen - runner: hf - config: AI/microsoft_phi-silica-3.6_v1/lora/lora_ultrafast.yaml - dataset: "C:/Users/Bryan/OneDrive/AI/datasets/chat/auto_generated" - save_dir: data_out/lora_training/autogen_20251124_170910 - epochs: 1 - max_train_samples: null - max_eval_samples: null - learning_rate: 0.0004 - lora_dropout: 0.05 - lora_rank: 4 - hf_model_id: microsoft/Phi-3.5-mini-instruct diff --git a/autotrain_autogen_20251124_171042.yaml b/autotrain_autogen_20251124_171042.yaml deleted file mode 100644 index 5c944a946..000000000 --- a/autotrain_autogen_20251124_171042.yaml +++ /dev/null @@ -1,21 +0,0 @@ -version: 1 - -# Auto-generated training config for synthetic data -# Dataset: C:/Users/Bryan/OneDrive/AI/datasets/chat/auto_generated -# Generated: 2025-11-24T17:10:42.078023 -# Model: Qwen/Qwen2.5-3B-Instruct - -jobs: - - name: qwen_ultra_autogen_20251124_171042 - category: autogen - runner: hf - config: AI/microsoft_phi-silica-3.6_v1/lora/lora_qwen_ultrafast.yaml - dataset: "C:/Users/Bryan/OneDrive/AI/datasets/chat/auto_generated" - save_dir: data_out/lora_training/autogen_20251124_171042 - epochs: 1 - max_train_samples: null - max_eval_samples: null - learning_rate: 0.0003 - lora_dropout: 0.05 - lora_rank: 4 - hf_model_id: Qwen/Qwen2.5-3B-Instruct diff --git a/autotrain_autogen_20251124_171705.yaml b/autotrain_autogen_20251124_171705.yaml deleted file mode 100644 index 16d98a7c2..000000000 --- a/autotrain_autogen_20251124_171705.yaml +++ /dev/null @@ -1,21 +0,0 @@ -version: 1 - -# Auto-generated training config for synthetic data -# Dataset: C:/Users/Bryan/OneDrive/AI/datasets/chat/auto_generated -# Generated: 2025-11-24T17:17:05.215323 -# Model: microsoft/Phi-3.5-mini-instruct - -jobs: - - name: phi35_ultra_autogen_20251124_171705 - category: autogen - runner: hf - config: AI/microsoft_phi-silica-3.6_v1/lora/lora_ultrafast.yaml - dataset: "C:/Users/Bryan/OneDrive/AI/datasets/chat/auto_generated" - save_dir: data_out/lora_training/autogen_20251124_171705 - epochs: 1 - max_train_samples: null - max_eval_samples: null - learning_rate: 0.0004 - lora_dropout: 0.05 - lora_rank: 4 - hf_model_id: microsoft/Phi-3.5-mini-instruct diff --git a/autotrain_autogen_20251124_171830.yaml b/autotrain_autogen_20251124_171830.yaml deleted file mode 100644 index d567830d8..000000000 --- a/autotrain_autogen_20251124_171830.yaml +++ /dev/null @@ -1,21 +0,0 @@ -version: 1 - -# Auto-generated training config for synthetic data -# Dataset: C:/Users/Bryan/OneDrive/AI/datasets/chat/auto_generated -# Generated: 2025-11-24T17:18:30.502899 -# Model: Qwen/Qwen2.5-3B-Instruct - -jobs: - - name: qwen_ultra_autogen_20251124_171830 - category: autogen - runner: hf - config: AI/microsoft_phi-silica-3.6_v1/lora/lora_qwen_ultrafast.yaml - dataset: "C:/Users/Bryan/OneDrive/AI/datasets/chat/auto_generated" - save_dir: data_out/lora_training/autogen_20251124_171830 - epochs: 1 - max_train_samples: null - max_eval_samples: null - learning_rate: 0.0003 - lora_dropout: 0.05 - lora_rank: 4 - hf_model_id: Qwen/Qwen2.5-3B-Instruct diff --git a/autotrain_autogen_20251124_172030.yaml b/autotrain_autogen_20251124_172030.yaml deleted file mode 100644 index 64c39be5c..000000000 --- a/autotrain_autogen_20251124_172030.yaml +++ /dev/null @@ -1,21 +0,0 @@ -version: 1 - -# Auto-generated training config for synthetic data -# Dataset: C:/Users/Bryan/OneDrive/AI/datasets/chat/auto_generated -# Generated: 2025-11-24T17:20:30.440545 -# Model: Qwen/Qwen2.5-3B-Instruct - -jobs: - - name: qwen_ultra_autogen_20251124_172030 - category: autogen - runner: hf - config: AI/microsoft_phi-silica-3.6_v1/lora/lora_qwen_ultrafast.yaml - dataset: "C:/Users/Bryan/OneDrive/AI/datasets/chat/auto_generated" - save_dir: data_out/lora_training/autogen_20251124_172030 - epochs: 1 - max_train_samples: null - max_eval_samples: null - learning_rate: 0.0003 - lora_dropout: 0.05 - lora_rank: 4 - hf_model_id: Qwen/Qwen2.5-3B-Instruct diff --git a/autotrain_autogen_20251124_172043.yaml b/autotrain_autogen_20251124_172043.yaml deleted file mode 100644 index 796cc9cd0..000000000 --- a/autotrain_autogen_20251124_172043.yaml +++ /dev/null @@ -1,21 +0,0 @@ -version: 1 - -# Auto-generated training config for synthetic data -# Dataset: C:/Users/Bryan/OneDrive/AI/datasets/chat/auto_generated -# Generated: 2025-11-24T17:20:43.924742 -# Model: microsoft/Phi-3.5-mini-instruct - -jobs: - - name: phi35_ultra_autogen_20251124_172043 - category: autogen - runner: hf - config: AI/microsoft_phi-silica-3.6_v1/lora/lora_ultrafast.yaml - dataset: "C:/Users/Bryan/OneDrive/AI/datasets/chat/auto_generated" - save_dir: data_out/lora_training/autogen_20251124_172043 - epochs: 1 - max_train_samples: null - max_eval_samples: null - learning_rate: 0.0004 - lora_dropout: 0.05 - lora_rank: 4 - hf_model_id: microsoft/Phi-3.5-mini-instruct diff --git a/autotrain_autogen_20251124_172515.yaml b/autotrain_autogen_20251124_172515.yaml deleted file mode 100644 index fa0667ae7..000000000 --- a/autotrain_autogen_20251124_172515.yaml +++ /dev/null @@ -1,21 +0,0 @@ -version: 1 - -# Auto-generated training config for synthetic data -# Dataset: C:/Users/Bryan/OneDrive/AI/datasets/chat/auto_generated -# Generated: 2025-11-24T17:25:15.272091 -# Model: Qwen/Qwen2.5-3B-Instruct - -jobs: - - name: qwen_ultra_autogen_20251124_172515 - category: autogen - runner: hf - config: AI/microsoft_phi-silica-3.6_v1/lora/lora_qwen_ultrafast.yaml - dataset: "C:/Users/Bryan/OneDrive/AI/datasets/chat/auto_generated" - save_dir: data_out/lora_training/autogen_20251124_172515 - epochs: 1 - max_train_samples: null - max_eval_samples: null - learning_rate: 0.0003 - lora_dropout: 0.05 - lora_rank: 4 - hf_model_id: Qwen/Qwen2.5-3B-Instruct diff --git a/autotrain_autogen_20251124_172559.yaml b/autotrain_autogen_20251124_172559.yaml deleted file mode 100644 index 053ae116c..000000000 --- a/autotrain_autogen_20251124_172559.yaml +++ /dev/null @@ -1,21 +0,0 @@ -version: 1 - -# Auto-generated training config for synthetic data -# Dataset: C:/Users/Bryan/OneDrive/AI/datasets/chat/auto_generated -# Generated: 2025-11-24T17:25:59.907573 -# Model: microsoft/Phi-3.5-mini-instruct - -jobs: - - name: phi35_ultra_autogen_20251124_172559 - category: autogen - runner: hf - config: AI/microsoft_phi-silica-3.6_v1/lora/lora_ultrafast.yaml - dataset: "C:/Users/Bryan/OneDrive/AI/datasets/chat/auto_generated" - save_dir: data_out/lora_training/autogen_20251124_172559 - epochs: 1 - max_train_samples: null - max_eval_samples: null - learning_rate: 0.0004 - lora_dropout: 0.05 - lora_rank: 4 - hf_model_id: microsoft/Phi-3.5-mini-instruct diff --git a/autotrain_autogen_20251124_200353.yaml b/autotrain_autogen_20251124_200353.yaml deleted file mode 100644 index 2c033554a..000000000 --- a/autotrain_autogen_20251124_200353.yaml +++ /dev/null @@ -1,21 +0,0 @@ -version: 1 - -# Auto-generated training config for synthetic data -# Dataset: C:/Users/Bryan/OneDrive/AI/datasets/chat/auto_generated -# Generated: 2025-11-24T20:03:53.578403 -# Model: TinyLlama/TinyLlama-1.1B-Chat-v1.0 - -jobs: - - name: tinyllama_ultra_autogen_20251124_200353 - category: autogen - runner: hf - config: AI/microsoft_phi-silica-3.6_v1/lora/lora_tinyllama_ultrafast.yaml - dataset: "C:/Users/Bryan/OneDrive/AI/datasets/chat/auto_generated" - save_dir: data_out/lora_training/autogen_20251124_200353 - epochs: 1 - max_train_samples: null - max_eval_samples: null - learning_rate: 0.00035 - lora_dropout: 0.05 - lora_rank: 4 - hf_model_id: TinyLlama/TinyLlama-1.1B-Chat-v1.0 diff --git a/autotrain_autogen_20251124_200414.yaml b/autotrain_autogen_20251124_200414.yaml deleted file mode 100644 index 1bf539ae2..000000000 --- a/autotrain_autogen_20251124_200414.yaml +++ /dev/null @@ -1,21 +0,0 @@ -version: 1 - -# Auto-generated training config for synthetic data -# Dataset: C:/Users/Bryan/OneDrive/AI/datasets/chat/auto_generated -# Generated: 2025-11-24T20:04:14.026733 -# Model: TinyLlama/TinyLlama-1.1B-Chat-v1.0 - -jobs: - - name: tinyllama_ultra_autogen_20251124_200414 - category: autogen - runner: hf - config: AI/microsoft_phi-silica-3.6_v1/lora/lora_tinyllama_ultrafast.yaml - dataset: "C:/Users/Bryan/OneDrive/AI/datasets/chat/auto_generated" - save_dir: data_out/lora_training/autogen_20251124_200414 - epochs: 1 - max_train_samples: null - max_eval_samples: null - learning_rate: 0.00035 - lora_dropout: 0.05 - lora_rank: 4 - hf_model_id: TinyLlama/TinyLlama-1.1B-Chat-v1.0 diff --git a/autotrain_autogen_20251124_200606.yaml b/autotrain_autogen_20251124_200606.yaml deleted file mode 100644 index 0dc1e13aa..000000000 --- a/autotrain_autogen_20251124_200606.yaml +++ /dev/null @@ -1,21 +0,0 @@ -version: 1 - -# Auto-generated training config for synthetic data -# Dataset: C:/Users/Bryan/OneDrive/AI/datasets/chat/auto_generated -# Generated: 2025-11-24T20:06:06.427957 -# Model: TinyLlama/TinyLlama-1.1B-Chat-v1.0 - -jobs: - - name: tinyllama_ultra_autogen_20251124_200606 - category: autogen - runner: hf - config: AI/microsoft_phi-silica-3.6_v1/lora/lora_tinyllama_ultrafast.yaml - dataset: "C:/Users/Bryan/OneDrive/AI/datasets/chat/auto_generated" - save_dir: data_out/lora_training/autogen_20251124_200606 - epochs: 1 - max_train_samples: null - max_eval_samples: null - learning_rate: 0.00035 - lora_dropout: 0.05 - lora_rank: 4 - hf_model_id: TinyLlama/TinyLlama-1.1B-Chat-v1.0 diff --git a/autotrain_autogen_20251124_215919.yaml b/autotrain_autogen_20251124_215919.yaml deleted file mode 100644 index 5ee14d3f6..000000000 --- a/autotrain_autogen_20251124_215919.yaml +++ /dev/null @@ -1,21 +0,0 @@ -version: 1 - -# Auto-generated training config for synthetic data -# Dataset: C:/Users/Bryan/OneDrive/AI/datasets/chat/auto_generated -# Generated: 2025-11-24T21:59:19.111866 -# Model: microsoft/Phi-3.5-mini-instruct - -jobs: - - name: phi35_ultra_autogen_20251124_215919 - category: autogen - runner: hf - config: AI/microsoft_phi-silica-3.6_v1/lora/lora_ultrafast.yaml - dataset: "C:/Users/Bryan/OneDrive/AI/datasets/chat/auto_generated" - save_dir: data_out/lora_training/autogen_20251124_215919 - epochs: 1 - max_train_samples: null - max_eval_samples: null - learning_rate: 0.0004 - lora_dropout: 0.05 - lora_rank: 4 - hf_model_id: microsoft/Phi-3.5-mini-instruct diff --git a/autotrain_autogen_20251125_004210.yaml b/autotrain_autogen_20251125_004210.yaml deleted file mode 100644 index fc5734396..000000000 --- a/autotrain_autogen_20251125_004210.yaml +++ /dev/null @@ -1,21 +0,0 @@ -version: 1 - -# Auto-generated training config for synthetic data -# Dataset: datasets/chat/mega_synthetic -# Generated: 2025-11-25T00:42:10.791642 -# Model: microsoft/Phi-3.5-mini-instruct - -jobs: - - name: phi35_ultra_autogen_20251125_004210 - category: autogen - runner: hf - config: AI/microsoft_phi-silica-3.6_v1/lora/lora_ultrafast.yaml - dataset: "datasets/chat/mega_synthetic" - save_dir: data_out/lora_training/autogen_20251125_004210 - epochs: 1 - max_train_samples: null - max_eval_samples: null - learning_rate: 0.0004 - lora_dropout: 0.05 - lora_rank: 4 - hf_model_id: microsoft/Phi-3.5-mini-instruct diff --git a/autotrain_autogen_20251128_155329.yaml b/autotrain_autogen_20251128_155329.yaml deleted file mode 100644 index 22f931a6f..000000000 --- a/autotrain_autogen_20251128_155329.yaml +++ /dev/null @@ -1,21 +0,0 @@ -version: 1 - -# Auto-generated training config for synthetic data -# Dataset: /workspaces/AI/datasets/chat/auto_generated -# Generated: 2025-11-28T15:53:29.006206 -# Model: TinyLlama/TinyLlama-1.1B-Chat-v1.0 - -jobs: - - name: tinyllama_ultra_autogen_20251128_155329 - category: autogen - runner: hf - config: AI/microsoft_phi-silica-3.6_v1/lora/lora_tinyllama_ultrafast.yaml - dataset: "/workspaces/AI/datasets/chat/auto_generated" - save_dir: data_out/lora_training/autogen_20251128_155329 - epochs: 1 - max_train_samples: null - max_eval_samples: null - learning_rate: 0.00035 - lora_dropout: 0.05 - lora_rank: 4 - hf_model_id: TinyLlama/TinyLlama-1.1B-Chat-v1.0