Our Repos
Access Omega-generated classifier through our package or test other models against our dataset.
Omega-Models
Use top models generated by omega
Install
pip install omega-models
Use
from omega_models import AdaptiveAbstractionForest
model = AdaptiveAbstractionForest()
model.fit(X_train, y_train)
Repository
Infinity-AI-Institute/omega-models
Version
0.4.4
Infinity-Bench
Run your model on our benchmark
Install
pip install -r requirements.txt
Benchmark
from data_loader import test_on_infinity_benchmark
model = YourModel()
scores = test_on_infinity_benchmark(model)
Repository
Infinity-AI-Institute/infinity-bench
Tip
See example.ipynb for a full walkthrough.