RF-DETR 2XLarge
License Notice
This model is licensed under the Platform Model License (PML-1.0) and requires pip install rfdetr[plus]. See the rfdetr_plus repository for license details.
Bases: RFDETR
Source code in .venv/lib/python3.10/site-packages/rfdetr_plus/models/detection.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 |
list[str]
|
names are embedded in the checkpoint, returns the standard 80 |
list[str]
|
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 |
Source code in src/rfdetr/detr.py
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 | |
export(output_dir='output', infer_dir=None, simplify=False, backbone_only=False, opset_version=17, verbose=True, force=False, shape=None, batch_size=1, dynamic_batch=False, patch_size=None, **kwargs)
¶
Export the trained model to ONNX format.
See the ONNX export documentation <https://rfdetr.roboflow.com/learn/export/>_
for more information.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
str
|
Directory to write the ONNX file to. |
'output'
|
|
str
|
Optional directory of sample images for dynamic-axes inference. |
None
|
|
bool
|
Deprecated and ignored. Simplification is no longer run. |
False
|
|
bool
|
Export only the backbone (feature extractor). |
False
|
|
int
|
ONNX opset version to target. |
17
|
|
bool
|
Print export progress information. |
True
|
|
bool
|
Deprecated and ignored. |
False
|
|
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
|
|
Additional keyword arguments forwarded to export_onnx. |
{}
|
Source code in src/rfdetr/detr.py
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 | |
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, |
'ModelContext'
|
and class_names attributes. |
Source code in src/rfdetr/detr.py
maybe_download_pretrain_weights()
¶
Download pre-trained weights if they are not already downloaded.
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:
>>> model = RFDETRNano()
>>> model.optimize_for_inference(compile=False, dtype="float16", batch_size=4)
Source code in src/rfdetr/detr.py
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 | |
predict(images, threshold=0.5, shape=None, patch_size=None, **kwargs)
¶
Performs object detection on the input images and returns bounding box predictions.
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
|
|
Additional keyword arguments. |
{}
|
Returns:
| Type | Description |
|---|---|
Detections | list[Detections]
|
A single or multiple Detections objects, each containing bounding box |
Detections | list[Detections]
|
coordinates, confidence scores, and class IDs. |
Raises:
| Type | Description |
|---|---|
ValueError
|
If |
Source code in src/rfdetr/detr.py
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 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 | |
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:
>>> model = RFDETRSmall()
>>> model.optimize_for_inference(compile=False)
>>> model.remove_optimized_model()
>>> assert not model._is_optimized_for_inference
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 legacy kwargs are absorbed
so existing call-sites do not break:
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.
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
|
Source code in src/rfdetr/detr.py
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 | |