Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Plot #354

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open

Plot #354

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
5 changes: 5 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
recursive-include config *.json
recursive-include data *.csv
recursive-include results *.csv
include labels *.json

3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,8 @@ all individual detections for reported algorithms are checked in to the results
subdirectory. Please see the README files in those locations.

1. If you want to plot some of the results, please see the README in the
`scripts` directory for `scripts/plot.py`
`scripts` directory for `scripts/plot.py`. For example `python scripts/plot.py`
will open default data-plots in the browser.

1. If you have your own algorithm and want to run the NAB benchmark, please see
the [NAB Entry Points](https://github.com/numenta/NAB/wiki/NAB-Entry-Points)
Expand Down
Empty file added config/__init__.py
Empty file.
Empty file added data/__init__.py
Empty file.
Empty file added labels/__init__.py
Empty file.
Empty file added results/__init__.py
Empty file.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@


# Utility function to read the README file.
# Used for the long_description. It"s nice, because now 1) we have a top level
# README file and 2) it"s easier to type in the README file than to put a raw
# Used for the long_description. It's nice, because now 1) we have a top level
# README file and 2) it's easier to type in the README file than to put a raw
# string in below ...
def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as f:
Expand Down Expand Up @@ -72,6 +72,7 @@ def findRequirements():
packages=find_packages(),
long_description=read("README.md"),
install_requires=requirements,
include_package_data=True,
entry_points={
"console_scripts": [
"nab-plot = nab.plot:main",
Expand Down