Skip to content

Quickstart

Basic Usage

from evolite import EvoLite

# Load your neural network model and dataset
model = ... # Your model here
data = ... # Your data here

# Create an EvoLite instance
evolite = EvoLite(model, data)

# Compress the model
compressed_model = evolite.compress()