EiffL / Quarks2CosmosDataChallenge

Material for the CMU Quarks2Cosmos Conference Data Challenges
MIT License
14 stars 5 forks source link

ValueError while loading Cosmo_23.5 from `tensorflow_datasets` #5

Closed jwuphysics closed 3 years ago

jwuphysics commented 3 years ago

In notebooks/PartII-GenerativeModels.ipynb, the first code cell under Step I: Preparing training data and the first code cell under Bonus: Denoising Score Matching should be

dset = tfds.load('Cosmos/Cosmos_23.5', split=tfds.Split.TRAIN)

but it should be

dset = tfds.load('Cosmos/23.5', split=tfds.Split.TRAIN)

Otherwise we'll see the error:

ValueError: Failed to construct dataset cosmos: BuilderConfig Cosmos_23.5 not found. Available: ['23.5', '25.2'] 
EiffL commented 3 years ago

It should be fixed now, thanks @jwuphysics for the issue!