Lots of changes

This commit is contained in:
Philipp Horstenkamp 2023-02-28 23:48:13 +01:00
parent cdbd6dc4be
commit 6bec4b941c
Signed by: Philipp
GPG Key ID: DD53EAC36AFB61B4
3 changed files with 1120 additions and 224 deletions

1315
main.ipynb

File diff suppressed because one or more lines are too long

28
poetry.lock generated
View File

@ -410,7 +410,7 @@ python-versions = ">=2.7, !=3.0, !=3.1, !=3.2, !=3.3, !=3.4, <4"
name = "gitdb"
version = "4.0.10"
description = "Git Object Database"
category = "main"
category = "dev"
optional = false
python-versions = ">=3.7"
@ -421,7 +421,7 @@ smmap = ">=3.0.1,<6"
name = "gitpython"
version = "3.1.31"
description = "GitPython is a Python library used to interact with Git repositories"
category = "main"
category = "dev"
optional = false
python-versions = ">=3.7"
@ -594,7 +594,7 @@ arrow = ">=0.15.0"
name = "isort"
version = "5.12.0"
description = "A Python utility / library to sort Python imports."
category = "main"
category = "dev"
optional = false
python-versions = ">=3.8.0"
@ -634,6 +634,14 @@ MarkupSafe = ">=2.0"
[package.extras]
i18n = ["Babel (>=2.7)"]
[[package]]
name = "joblib"
version = "1.2.0"
description = "Lightweight pipelining with Python functions"
category = "main"
optional = false
python-versions = ">=3.7"
[[package]]
name = "json5"
version = "0.9.11"
@ -820,7 +828,7 @@ test = ["jupyter-server[test] (>=1.15,<3)", "pytest", "pytest-cov"]
name = "jupyter-server-mathjax"
version = "0.2.6"
description = "MathJax resources as a Jupyter Server Extension."
category = "main"
category = "dev"
optional = false
python-versions = ">=3.7"
@ -905,7 +913,7 @@ test = ["check-manifest", "coverage", "jupyterlab-server[test]", "pre-commit", "
name = "jupyterlab-git"
version = "0.41.0"
description = "A JupyterLab extension for version control using git"
category = "main"
category = "dev"
optional = false
python-versions = "<4,>=3.6"
@ -1157,7 +1165,7 @@ webpdf = ["pyppeteer (>=1,<1.1)"]
name = "nbdime"
version = "3.1.1"
description = "Diff and merge of Jupyter Notebooks"
category = "main"
category = "dev"
optional = false
python-versions = ">=3.6"
@ -1782,7 +1790,7 @@ python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*"
name = "smmap"
version = "5.0.0"
description = "A pure Python implementation of a sliding window memory map manager"
category = "main"
category = "dev"
optional = false
python-versions = ">=3.6"
@ -2085,7 +2093,7 @@ test = ["mypy", "pre-commit", "pytest", "pytest-asyncio", "websockets (>=10.0)"]
[metadata]
lock-version = "1.1"
python-versions = "3.10.*"
content-hash = "21dbe615e6b345f40f1ec336c2e3d56236bf6e40d9ebe4559934e02dbd3c1e79"
content-hash = "85906bff735f8bada644d9000a91f2902a5a18f7f72efc72c80a7d5c97410d44"
[metadata.files]
aiofiles = [
@ -2522,6 +2530,10 @@ jinja2 = [
{file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"},
{file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"},
]
joblib = [
{file = "joblib-1.2.0-py3-none-any.whl", hash = "sha256:091138ed78f800342968c523bdde947e7a305b8594b910a0fea2ab83c3c6d385"},
{file = "joblib-1.2.0.tar.gz", hash = "sha256:e1cee4a79e4af22881164f218d4311f60074197fb707e082e803b61f6d137018"},
]
json5 = [
{file = "json5-0.9.11-py2.py3-none-any.whl", hash = "sha256:1aa54b80b5e507dfe31d12b7743a642e2ffa6f70bf73b8e3d7d1d5fba83d99bd"},
{file = "json5-0.9.11.tar.gz", hash = "sha256:4f1e196acc55b83985a51318489f345963c7ba84aa37607e49073066c562e99b"},

View File

@ -26,6 +26,7 @@ plotly = "^5.13.0"
seaborn = "^0.12.2"
line-profiler = {extras = ["ipython"], version = "^4.0.2"}
memory-profiler = "^0.61.0"
joblib = "^1.2.0"
[tool.poetry.group.build.dependencies]
blackcellmagic = "^0.0.3"