-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
82f1bec
commit 3da174b
Showing
12 changed files
with
32 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[metadata] | ||
description-file = README.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
from distutils.core import setup | ||
|
||
setup( | ||
name = 'tabularGP', | ||
packages = ['tabularGP'], | ||
version = '1.0', | ||
license='apache-2.0', | ||
description = 'Use gaussian processes on tabular data as a drop-in replacement for neural networks', | ||
author = 'NestorDemeure', | ||
# author_email = 'your.email@domain.com', | ||
url = 'https://github.com/nestordemeure/tabularGP', | ||
download_url = 'https://github.com/nestordemeure/tabularGP/archive/v_1.tar.gz', | ||
keywords = ['gaussian-processes', 'tabular-data', 'deep-learning', 'pytorch', 'fastai'], | ||
install_requires=[ | ||
'numpy', | ||
'pandas', | ||
'torch', | ||
'fastai', | ||
], | ||
classifiers=[ # https://pypi.org/classifiers/ | ||
'Development Status :: 4 - Beta', | ||
'Intended Audience :: Developers', | ||
'Intended Audience :: Science/Research', | ||
'Topic :: Scientific/Engineering :: Artificial Intelligence', | ||
'License :: OSI Approved :: Apache Software License', | ||
'Programming Language :: Python :: 3 :: Only', | ||
], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
from tabularGP.tabularGP import * |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.