plip icon indicating copy to clipboard operation
plip copied to clipboard

Pathology Language and Image Pre-Training (PLIP) is the first vision and language foundation model for Pathology AI (Nature Medicine). PLIP is a large-scale pre-trained model that can be used to extra...

Results 5 plip issues
Sort by recently updated
recently updated
newest added

hello,nice work,can you tell me how many gpu hours (A100 80GB) you used to train plip?

Hi, thank you for sharing this PLIP model! It is a great work! However, I am a newbie in model training and would like to seek some help from you....

Thanks for releasing the model on Huggingface. I wanted to use the text encoder. For that I need to tokenize the input. But how to use the tokenizer? Can we...

will you make the images public? I don't see images in the drive. Thanks!

Hi, I would like to extract image features using PLIP ``` from transformers import CLIPModel model = CLIPModel.from_pretrained('vinid/plip') for batch in dataloader: with torch.no_grad(): batch = batch.to(device) embeds = ......