generated from usnistgov/opensource-repo
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
30 lines (27 loc) · 1.02 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
"""
Theory aware Machine Learning (TaML)
"""
from setuptools import setup
requirements = [
"gpflow==2.2.1",
"matplotlib>=3.5",
"notebook",
"numpy",
"pandas>=1.0",
"scikit-learn>=1.0",
"scipy",
"seaborn",
"tensorflow==2.8.1",
]
readme_txt = open('README.md').read()
setup(name="taml",
version="0.1",
description="This repository contains code to incorporate imperfect theory into machine learning for improved prediction and explainability. Specifically, it focuses on the case study of the dimensions of a polymer chain in different solvent qualities. For machine learning methods, three methods are considered: Gaussian Process Regression with heteroscedastic noise, Gaussian Process Regression with homoscedastic noise and Random Forest.",
long_description=readme_txt,
author="Debra J. Audus",
author_email="[email protected]",
packages=["taml"],
python_requires=">=3.7",
install_requires=requirements,
url="https://github.com/usnistgov/TaML"
)