-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update pyproject.toml, add readme * update pyproject.toml, call to pydantic * move code around
- Loading branch information
Showing
19 changed files
with
24 additions
and
12 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
# IDE stuff | ||
.vscode/ | ||
|
||
# Byte-compiled / optimized / DLL files | ||
__pycache__/ | ||
*.py[cod] | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# ML pipelines | ||
|
||
Simple ML pipeline repo for experimenting with CI/CD / DevOps / MLOps. |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Empty file.
File renamed without changes.
Empty file.
File renamed without changes.
Empty file.
2 changes: 1 addition & 1 deletion
2
ml_pipelines/data_gen_pipeline.py → ml_pipelines/pipeline/data_gen_pipeline.py
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from ml_pipelines.common.dgp import generate_raw_data | ||
from ml_pipelines.logic.common.dgp import generate_raw_data | ||
|
||
data = generate_raw_data(10_000, 813) | ||
data.to_csv("data.csv", index=False) |
4 changes: 2 additions & 2 deletions
4
ml_pipelines/eval_pipeline.py → ml_pipelines/pipeline/eval_pipeline.py
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,14 @@ | ||
[build-system] | ||
requires = ["poetry-core"] | ||
build-backend = "poetry.core.masonry.api" | ||
|
||
[tool.poetry] | ||
name = "mlops-nth-try" | ||
name = "ml_pipelines" | ||
version = "0.1.0" | ||
description = "My nth attempt at making a demo MLOps project" | ||
authors = ["Adrian Zuur <[email protected]>"] | ||
readme = "README.md" | ||
packages = [{include = "mlops_nth_try"}] | ||
packages = [{include = "ml_pipelines"}] | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.11" | ||
|
@@ -22,10 +26,6 @@ pre-commit = "^3.6.0" | |
pandas-stubs = "^2.1.4.231227" | ||
isort = "^5.13.2" | ||
|
||
[build-system] | ||
requires = ["poetry-core"] | ||
build-backend = "poetry.core.masonry.api" | ||
|
||
[tool.ruff] | ||
line-length = 88 | ||
show-fixes = true | ||
|