Yews is a deep learning toolbox for processing seismic waveform made with flexibility, speed, and usability in mind. It is built upon PyTorch for researchers interested in applying deep learning techniques on seismic waveform data.
To ensure the GPU-powered PyTorch , first isntall PyTorch using the offical guide: https://pytorch.org/get-started/locally/ and then install Yews via one of the following approaches:
conda:
conda install -c lijunzhu -c pytorch yews
conda-forge:
conda install -c conda-forge yews
pip:
pip install yews
From source:
python setup.py install
Note:
Running the above command without first installing PyTorch may still work. Depending on the OS, you may get either the GPU or CPU version of PyTorch. For example, MacOS currently will get the CPU Pytorch while Linux will get the GPU PyTorch by default. Please refer to https://pytorch.org/get-started/locally/ for details.
yews
by itself isnoarch
, which means it is pure Python and OS independent. Most inconsistenciews between OS's are primarily due to the upstream difference (e.g. PyTorch and NumPy).obspy
is an optional dependency, which is used for seismic waveform I/O; however,yews
's core functionalities do not depend onobspy
.You can install all
yews
optional dependencies viapip install yews[all]
.Below are the instructions to each optional dependencies to install them separately in
conda
.Dependency
Instructions
obspy
conda install -c conda-forge obspy
scipy
conda install scipy
tqdm
conda install tqdm
You can find the API documentation on the yews website: https://www.yews.info/docs/
We appreciate all contributions. If you are planning to contribute back bug-fixes, please do so without any further discussion. If you plan to contribute new features, utility functions or extensions, please first open an issue and discuss the feature with us.