Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/norwegianseismicarray/nais

NORSAR AI System (tools for machine learning on waveform data)
https://github.com/norwegianseismicarray/nais

deep-learning keras machine-learning python tensorflow

Last synced: 17 days ago
JSON representation

NORSAR AI System (tools for machine learning on waveform data)

Awesome Lists containing this project

README

        

### [Documentation](https://norwegianseismicarray.github.io/nais/nais)

### NORSAR Artificial Inteligence System (NAIS, yes, the acronym was chosen first)

This repository will eventually contain tools specific to aiding in AI research at NORSAR.

This repository is based on Tensorflow and Keras.

This repository will contain:
* Baseline models, for waveforms and spectrograms. Possibly pretrained for certain tasks.
* Standard datasets to test models. Development of new models can be difficult. Standard datasets eliminates errors in the data and lets you focus on developing the model.
* Classification
* Regression
* Masking (eg. arrival picking)
* Augmentation methods.

## Installation
``pip install nais``

If an error occurs when importing `nais`, likely ``sndfile`` library is not installed (check the error), and needs to be:

``apt-get install libsndfile1-dev``

# Quick example

```python
import numpy as np
from nais.Models import AlexNet1D

X = np.random.normal(size=(16,256,3)) #16 examples of three channel data.
y = np.random.randint(0,1,size=(16,)) #Labels

model = AlexNet1D(num_outputs=1) #binary
model.compile('adam','binary_crossentropy')
model.fit(X,y)
```