RF-DETR Nano
Bases: RFDETR
Train an RF-DETR Nano model.
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. |
Functions¶
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 |
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
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, *, notes=None)
¶
Export the trained model to ONNX or TFLite 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 ONNX model accepts variable batch sizes at runtime. |
False
|
|
int | None
|
Backbone patch size. Defaults to the value stored in
|
None
|
|
str
|
Export format — .. warning::
TFLite export is experimental and subject to change; upstream dependency instabilities ( |
'onnx'
|
|
str | None
|
TFLite quantization mode (ignored when
|
None
|
|
str | ndarray | 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
|
|
object
|
Optional user-defined metadata (string, dict, list, or
any JSON-serialisable value) to embed in the exported ONNX model under the |
None
|
Returns:
| Type | Description |
|---|---|
Path
|
Path to the exported model file ( |
Source code in src/rfdetr/detr.py
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 951 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 1101 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 | |
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
training args into weights.pt, always embedding class_names into a copy of the args 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 |
Source code in src/rfdetr/detr.py
from_checkpoint(path, **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 |
|
Any
|
Additional keyword arguments forwarded to the model
constructor (e.g. |
{}
|
Returns:
| Type | Description |
|---|---|
RFDETR
|
An instance of the appropriate :class: |
Warning
This method calls torch.load with weights_only=False, which
unpickles arbitrary Python objects. Only load checkpoints from trusted sources.
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
281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 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 | |
get_model(config)
¶
Retrieve a model context from the provided architecture configuration.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
ModelConfig
|
Architecture configuration. |
required |
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)
¶
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)
¶
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.
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
|
Raises:
| Type | Description |
|---|---|
TypeError
|
If |
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.optimize_for_inference(compile=False, dtype="float16")
>>> model._is_optimized_for_inference
True
>>> model._optimized_dtype
torch.float16
Source code in src/rfdetr/detr.py
778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 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 | |
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 | Tensor | list[str | ndarray | 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 keypoint uncertainty fusion controlled by |
Detections | KeyPoints | list[Detections | KeyPoints]
|
|
Detections | KeyPoints | list[Detections | KeyPoints]
|
|
Detections | KeyPoints | list[Detections | KeyPoints]
|
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 two 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 models, class_id
is a 0-based index into class_names.
Raises:
| Type | Description |
|---|---|
ValueError
|
If |
Source code in src/rfdetr/detr.py
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 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 | |
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:optimize_for_inference. Safe to
call even if the model has not been optimized.
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.optimize_for_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.callbacks— if the dict contains any non-empty lists a :class:DeprecationWarningis emitted; the dict is then discarded. Use PTL :class:~pytorch_lightning.Callbackobjects passed via :func:~rfdetr.training.build_trainerinstead.start_epoch— emits :class:DeprecationWarningand is dropped.do_benchmark— emits :class:DeprecationWarningand is dropped.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
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 | |