configuration.json 733 B

12345678910111213141516171819202122232425262728293031323334
  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": 1080,
  14. "scale": 0.1,
  15. "sigma": 5.0
  16. },
  17. "threshold": {
  18. "window_size": 31,
  19. "offset": 2.0,
  20. "sigma": 5.0
  21. },
  22. "postprocess":{
  23. "kernel_size": 5,
  24. "dilate_iterations": 2
  25. }
  26. },
  27. "classifier": {
  28. "model_type": "cvmodelz.InceptionV3",
  29. "input_size": 299,
  30. "weights": "classifier.npz",
  31. "n_classes": 200,
  32. "mapping": "mapping.json"
  33. }
  34. }