You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pytorch-image-models/hfdocs/source/index.mdx

10 lines
420 B

# timm
`timm` is a library containing SOTA computer vision models, layers, utilities, optimizers, schedulers, data-loaders, augmentations, and training/evaluation scripts. It provides high-level APIs for popular model architectures and standard datasets, as well as utilities for low-level model manipulation.
```python
import timm
# Load a Pretrained Model
model = timm.create_model('resnet18', pretrained=True)
```