Views
No views yet
| Model | Precision | Recall | F1-score |
|---|---|---|---|
| Pre-trained | 0.2798 | 0.1680 | 0.2099 |
| Fine-tuned | 0.7797 | 0.7082 | 0.7422 |
1from deepforest import main
2
3config_args = {
4 "model": {"name": "martibosch/milliontrees-detr-belem"},
5 "score_thresh": 0.25,
6 "architecture": "DeformableDetr"
7}
8
9model = main.deepforest(config_args=config_args)