configuration.json 697 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "Moth detector and classifier",
  3. "description": "Moth scanner (detection and classification) of moths developed in the context of the AMMOD project.",
  4. "supports": [
  5. "labeled-bounding-boxes"
  6. ],
  7. "code": {
  8. "module": "scanner",
  9. "class": "Scanner"
  10. },
  11. "detector": {
  12. "preprocess":{
  13. "min_size": 800,
  14. "scale": 0.1,
  15. "sigma": 5.0
  16. },
  17. "threshold": {
  18. "block_size_scale": 0.5
  19. },
  20. "postprocess":{
  21. "dilate_iterations": 3,
  22. "kernel_size": 5
  23. }
  24. },
  25. "classifier": {
  26. "model_type": "cvmodelz.InceptionV3",
  27. "input_size": 299,
  28. "weights": "classifier.npz",
  29. "n_classes": 200,
  30. "mapping": "mapping.json"
  31. }
  32. }