Skip to content

robertmccraith/mimm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MLX Image Models

Introduction

This repository contains implementations for image models in MLX with functions to load pretrained weights from PyTorch. Example training code is provided in mimm/scripts.

Installation

pip install mimm

Usage

from mimm import get_model, list_models

# List available models
print(list_models())

# Load a model and convert weights from torchvision
model = get_model('resnet50', pretrained=True)

Models

Classification

Acknowledgements

This repository is based on the following repositories: