-
Updated
Apr 15, 2022 - Python
image-classification
Here are 4,397 public repositories matching this topic...
-
Updated
Mar 14, 2021 - Jupyter Notebook
-
Updated
Apr 7, 2022 - Python
-
Updated
Apr 20, 2022
-
Updated
Feb 28, 2022 - Jupyter Notebook
Describe the bug
I am trying to label Hebrew text (RTL language). When labels are attached to the text, the words of the text are mixed and not shown in their original order.
To Reproduce
Steps to reproduce the behavior:
- Create a project with attached dataset.json dataset.txt
- Choose NER template
- Start
-
Updated
Apr 6, 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
Related: awslabs/autogluon#1479
Add a scikit-learn compatible API wrapper of TabularPredictor:
- TabularClassifier
- TabularRegressor
Required functionality (may need more than listed):
- init API
- fit API
- predict API
- works in sklearn pipelines
-
Updated
Jan 3, 2021 - Python
-
Updated
Apr 20, 2022 - Python
-
Updated
Apr 18, 2022 - Python
-
Updated
Apr 20, 2022
sklearn.utils are meant to be used internally within the scikit-learn package. They are not guaranteed to be stable between versions of scikit-learn. So depending on this submodule may limit cleanlab compatibility across sklearn versions.
Would not be too much work to replace the few cleanlab functions currently being
-
Updated
Apr 17, 2022 - Python
-
Updated
Mar 27, 2022 - Python
-
Updated
Dec 14, 2021 - Python
-
Updated
Apr 20, 2022 - C++
-
Updated
Jun 26, 2017 - JavaScript
-
Updated
Apr 20, 2022
-
Updated
Aug 16, 2021 - Python
-
Updated
Oct 23, 2021
-
Updated
Apr 14, 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__
.