sokrypton / ColabDesign

Making Protein Design accessible to all via Google Colab!
549 stars 127 forks source link

WARNING: 'model_1_ptm' not found #128

Closed DomML closed 1 year ago

DomML commented 1 year ago

Hello, I'm trying to setup a local colabdesing instance, but I encounter this error "WARNING: 'model_1_ptm' not found" while trying to run model = mk_afdesign_model(protocol="fixbb") Where can I find them and where to install ? Thank you in advance, DomML

DomML commented 1 year ago

So I resolved my issue by soft linking params_model_1_ptm.npz toward model_1_ptm.npz

for i in {1..5}; do ln -s params_model_"$i"_ptm.npz model_"$i"_ptm.npz; done