From 9c2c5bfaaa4f9718d3e9a17b9df312ed680da9b9 Mon Sep 17 00:00:00 2001 From: nateraw Date: Mon, 5 Dec 2022 16:15:35 -0500 Subject: [PATCH] :memo: wip docs --- hfdocs/source/index.mdx | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/hfdocs/source/index.mdx b/hfdocs/source/index.mdx index fb7634b2..0a9f08a1 100644 --- a/hfdocs/source/index.mdx +++ b/hfdocs/source/index.mdx @@ -1,10 +1,7 @@ # 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. +`timm` is a library containing SOTA computer vision models, layers, utilities, optimizers, schedulers, data-loaders, augmentations, and training/evaluation scripts. -```python -import timm +It comes packaged with >100 pretrained models, and is designed to be flexible and easy to use. -# Load a Pretrained Model -model = timm.create_model('resnet18', pretrained=True) -``` \ No newline at end of file +Read the [quick start guide](quickstart) to get up and running with the `timm` library. You will learn how to load, discover, and use pretrained models included in the library.