Advertisement
Guest User

Changes

a guest
Mar 19th, 2021
460
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.52 KB | None | 0 0
  1. #Changes:
  2. #File: tensorflow-yolov4-tflite/core/config.py
  3. #Line 15.
  4. __C.YOLO.ANCHORS  = [7,8, 12,12, 18,18, 28,25, 39,43, 61,29, 56,54, 81,69, 102,97]
  5.  
  6.  
  7.  
  8. #File: tensorflow-yolov4-tflite/core/yolov4.py
  9. #Line 100.  
  10. conv_sbbox = common.convolutional(conv, (1, 1, 256, 4 * (NUM_CLASS + 5)), activate=False, bn=False)
  11.  
  12. #Line 125.
  13. conv_lbbox = common.convolutional(conv, (1, 1, 1024, 2 * (NUM_CLASS + 5)), activate=False, bn=False)
  14.  
  15.  
  16. #File: tensorflow-yolov4-tflite/core/dataset.py
  17. #Line 104.
  18. 4,
  19.  
  20. #Line 124.
  21. 2,
  22.  
  23.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement