Views
No views yet
| Training Loss | Epoch | Step | Validation Loss | Mean Iou | Mean Accuracy | Overall Accuracy | Per Category Iou | Per Category Accuracy |
|---|---|---|---|---|---|---|---|---|
| 0.8396 | 1.0 | 5 | 0.6944 | 0.2031 | 0.5518 | 0.3455 | [0.13556736298716152, 0.27063243613658433] | [0.13709020840996838, 0.9665266884680433] |
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_id = 'chaosbee997/segformer-plant-bg-removal'
4tokenizer = AutoTokenizer.from_pretrained(model_id)
5model = AutoModelForCausalLM.from_pretrained(model_id)AutoModelForCausalLM with the appropriate AutoModel class.