Comp-Engine-Features is a web platform that compares a user's time-series analysis algorithm (python) and compares its behavior to that of a library of >7000 existing algorithms from hctsa.
See CompEngine for an analogous living library of time-series data.
- Clone the repository.
- Install all the required packages mentioned in requirements.txt
pip install -r requirements.txt
- In
settings.py
make the following changes:
Debug=True
Allowed_hosts=[]
- Create
.env
file in the project's root directory and add the secret key in it.
SECRET_KEY= "Add 50 characters long string by combination of
digits,characters,special characters and symbols"
- Run the app
python manage.py runserver
To use Comp-Engine-Features:
-
Create a .py file containing analysis method coded in python (structure of the code is mentioned in HowItWorks page. )
-
Submit the function name and the .py file on the form given on home page.
-
Get the results.
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.