Active Region Cutout Classification Network
The recommended way to install arccnet is with using pip.
$ pip install git+https://github.com/ARCAFF/ARCCnet.gitTo develop arccnet, first fork the repository, clone the forked repository to your local machine, and install arccnet in an editable mode using the following commands:
$ git clone https://github.com/<username>/ARCCnet.git $ cd ARCCnet $ pip install -e .[dev]
If you are developing with zsh instead of bash, the last line should be:
pip install -e '.[dev]'
and to test your changes
coverage run -m pytest --cov=arccnet --cov-report=html
For more detailed instructions, see our contributing guide.
To download and process the arccnet data:
python arccnet/data_generation/data_generation.py
python arccnet/data_generation/mag_processing.pyHere is a quick example of importing arccnet:
>>> import arccnet
>>> arccnet.__version__For more information or to ask questions about arccnet or any other SunPy library, check out our issues.
If you use arccnet in we would appreciate your citing it in your publications.
If you would like to get involved, start by joining having a look at our contributing guide. This will walk you through getting set up for contributing.
When you are interacting with the community you are asked to follow our Code of Conduct.