Skip to content

optimal-uoft/NeurCAM

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NeurCAM

This is the official implementation of the Neural Clustering Additive Model (NeurCAM): https://arxiv.org/abs/2408.13361

Environment Setup

To set up the environment, run the following commands:

conda env create -f environment.yml
conda activate NeurCAM

Example

from sklearn.datasets import load_iris
from NeurCAM import NeurCAM

iris = load_iris()
X = iris.data

nc = NeurCAM(k=3, epochs=5000)
nc = nc.fit(X)
neurcam_pred = nc.predict(X)

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages