-
Updated
Jun 15, 2022 - Python
image-classification
Here are 4,600 public repositories matching this topic...
-
Updated
Jun 3, 2022 - Python
-
Updated
Mar 14, 2021 - Jupyter Notebook
Describe the bug
When exporting a brush annotation as a PNG, the output is not mapped by the background colors specified in (Settings > Labeling Interface). In addition, when exporting as a JSON, the background colors for the attributes are not specified anywhere, leaving the values that were selected in the interface as arbitrary and as not linked to any of the outputs.
To Reproduce
-
Updated
May 22, 2022
-
Updated
Apr 24, 2022 - Jupyter Notebook
-
Updated
Jun 12, 2022 - Python
My actions before raising this issue
- Read/searched the docs
- Searched past issues
Expected Behaviour
I want to access the traefik dashboard. I have cvat setup on a server with https. I modified the docker-compose.https.yml according to the comment for using the traefik dashboard. So included the lin
-
Updated
Oct 25, 2021 - C#
-
Updated
Dec 17, 2021
Hi,
I need to download the something-to-something and jester datasets. But the 20bn website "https://20bn.com" are not available for weeks, the error message is "503 Service Temporarily Unavailable".
I have already downloaded the video data of something-to-something v2, and I need the label dataset. For the Jester, I need both video and label data. Can someone share me the
-
Updated
Dec 19, 2021 - Python
Add PECOS model to TabularPredictor.
If you'd like to work on this, please respond to this GitHub issue.
It is recommended to follow the custom model tutorial for implementing the model into AutoGluon.
-
Updated
Jun 17, 2022 - Python
-
Updated
Jan 3, 2021 - Python
Currently the X argument of CleanLearning.fit() does not seem to support non-array data.
Perhaps this is due to the sklearn function check_X_y() called inside CleanLearning, which we could replace.
Or perhaps it's due to how the cross-validation is currently being implemented.
However these are both easy to improve to rid the restriction that only array data are supported.
Seems e
-
Updated
Jun 17, 2022
-
Updated
Jun 15, 2022 - Python
-
Updated
Apr 29, 2022 - Python
-
Updated
Dec 14, 2021 - Python
-
Updated
Jun 17, 2022 - C++
-
Updated
Jun 26, 2017 - JavaScript
-
Updated
Apr 20, 2022
-
Updated
Apr 25, 2022
-
Updated
Oct 23, 2021
-
Updated
Aug 16, 2021 - Python
-
Updated
May 23, 2022 - Python
-
Updated
Oct 12, 2021 - JavaScript
Yolov3 slow?
with video_demo.py about 20% speed compared to your 1.0 repo. but thanks much for sharing!
Improve this page
Add a description, image, and links to the image-classification topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the image-classification topic, visit your repo's landing page and select "manage topics."


Enhancement
A discussion in #614 revealed a good place for improvement - we should ensure that input image is continuous upon start of the augmentation pipeline. This could be implemented by adding
image = np.ascontiguousarray(image)to image and mask targets.A proposed place to add this call - somewhere at the beginning of
A.Compose.__call__.