Can I export the model I trained to my local computer?

Can I export the model I trained to my local computer?

You probably can. Go here to start the process: Deploy Your Computer Vision Model - Roboflow

When it asks “Where do you want to deploy your model?” select “On Edge Devices”. Then you have to select what your computer has for running the model - a CPU is most common, but if you have a GPU that’s even better.

Hi YustasDev,

You can deploy models through inference, this is powerful library where inferring is as simple as:

from inference import get_model

model = get_model(model_id="your-model-id/version", api_key="secret")
results = model.infer("/path/to/photo.jpg")

Please have a look at inference documentation. Many computer vision problems are already solved and available through workflows, enabling you to build complex solutions fast.

Hope this helps,
Grzegorz

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.