Skip to content

Commit

Permalink
Merge pull request #30 from arjunsavel/new_tqdm
Browse files Browse the repository at this point in the history
try new tqdm
  • Loading branch information
arjunsavel authored Feb 14, 2024
2 parents 51dbe4f + f71470f commit 57be7fc
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/cortecs/fit/fit.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from multiprocessing import Pool

import numpy as np
from tqdm import tqdm
from tqdm.autonotebook import tqdm

from cortecs.fit.fit_neural_net import *
from cortecs.fit.fit_pca import *
Expand Down
2 changes: 1 addition & 1 deletion src/cortecs/fit/metrics.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""
import matplotlib.pyplot as plt
import numpy as np
from tqdm import tqdm
from tqdm.autonotebook import tqdm

from cortecs.eval.eval import Evaluator

Expand Down
2 changes: 1 addition & 1 deletion src/cortecs/opac/chunking.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
from glob import glob

import numpy as np
from tqdm import tqdm
from tqdm.autonotebook import tqdm

from cortecs.opac.opac import *

Expand Down
2 changes: 1 addition & 1 deletion src/cortecs/opac/interpolate_cia.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from glob import glob

import numpy as np
from tqdm import tqdm
from tqdm.autonotebook import tqdm

from cortecs.opac.chunking import *
from cortecs.opac.io import *
Expand Down
2 changes: 1 addition & 1 deletion src/cortecs/opac/io.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import h5py
import numpy as np
import pandas as pd
from tqdm import tqdm
from tqdm.autonotebook import tqdm

AMU = 1.6605390666e-24 # atomic mass unit in cgs. From astropy!

Expand Down
2 changes: 1 addition & 1 deletion src/cortecs/opt/optimize_neural_net.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import math

import numpy as np
from tqdm import tqdm
from tqdm.autonotebook import tqdm

from cortecs.fit.fit_neural_net import *

Expand Down
2 changes: 1 addition & 1 deletion src/cortecs/opt/optimize_pca.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import math

import numpy as np
from tqdm import tqdm
from tqdm.autonotebook import tqdm

from cortecs.fit.fit import Fitter
from cortecs.fit.fit_neural_net import *
Expand Down

0 comments on commit 57be7fc

Please sign in to comment.