Exscientia / physicsml

A package for all physics based/related models
MIT License
40 stars 1 forks source link

FileNotFoundError: gdb9_trunc.parquet in QM9 Training Tutorial #12

Closed erwallace closed 5 months ago

erwallace commented 5 months ago

Hello, I am running through your QM9 training tutorial and getting an error. I can't see gdb9_trunc in molflux.datasets.list_datasets() either so not sure where this is meant to be stored.

from molflux.datasets import load_dataset_from_store dataset = load_dataset_from_store("gdb9_trunc.parquet")

Gives the error:

FileNotFoundError: Unable to find 'C:/Users/wallace5/antimanybody/physicsml\gdb9_trunc.parquet'

Cheers

wardhaddadin1 commented 5 months ago

Hello! Thanks for reaching out!

This is a truncated file for running the examples in the docs (in github actions). If you want to run the example locally, you can just use the full dataset like this:

from molflux.datasets import load_dataset dataset = load_dataset("gdb9", "rdkit")

There is more info about datasets here: https://exscientia.github.io/physicsml/pages/datasets/qm_datasets.html

I will update the docs to state this explicitly.

Let us know if you have any other problems!

Best, Ward

erwallace commented 5 months ago

Thanks so much for the quick response!