Skip to content

Commit 7d586bf

Browse files
authored
models : reduce tqdm import statements (#35)
1 parent 2c066d3 commit 7d586bf

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

devolearn/embryo_generator_model/embryo_generator_model.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@
1010
import os
1111
import cv2
1212
import wget
13-
from tqdm import tqdm
14-
from tqdm.notebook import tqdm as tqdm_notebook
13+
from tqdm import tqdm, tqdm_notebook
1514
from PIL import Image
1615
import joblib
1716
import numpy as np

devolearn/embryo_segmentor/embryo_segmentor.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@
1010
import cv2
1111
import wget
1212
import imutils
13-
from tqdm import tqdm
14-
from tqdm.notebook import tqdm as tqdm_notebook
13+
from tqdm import tqdm, tqdm_notebook
1514
from PIL import Image
1615
import numpy as np
1716
from collections import deque

devolearn/lineage_population_model/lineage_population_model.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@
1414
import numpy as np
1515
from collections import deque
1616
import pandas as pd
17-
from tqdm import tqdm
18-
from tqdm.notebook import tqdm as tqdm_notebook
17+
from tqdm import tqdm, tqdm_notebook
1918
import matplotlib.pyplot as plt
2019

2120

0 commit comments

Comments
 (0)