Questions tagged [roboflow]

A computer vision ETL platform for image processing, annotation conversion, dataset inspection, and model training.

90 questions
7
votes
0 answers

How to Put TensorFlow AI model(Object recognition) in Android APP?

I trained the model as: https://www.google.com.au/amp/s/blog.roboflow.com/training-a-tensorflow-object-detection-model-with-a-custom-dataset/amp/ And converted it to tflite. Then I try to put the AI model in an android APP. I…
Limin
  • 143
  • 2
  • 7
5
votes
1 answer

Error Loading Tensorflow Frozen Inference Graph to OpenCV DNN

I have trained an object detection model using Tensorflow API, following an example based on this Google Colaboratory notebook by Roboflow. https://colab.research.google.com/drive/1wTMIrJhYsQdq_u7ROOkf0Lu_fsX5Mu8a So far so good and i have…
3
votes
1 answer

YOLOv5 get boxes, scores, classes, nums

im trying to bind the Object Tracking with Deep Sort in my Project and i need to get the boxes, scores, classes, nums. Loading Pretrained Yolov5 model: model = torch.hub.load('ultralytics/yolov5', 'yolov5s', pretrained=True) model.eval() Getting…
Arthi
  • 73
  • 8
3
votes
1 answer

Difference between .record and .tfrecord

I've downloaded a dataset from https://public.roboflow.com/ which contains test.tfrecord and train.tfrecord Is it the same than test.record and train.record?
pedrobin
  • 161
  • 8
2
votes
1 answer

How to display and read a live camera video in Python OpenCV

I've been working on a code from the Roboflow team that is suppose to display a live video capture and give it's predictions from the model that I trained, but I encounter an error. Get webcam interface via opencv-python video =…
Michael
  • 29
  • 3
2
votes
1 answer

Labelling data in order to train a YOLOv5 model on a custom dataset

I used the source code (ModifiedOpenLabelling) to label my images for Train YOLOv5 Object Detection. The problem is that after labeling my images, I tried to train a model in roboflow, but I could not use the annotations of the images. My…
user18442703
2
votes
0 answers

Error while training a Faster R-CNN object detection model: Cannot convert a symbolic Tensor to a numpy array

I was trying to train an object detection model using the Roboflow Google Colab notebook on the link below. Until Tuesday it was working properly to me but since that day, is not working any more, and I have not made any change to the code or the…
2
votes
3 answers

How to convert YOLOv5 PyTorch model to OpenCV DNN compatible format

Could anybody please help me to convert YOLOv5 PyTorch model to ONNX or TensorFlow format to be able to use it with OpenCV C++ inference? I used this tutorial to train the model with colab:…
al072
  • 79
  • 2
  • 14
2
votes
0 answers

I keep running into this error if I use my custom TF Records when training the Model in TensorFlow Object Detection API V2

Error: tensorflow.python.framework.errors_impl.InvalidArgumentError: assertion failed: [[0.956730783]] [[0.896634638]] [[{{node Assert/AssertGuard/else/_25/Assert/AssertGuard/Assert}}]] [[MultiDeviceIteratorGetNextFromShard]] [[RemoteCall]] I am…
2
votes
0 answers

Google Drive Storage full after running Keras Model on Colab

I have been training a Yolo model on Keras Library using Google Colab. I created model checkpoints in my drive which were roughly about 250 MBs. I constantly deleted the h5 files in order to create space; however, now my GDrive seems to be full when…
Murtaza Kamal
  • 133
  • 2
  • 11
1
vote
1 answer

How can i install ultralytics to google cloud?

I was trying to upload ultralytics to google cloud. I added ultralytics to my requirements.txt file. Then when I deploy my files to google cloud. It says installation complete. But after deploying... the console gives the following error (unable to…
1
vote
2 answers

TypeError: unsupported operand type(s) for +: 'NoneType' and 'str' ROBOFLOW object object detection

I created a dataset by roboflow, I'm trying to use it but there is an error. in get_conditional_configuration_variable default=os.getenv("HOME") + "/.config/roboflow/config.json", TypeError: unsupported operand type(s) for +: 'NoneType' and 'str'
1
vote
1 answer

Using trained webcam on trained roboflow model

I'm trying to run a trained roboflow model using my webcam on visual code studio. The webcam does load up alongside the popup, but it's just a tiny rectangle in the corner and you can't see anything else. If i change "image", image to "image",1 or…
1
vote
1 answer

curl: (3) URL using bad/illegal format or missing URL. What does this mean?

I got this command from an online tool and it is supposed to be base64 test.jpg | curl -d @- \ "https://detect.roboflow.com/sidepanel-new/1?api_key=[MYAPIKEY]" I am not sure why it isn't working
ba_
  • 15
  • 2
  • 8
1
vote
0 answers

Roboflow dataset blank white

I am running YOLO v5 on my customized dataset from roboflow, after I annotated the images on roboflow when I generate a new version of the data set train images are blank white! I did not do any pre-processing or anything.
1
2 3 4 5 6