-
Notifications
You must be signed in to change notification settings - Fork 122
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated readme with some basic text, updated requirements and put the…
…m into a txt file, fixed print commands so the code can be imported in py3
- Loading branch information
Showing
8 changed files
with
54 additions
and
29 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,23 @@ | ||
# noscope | ||
# noscope | ||
|
||
# Installation | ||
|
||
## Requirements | ||
- python | ||
The project is a python 2.7 project (not 3 compatible yet) and it is probably easist to setup with an Anaconda distribution. | ||
- ffmpeg | ||
The ffmpeg utility is required for some of the scripts which convert video | ||
- Python / PIP | ||
The python requirements are listed in the requirements.txt file. The most complicated package is opencv3 which requires a number of compilation steps to install on most platforms, if using Anaconda there are prepackaged versions which make setup much easier. | ||
|
||
## Steps | ||
|
||
```bash | ||
git clone https://github.com/stanford-futuredata/noscope.git | ||
cd noscope | ||
python setup.py install | ||
``` | ||
|
||
# Usage | ||
|
||
There are a number of scripts in the ```exp/``` and ```scripts/``` directory which can be used to start training and using models on various datasets. |
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
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,4 @@ | ||
numpy | ||
keras | ||
opencv3 | ||
pathos |
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 |
---|---|---|
|
@@ -16,4 +16,4 @@ | |
author='Daniel Kang', | ||
author_email='[email protected]', | ||
packages=['noscope'], | ||
install_requires=['numpy']) | ||
install_requires=open('requirements.txt').read().split('\n')) |