Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion recipes/AMI/Diarization/experiment.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
import numpy as np
import torch
from hyperpyyaml import load_hyperpyyaml
from tqdm.contrib import tqdm
from tqdm import tqdm

import speechbrain as sb
from speechbrain.dataio.dataio import read_audio, read_audio_multichannel
Expand Down
2 changes: 1 addition & 1 deletion recipes/IEMOCAP/emotion_recognition/train.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import torch
from hyperpyyaml import load_hyperpyyaml
from torch.utils.data import DataLoader
from tqdm.contrib import tqdm
from tqdm import tqdm

import speechbrain as sb

Expand Down
2 changes: 1 addition & 1 deletion recipes/VoxCeleb/SpeakerRec/speaker_verification_cosine.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import torch
import torchaudio
from hyperpyyaml import load_hyperpyyaml
from tqdm.contrib import tqdm
from tqdm import tqdm

import speechbrain as sb
from speechbrain.utils.data_utils import download_file
Expand Down
2 changes: 1 addition & 1 deletion recipes/VoxCeleb/SpeakerRec/speaker_verification_plda.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import torch
import torchaudio
from hyperpyyaml import load_hyperpyyaml
from tqdm.contrib import tqdm
from tqdm import tqdm

import speechbrain as sb
from speechbrain.processing.PLDA_LDA import (
Expand Down
2 changes: 1 addition & 1 deletion recipes/VoxCeleb/voxceleb_prepare.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import numpy as np
import torch
import torchaudio
from tqdm.contrib import tqdm
from tqdm import tqdm

from speechbrain.dataio.dataio import load_pkl, save_pkl
from speechbrain.utils.logger import get_logger
Expand Down
2 changes: 1 addition & 1 deletion speechbrain/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
from torch.nn import SyncBatchNorm
from torch.nn.parallel import DistributedDataParallel as DDP
from torch.utils.data import DataLoader, DistributedSampler, IterableDataset
from tqdm.contrib import tqdm
from tqdm import tqdm

import speechbrain as sb
from speechbrain.dataio.dataloader import LoopedLoader, SaveableDataLoader
Expand Down
2 changes: 1 addition & 1 deletion speechbrain/utils/kmeans.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

import os

from tqdm.contrib import tqdm
from tqdm import tqdm

from speechbrain.utils.logger import get_logger

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
from ASR_template_train import ASR, dataio_prepare
from hyperpyyaml import load_hyperpyyaml
from torch.utils.data import DataLoader
from tqdm.contrib import tqdm
from tqdm import tqdm

import speechbrain as sb
from speechbrain.dataio.dataio import read_audio # read_audio_multichannel,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
from ASR_template_train import ASR, dataio_prepare
from hyperpyyaml import load_hyperpyyaml
from torch.utils.data import DataLoader
from tqdm.contrib import tqdm
from tqdm import tqdm

import speechbrain as sb
from speechbrain.dataio.dataio import read_audio # read_audio_multichannel,
Expand Down