Roboflow Custom Metadata¶
Class: RoboflowCustomMetadataBlockV1
Source: inference.core.workflows.core_steps.sinks.roboflow.custom_metadata.v1.RoboflowCustomMetadataBlockV1
Block allows users to add custom metadata to each inference result in Roboflow Model Monitoring dashboard.
This is useful for adding information specific to your use case. For example, if you want to be able to filter inferences by a specific label such as location, you can attach those labels to each inference with this block.
For more information on Model Monitoring at Roboflow, see https://docs.roboflow.com/deploy/model-monitoring.
Type identifier¶
Use the following identifier in step "type"
field: roboflow_core/roboflow_custom_metadata@v1
to add the block as
as step in your workflow.
Properties¶
Name | Type | Description | Refs |
---|---|---|---|
name |
str |
Enter a unique identifier for this step.. | ❌ |
field_value |
str |
This is the name of the metadata field you are creating. | ✅ |
field_name |
str |
Name of the field to be updated.. | ❌ |
fire_and_forget |
bool |
Boolean flag to run the block asynchronously (True) for faster workflows or synchronously (False) for debugging and error handling.. | ✅ |
The Refs column marks possibility to parametrise the property with dynamic values available
in workflow
runtime. See Bindings for more info.
Available Connections¶
Compatible Blocks
Check what blocks you can connect to Roboflow Custom Metadata
in version v1
.
- inputs:
LMM
,Stitch OCR Detections
,LMM For Classification
,Clip Comparison
,CSV Formatter
,Instance Segmentation Model
,CogVLM
,Byte Tracker
,Roboflow Dataset Upload
,Multi-Label Classification Model
,Twilio SMS Notification
,Object Detection Model
,SIFT Comparison
,Florence-2 Model
,Byte Tracker
,OpenAI
,Path Deviation
,Single-Label Classification Model
,Roboflow Dataset Upload
,Detections Stitch
,Llama 3.2 Vision
,Slack Notification
,Object Detection Model
,VLM as Classifier
,Moondream2
,Bounding Rectangle
,Detections Consensus
,Detections Merge
,Dynamic Zone
,Detection Offset
,Overlap Filter
,Time in Zone
,Keypoint Detection Model
,Model Monitoring Inference Aggregator
,Perspective Correction
,Dynamic Crop
,Detections Transformation
,Detections Classes Replacement
,Time in Zone
,VLM as Detector
,Identify Changes
,Florence-2 Model
,Local File Sink
,Path Deviation
,VLM as Detector
,Google Vision OCR
,OpenAI
,Gaze Detection
,Multi-Label Classification Model
,Single-Label Classification Model
,Byte Tracker
,Detections Filter
,Identify Outliers
,Google Gemini
,Keypoint Detection Model
,VLM as Classifier
,Detections Stabilizer
,OCR Model
,Template Matching
,Velocity
,Roboflow Custom Metadata
,Anthropic Claude
,Webhook Sink
,SIFT Comparison
,YOLO-World Model
,JSON Parser
,Instance Segmentation Model
,Segment Anything 2 Model
,Email Notification
,Line Counter
- outputs:
LMM
,Classification Label Visualization
,LMM For Classification
,Clip Comparison
,Line Counter
,Instance Segmentation Model
,CogVLM
,Roboflow Dataset Upload
,Distance Measurement
,Multi-Label Classification Model
,Twilio SMS Notification
,Object Detection Model
,Florence-2 Model
,OpenAI
,Label Visualization
,Path Deviation
,Single-Label Classification Model
,Roboflow Dataset Upload
,Detections Stitch
,Bounding Box Visualization
,Llama 3.2 Vision
,Model Comparison Visualization
,Slack Notification
,Object Detection Model
,Pixel Color Count
,Detections Consensus
,Dynamic Zone
,Halo Visualization
,Triangle Visualization
,Time in Zone
,Keypoint Detection Model
,Model Monitoring Inference Aggregator
,Reference Path Visualization
,Perspective Correction
,Time in Zone
,Dynamic Crop
,Cache Get
,Florence-2 Model
,Cache Set
,Local File Sink
,Path Deviation
,OpenAI
,Google Vision OCR
,Stability AI Image Generation
,Ellipse Visualization
,Size Measurement
,Blur Visualization
,Dot Visualization
,Circle Visualization
,Image Blur
,CLIP Embedding Model
,Background Color Visualization
,Gaze Detection
,Multi-Label Classification Model
,Single-Label Classification Model
,Color Visualization
,Pixelate Visualization
,Google Gemini
,Keypoint Detection Model
,Stability AI Inpainting
,Polygon Zone Visualization
,Keypoint Visualization
,Template Matching
,Mask Visualization
,Image Preprocessing
,Line Counter Visualization
,Roboflow Custom Metadata
,Anthropic Claude
,Webhook Sink
,SIFT Comparison
,YOLO-World Model
,Trace Visualization
,Instance Segmentation Model
,Corner Visualization
,Polygon Visualization
,Segment Anything 2 Model
,Crop Visualization
,Email Notification
,Line Counter
,Image Threshold
Input and Output Bindings¶
The available connections depend on its binding kinds. Check what binding kinds
Roboflow Custom Metadata
in version v1
has.
Bindings
-
input
predictions
(Union[object_detection_prediction
,keypoint_detection_prediction
,classification_prediction
,instance_segmentation_prediction
]): Model predictions to attach custom metadata to..field_value
(string
): This is the name of the metadata field you are creating.fire_and_forget
(boolean
): Boolean flag to run the block asynchronously (True) for faster workflows or synchronously (False) for debugging and error handling..
-
output
Example JSON definition of step Roboflow Custom Metadata
in version v1
{
"name": "<your_step_name_here>",
"type": "roboflow_core/roboflow_custom_metadata@v1",
"predictions": "$steps.my_step.predictions",
"field_value": "toronto",
"field_name": "The name of the value of the field",
"fire_and_forget": true
}