removed tqdm package
This commit is contained in:
parent
d7039a958a
commit
8b25fb631c
1 changed files with 1 additions and 2 deletions
|
|
@ -182,7 +182,6 @@ def generate_permalink(base_url, get_root_url, get_root_calculator_url, form: F
|
|||
|
||||
|
||||
def uncertainties_plot(exposure_models):
|
||||
from tqdm import tqdm
|
||||
fig = plt.figure(figsize=(7, 10))
|
||||
viral_loads = np.linspace(2, 10, 600)
|
||||
|
||||
|
|
@ -193,7 +192,7 @@ def uncertainties_plot(exposure_models):
|
|||
lower_percentiles = []
|
||||
upper_percentiles = []
|
||||
|
||||
for vl in tqdm(viral_loads):
|
||||
for vl in viral_loads:
|
||||
model_vl = dataclass_utils.replace(exposure_mc,
|
||||
concentration_model = models.ConcentrationModel(
|
||||
room=concentration_model.room,
|
||||
|
|
|
|||
Loading…
Reference in a new issue