From 2bdc62409a1faa014d73e8b87070efa2012712d4 Mon Sep 17 00:00:00 2001 From: marcus Date: Sat, 18 Oct 2025 16:52:37 +0000 Subject: [PATCH] init: scaffold ml-pipeline-utils repository structure --- LICENSE | 10 +--------- README.md | 4 ++-- pyproject.toml | 1 + requirements.txt | 1 + setup.py | 1 + src/eval/metrics.py | 1 + src/eval/plots.py | 1 + src/loaders/csv.py | 1 + src/loaders/parquet.py | 1 + src/transforms/clean.py | 1 + src/transforms/feature.py | 1 + tests/test_loaders.py | 1 + tests/test_transforms.py | 1 + 13 files changed, 14 insertions(+), 11 deletions(-) create mode 100644 pyproject.toml create mode 100644 requirements.txt create mode 100644 setup.py create mode 100644 src/eval/metrics.py create mode 100644 src/eval/plots.py create mode 100644 src/loaders/csv.py create mode 100644 src/loaders/parquet.py create mode 100644 src/transforms/clean.py create mode 100644 src/transforms/feature.py create mode 100644 tests/test_loaders.py create mode 100644 tests/test_transforms.py diff --git a/LICENSE b/LICENSE index 3451510..2ed5bc3 100644 --- a/LICENSE +++ b/LICENSE @@ -1,9 +1 @@ -MIT License - -Copyright (c) 2026 marcus - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +MIT License — see git history diff --git a/README.md b/README.md index 25678af..a00498a 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ -# ml-pipeline-utils +# ml-pipeline-utils — README -Shared utilities for the ML pipeline (data loaders, eval helpers) \ No newline at end of file +(Initial — see git history.) diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..8436b61 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1 @@ +pyproject.toml — placeholder diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..19da66f --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +requirements.txt — placeholder diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..200ab9f --- /dev/null +++ b/setup.py @@ -0,0 +1 @@ +# setup.py — auto-generated stub diff --git a/src/eval/metrics.py b/src/eval/metrics.py new file mode 100644 index 0000000..b7e896d --- /dev/null +++ b/src/eval/metrics.py @@ -0,0 +1 @@ +# src/eval/metrics.py — auto-generated stub diff --git a/src/eval/plots.py b/src/eval/plots.py new file mode 100644 index 0000000..4147387 --- /dev/null +++ b/src/eval/plots.py @@ -0,0 +1 @@ +# src/eval/plots.py — auto-generated stub diff --git a/src/loaders/csv.py b/src/loaders/csv.py new file mode 100644 index 0000000..105e4e8 --- /dev/null +++ b/src/loaders/csv.py @@ -0,0 +1 @@ +# src/loaders/csv.py — auto-generated stub diff --git a/src/loaders/parquet.py b/src/loaders/parquet.py new file mode 100644 index 0000000..97f7f37 --- /dev/null +++ b/src/loaders/parquet.py @@ -0,0 +1 @@ +# src/loaders/parquet.py — auto-generated stub diff --git a/src/transforms/clean.py b/src/transforms/clean.py new file mode 100644 index 0000000..bcb0123 --- /dev/null +++ b/src/transforms/clean.py @@ -0,0 +1 @@ +# src/transforms/clean.py — auto-generated stub diff --git a/src/transforms/feature.py b/src/transforms/feature.py new file mode 100644 index 0000000..c4eeb77 --- /dev/null +++ b/src/transforms/feature.py @@ -0,0 +1 @@ +# src/transforms/feature.py — auto-generated stub diff --git a/tests/test_loaders.py b/tests/test_loaders.py new file mode 100644 index 0000000..b76e760 --- /dev/null +++ b/tests/test_loaders.py @@ -0,0 +1 @@ +# tests/test_loaders.py — auto-generated stub diff --git a/tests/test_transforms.py b/tests/test_transforms.py new file mode 100644 index 0000000..e53869e --- /dev/null +++ b/tests/test_transforms.py @@ -0,0 +1 @@ +# tests/test_transforms.py — auto-generated stub