RF-DETR Seg Nano
Bases: RFDETRSeg
Train an RF-DETR Segmentation Nano model.
Training accepts custom square integer resolution values. The value must be divisible by patch_size *
num_windows; this variant uses multiples of 12.
Source code in src/rfdetr/variants.py
Attributes¶
class_names
property
¶
Retrieve the class names supported by the loaded model.
Returns:
| Type | Description |
|---|---|
list[str]
|
A list of class name strings, 0-indexed. When no custom class names are embedded in the checkpoint, returns |
list[str]
|
the standard 80 COCO class names. |
is_optimized_inplace
property
¶
Whether the model was optimized with inplace=True.
Returns True after a successful :meth:inference call with inplace=True,
meaning the base model has been cleared and :meth:remove_optimized_model is a no-op.
Examples:
>>> from types import SimpleNamespace
>>> import torch
>>> class _TinyModel(torch.nn.Module):
... def __init__(self):
... super().__init__()
... self.linear = torch.nn.Linear(1, 1)
... def forward(self, x):
... return {"pred_boxes": self.linear(x[:, :1, :1, :1].squeeze(-1).squeeze(-1))}
... def export(self):
... return None
>>> class _TinyContext:
... def __init__(self):
... self.device = torch.device("cpu")
... self.resolution = 28
... self.model = _TinyModel()
... self.inference_model = None
>>> model = object.__new__(RFDETR)
>>> model.model_config = SimpleNamespace(num_channels=3)
>>> model.model = _TinyContext()
>>> model._is_optimized_for_inference = False
>>> model._has_warned_about_not_being_optimized_for_inference = False
>>> model._optimized_has_been_compiled = False
>>> model._optimized_batch_size = None
>>> model._optimized_resolution = None
>>> model._optimized_dtype = None
>>> model._optimized_inplace = False
>>> model.is_optimized_inplace
False
>>> model.inference(compile=False, inplace=True)
>>> model.is_optimized_inplace
True
Functions¶
__init__(*, trust_checkpoint=False, **kwargs)
¶
Initialize with ModelConfig fields as keyword arguments.
Passes all remaining kwargs to the variant's ModelConfig. Unknown kwargs raise
pydantic.ValidationError. See the variant's config class for available
parameters (e.g. RFDETRSmallConfig).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
bool
|
When |
False
|
|
Any
|
ModelConfig field values (e.g. |
{}
|
Source code in src/rfdetr/detr.py
deploy_to_roboflow(workspace, project_id, version, api_key=None, size=None)
¶
Deploy the trained RF-DETR model to Roboflow.
Deploying with Roboflow will create a Serverless API to which you can make requests.
You can also download weights into a Roboflow Inference deployment for use in Roboflow Workflows and on-device deployment.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
str
|
The name of the Roboflow workspace to deploy to. |
required |
|
str
|
The project ID to which the model will be deployed. |
required |
|
int | str
|
The project version to which the model will be deployed. |
required |
|
str | None
|
Your Roboflow API key. If not provided,
it will be read from the environment variable |
None
|
|
str | None
|
The size of the model to deploy. If not provided, it will default to the size of the model being trained (e.g., "rfdetr-base", "rfdetr-large", etc.). |
None
|
Raises:
| Type | Description |
|---|---|
ValueError
|
If the |
RuntimeError
|
If the model was cleared by |
Note
Bundle creation is delegated to :meth:export_for_roboflow, which can be called independently
to write weights.pt and class_names.txt without a network round-trip.
Source code in src/rfdetr/detr.py
2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 | |
evaluate(*, split='test', **kwargs)
¶
Evaluate the current model on a dataset split and return COCO metrics.
Runs a single evaluation pass over the requested split via the PyTorch Lightning stack and returns the COCO
metrics (mAP, mAR, and the macro-F1 sweep) computed by
:class:~rfdetr.training.callbacks.coco_eval.COCOEvalCallback. The same metrics are also printed to the
terminal. This works both directly after :meth:train and on a model loaded via :meth:from_checkpoint — the
weights already held in memory are evaluated; no checkpoint file is re-loaded.
Apart from split, this method accepts exactly the same keyword arguments as :meth:train (dataset_dir,
device, resolution, batch_size, output_dir, num_workers, ...); they are handled identically
via the shared :func:_prepare_run_config. This parity is for convenience — the same kwargs dict used for
:meth:train can be reused here — not a guarantee every field has an effect. Training-only fields (epochs,
lr, weight_decay, ema, early_stopping, run, project, checkpoint_interval,
tensorboard/wandb/mlflow/clearml, and similar) are silently accepted and ignored: evaluate()
runs through an eval-only trainer (include_training_callbacks=False) that never builds EMA, drop-path,
checkpointing, early-stopping, or logger callbacks, so those fields have nothing to attach to.
Unlike :meth:train, this method never adapts the detection head to the dataset: the model is evaluated exactly
as configured. If the dataset's class count differs from the model's num_classes a :class:UserWarning is
emitted and evaluation proceeds with the model's head unchanged.
Unlike :meth:train, a resolution override does not persist: :attr:model_config (and any cached
model.resolution / model.args inference context) is restored to its pre-call values once the
eval-only config copy has captured the override, so a later :meth:predict / :meth:export / :meth:train
call is unaffected by an evaluate(resolution=...) call.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
Literal['test', 'val']
|
Which split to evaluate. |
'test'
|
|
Any
|
The same keyword arguments accepted by :meth: |
{}
|
Returns:
| Type | Description |
|---|---|
dict[str, float]
|
Mapping of metric name to value for the evaluated split, e.g. ``{"test/mAP_50_95": ..., "test/mAP_50": ..., |
dict[str, float]
|
"test/F1": ..., "test/AP/ |
Raises:
| Type | Description |
|---|---|
ImportError
|
If training dependencies are not installed. Install with
|
ValueError
|
If |
Source code in src/rfdetr/detr.py
952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 | |
export(output_dir='output', infer_dir=None, backbone_only=False, opset_version=17, verbose=True, shape=None, batch_size=1, dynamic_batch=False, patch_size=None, format='onnx', quantization=None, calibration_data=None, max_images=100, *, backend=None, soc=None, fp16=True, notes=None, coreml_precision=None)
¶
Export the trained model to ONNX, TFLite, TensorRT, ExecuTorch, or CoreML format.
See the export documentation <https://rfdetr.roboflow.com/learn/export/>_ for more information.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
str
|
Directory to write the exported model to. |
'output'
|
|
str | None
|
Optional directory of sample images for dynamic-axes inference. |
None
|
|
bool
|
Export only the backbone (feature extractor). |
False
|
|
int
|
ONNX opset version to target. |
17
|
|
bool
|
Print export progress information. |
True
|
|
tuple[int, int] | None
|
|
None
|
|
int
|
Static batch size to bake into the ONNX graph. |
1
|
|
bool
|
If True, export with a dynamic batch dimension so the model accepts variable batch sizes
at runtime (spatial dimensions always stay fixed). Applies to the ONNX and TFLite graphs. Not
supported for ExecuTorch export on executorch 1.3.1 (raises |
False
|
|
int | None
|
Backbone patch size. Defaults to the value stored in
|
None
|
|
str
|
Export format — .. warning::
TFLite, ExecuTorch, and CoreML export are experimental and subject to change; upstream dependency
instabilities ( |
'onnx'
|
|
str | None
|
TFLite quantization mode (ignored when
|
None
|
|
str | ndarray[Any, Any] | None
|
Representative images for INT8 calibration and
For INT8 quantization, provide 20–100 representative images from your training/validation set for best accuracy. |
None
|
|
int
|
Maximum number of images to load from a calibration directory. Defaults to |
100
|
|
str | None
|
Hardware backend to specialize the export for. Required when |
None
|
|
str | None
|
Target SoC (System on Chip) — the specific Qualcomm Snapdragon chip the exported model will run
on. Required when |
None
|
|
bool
|
Build the TensorRT engine with FP16 precision. Only applies when |
True
|
|
object
|
Optional user-defined metadata (string, dict, list, or
any JSON-serialisable value) to embed in the exported ONNX model under the |
None
|
|
str | None
|
|
None
|
Returns:
| Type | Description |
|---|---|
Path
|
Path to the exported model file ( |
Raises:
| Type | Description |
|---|---|
ValueError
|
If |
NotImplementedError
|
If |
ImportError
|
If the optional dependencies for the requested |
RuntimeError
|
If called after the model has undergone in-place inference optimization (the original
model has been cleared; instantiate a new :class: |
Source code in src/rfdetr/detr.py
1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 | |
export_for_roboflow(output_dir)
¶
Write a Roboflow upload bundle (weights.pt + class_names.txt) into output_dir.
This is the network-free core of :meth:deploy_to_roboflow: it serialises the model state and
a sanitized copy of the training args into weights.pt, always embedding class_names so
the bundle is self-contained, and writes the class labels to class_names.txt. The Roboflow
SDK uses this format to adapt raw PyTorch-Lightning checkpoints into a deploy-ready bundle.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
str | PathLike[str]
|
Directory into which |
required |
Raises:
| Type | Description |
|---|---|
PermissionError
|
If the process lacks write access to output_dir or its parent directory. |
OSError
|
On disk-full, invalid path, or other filesystem failure during directory creation,
file write, or |
RuntimeError
|
If the model was cleared by |
Source code in src/rfdetr/detr.py
from_checkpoint(path, *, trust_checkpoint=False, **kwargs)
classmethod
¶
Load an RF-DETR model from a training checkpoint, automatically inferring the model class.
The correct subclass is resolved in order of preference:
model_namekey in the checkpoint (written by the PTL training stack since v1.7.0).pretrain_weightsfield in the checkpoint'sargsentry (legacy fallback for older checkpoints).- The filename of path itself, used as a last resort when
pretrain_weightsis absent or an unset-like sentinel value (empty string,"none", or"null"). Starter weights published by Roboflow storepretrain_weights="none"in theirargs; passing the canonical filename (e.g.rf-detr-small.pth) letsfrom_checkpointinfer the class automatically.
Both legacy argparse.Namespace checkpoints (produced by engine.py) and dict-style checkpoints (produced
by the PTL training stack) are supported.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
str | PathLike[str]
|
Path to a checkpoint file (e.g. |
required |
|
bool
|
When |
False
|
|
Any
|
Additional keyword arguments forwarded to the model
constructor (e.g.
In cases 2–5 the field is not recorded as a user-set override, so
:meth: |
{}
|
Returns:
| Type | Description |
|---|---|
RFDETR
|
An instance of the appropriate :class: |
Warning
By default this method attempts safe deserialization
(weights_only=True). Pass trust_checkpoint=True only for
checkpoints from fully trusted sources, as it enables full pickle
deserialization which can execute arbitrary code.
Raises:
| Type | Description |
|---|---|
FileNotFoundError
|
If path does not exist. |
OSError
|
If path exists but cannot be read. |
KeyError
|
If the checkpoint does not contain an |
ValueError
|
If the model class cannot be inferred from |
Examples:
>>> model = RFDETR.from_checkpoint("checkpoint_best_total.pth")
>>> model = RFDETRSmall.from_checkpoint("checkpoint_best_total.pth")
Source code in src/rfdetr/detr.py
443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 | |
get_model(config, *, trust_checkpoint=False)
¶
Retrieve a model context from the provided architecture configuration.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
ModelConfig
|
Architecture configuration. |
required |
|
bool
|
Forwarded to :func: |
False
|
Returns:
| Type | Description |
|---|---|
ModelContext
|
ModelContext with model, postprocess, device, resolution, args, and class_names attributes. |
Source code in src/rfdetr/detr.py
get_model_config(**kwargs)
¶
get_train_config(**kwargs)
¶
inference(compile=True, batch_size=1, dtype=torch.float32, *, inplace=False)
¶
Optimize the model for inference with optional JIT compilation and dtype casting.
Operations are wrapped in the correct CUDA device context to prevent context leaks on multi-GPU setups. When
compile=True the model is traced with torch.jit.trace using a dummy input of batch_size images at
the model's current resolution. By default, optimization deep-copies the loaded model before exporting it so the
original module remains available. Set inplace=True for memory-constrained inference-only deployments; this
exports the loaded module itself, may cast it to dtype, and clears model.model after optimization
succeeds. In-place optimization is destructive: :meth:remove_optimized_model becomes a no-op (issues
:class:UserWarning), and :meth:export raises :class:RuntimeError. Create or reload a new RFDETR
instance to recover the original model.
If inplace=True and the underlying export() call mutates the module before raising (e.g. setting
internal flags and swapping forward), the exception handler resets RFDETR wrapper flags to the unoptimized
state but cannot undo changes made inside export(). Create a new RFDETR instance for reliable inference
after such a failure.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
bool
|
If |
True
|
|
int
|
Number of images the traced model will be optimized for. Ignored when |
1
|
|
dtype | str
|
Target floating-point dtype for the inference model. Accepts a
|
float32
|
|
bool
|
If |
False
|
Raises:
| Type | Description |
|---|---|
TypeError
|
If |
ValueError
|
If |
RuntimeError
|
If the base model has already been cleared by a previous inplace optimization. |
Examples:
>>> from types import SimpleNamespace
>>> import torch
>>> class _TinyModel(torch.nn.Module):
... def __init__(self):
... super().__init__()
... self.linear = torch.nn.Linear(1, 1)
... def forward(self, x):
... return {"pred_boxes": self.linear(x[:, :1, :1, :1].squeeze(-1).squeeze(-1))}
... def export(self):
... return None
>>> class _TinyContext:
... def __init__(self):
... self.device = torch.device("cpu")
... self.resolution = 28
... self.model = _TinyModel()
... self.inference_model = None
>>> model = object.__new__(RFDETR)
>>> model.model_config = SimpleNamespace(num_channels=3)
>>> model.model = _TinyContext()
>>> model._is_optimized_for_inference = False
>>> model._has_warned_about_not_being_optimized_for_inference = False
>>> model._optimized_has_been_compiled = False
>>> model._optimized_batch_size = None
>>> model._optimized_resolution = None
>>> model._optimized_dtype = None
>>> model._optimized_inplace = False
>>> # Standard (non-inplace) optimization — reversible:
>>> model.inference(compile=False)
>>> model._is_optimized_for_inference
True
>>> model._optimized_inplace
False
>>> model.remove_optimized_model()
>>> model._is_optimized_for_inference
False
>>> # Inplace optimization — destructive, cannot be reversed:
>>> model.inference(compile=False, dtype="float16", inplace=True)
>>> model._is_optimized_for_inference
True
>>> model._optimized_dtype
torch.float16
>>> model._optimized_inplace
True
Source code in src/rfdetr/detr.py
1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 | |
maybe_download_pretrain_weights()
¶
Download pre-trained weights if they are not already downloaded.
Bare filenames (no directory component, e.g. rf-detr-base.pth) are resolved to the model cache directory —
set the RF_HOME environment variable to override the location (default: ~/.roboflow/models). Resolution
happens in ModelConfig.expand_path for explicitly-provided values, and here as a fallback for field defaults
(which Pydantic does not validate by default).
Paths that already contain a directory component are used as-is; the parent directory is created if it does not yet exist.
Source code in src/rfdetr/detr.py
optimize_for_inference(compile=True, batch_size=1, dtype=torch.float32, *, inplace=False)
¶
Deprecated alias for :meth:inference.
.. deprecated:: 1.9.0
optimize_for_inference was renamed to :meth:inference. Deprecated since v1.9.0, will be
removed in v1.11.0. Use :meth:inference instead.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
bool
|
See :meth: |
True
|
|
int
|
See :meth: |
1
|
|
dtype | str
|
See :meth: |
float32
|
|
bool
|
See :meth: |
False
|
Source code in src/rfdetr/detr.py
predict(images, threshold=0.5, shape=None, patch_size=None, include_source_image=True, **kwargs)
¶
Performs model inference on the input images.
This method accepts a single image or a list of images in various formats (file path, image url, PIL Image, NumPy array, or torch.Tensor). The images should be in RGB channel order. If a torch.Tensor is provided, it must already be normalized to values in the [0, 1] range and have the shape (C, H, W).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
str | Image | ndarray[Any, Any] | Tensor | list[str | ndarray[Any, Any] | Image | Tensor]
|
A single image or a list of images to process. Images can be provided as file paths, PIL Images, NumPy arrays, or torch.Tensors. |
required |
|
float
|
The minimum confidence score needed to consider a detected bounding box valid. |
0.5
|
|
tuple[int, int] | None
|
Optional |
None
|
|
int | None
|
Backbone patch size used for shape divisibility validation. Defaults to |
None
|
|
bool
|
Whether to attach the original image to the returned prediction. Detection and segmentation outputs use
|
True
|
|
Any
|
Additional keyword arguments. |
{}
|
Returns:
| Type | Description |
|---|---|
Detections | KeyPoints | list[Detections | KeyPoints]
|
A single or multiple Supervision prediction objects. Detection and segmentation models return |
Detections | KeyPoints | list[Detections | KeyPoints]
|
class: |
Detections | KeyPoints | list[Detections | KeyPoints]
|
coordinates in |
Detections | KeyPoints | list[Detections | KeyPoints]
|
|
Detections | KeyPoints | list[Detections | KeyPoints]
|
is the postprocessed detection score and, by default, includes normalized keypoint uncertainty fusion |
Detections | KeyPoints | list[Detections | KeyPoints]
|
controlled by |
Detections | KeyPoints | list[Detections | KeyPoints]
|
is a |
Detections | KeyPoints | list[Detections | KeyPoints]
|
head, not a repeated copy of the detection score. When RF-DETR emits keypoint precision parameters, |
Detections | KeyPoints | list[Detections | KeyPoints]
|
|
Detections | KeyPoints | list[Detections | KeyPoints]
|
|
Detections | KeyPoints | list[Detections | KeyPoints]
|
boxes as a |
Detections | KeyPoints | list[Detections | KeyPoints]
|
|
Detections | KeyPoints | list[Detections | KeyPoints]
|
|
Detections | KeyPoints | list[Detections | KeyPoints]
|
|
Detections | KeyPoints | list[Detections | KeyPoints]
|
|
Note
For Detections outputs, source_image moved from detections.data to detections.metadata.
Update detection callers reading detections.data["source_image"] to use
detections.metadata["source_image"].
Note
class_name mapping uses one of three modes depending on the checkpoint. For pretrained COCO checkpoints
(detected when model.args.num_classes > len(class_names) and class_names matches
COCO_CLASS_NAMES), raw COCO category IDs (1–90, sparse) are looked up by category ID rather than by
position — so class_id=18 yields "dog", not class_names[18]. For fine-tuned detection and
segmentation models and active-first keypoint models, class_id is a 0-based index into
class_names. In the one-class preview keypoint setup, that means class_id=0 is the foreground
class and class_id=1 is "__background__".
Legacy keypoint checkpoints with args.num_keypoints_per_class[0] == 0 use a background-first layout:
slot 0 maps to "__background__" and foreground slots map to class_names in order.
Raises:
| Type | Description |
|---|---|
ValueError
|
If |
Source code in src/rfdetr/detr.py
2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 | |
remove_optimized_model()
¶
Remove the optimized inference model and reset all optimization flags.
Clears model.inference_model and resets all internal state set by :meth:inference. Safe to
call even if the model has not been optimized. When the model was optimized with inplace=True, this method
issues a :class:UserWarning and returns without modifying state — the original module cannot be restored
because export() and dtype casting mutate it; create or reload a new RFDETR instance instead.
Examples:
>>> from types import SimpleNamespace
>>> import torch
>>> class _TinyModel(torch.nn.Module):
... def __init__(self):
... super().__init__()
... self.linear = torch.nn.Linear(1, 1)
... def forward(self, x):
... return {"pred_boxes": self.linear(x[:, :1, :1, :1].squeeze(-1).squeeze(-1))}
... def export(self):
... return None
>>> class _TinyContext:
... def __init__(self):
... self.device = torch.device("cpu")
... self.resolution = 28
... self.model = _TinyModel()
... self.inference_model = None
>>> model = object.__new__(RFDETR)
>>> model.model_config = SimpleNamespace(num_channels=3)
>>> model.model = _TinyContext()
>>> model._is_optimized_for_inference = False
>>> model._has_warned_about_not_being_optimized_for_inference = False
>>> model._optimized_has_been_compiled = False
>>> model._optimized_batch_size = None
>>> model._optimized_resolution = None
>>> model._optimized_dtype = None
>>> model._optimized_inplace = False
>>> model.inference(compile=False)
>>> model.remove_optimized_model()
>>> model._is_optimized_for_inference
False
Source code in src/rfdetr/detr.py
train(**kwargs)
¶
Train an RF-DETR model via the PyTorch Lightning stack.
All keyword arguments are forwarded to :meth:get_train_config to build a :class:~rfdetr.config.TrainConfig.
Several kwargs are absorbed and handled specially so that existing call-sites do not break:
resolution— updates the model's input resolution by mutating :attr:model_config.resolutionin place before the train config is built. This change persists on :attr:model_configafter :meth:trainreturns. The value must be a positive integer divisible bypatch_size * num_windowsfor the model variant; a :class:ValueErroris raised otherwise. :attr:model_config.positional_encoding_sizeis also updated when the config derives it formulaically (PE == resolution // patch_size); configs with a pretrained-specific PE value (e.g.RFDETRBaseuses DINOv2's PE=37 at 560 px) are left unchanged to preserve checkpoint compatibility.device— normalized via :class:torch.deviceand mapped to PyTorch Lightning trainer arguments."cpu"becomesaccelerator="cpu";"cuda"and"cuda:N"becomeaccelerator="gpu"and optionallydevices=[N];"mps"becomesaccelerator="mps". Other valid torch device types fall back to PTL auto-detection and emit a :class:UserWarning.notes— optional user-defined metadata (string, dict, list, or any JSON-serialisable value) stored under the"notes"key in every.pthcheckpoint produced during training. The value is also available insideargs["notes"]for full provenance. Pass the same value to :meth:exportto embed it in the ONNX file as well.
After training completes the underlying nn.Module is synced back onto self.model.model so that
:meth:predict and :meth:export continue to work without reloading the checkpoint.
Raises:
| Type | Description |
|---|---|
ImportError
|
If training dependencies are not installed. Install with
|
ValueError
|
If |
Source code in src/rfdetr/detr.py
819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 | |