Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aifred-health/vulcanai
A high level deep learning framework for quickly prototyping networks with added tools in data visualisation, model interpretability and performance metrics
https://github.com/aifred-health/vulcanai
data-analysis data-cleaning data-science data-visualization deep-learning deep-neural-networks feature-engineering mental-health python3 pytorch scikit-learn
Last synced: about 2 months ago
JSON representation
A high level deep learning framework for quickly prototyping networks with added tools in data visualisation, model interpretability and performance metrics
- Host: GitHub
- URL: https://github.com/aifred-health/vulcanai
- Owner: Aifred-Health
- License: agpl-3.0
- Created: 2018-07-16T03:15:44.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-05-13T08:56:00.000Z (over 1 year ago)
- Last Synced: 2023-05-13T10:15:33.020Z (over 1 year ago)
- Topics: data-analysis, data-cleaning, data-science, data-visualization, deep-learning, deep-neural-networks, feature-engineering, mental-health, python3, pytorch, scikit-learn
- Language: Python
- Homepage: https://www.aifredhealth.com
- Size: 25.8 MB
- Stars: 17
- Watchers: 9
- Forks: 7
- Open Issues: 47
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Vulcan
[![Build Status](https://travis-ci.com/Aifred-Health/Vulcan.svg?branch=master)](https://travis-ci.com/Aifred-Health/Vulcan)
[![Documentation Status](https://readthedocs.org/projects/vulcanai/badge/?version=latest)](https://vulcanai.readthedocs.io/en/latest/?badge=latest)Vulcan is Aifred Health's framework for rapid deep learning model prototyping and analysis.
Vulcan provides the tools for:
1. Rapid-yet-flexible data preprocessing
2. Rapid creation of modular neural networks. Among the usual we also include capability for:
* snapshot ensembles
* multi-modal networks with complex architectures
* state of the art activations
* training and saving models across multiple machines
3. Model Evaluation
4. Visualization for data and network interpretability. Among the usual we also include:
* t-SNE
* [Saliency maps using guided backpropagation](https://arxiv.org/abs/1412.6806)Vulcan is built on Pytorch. We think Pytorch is great, so our framework was built with the goal of facilitating but not impeding access to all of Pytorch. Want to do things the easy way? Great, create a network using our simple configuration dict. Need something a little more complicated? Extend our classes or write your own Pytorch module to use within the rest of our framework.
For a more detailed runthrough on how to use the tools, please look at the [documentation](https://vulcanai.readthedocs.io/en/latest/).
## Installation
[Pytorch](https://pytorch.org) must be installed separately as per your devices requirements (e.g. GPU/CPU). Afterwards, Vulcan can be installed using PyPI:
```
pip install vulcanai
```
or you can install from source after cloning the repository:
```
git clone https://github.com/Aifred-Health/Vulcan.git
cd Vulcan
pip install -e vulcanai
```## Releases
The current stable release is 1.0.8## Contributions
We welcome contributions, particularily to tabular_data_utils, additional processing methods, and to generalized and generalizable network architectures. Please create an issue before embarking on a solution, however, as we may already have something similar in the works!