diff --git a/README.md b/README.md index 9579a13..e5c427d 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,13 @@ The following script demonstrates how to provide inputs to the model, and obtain python examples/predict_structure.py ``` -For more advanced use cases, we also expose the `chai_lab.chai1.run_folding_on_context`, which allows users to construct an `AllAtomFeatureContext` manually. This allows users to specify their own templates, MSAs, embeddings, and constraints. We currently provide an example of how to construct an embeddings context as well as an MSA context, and will be releasing helper methods to build template contexts soon. +To get the best performance, we recommend running the model with MSAs. The following script demonstrates how to provide MSAs to the model by calling out to an MSA server: + +```shell +python examples/msas/predict_with_msas.py +``` + +For further instructions, see `"How can MSAs be provided to Chai-1?"` below.
Where are downloaded weights stored? @@ -53,6 +59,15 @@ Chai-1 supports MSAs provided as an `aligned.pqt` file. This file format is simi

+
+How can I customize the inputs to the model further? +

+ +For more advanced use cases, we also expose the `chai_lab.chai1.run_folding_on_context`, which allows users to construct an `AllAtomFeatureContext` manually. This allows users to specify their own templates, MSAs, embeddings, and constraints. We currently provide an example of how to construct an embeddings context as well as an MSA context, and will be releasing helper methods to build template contexts soon. + +

+
+ ## ⚡ Try it online We provide a [web server](https://lab.chaidiscovery.com) so you can test the Chai-1 model right from your browser, without any setup.