Skip to main content

Deep Multiple Instance Learning library for Pytorch

Project description

torchmil

License Contributors Release

torchmil is a PyTorch-based library for deep Multiple Instance Learning (MIL). It provides a simple, flexible, and extensible framework for working with MIL models and data.

It includes:

Installation

pip install torchmil

Quick start

You can load a MIL dataset and train a MIL model in just a few lines of code:

from torchmil.datasets import Camelyon16MIL
from torchmil.models import ABMIL
from torchmil.utils import Trainer
from torchmil.data import collate_fn
from torch.utils.data import DataLoader

# Load the Camelyon16 dataset
dataset = Camelyon16MIL(root='data', features='UNI')
dataloader = DataLoader(dataset, batch_size=4, shuffle=True, collate_fn=collate_fn)

# Instantiate the ABMIL model and optimizer
model = ABMIL(in_shape=(2048,), criterion=torch.nn.BCEWithLogitsLoss()) # each model has its own criterion
optimizer = torch.optim.Adam(model.parameters(), lr=1e-4)

# Instantiate the Trainer
trainer = Trainer(model, optimizer, device='cuda')

# Train the model
trainer.train(dataloader, epochs=10)

# Save the model
torch.save(model.state_dict(), 'model.pth')

Next steps

You can take a look at the examples to see how to use torchmil in practice. To see the full list of available models, datasets, and modules, check the API reference.

Citation

If you find this library useful, please consider citing it:

@misc{torchmil,
  author = {Castro-Mac{\'\i}as, Francisco M and S{\'a}ez-Maldonado, Francisco Javier and Morales Alvarez, Pablo and Molina, Rafael},
  title = {torchmil: A PyTorch-based library for deep Multiple Instance Learning},
  year = {2025},
  howpublished = {\url{https://franblueee.github.io/torchmil/}}
}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

torchmil-0.1.0.tar.gz (122.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

torchmil-0.1.0-py3-none-any.whl (195.2 kB view details)

Uploaded Python 3

File details

Details for the file torchmil-0.1.0.tar.gz.

File metadata

  • Download URL: torchmil-0.1.0.tar.gz
  • Upload date:
  • Size: 122.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.12

File hashes

Hashes for torchmil-0.1.0.tar.gz
Algorithm Hash digest
SHA256 5198f8250b62cde37cc40be4b5feb5f8156ac94cfb193e03ef8b53df119a215a
MD5 eecf39f7374cd69c994ff371841b7173
BLAKE2b-256 47cda743f0816e28e57128341662df7bedee55cfbde8b59f489f1ca9c2e0267e

See more details on using hashes here.

File details

Details for the file torchmil-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: torchmil-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 195.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.12

File hashes

Hashes for torchmil-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 f8a2194d19adb469e15b07df3965baefbe1d7013d0de623215150df889430cd1
MD5 3ddc0069eccdcb1511956a22dd0cea27
BLAKE2b-256 75719da1af97deda8696b9fc3e1d1f05d5cca8c7a38793dee1d5b977d87b468e

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page