-
Updated
Dec 28, 2021 - Python
image-classification
Here are 4,057 public repositories matching this topic...
-
Updated
Mar 14, 2021 - Jupyter Notebook
-
Updated
Oct 25, 2021 - Jupyter Notebook
-
Updated
Dec 28, 2021
-
Updated
Dec 31, 2021 - Python
At the moment, from API there are two useful columns about tasks:
Key | Type | Description |
---|---|---|
tasks.created_at | datetime | Date and time of task creation. |
tasks.updated_at | datetime | Date and time of last update to the task. |
However, in tabs (views) there are possible columns tasks:created_at
a
-
Updated
Oct 25, 2021 - C#
-
Updated
Dec 22, 2021 - Python
Chunk Size in CLI
My actions before raising this issue
- Read/searched the docs
- Searched past issues
Option to select chunk sizes does not exist in the CLI
Expected Beh
-
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
Could FeatureTools be implemented as an automated preprocessor to Autogluon, adding the ability to handle multi-entity problems (i.e. Data split across multiple normalised database tables)? So if you supply Autogluon with a list of Dataframes instead of a single Dataframe it would first invoke FeatureTools:
- take the multiple Dataframes (entities) and try to auto-infer the relationship betwee
-
Updated
Jan 3, 2021 - Python
-
Updated
Dec 31, 2021 - Python
-
Updated
Dec 30, 2021 - Python
🚀 Feature Request
ENUMs for the catalyst-based conventions.
As an example, I will use scope
.
Motivation
We have a lot of callbacks that used scope
and maybe some other parameter that has only in catalyst-based meaning.
And every time we need to do something like that:
if isinstance(scope, str) and scope in [
"on_batch_end",
"on_batch_start",
-
Updated
Apr 25, 2021 - Python
-
Updated
Dec 14, 2021 - Python
-
Updated
Dec 28, 2021 - C++
-
Updated
Jun 26, 2017 - JavaScript
-
Updated
Sep 17, 2020
-
Updated
Aug 16, 2021 - Python
-
Updated
Oct 23, 2021
-
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!
-
Updated
Oct 4, 2021 - Python
-
Updated
Jun 16, 2021 - Python
-
Updated
Nov 13, 2020 - Python
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__
.