Metadata-Version: 2.3
Name: omomo
Version: 0.0.1
Summary: Omomo is an experimental open-source tool to support core optimization techniques in machine learning.
License: MIT
Keywords: optimization,machine-learning
Author: San Askaruly
Author-email: s.askaruly@gmail.com
Maintainer: Sanzhar Askaruly
Maintainer-email: s.askaruly@gmail.com
Requires-Python: >=3.10,<3.14
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Mathematics
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: fast-pytorch-kmeans (==0.2.2)
Requires-Dist: psutil (==7.0.0)
Requires-Dist: torch (==2.7.1)
Requires-Dist: torchaudio (==2.7.1)
Requires-Dist: torchvision (==0.22.1)
Requires-Dist: tqdm (==4.67.1)
Project-URL: Homepage, https://omomo.dev
Project-URL: Repository, https://github.com/tuttelikz/omomo
Description-Content-Type: text/markdown

# Omomo

## Description
Omomo, https://omomo.dev, is an experimental open-source tool to support core optimization techniques in machine learning.

## For users:
1. Create conda environment:  
`conda create -n omomo python=3.10`
2. Install pip package:  
`pip install omomo`

## Examples
1. Basic type conversion: `python ex1-types.py`
2. Quantize a CNN model: `python ex2-model-conversion.py`

## For developers:
1. Create conda environment:  
`conda create -n omomo python=3.10`  
A. To install library:  
`poetry install`  
B. To build package:  
`poetry build`
