Help needed using a molecular dataset
See original GitHub issueHello together,
I have created a molecular dataset using:
dataset_train.load_smiles(Strain,targets={"property":Ytrain_full})
Now, when I want to create an Engine from a defined task:
task = tasks.PropertyPrediction(model, task=dataset_train.tasks,
criterion="bce", metric=("auprc", "auroc"),num_class=3)
optimizer = torch.optim.Adam(task.parameters(), lr=1e-3)
solver = core.Engine(task, train_set, valid_set, test_set, optimizer, batch_size=1024)
I receive the following error:
'MoleculeDataset' object has no attribute 'config_dict'
How can I set the config dict using a user defined dataset?
Issue Analytics
- State:
- Created a year ago
- Comments:6 (1 by maintainers)
Top Results From Across the Web
Find and play with 'molecule' datasets - Towards Data Science
Datasets for molecules and where to find them! ... talk about a tool that would help you play with the above-mentioned datasets in...
Read more >MoleculeNet: a benchmark for molecular machine learning
MoleculeNet curates multiple public datasets, establishes metrics for evaluation, and offers high quality open-source implementations of ...
Read more >Introduction to MoleculeNet suite of Datasets - YouTube
Link to colab notebook: https://colab.research.google.com/drive/1tgl-87qPOio2mQDPv1ODeCnIzeWtuX5I?usp=sharingThis tutorial introduces ...
Read more >Molecular Modeling Database (MMDB) Help Document - NCBI
Help document for the Molecular Modeling Database (MMDB), a resource of the National Center for Biotechnology Information (NCBI) Structure Group.
Read more >The METLIN small molecule dataset for machine learning ...
These models enable screening for molecules with specific properties and their development has been possible given the availability of public ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Hello,
for me this fix worked, I assume ther is something wrong eith this wrapper:
nice!