Instructions to use xdcx/eva02_large_E621_FULL_V1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- timm
How to use xdcx/eva02_large_E621_FULL_V1 with timm:
import timm model = timm.create_model("hf_hub:xdcx/eva02_large_E621_FULL_V1", pretrained=True) - Notebooks
- Google Colab
- Kaggle
File size: 686 Bytes
b5e0189 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | {
"test": [
{
"type": "PadToSize",
"size": [
512,
512
],
"background_color": "white"
},
{
"type": "Resize",
"size": [
448,
448
],
"interpolation": "bicubic"
},
{
"type": "CenterCrop",
"size": [
448,
448
]
},
{
"type": "ToTensor"
},
{
"type": "Normalize",
"mean": [
0.7058010139741189,
0.6675836722220271,
0.6626594977602157
],
"std": [
0.3200751353807431,
0.3323665192448117,
0.3356149715782511
]
}
]
} |