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.
12 lines
443 B
12 lines
443 B
# Getting Started
|
|
|
|
## Welcome
|
|
|
|
`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)
|
|
``` |