Decotools¶
Decotools is a python package for analyzing data collected by the Distributed Electronic Cosmic-ray Observatory (DECO).
DECO is a citizen science project that enables users around the world to detect cosmic rays and other energetic particles with their cell phones and tablets. The recorded events are automatically uploaded to a central database. In addition to detecting particle events, users can analyze the data produced by their own or other users’ phones.
Installation¶
The decotools
Python package can be installed directly from GitHub. decotools
is built on Google’s Tensorflow, which must be installed to use decotools
. If tensorflow
is already installed, then decotools
can be installed from GitHub via
$ pip install git+https://github.com/WIPACrepo/decotools#egg=decotools
Alternatively, if tensorflow
is not installed, then the following commands can be used to install tensorflow
along with decotools
.
For installing the CPU version of tensorflow
:
$ pip install git+https://github.com/WIPACrepo/decotools#egg=decotools[tf]
For installing the GPU version of tensorflow
:
$ pip install git+https://github.com/WIPACrepo/decotools#egg=decotools[tf-gpu]