Skip to content

Commit c4757ec

Browse files
committed
Update readme
Add setup for pypi
1 parent e0f57d8 commit c4757ec

File tree

3 files changed

+31
-2
lines changed

3 files changed

+31
-2
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ pepperon.ai is built on a few core ideas:
1414
3. Runtime, much like digging holes, builds character
1515

1616
## Version
17-
pepperon.ai is currently on version 0.124
17+
pepperon.ai is currently on version 0.12.0
1818

1919
## Installation
2020

@@ -42,6 +42,8 @@ There is no `pip` or `conda` install, just yoink the file you want from this rep
4242
- Guassian and Bernoulli
4343
### Random Forest
4444
- Random Forest on ID3
45+
### KNN
46+
- Labeling data based on it's nearest neighbors
4547
## Language
4648
### Ngrams
4749
- ngrams ; for all your simplistic corpus needs
@@ -56,7 +58,6 @@ There is no `pip` or `conda` install, just yoink the file you want from this rep
5658
- *In progress*
5759
- Fowlkes-Mallows Index ; for comparing clusterings;
5860
- Purity Index ; for comparing clusterings
59-
- Various distance and similarity functions
6061
- Grid Search for finding the best hyperparameters for your model
6162
- Jackknifing to create cross validation folds
6263
- General testing and evaluating methods
@@ -70,6 +71,7 @@ Rather than basing off of clusters, Heirarchial methods iteratively merge the tw
7071
- Single link: finds the smallest distance between two points in clusters
7172
- Complete link: find the largest distance between two points in clusters
7273
- Mean link: finds the average distance between two points in clusters
74+
- Various distance and similarity functions
7375

7476
## Usage Examples
7577
Maybe one day I will make some files that show off how to go about using these systems

setup.cfg

Whitespace-only changes.

setup.py

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
from distutils.core import setup
2+
3+
setup(
4+
name="pepperonai",
5+
packages=["pepperonai"],
6+
version="0.12.0",
7+
license="MIT",
8+
description="Like scikit-learn - but worse",
9+
author="Jon Wiggins",
10+
author_email="contact@pepperon.ai",
11+
url="https://github.com/JonWiggins/pepperon.ai",
12+
download_url="https://github.com/JonWiggins/pepperon.ai/archive/v_0120.tar.gz",
13+
keywords=["ML", "NLP", "AI", "pepperonai", "pepperon.ai"],
14+
install_requires=["pandas", "numpy", "scipy"],
15+
classifiers=[
16+
"Development Status :: 3 - Alpha",
17+
"Intended Audience :: Developers",
18+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
19+
"License :: OSI Approved :: MIT License",
20+
"Programming Language :: Python :: 3",
21+
"Programming Language :: Python :: 3.5",
22+
"Programming Language :: Python :: 3.6",
23+
"Programming Language :: Python :: 3.7",
24+
"Programming Language :: Python :: 3.8",
25+
],
26+
)
27+

0 commit comments

Comments
 (0)