-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update timm * timm version * trigger build Co-authored-by: Weisu Yin <[email protected]>
- Loading branch information
Showing
8 changed files
with
17 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,2 @@ | ||
"""GluonCV auto""" | ||
import logging | ||
from .estimators import * | ||
|
||
logger = logging.getLogger(__name__) | ||
msg = ( | ||
"We plan to deprecate auto from gluoncv on release 0.12.0." | ||
"Please consider using autogluon.vision instead, which provides the same functionality." | ||
"https://auto.gluon.ai/stable/tutorials/image_prediction/index.html" | ||
) | ||
logger.warning(msg) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,14 @@ | ||
"""AutoML Tasks""" | ||
import logging | ||
|
||
from .image_classification import * | ||
from .object_detection import * | ||
# from .utils import * | ||
|
||
logger = logging.getLogger(__name__) | ||
msg = ( | ||
"We plan to deprecate auto from gluoncv on release 0.12.0." | ||
"Please consider using autogluon.vision instead, which provides the same functionality." | ||
"https://auto.gluon.ai/stable/tutorials/image_prediction/index.html" | ||
) | ||
logger.warning(msg) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,4 +29,4 @@ dependencies: | |
- portalocker | ||
- autocfg>=0.0.6 | ||
- autogluon.core==0.2.0 | ||
- timm==0.4.12 | ||
- timm==0.5.4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters