Skip to content

Hello World

In this tutorial, we will build and run a simple Workflow to validate that our setup is installed and working correctly. We will run inference on a computer vision model and visualize its output via the UI debugger.

Difficulty: Easy
Time to Complete: 5 minutes

Prerequisites

This tutorial only requires a free Roboflow account and can run on the Serverless Hosted API with no setup required. This is the easiest way to get started and you can migrate to self-hosting your Workflows later.

You can also connect from the cloud platform to an Inference Server running locally by clicking the "Running on" selector at the top-left of the platform UI and pointing it to localhost or your server's IP.

Once you have an account, create a new (empty) Workflow then continue below.

In Detached mode, you run both the Inference Server and Workflow Builder UI locally without a Roboflow account or API Key. In Detached mode, you forego cloud connected functionality like remote deployment, monitoring, integration with the cloud model hub and dataset management platform, and are responsible for implementing your own access control.

To run on your own machine without a Roboflow account, follow the installation instructions and start your Inference Server in development mode (using inference server start --dev).

Then, navigate to the local Workflows builder at localhost:9001/build and create an empty Workflow using the purple "Create a Workflow" button. If prompted, choose "Build My Own".

You should now have an empty Workflow and be ready to start building.

Empty Workflow

Add a Model

The first step is adding a Model Block. Click "Add a Block" to open the block selection sidebar.

Add a Block

For this guide, choose the object detection model block.

Choose a Model

Then select a model. You can use a pre-trained model (trained on the 80 classes of common objects present in the Microsoft COCO dataset). Or, if you have linked your Roboflow account, any of your fine-tuned models or from the 100,000+ community-trained models shared on Roboflow Universe.

Pick a Model

Test Your Workflow

Once you've added a model, you can test it on an image or video. Click "Test Workflow" on the top right, then add an image and click "Run". By default, your output will contain a JSON representation of the model's predictions.

Test Your Workflow

Add a Visualization

To get a better view of what your model is predicting, add a visualization block by clicking the "+" button on the bottom of the Object Detection Model block. The "Bounding Box Visualization" and "Label Visualization" work well together.

Add Visualization

Next, we will swap the order of the Outputs to show the visualization first (above the JSON) for convenience. Click the "Outputs" block then click the "Move Up" button for the visualization you selected.

Arrange Outputs

Now, when we test our Workflow we see a rendered image in addition to the JSON. This can be useful both for debugging and as part of an app's UI.

Test Again

We can also click on the thumbnail (or the "Visual" output toggle) to see a larger version of the image.

See Visual

Deploy

Finally, we can use this Workflow as part of a larger application using the client code snippet accessible via the "Deploy" button at the top of the screen.

Deploy

Next Steps

Now that we've built a simple Workflow and validated that we can connect and run models on our Inference Server we can start building more complex and powerful Workflows like comparing the output of two models.