-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bf2d2ef
commit e1fa321
Showing
11 changed files
with
64 additions
and
50 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 +1 @@ | ||
__version__ = "0.1.4" | ||
__version__ = "0.1.5" |
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,13 +1,14 @@ | ||
from .augment import * | ||
from .augment.all import * | ||
from ..basics import * | ||
from ..callback.all import * | ||
from .data import * | ||
from ..data.all import * | ||
from ..losses import * | ||
from ..metrics import * | ||
from .models.all import * | ||
from ..multiloss import * | ||
from ..optimizer.all import * | ||
from ..schedulers import * | ||
from ..utils import * | ||
from ..utils import * | ||
|
||
from .augment import * | ||
from .augment.all import * | ||
from .models.all import * |
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,5 +1,5 @@ | ||
conda create -n fastxtend python=3.10 "pytorch>=2.0.1" torchvision torchaudio \ | ||
pytorch-cuda=11.8 cuda fastai nbdev pkg-config libjpeg-turbo opencv tqdm \ | ||
terminaltables psutil numpy numba librosa=0.9.2 timm kornia rich typer \ | ||
jupyterlab ipywidgets wandb \ | ||
-c pytorch -c nvidia/label/cuda-11.8.0 -c fastai -c huggingface -c conda-forge | ||
conda create -n fastxtend python=3.11 "pytorch>=2.1" torchvision torchaudio \ | ||
pytorch-cuda=12.1 fastai nbdev pkg-config libjpeg-turbo opencv tqdm psutil \ | ||
terminaltables numpy "numba>=0.57" librosa timm kornia rich typer wandb \ | ||
"transformers>=4.34" "tokenizers>=0.14" "datasets>=2.14" ipykernel ipywidgets \ | ||
"matplotlib<3.8" -c pytorch -c nvidia -c fastai -c huggingface -c conda-forge |
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
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 |
---|---|---|
|
@@ -8,7 +8,7 @@ author = Benjamin Warner | |
author_email = [email protected] | ||
copyright = Benjamin Warner | ||
branch = main | ||
version = 0.1.4 | ||
version = 0.1.5 | ||
min_python = 3.8 | ||
audience = Developers | ||
language = English | ||
|