Shreyas Vinaya
Shreyas Vinaya
Hi @Tenchberry It looks like you are running out of storage on your azure VM, you might have to bump up your storage on the VM
Hi, Could you please share a screenshot of the fixed documentation, You can build the documentation locally using [this tutorial ](https://deepchem.readthedocs.io/en/latest/get_started/Documentation-tutorial.html)
@rbharath this looks good to be merged in
Hi, Could you please mention the issue as a part of the PR like #3836
@rbharath could you please turn on the CI so that we can test this
Hi @Harshith-07, Could you please rebase this PR
@Harshith-07 you will have to pull the latest changes from the main repo . You can use this [tutorial](https://www.digitalocean.com/community/tutorials/how-to-rebase-and-update-a-pull-request) for your reference
@rbharath can we add GFlowNet (https://papers.nips.cc/paper/2021/hash/e614f646836aaed9f89ce58e837e2310-Abstract.html), (https://openreview.net/pdf?id=JFSaHKNZ35b),(https://pubs.rsc.org/en/content/articlepdf/2023/dd/d3dd00002h) as a generative model
Hey @sk000007 have you installed the nightly version of deepchem? you can do so using `pip install --pre -U deepchem` the bug seems to be fixed now
The below code should fix the issue ``` !pip install --pre deepchem[torch] import deepchem as dc from deepchem.models.fcnet import MultitaskClassifier model = MultitaskClassifier(n_tasks=12, n_features=1024, layer_sizes=[1000]) ``` You seem to be...