Jimmy Sprint 1 - #177
Open
jmacd867 wants to merge 4 commits into
Open
Conversation
18 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #172, #173, #175
What was changed?
inference/README.md— rewritten to document the complete ML workflow end-to-end (data collection → label generation → label validation → dataset preparation → model training → model testing), with purpose, inputs/outputs, and copy-pasteable commands for each step.inference/README_TRAINING.md— removed; its content was folded into the maininference/README.md.inference/requirements.txt— filled in missing packages (e.g. scikit-learn, joblib) with version ranges so the pipeline installs cleanly with one command.inference/.python-version,inference/pyproject.toml,inference/uv.lock— added to pin and lock the supported Python version and dependencies.inference/validate_labels.py— updated during requirements/workflow verification.inference/Models/bestModel.pkl,inference/Models/finalModel.pkl,inference/evaluation_metrics.json,inference/predictions_output.csv— retrained model artifacts and regenerated outputs..gitignore— updated (adds.venvexclusion per Complete and Verify Python Requirements #173).docs/telemetry_schema.md— new schema document for pilot telemetry: every field the X-Plane plugin currently emits (name, type, units, source DataRef), the target-state schema (including fields not yet implemented), and explicit deviation formulas for altitude, heading, vertical speed, and airspeed.CLAUDE.md,docs/agents/issue-tracker.md,docs/agents/triage-labels.md,docs/agents/domain.md— added repo configuration for AI coding agent skills (GitHub as issue tracker, default triage labels, single-context domain docs).Why was it changed?
inference/folder had separate scripts for each ML pipeline stage, but no documented order or setup instructions, making it hard for a new contributor to run the pipeline (Verify and Document the complete ML Workflow #172).inference/requirements.txtwas missing packages the pipeline actually imports, so a clean install failed and required undocumented manual steps (Complete and Verify Python Requirements #173).How was it changed?
inference/and documented its purpose, execution order, and inputs/outputs directly ininference/README.md; verified the instructions in a fresh virtual environment.inference/, added the missing third-party packages and version ranges torequirements.txt, and introducedpyproject.toml/uv.lockplus.python-versionto lock the environment; confirmedvalidate_labels.py,prepare_data.py,train_model.py, andtest_model.pyall run from that clean install.xplane_plugin/src/pilotdatasync-xp11.cpp,xplane_plugin/docs/key_datarefs.md, andinference/Data/data_logger.pyto document the plugin's actual field names, types, and units indocs/telemetry_schema.md. Defineddeviation = actual − designatedfor each of the four flight-dynamics metrics, including a wrapped angular-difference formula for heading to handle the 0°/360° boundary. Called out that no designated/target values and no pilot metadata (certification level, flight hours, rating) exist anywhere in the current pipeline.Screenshots (if applicable):