Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Context-specific parameters are essential for:

## Install and Use Contextualized
```
pip install git+https://github.com/cnellington/Contextualized.git
pip install contextualized-ml
```

Take a look at the [main demo](docs/demos/main_demo.ipynb) for a complete overview with code, or the [easy demo](docs/demos/Easy-demo/easy_demo.ipynb) for a quickstart with sklearn-style wrappers!
Expand Down
10 changes: 9 additions & 1 deletion docs/installation.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"```{tab-item} pip\n",
"\n",
"`\n",
"pip install https://github.com/cnellington/contextualized.git\n",
"pip install contextualized-ml\n",
"`\n",
"\n",
"```\n",
Expand All @@ -27,6 +27,14 @@
"\n",
"Now, let's walk through an example of Contextualized analysis."
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "9dce20f5",
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
Expand Down
25 changes: 16 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,22 @@
import setuptools
"""
Setup and requirements for Contextualized.ML
"""

setuptools.setup(name='contextualized',
packages=[
'contextualized',
'contextualized.regression',
'contextualized.dags',
'contextualized.easy',
],
version='0.2.1',
from setuptools import find_packages, setup

DESCRIPTION = "An ML toolbox for estimating context-specific parameters."
VERSION = '0.2.1.2'

setup(
name='contextualized',
author="Contextualized.ML team",
version=VERSION,
description=DESCRIPTION,
url="https://github.com/cnellington/contextualized",
packages=find_packages(),
install_requires=[
'lightning',
'pytorch-lightning',
'torch',
'torchvision',
'numpy',
Expand Down