diff --git a/docs/python-tutorial.md b/docs/python-tutorial.md index 26ba914..39c6c41 100644 --- a/docs/python-tutorial.md +++ b/docs/python-tutorial.md @@ -139,7 +139,9 @@ small 7.165559509303421e-05 ### Fine-tune with SVM [FineTuneSVM.ipynb](https://github.com/Imageomics/pybioclip/blob/main/examples/FineTuneSVM.ipynb) Fine-tunes BioCLIP by combining an [SVM](https://scikit-learn.org/stable/modules/generated/sklearn.svm.SVC.html#sklearn.svm.SVC) with BioCLIP image embeddings. Open In Colab -This work is based on code from [biobench](https://github.com/samuelstevens/biobench). +As can be seen from comparing the confusion matrices, fine-tuning an SVM classifier on BioCLIP image embeddings may yield better results than using BioCLIP in "zero-shot mode", i.e., predicting on a list of custom labels. + +This work is based on code from [biobench](https://github.com/samuelstevens/biobench). ## PIL Images The predict() functions used in all the examples above allow passing a list of paths or a list of [PIL Images](https://pillow.readthedocs.io/en/stable/reference/Image.html).