-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update dependencies * Update data export and config * Updated last agendas and query * Updated model * Update Changelog * Set max version of sklearn * Fix leading zero's in subagenda * Update manifest and pyproject to python 3.12 * Update GH actions and pyproject
- Loading branch information
1 parent
2ba5e2b
commit 7518823
Showing
20 changed files
with
224 additions
and
106 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
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,5 +1,5 @@ | ||
outs: | ||
- md5: 31983d8a20d487417a9da7cf024c7ecc | ||
size: 487004530 | ||
- md5: e33284ae4e740e652ca682f1d6c78fc5 | ||
size: 806485792 | ||
path: poliafspraken_no_show.csv | ||
hash: md5 |
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
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
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,7 +1,7 @@ | ||
{ | ||
"best_score": 0.7480471226772029, | ||
"mean_roc_auc": 0.7480471226772029, | ||
"std_roc_auc": 0.005831461640562374, | ||
"mean_precision": 0.5541110092343222, | ||
"mean_recall": 0.014451354691335214 | ||
"best_score": 0.7555489720970228, | ||
"mean_roc_auc": 0.7555489720970228, | ||
"std_roc_auc": 0.0038171109326925416, | ||
"mean_precision": 0.5476698499321399, | ||
"mean_recall": 0.010038742023701001 | ||
} |
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,2 +1,2 @@ | ||
step best_score | ||
0 0.7480471226772029 | ||
0 0.7555489720970228 |
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,2 +1,2 @@ | ||
step mean_precision | ||
0 0.5541110092343222 | ||
0 0.5476698499321399 |
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,2 +1,2 @@ | ||
step mean_recall | ||
0 0.014451354691335214 | ||
0 0.010038742023701001 |
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,2 +1,2 @@ | ||
step mean_roc_auc | ||
0 0.7480471226772029 | ||
0 0.7555489720970228 |
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,2 +1,2 @@ | ||
step std_roc_auc | ||
0 0.005831461640562374 | ||
0 0.0038171109326925416 |
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 |
---|---|---|
|
@@ -4,60 +4,53 @@ build-backend = "setuptools.build_meta" | |
|
||
[project] | ||
name = "noshow" | ||
version = "1.4.11" | ||
version = "1.5.0" | ||
authors = [ | ||
{ name="Ruben Peters", email="[email protected]" }, | ||
{ name="Eric Wolters", email="[email protected]" } | ||
] | ||
description = "No-show prediction model to reduce the amount of no-shows at the clinics" | ||
readme = "README.md" | ||
requires-python = ">=3.11" | ||
requires-python = ">=3.12" | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
"Operating System :: OS Independent", | ||
] | ||
dependencies =[ | ||
"pandas~=2.0", | ||
"matplotlib~=3.7", | ||
"numpy~=1.24", | ||
"scikit-learn~=1.3", | ||
"pyarrow~=14.0", | ||
"numpy>=1.24", | ||
"scikit-learn>=1.3,<1.7", | ||
"pyarrow>=14.0", | ||
"fastapi~=0.109", | ||
"dvc~=3.33", | ||
"dvclive~=3.41", | ||
"sqlalchemy~=2.0", | ||
"python-dotenv~=1.0", | ||
"pymssql~=2.2", | ||
"streamlit~=1.30", | ||
"streamlit>=1.30", | ||
"tomli~=2.0", | ||
"relplot>=1.0", | ||
] | ||
|
||
[project.optional-dependencies] | ||
test = ["pytest", "pytest-cov", "pytest-asyncio"] | ||
dev = ["rsconnect-python", "uvicorn", "nbstripout", "ipykernel"] | ||
|
||
[tool.rye] | ||
dev-dependencies = [ | ||
"ipykernel>=6.29.2", | ||
"pytest>=8.0.1", | ||
"nbstripout>=0.7.1", | ||
"uvicorn~=0.28.0", | ||
"pytest-asyncio~=0.23.6", | ||
] | ||
|
||
[tool.uv] | ||
dev-dependencies = [ | ||
[dependency-groups] | ||
dev = [ | ||
"ipykernel>=6.29.2", | ||
"pytest>=8.0.1", | ||
"nbstripout>=0.7.1", | ||
"uvicorn~=0.28.0", | ||
"pytest-asyncio~=0.23.6", | ||
"uvicorn>=0.28.0", | ||
"pytest-asyncio>=0.23.6", | ||
"pytest-cov>=5.0.0", | ||
"alembic>=1.13.3", | ||
"rsconnect-python>=1.24.0", | ||
] | ||
lint = [ | ||
"ruff>=0.7.1", | ||
] | ||
|
||
[tool.uv] | ||
default-groups = ["dev", "lint"] | ||
|
||
[tool.isort] | ||
profile = "black" | ||
|
||
|
Oops, something went wrong.