Closed avivajpeyi closed 2 years ago
Some of the others that dont have the error don't even look like they finished executing... EG 137
Maybe the easiest thing to do would be to restart the jobs, and then check again if these are the same TOIs with the issues?
For ref, code to get the TOIs without netcdfs
import glob
import tess_atlas
import pandas as pd
import os
def get_toi_number(path):
toi_str = path.split("/")[-2].split("_")[1]
return int(toi_str)
root = "jun11_cat"
notebook_root = f"{root}/0.2.1.dev64+gc7fa3a0"
tois = pd.read_csv(f"{root}/tois.csv", index_col="Unnamed: 0")
netcdfs_files = glob.glob(f"{notebook_root}/toi_*_files/*.netcdf")
notebooks = glob.glob(f"{notebook_root}/toi_*.ipynb")
tois_with_netcdf = [get_toi_number(f) for f in netcdfs_files]
has_netcdf = [True if i in tois_with_netcdf else False for i in tois.toi_numbers.values]
tois['has_netcdf']= has_netcdf
assert sum(tois.has_netcdf)==len(netcdfs_files)
print(f"num TOIs to analyse: {len(tois)}")
print(f"num notebooks: {len(notebooks)}")
print(f"num netcdfs: {len(netcdfs_files)}")
print(f"num tois without netcdfs: {len(tois)-len(netcdfs_files) }")
print("TOIs without netcdfs:")
print(tois[tois['has_netcdf']==False].toi_numbers.values.tolist())
Some of these TOIs have lightcurves with over .5M data points -- sampling can take more than 5hrs for these!
Dan had some thoughts:
lc
data near the eclipse (see exoplanet's eclipsing binary tutorial) Changes made in #225 helped with this! seems like most are now finishing -- 25 / 219 analyses are still timing out. Closing for now
All TOIs:
24 / 219 TOIs: ConnectionResetError
TESS Atlas fit for TOI 114 TESS Atlas fit for TOI 1209 TESS Atlas fit for TOI 1210 TESS Atlas fit for TOI 1216 TESS Atlas fit for TOI 1246 TESS Atlas fit for TOI 1941 TESS Atlas fit for TOI 206 TESS Atlas fit for TOI 214 TESS Atlas fit for TOI 216 TESS Atlas fit for TOI 284 TESS Atlas fit for TOI 3353 TESS Atlas fit for TOI 389 TESS Atlas fit for TOI 4307 TESS Atlas fit for TOI 4343 TESS Atlas fit for TOI 4355 TESS Atlas fit for TOI 4357 TESS Atlas fit for TOI 4558 TESS Atlas fit for TOI 713 TESS Atlas fit for TOI 723 TESS Atlas fit for TOI 796 TESS Atlas fit for TOI 810 TESS Atlas fit for TOI 817 TESS Atlas fit for TOI 867 TESS Atlas fit for TOI 868 Look at TOI 104:
This is sus -- why is it taking so long to sample?