MarkusEssl commited on
Commit
3c5d84b
1 Parent(s): 56f900d

again, merging nbdev with streamlit

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .gitattributes +5 -0
  2. SOURCE/__init__.py +0 -0
  3. SOURCE/gan_files/__init__.py +0 -0
  4. SOURCE/gan_files/data/__init__.py +3 -0
  5. SOURCE/gan_files/data/aligned_dataset.py +3 -0
  6. SOURCE/gan_files/data/base_dataset.py +3 -0
  7. SOURCE/gan_files/data/colorization_dataset.py +3 -0
  8. SOURCE/gan_files/data/image_folder.py +3 -0
  9. SOURCE/gan_files/data/single_dataset.py +3 -0
  10. SOURCE/gan_files/data/template_dataset.py +3 -0
  11. SOURCE/gan_files/data/unaligned_dataset.py +3 -0
  12. SOURCE/gan_files/models/__init__.py +3 -0
  13. SOURCE/gan_files/models/base_model.py +3 -0
  14. SOURCE/gan_files/models/colorization_model.py +3 -0
  15. SOURCE/gan_files/models/cycle_gan_model.py +3 -0
  16. SOURCE/gan_files/models/networks.py +3 -0
  17. SOURCE/gan_files/models/pix2pix_model.py +3 -0
  18. SOURCE/gan_files/models/template_model.py +3 -0
  19. SOURCE/gan_files/models/test_model.py +3 -0
  20. SOURCE/gan_files/options/__init__.py +3 -0
  21. SOURCE/gan_files/options/base_options.py +3 -0
  22. SOURCE/gan_files/options/test_options.py +3 -0
  23. SOURCE/gan_files/options/train_options.py +3 -0
  24. SOURCE/gan_files/test.py +3 -0
  25. SOURCE/gan_files/util/__init__.py +3 -0
  26. SOURCE/gan_files/util/get_data.py +3 -0
  27. SOURCE/gan_files/util/html.py +3 -0
  28. SOURCE/gan_files/util/image_pool.py +3 -0
  29. SOURCE/gan_files/util/util.py +3 -0
  30. SOURCE/gan_files/util/visualizer.py +3 -0
  31. SOURCE/siamese/model.py +3 -0
  32. SOURCE/yolo_files/__init__.py +0 -0
  33. SOURCE/yolo_files/best.pt +3 -0
  34. SOURCE/yolo_files/detect.py +3 -0
  35. SOURCE/yolo_files/models/__init__.py +0 -0
  36. SOURCE/yolo_files/models/common.py +3 -0
  37. SOURCE/yolo_files/models/experimental.py +3 -0
  38. SOURCE/yolo_files/models/export.py +3 -0
  39. SOURCE/yolo_files/models/hub/anchors.yaml +3 -0
  40. SOURCE/yolo_files/models/hub/yolov3-spp.yaml +3 -0
  41. SOURCE/yolo_files/models/hub/yolov3-tiny.yaml +3 -0
  42. SOURCE/yolo_files/models/hub/yolov3.yaml +3 -0
  43. SOURCE/yolo_files/models/hub/yolov5-fpn.yaml +3 -0
  44. SOURCE/yolo_files/models/hub/yolov5-p2.yaml +3 -0
  45. SOURCE/yolo_files/models/hub/yolov5-p6.yaml +3 -0
  46. SOURCE/yolo_files/models/hub/yolov5-p7.yaml +3 -0
  47. SOURCE/yolo_files/models/hub/yolov5-panet.yaml +3 -0
  48. SOURCE/yolo_files/models/hub/yolov5l6.yaml +3 -0
  49. SOURCE/yolo_files/models/hub/yolov5m6.yaml +3 -0
  50. SOURCE/yolo_files/models/hub/yolov5s-transformer.yaml +3 -0
.gitattributes CHANGED
@@ -8,4 +8,9 @@
8
  *.css filter=lfs diff=lfs merge=lfs -text
9
  *.ini filter=lfs diff=lfs merge=lfs -text
10
  *.py filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
11
  *.pth filter=lfs diff=lfs merge=lfs -text
 
8
  *.css filter=lfs diff=lfs merge=lfs -text
9
  *.ini filter=lfs diff=lfs merge=lfs -text
10
  *.py filter=lfs diff=lfs merge=lfs -text
11
+ *.pt filter=lfs diff=lfs merge=lfs -text
12
+ *.sh filter=lfs diff=lfs merge=lfs -text
13
+ /SOURCE/yolo_files/utils/google_app_engine/Dockerfile filter=lfs diff=lfs merge=lfs -text
14
+ *.txt filter=lfs diff=lfs merge=lfs -text
15
+ *.png filter=lfs diff=lfs merge=lfs -text
16
  *.pth filter=lfs diff=lfs merge=lfs -text
SOURCE/__init__.py ADDED
File without changes
SOURCE/gan_files/__init__.py ADDED
File without changes
SOURCE/gan_files/data/__init__.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1eab6397ad8fa7596d770422473b951b35182fedd21fc81f519424b59422f77f
3
+ size 3588
SOURCE/gan_files/data/aligned_dataset.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a62266bc7b0b5a151c27931b5f41ee6153e5661e3833dead7bfa5f3b57a5fdcf
3
+ size 2531
SOURCE/gan_files/data/base_dataset.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:71ca339b06870cf049cdd9a623281d1be6078258bc667f40b9bbf309a807e9a0
3
+ size 5400
SOURCE/gan_files/data/colorization_dataset.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9a19b986dcfab77a66d257e7f24a82eccd6798e4d10a3447f51d31fe64df5b1c
3
+ size 2751
SOURCE/gan_files/data/image_folder.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f47c3b60d8ccc05246acb3392518c79de21d1d9459a6bae6924239b8395ab008
3
+ size 1885
SOURCE/gan_files/data/single_dataset.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f8ac852cecadff6d652baa1632a0c080aa6da5a265152bb9d918f4bf43303d6d
3
+ size 1529
SOURCE/gan_files/data/template_dataset.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:33ba690a0dcd7eb27a8bc079608c31f0d5b537dc0b894d89f518a05565082003
3
+ size 3525
SOURCE/gan_files/data/unaligned_dataset.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:facc0aa3a5fa29eee895119b1dface7ab49817873cd6d3d16cc6907a307b5e1b
3
+ size 3333
SOURCE/gan_files/models/__init__.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:747a52bc9bb76f54df3253ce67f8421c07a0c8a86a1f1345d802b0d7952d8106
3
+ size 3106
SOURCE/gan_files/models/base_model.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d36060d6ff08724ef560cf81e3689bb66e83f9a82e20723eb38176d8fefaaa5c
3
+ size 10493
SOURCE/gan_files/models/colorization_model.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b29a6e5941dd78241ab2f5baf7682f09f00f4f14cc415c3519280471bc26baf4
3
+ size 3036
SOURCE/gan_files/models/cycle_gan_model.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ba72e9d52b044c3290d669d11bd68e82f4f2ea95dbae2116bbbc72f91e6367cc
3
+ size 10602
SOURCE/gan_files/models/networks.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:03d2b39251fd1fc63b2a7a9845f03ec02268d6fd709776a3aeaca27571002735
3
+ size 28401
SOURCE/gan_files/models/pix2pix_model.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7220df3619cdaaadf85392681a7ea947484338a10871a0843d608d168513c2f8
3
+ size 6564
SOURCE/gan_files/models/template_model.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:62b34fc5206a5a13d82afb52614e85dff332668084bfa011af63c9bcbf2911a9
3
+ size 5998
SOURCE/gan_files/models/test_model.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:711964e6168c67badd4673f76a5278b1cc9eb737c8133307a507f7b8de63a619
3
+ size 3196
SOURCE/gan_files/options/__init__.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:33af04c0bc4fc7ba81e73f1c866a832fba44d22df28f138c58a6f39dcab904b4
3
+ size 136
SOURCE/gan_files/options/base_options.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f5da72feed4ee033b3a6b4218352e268d36a31285f041c3817dd9826b600508c
3
+ size 8449
SOURCE/gan_files/options/test_options.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:85170c13a6c37a863bc2e3d9e1718b2d812f74df8af312f1c7fb6c403eda4da8
3
+ size 1225
SOURCE/gan_files/options/train_options.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:91e82c28258d4a479c4c58cb37397de7a2c198e2ec9f3a9ce3e6bdcdbdf6166f
3
+ size 3471
SOURCE/gan_files/test.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:58171ff12ed1b59c53d9fb03eb0b8545f303db0fc265efd879f9ae266ddadc46
3
+ size 4273
SOURCE/gan_files/util/__init__.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7611916cc78ddba4f45651069b6d51a57878b0ce249ad6cffc9e75d62ac23106
3
+ size 83
SOURCE/gan_files/util/get_data.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:399309324c4af0789d76443cd33f45bbeaff6711132e15d27b87ae2262651779
3
+ size 3639
SOURCE/gan_files/util/html.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:67fc18779468246bfc955f0081c6f5e2f05b3d0be2c4079d28e7f191bce62851
3
+ size 3223
SOURCE/gan_files/util/image_pool.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d69519a5b5ee2afbfa130361639adba79a6dad9766a5dcbd445eeab419b1a434
3
+ size 2226
SOURCE/gan_files/util/util.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c100cdeb9420cb13eb310957e45d5f76f0baae2ae96bcbed0785bc4694d283d8
3
+ size 3175
SOURCE/gan_files/util/visualizer.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:46e1815e19c512e6c3b4484cd566a042b9cdf46a0ca931c1bef63c64f0fc884f
3
+ size 10480
SOURCE/siamese/model.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:03d12132f5fd804aded6bf1bb4b780ab888555903dc91c65b07e4829724fc92f
3
+ size 2598
SOURCE/yolo_files/__init__.py ADDED
File without changes
SOURCE/yolo_files/best.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8940b5b18fbda2e984f972f621c9e52c906a4b499533b13ee51f86f53c0d9838
3
+ size 175088335
SOURCE/yolo_files/detect.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3e6bc9b84b50dc4d1d588063adb2971126cd3937c02b3dffe687155ad2880d0f
3
+ size 7419
SOURCE/yolo_files/models/__init__.py ADDED
File without changes
SOURCE/yolo_files/models/common.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:13a082e09c3bae979a041bbce0e0424ef9d6a5a51ccb6e8028f66b582a867784
3
+ size 16798
SOURCE/yolo_files/models/experimental.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:22d72e1e82db08633075d4d527e78749b955d5eddea07deae0330ee1e7e0b789
3
+ size 5263
SOURCE/yolo_files/models/export.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2d21a312ff130a38492c974823af7e72a4842afe1ee5225d17e143935c1f0fc1
3
+ size 6332
SOURCE/yolo_files/models/hub/anchors.yaml ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b29c0d28bd75fb6fdeda2a86dcdfbed887b4e85ffff5c4579b585c24831a17bf
3
+ size 3356
SOURCE/yolo_files/models/hub/yolov3-spp.yaml ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9375a42cf1020699530e2a2288adf8829f9b16c0c8dc2d3cfd41638ce75f2f54
3
+ size 1531
SOURCE/yolo_files/models/hub/yolov3-tiny.yaml ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7db7bf3e17e0957635a764212fb39ada460f7608f9cee9862edcb407698c46ec
3
+ size 1196
SOURCE/yolo_files/models/hub/yolov3.yaml ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:930aaaef8c522fd34b38150ed4549dcd5c311b7fb9f139c4d41744fb93828962
3
+ size 1524
SOURCE/yolo_files/models/hub/yolov5-fpn.yaml ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1481ea9a67118cd2f4a1619fde564e02d28e98fd07bebd612f4d959bd0e03eb0
3
+ size 1245
SOURCE/yolo_files/models/hub/yolov5-p2.yaml ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c5378e563d5964cfb9c8aefea4b32ed4676cb60f6f63c8ba458d7c7f50dc68f0
3
+ size 1738
SOURCE/yolo_files/models/hub/yolov5-p6.yaml ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b06627a1252af1ee9a1e19e9f986484ee35df9cc8ca70759e3adf1d52e30739e
3
+ size 1809
SOURCE/yolo_files/models/hub/yolov5-p7.yaml ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3e98bfa8fafa4d2d0c54e4e739c2d5fed0a08639f1fcd362b77b5c3220e61cdd
3
+ size 2232
SOURCE/yolo_files/models/hub/yolov5-panet.yaml ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b34b67db56033af982ae78ac9825d177bbb00a9592a8b92d0e9acacbd41f8091
3
+ size 1459
SOURCE/yolo_files/models/hub/yolov5l6.yaml ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f8b5d7f107c71cefc7d157cfdff733d1144c15e72879f2db17200a078439c6dd
3
+ size 1977
SOURCE/yolo_files/models/hub/yolov5m6.yaml ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:601096b0c16cbd4285a96eaa2584d3ce5ced446a05832a1663738db7194c78a1
3
+ size 1979
SOURCE/yolo_files/models/hub/yolov5s-transformer.yaml ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1eb7b819fb38ed8198d7844d23b23b7bffc5f32508ea487e4e6edd8d4d36521a
3
+ size 1406