stream-download-convert-upload-merge-15-refactor-rdf-converters #45

Open
brent.edwards wants to merge 99 commits from stream-download-convert-upload-merge-15-refactor-rdf-converters into master
Member

Trying to merge as much as possible into the master branch.

Trying to merge as much as possible into the master branch.
brent.edwards added 81 commits 2026-01-05 15:25:57 +00:00
Co-authored-by: aider (openrouter/anthropic/claude-sonnet-4) <aider@aider.chat>
Co-authored-by: aider (openrouter/anthropic/claude-sonnet-4) <aider@aider.chat>
Co-authored-by: aider (openrouter/anthropic/claude-sonnet-4) <aider@aider.chat>
Co-authored-by: aider (openrouter/anthropic/claude-sonnet-4) <aider@aider.chat>
Co-authored-by: aider (openrouter/anthropic/claude-sonnet-4) <aider@aider.chat>
Co-authored-by: aider (openrouter/anthropic/claude-sonnet-4) <aider@aider.chat>
Co-authored-by: aider (openrouter/anthropic/claude-sonnet-4) <aider@aider.chat>
Co-authored-by: aider (openrouter/anthropic/claude-sonnet-4) <aider@aider.chat>
Co-authored-by: aider (openrouter/anthropic/claude-sonnet-4) <aider@aider.chat>
Please enter the commit message for your changes. Lines starting
upload_all_datasets.2.py
Co-authored-by: aider (openrouter/openai/o3-mini-high) <aider@aider.chat>
Co-authored-by: aider (openrouter/openai/o3-mini-high) <aider@aider.chat>
Co-authored-by: aider (openrouter/openai/o3-mini-high) <aider@aider.chat>
Co-authored-by: aider (openrouter/openai/o3-mini-high) <aider@aider.chat>
Co-authored-by: aider (openrouter/anthropic/claude-sonnet-4) <aider@aider.chat>
Co-authored-by: aider (openrouter/openai/o3-mini-high) <aider@aider.chat>
Co-authored-by: aider (openrouter/openai/o3-mini-high) <aider@aider.chat>
Reviewed-on: #41
Reviewed-by: Brent Edwards <brent.edwards@cleverthis.com>
Reviewed-on: #42
Reviewed-by: Brent Edwards <brent.edwards@cleverthis.com>
brent.edwards added 9 commits 2026-01-09 00:49:24 +00:00
brent.edwards added 2 commits 2026-01-09 23:49:22 +00:00
Author
Member

I have updated this to make pyright and ruff check pass everything.

The only exception:

❯ pyright scripts/*.py
/home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py
  /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:30:8 - warning: Import "psutil" could not be resolved from source (reportMissingModuleSource)
  /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:33:6 - error: Import "test_phases.compatibility_coordinator" could not be resolved (reportMissingImports)
  /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:34:6 - error: Import "test_phases.deployment_coordinator" could not be resolved (reportMissingImports)
  /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:35:6 - error: Import "test_phases.huggingface_coordinator" could not be resolved (reportMissingImports)
  /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:36:6 - error: Import "test_phases.model_capability_coordinator" could not be resolved (reportMissingImports)
  /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:37:6 - error: Import "test_phases.performance_coordinator" could not be resolved (reportMissingImports)
  /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:40:6 - error: Import "test_phases.training_coordinator" could not be resolved (reportMissingImports)
  /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:41:6 - error: Import "utils.monitoring" could not be resolved (reportMissingImports)
  /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:42:6 - error: Import "utils.reporting" could not be resolved (reportMissingImports)
  /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:43:6 - error: Import "utils.resource_manager" could not be resolved (reportMissingImports)
  /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:46:6 - error: Import "utils.test_environment" could not be resolved (reportMissingImports)
  /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:244:16 - error: Import "torch" could not be resolved (reportMissingImports)
  /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:259:16 - error: Import "torch" could not be resolved (reportMissingImports)
  /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:680:20 - error: Import "torch" could not be resolved (reportMissingImports)
13 errors, 1 warning, 0 informations

@aditya --

Should these be added to the pyproject.toml file, or is the integration_test_orchestrator.py part of the main code base still? (Its name says that it should be part of testing.)

I have updated this to make `pyright` and `ruff check` pass everything. The only exception: ``` ❯ pyright scripts/*.py /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:30:8 - warning: Import "psutil" could not be resolved from source (reportMissingModuleSource) /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:33:6 - error: Import "test_phases.compatibility_coordinator" could not be resolved (reportMissingImports) /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:34:6 - error: Import "test_phases.deployment_coordinator" could not be resolved (reportMissingImports) /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:35:6 - error: Import "test_phases.huggingface_coordinator" could not be resolved (reportMissingImports) /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:36:6 - error: Import "test_phases.model_capability_coordinator" could not be resolved (reportMissingImports) /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:37:6 - error: Import "test_phases.performance_coordinator" could not be resolved (reportMissingImports) /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:40:6 - error: Import "test_phases.training_coordinator" could not be resolved (reportMissingImports) /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:41:6 - error: Import "utils.monitoring" could not be resolved (reportMissingImports) /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:42:6 - error: Import "utils.reporting" could not be resolved (reportMissingImports) /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:43:6 - error: Import "utils.resource_manager" could not be resolved (reportMissingImports) /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:46:6 - error: Import "utils.test_environment" could not be resolved (reportMissingImports) /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:244:16 - error: Import "torch" could not be resolved (reportMissingImports) /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:259:16 - error: Import "torch" could not be resolved (reportMissingImports) /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:680:20 - error: Import "torch" could not be resolved (reportMissingImports) 13 errors, 1 warning, 0 informations ``` @aditya -- Should these be added to the `pyproject.toml` file, or is the `integration_test_orchestrator.py` part of the main code base still? (Its name says that it should be part of testing.)
brent.edwards added 1 commit 2026-01-10 00:05:56 +00:00
brent.edwards added 2 commits 2026-01-10 01:31:38 +00:00
aditya added 4 commits 2026-01-14 14:24:07 +00:00
This pull request can be merged automatically.
You are not authorized to merge this pull request.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin stream-download-convert-upload-merge-15-refactor-rdf-converters:stream-download-convert-upload-merge-15-refactor-rdf-converters
git checkout stream-download-convert-upload-merge-15-refactor-rdf-converters
Sign in to join this conversation.
No Reviewers
No Label
2 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: cleverdatasets/dataset-uploader#45