-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
14 lines (13 loc) · 843 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from setuptools import *
setup(
name='PyTsetlinMachineCUDA',
version='0.1.8',
author='Ole-Christoffer Granmo',
author_email='[email protected]',
url='https://github.com/cair/pyTsetlinMachineCUDA/',
license='MIT',
description='Massively Parallel and Asynchronous Architecture for Logic-based AI.',
long_description='Massively Parallel and Asynchronous Architecture for Logic-based AI. Implements the Multiclass Tsetlin Machine, Convolutional Tsetlin Machine, Regression Tsetlin Machine, and Weighted Tsetlin Machine, with support for continuous features and multiple layers.',
keywords ='pattern-recognition cuda machine-learning interpretable-machine-learning rule-based-machine-learning propositional-logic tsetlin-machine regression convolution classification multi-layer',
packages=['PyTsetlinMachineCUDA']
)