-
Updated
Jul 7, 2022 - Python
image-classification
Here are 4,665 public repositories matching this topic...
-
Updated
Jun 30, 2022 - Python
-
Updated
Mar 14, 2021 - Jupyter Notebook
-
Updated
May 22, 2022
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
Jul 8, 2022 - Python
-
Updated
Apr 24, 2022 - Jupyter Notebook
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
Jul 7, 2022 - 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
Jul 7, 2022 - Python
-
Updated
Jul 8, 2022
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
Jan 3, 2021 - Python
-
Updated
Jul 4, 2022 - Python
-
Updated
Jul 7, 2022 - Python
-
Updated
Mar 27, 2022 - Python
-
Updated
Jul 4, 2022 - Python
-
Updated
Jun 29, 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
Jul 4, 2022 - Python
-
Updated
Oct 12, 2021 - JavaScript
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__
.