Feature Extraction
Transformers
PyTorch
Safetensors
English
vit
image-feature-extraction
biology
medical
cancer
Instructions to use owkin/phikon with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use owkin/phikon with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="owkin/phikon")# Load model directly from transformers import AutoImageProcessor, AutoModel processor = AutoImageProcessor.from_pretrained("owkin/phikon") model = AutoModel.from_pretrained("owkin/phikon") - Inference
- Notebooks
- Google Colab
- Kaggle
Update `layer_norm_eps` to match timm
#1
by 1aurent - opened
Thanks for your contribution @1aurent ! I confirm its layer_norm_eps=1e-6 following iBOT official implementation. I'll merge this PR as is.
afiliot changed pull request status to merged