adding graphs, some writing
2
.gitignore
vendored
@ -1,3 +1,5 @@
|
|||||||
|
poetry.lock
|
||||||
|
|
||||||
# Byte-compiled / optimized / DLL files
|
# Byte-compiled / optimized / DLL files
|
||||||
__pycache__/
|
__pycache__/
|
||||||
*.py[cod]
|
*.py[cod]
|
||||||
|
3
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"python.pythonPath": ".venv/bin/python"
|
||||||
|
}
|
BIN
graphs/exp2-test10-error-rate-curves.png
Normal file
After Width: | Height: | Size: 29 KiB |
BIN
graphs/exp2-test11-error-rate-curves.png
Normal file
After Width: | Height: | Size: 22 KiB |
Before Width: | Height: | Size: 213 KiB After Width: | Height: | Size: 27 KiB |
Before Width: | Height: | Size: 214 KiB After Width: | Height: | Size: 28 KiB |
BIN
graphs/exp2-test5-error-rate-curves.png
Normal file
After Width: | Height: | Size: 30 KiB |
BIN
graphs/exp2-test6-error-rate-curves.png
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
graphs/exp2-test7-error-rate-curves.png
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
graphs/exp2-test8-error-rate-curves.png
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
graphs/exp2-test9-error-rate-curves.png
Normal file
After Width: | Height: | Size: 26 KiB |
48
nncw.ipynb
20
pyproject.toml
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
[tool.poetry]
|
||||||
|
name = "shallow-training"
|
||||||
|
version = "0.1.0"
|
||||||
|
description = ""
|
||||||
|
authors = ["andy <andy@sarsoo.xyz>"]
|
||||||
|
|
||||||
|
[tool.poetry.dependencies]
|
||||||
|
python = "3.8"
|
||||||
|
tensorflow = "^2.4.1"
|
||||||
|
pandas = "^1.2.4"
|
||||||
|
matplotlib = "^3.4.1"
|
||||||
|
seaborn = "^0.11.1"
|
||||||
|
scikit-learn = "^0.24.1"
|
||||||
|
jupyterlab = "^3.0.14"
|
||||||
|
|
||||||
|
[tool.poetry.dev-dependencies]
|
||||||
|
|
||||||
|
[build-system]
|
||||||
|
requires = ["poetry-core>=1.0.0"]
|
||||||
|
build-backend = "poetry.core.masonry.api"
|