Lots of Spellchecking done

This commit is contained in:
Philipp Horstenkamp 2022-07-13 22:20:42 +02:00
parent 4095beba84
commit 1f87e72f7d
Signed by: Philipp
GPG Key ID: DD53EAC36AFB61B4
6 changed files with 5575 additions and 184 deletions

View File

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectRootManager" version="2" project-jdk-name="Docker Compose (pyrate-experiments at [C:\Users\phhor\PycharmProjects\ml-programmiereprojekt\docker-compose.yaml])" project-jdk-type="Python SDK" />
<component name="ProjectRootManager" version="2" project-jdk-name="Poetry (ml-projekt)" project-jdk-type="Python SDK" />
</project>

View File

@ -4,7 +4,7 @@
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/venv" />
</content>
<orderEntry type="jdk" jdkName="Docker Compose (pyrate-experiments at [C:\Users\phhor\PycharmProjects\ml-programmiereprojekt\docker-compose.yaml])" jdkType="Python SDK" />
<orderEntry type="jdk" jdkName="Poetry (ml-projekt)" jdkType="Python SDK" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
<component name="PyDocumentationSettings">

File diff suppressed because it is too large Load Diff

5137
experiments/ML Example.ipynb Normal file

File diff suppressed because one or more lines are too long

14
poetry.lock generated
View File

@ -1,7 +1,7 @@
[metadata]
lock-version = "1.1"
python-versions = ">=3.9, <3.11"
content-hash = "ec16222486b3250704b376cffdeb2bae938d6208a6adfd754237f980800d1a69"
content-hash = "a8120cd93696a4141262b7267be42706ec2821d04f4a30db0682d7bce5419059"
[metadata.files]
absl-py = [
@ -311,6 +311,7 @@ h5py = [
{file = "h5py-3.6.0-cp39-cp39-win_amd64.whl", hash = "sha256:9fd8a14236fdd092a20c0bdf25c3aba3777718d266fabb0fdded4fcf252d1630"},
{file = "h5py-3.6.0.tar.gz", hash = "sha256:8752d2814a92aba4e2b2a5922d2782d0029102d99caaf3c201a566bc0b40db29"},
]
humanize = []
idna = [
{file = "idna-3.3-py3-none-any.whl", hash = "sha256:84d9dd047ffa80596e0f246e2eab0b391788b0503584e8945f2368256d2735ff"},
{file = "idna-3.3.tar.gz", hash = "sha256:9d643ff0a55b762d5cdb124b8eaa99c66322e2157b69160bc32796e824360e6d"},
@ -1654,6 +1655,17 @@ python-versions = ">=3.7"
[package.dependencies]
numpy = ">=1.14.5"
[[package]]
name = "humanize"
version = "4.2.3"
description = "Python humanize utilities"
category = "main"
optional = false
python-versions = ">=3.7"
[package.extras]
tests = ["freezegun", "pytest", "pytest-cov"]
[[package]]
name = "idna"
version = "3.3"

View File

@ -16,6 +16,7 @@ tensorflow = "^2.8.0"
scipy = "^1.8.0"
Shapely = "^1.8.2"
tqdm = "^4.64.0"
humanize = "^4.2.3"
[tool.poetry.dev-dependencies]
black = {extras = ["jupyter"], version = "^22.3.0"}