jgerbscheid commited on
Commit
01e5b1c
β€’
1 Parent(s): b9bac12

moved package around

Browse files
Files changed (42) hide show
  1. dijkprofile-annotator/LICENSE β†’ LICENSE +0 -0
  2. dijkprofile-annotator/conftest.py β†’ conftest.py +0 -0
  3. {dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/__init__.py +0 -0
  4. {dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/__pycache__/__init__.cpython-39.pyc +0 -0
  5. {dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/__pycache__/annotator.cpython-39.pyc +0 -0
  6. {dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/__pycache__/config.cpython-39.pyc +0 -0
  7. {dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/annotator.py +0 -0
  8. {dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/config.py +0 -0
  9. {dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/data/trained_models/dijknet_simple_95.pt +0 -0
  10. {dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/data/trained_models/scaler.pik +0 -0
  11. {dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/dataset/__init__.py +0 -0
  12. {dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/dataset/__pycache__/__init__.cpython-39.pyc +0 -0
  13. {dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/dataset/__pycache__/dataset.cpython-39.pyc +0 -0
  14. {dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/dataset/dataset.py +0 -0
  15. {dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/models/__init__.py +0 -0
  16. {dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/models/__pycache__/__init__.cpython-39.pyc +0 -0
  17. {dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/models/__pycache__/dijknet.cpython-39.pyc +0 -0
  18. {dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/models/dijknet.py +0 -0
  19. {dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/preprocessing/__init__.py +0 -0
  20. {dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/preprocessing/__pycache__/__init__.cpython-39.pyc +0 -0
  21. {dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/preprocessing/__pycache__/link_collector.cpython-39.pyc +0 -0
  22. {dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/preprocessing/__pycache__/preprocessing.cpython-39.pyc +0 -0
  23. {dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/preprocessing/preprocessing.py +0 -0
  24. {dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/requirements.txt +0 -0
  25. {dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/training/__init__.py +0 -0
  26. {dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/training/__pycache__/__init__.cpython-39.pyc +0 -0
  27. {dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/training/__pycache__/train.cpython-39.pyc +0 -0
  28. {dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/training/train.py +0 -0
  29. {dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/utils/__init__.py +0 -0
  30. {dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/utils/__pycache__/__init__.cpython-39.pyc +0 -0
  31. {dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/utils/__pycache__/utils.cpython-39.pyc +0 -0
  32. {dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/utils/utils.py +0 -0
  33. {dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/web/.gitkeep +0 -0
  34. {dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/web/app.py +0 -0
  35. {dijkprofile-annotator/output β†’ output}/models/.gitkeep +0 -0
  36. {dijkprofile-annotator/output β†’ output}/models/scaler.pik +0 -0
  37. {dijkprofile-annotator/output β†’ output}/reports/.gitkeep +0 -0
  38. {dijkprofile-annotator/output β†’ output}/visualizations/.gitkeep +0 -0
  39. requirements.txt +0 -1
  40. {dijkprofile-annotator/run β†’ run}/configs/.gitkeep +0 -0
  41. dijkprofile-annotator/setup.cfg β†’ setup.cfg +0 -0
  42. dijkprofile-annotator/setup.py β†’ setup.py +0 -0
dijkprofile-annotator/LICENSE β†’ LICENSE RENAMED
File without changes
dijkprofile-annotator/conftest.py β†’ conftest.py RENAMED
File without changes
{dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/__init__.py RENAMED
File without changes
{dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/__pycache__/__init__.cpython-39.pyc RENAMED
File without changes
{dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/__pycache__/annotator.cpython-39.pyc RENAMED
File without changes
{dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/__pycache__/config.cpython-39.pyc RENAMED
File without changes
{dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/annotator.py RENAMED
File without changes
{dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/config.py RENAMED
File without changes
{dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/data/trained_models/dijknet_simple_95.pt RENAMED
File without changes
{dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/data/trained_models/scaler.pik RENAMED
File without changes
{dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/dataset/__init__.py RENAMED
File without changes
{dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/dataset/__pycache__/__init__.cpython-39.pyc RENAMED
File without changes
{dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/dataset/__pycache__/dataset.cpython-39.pyc RENAMED
File without changes
{dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/dataset/dataset.py RENAMED
File without changes
{dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/models/__init__.py RENAMED
File without changes
{dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/models/__pycache__/__init__.cpython-39.pyc RENAMED
File without changes
{dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/models/__pycache__/dijknet.cpython-39.pyc RENAMED
File without changes
{dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/models/dijknet.py RENAMED
File without changes
{dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/preprocessing/__init__.py RENAMED
File without changes
{dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/preprocessing/__pycache__/__init__.cpython-39.pyc RENAMED
File without changes
{dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/preprocessing/__pycache__/link_collector.cpython-39.pyc RENAMED
File without changes
{dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/preprocessing/__pycache__/preprocessing.cpython-39.pyc RENAMED
File without changes
{dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/preprocessing/preprocessing.py RENAMED
File without changes
{dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/requirements.txt RENAMED
File without changes
{dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/training/__init__.py RENAMED
File without changes
{dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/training/__pycache__/__init__.cpython-39.pyc RENAMED
File without changes
{dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/training/__pycache__/train.cpython-39.pyc RENAMED
File without changes
{dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/training/train.py RENAMED
File without changes
{dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/utils/__init__.py RENAMED
File without changes
{dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/utils/__pycache__/__init__.cpython-39.pyc RENAMED
File without changes
{dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/utils/__pycache__/utils.cpython-39.pyc RENAMED
File without changes
{dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/utils/utils.py RENAMED
File without changes
{dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/web/.gitkeep RENAMED
File without changes
{dijkprofile-annotator/dijkprofile_annotator β†’ dijkprofile_annotator}/web/app.py RENAMED
File without changes
{dijkprofile-annotator/output β†’ output}/models/.gitkeep RENAMED
File without changes
{dijkprofile-annotator/output β†’ output}/models/scaler.pik RENAMED
File without changes
{dijkprofile-annotator/output β†’ output}/reports/.gitkeep RENAMED
File without changes
{dijkprofile-annotator/output β†’ output}/visualizations/.gitkeep RENAMED
File without changes
requirements.txt CHANGED
@@ -5,4 +5,3 @@ Pillow==8.4.0
5
  scikit_learn==1.0.1
6
  seaborn==0.11.2
7
  torch==1.10.0
8
- ./dijkprofile-annotator
 
5
  scikit_learn==1.0.1
6
  seaborn==0.11.2
7
  torch==1.10.0
 
{dijkprofile-annotator/run β†’ run}/configs/.gitkeep RENAMED
File without changes
dijkprofile-annotator/setup.cfg β†’ setup.cfg RENAMED
File without changes
dijkprofile-annotator/setup.py β†’ setup.py RENAMED
File without changes