Questions tagged [microsoft-custom-vision]
145 questions
0
votes
0 answers
Training images cannot be uploaded
I can’t upload training images when the number of uploaded files reaches 1066. Would you please teach me if you know how to deal with it?
Error message: images were not uploaded because you ran out of 'quota'. See quotas in Setting.
I changed the…
0
votes
0 answers
CustomVision.ai Object Detection vs Image Classification
I want to use CustomVision.ai to detect pack of cigarettes within a shopping cart. I have tons of images of contents of shopping carts without cigarettes, and several images of the content with cigarettes. All images are taken from the same angle,…

Stef
- 644
- 1
- 8
- 25
0
votes
2 answers
Use Azure custom vision model with Node.js
i am new to Tensorflow.js so, i don't quite understand it completely.
I have trained an object detection model using Azure Custom Vision (customvision.ai) and as described in there documentation i exported the model for Tensorflow.js for offline use…

Aakash Bhadana
- 302
- 2
- 17
0
votes
0 answers
Inference for custom vision model hosted on Azure Cognitive Services stopped working in December for me
I have a service that has been successfully performing inferences for 2 years, but API stopped working in December. I have created a simple App based on documentation from Microsoft to reproduce the problem. Please see code below.
Is anybody else…
0
votes
1 answer
How do I return absolute coordinates for bounding boxes with CustomVision API?
I'm wondering whether it is possible for the Azure Cognitive Custom Vision Prediction API to return absolute coordinates instead of percentile based ones:
In the above screenshot, you can see the top, left, width and height properties of the…

zurebe-pieter
- 3,246
- 21
- 38
0
votes
1 answer
Custom Vision save curent model
i'm using Custom vision from Microsoft service to classify image. Since the model will have to be re train few times a years, I would like to know if I can save current version of azure custom vision model to re train my new model on the same…

akhetos
- 686
- 1
- 10
- 31
0
votes
1 answer
Azure custom vision get image ID to delete them
I'm looking for a way using Azure custom vision API or SDK to get training image ID to delete them using for example:
https://westeurope.dev.cognitive.microsoft.com/docs/services/Custom_Vision_Training_3.0/operations/5c771cdcbf6a2b18a0c3b800
I also…

akhetos
- 686
- 1
- 10
- 31
0
votes
1 answer
Azure custom vision choose training time
i'm using API to load my data and make prediction. I have seen documentation to train model using code (https://learn.microsoft.com/en-us/azure/cognitive-services/Custom-Vision-Service/python-tutorial) but I can't figure how to chose training time…

akhetos
- 686
- 1
- 10
- 31
0
votes
0 answers
it is efficient to do data augmentation with affine transformation on Custom Vision from Azure?
Recently, I start Custom Vision from Azure, and I'm worried how to augment training images.
I came up with data augment with affine transformation, but simultaneously guessed Custom Vision algorithm might include this process itself.
Could you…

kawa
- 1
- 1
0
votes
1 answer
I create a new model in custom vision. How can I use this model in computer vision?
As I said, I create a new mode by Custom Vision. Now, I want to analyze other image using this model. Is it possible? What endpoint should I use? Thanks.
0
votes
2 answers
CustomVision API returns “Operation returned an invalid status code: 'Bad Request'”
I get this error when using the CustomVisionPredictionClient like so:
var predictionApi = new CustomVisionPredictionClient()
{
ApiKey = _predictionKey,
Endpoint = "https://westeurope.api.cognitive.microsoft.com"
};
var result = await…

IngoB
- 2,552
- 1
- 20
- 35
0
votes
0 answers
Python program crashes while using ParseFromString
I have had no problems downloading and using a model downloaded from Microsoft Custom Vision. However when I transfer the model and python code to another computer, the program crashes at this line:
graph_def.ParseFromString(f.read())
Windows…

Tyson
- 592
- 4
- 13
0
votes
2 answers
How to fetch data from Microsoft Custom Vision API using ReactJS
I need some help regarding the use of Custom Vision. I built an image classifier in order to detect car damages.
So what I am trying to do: when I try to input an image and click the submit button, I want to be able to call the Custom Vision API and…

ale13
- 5,679
- 3
- 10
- 25
0
votes
0 answers
I want to detect people talking on a cel phone, must I train with only cell phone images or must I use pictures of people using the cellphone?
I know this is a very basic question. I want to train my Custom Vision Model to detect when someone is using the cell phone. So, my question is: must I train the model with cell phones images (only the device) or with images of people using the…

Roger
- 83
- 1
- 2
- 12
0
votes
2 answers
How can I get predicted images URL from azure?
I'm using Azure Microsoft Custom Vision.
I've already created my algorithm, and what I need now is the URL of my predicted images.
I'm aware that I can get the training images with methods written in Training API (get_tagged_images), but now I'm…

polaupa
- 149
- 11