Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/palle-k/DL4S
Accelerated tensor operations and dynamic neural networks based on reverse mode automatic differentiation for every device that can run Swift - from watchOS to Linux
https://github.com/palle-k/DL4S
autograd automatic-differentiation convolutional-neural-networks deep-learning deep-neural-networks derivatives gradient-descent machine-learning neural-networks optimizers recurrent-networks recurrent-neural-networks swift swift-machine-learning tensor
Last synced: 3 days ago
JSON representation
Accelerated tensor operations and dynamic neural networks based on reverse mode automatic differentiation for every device that can run Swift - from watchOS to Linux
- Host: GitHub
- URL: https://github.com/palle-k/DL4S
- Owner: palle-k
- License: mit
- Created: 2019-03-10T01:09:01.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-11-05T15:42:33.000Z (about 1 year ago)
- Last Synced: 2024-05-29T14:02:21.725Z (7 months ago)
- Topics: autograd, automatic-differentiation, convolutional-neural-networks, deep-learning, deep-neural-networks, derivatives, gradient-descent, machine-learning, neural-networks, optimizers, recurrent-networks, recurrent-neural-networks, swift, swift-machine-learning, tensor
- Language: Swift
- Homepage: https://palle-k.github.io/DL4S/
- Size: 19.5 MB
- Stars: 102
- Watchers: 5
- Forks: 13
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- awesome-ios - DL4S - Deep Learning for Swift: Accelerated tensor operations and dynamic neural networks based on reverse mode automatic differentiation for every device that can run Swift. (Machine Learning / Other Hardware)
- awesome-swift - DL4S - Automatic differentiation, fast tensor operations and dynamic neural networks from CNNs and RNNs to transformers. (Libs / AI)
- fucking-awesome-swift - DL4S - Automatic differentiation, fast tensor operations and dynamic neural networks from CNNs and RNNs to transformers. (Libs / AI)
- awesome-ios-star - DL4S - Deep Learning for Swift: Accelerated tensor operations and dynamic neural networks based on reverse mode automatic differentiation for every device that can run Swift. (Machine Learning / Other Hardware)
- awesome-swift - DL4S - Accelerated tensor operations and dynamic neural networks based on reverse mode automatic differentiation for every device that can run Swift - from watchOS to Linux ` 📝 7 days ago ` (AI [🔝](#readme))
README
DL4S provides a high-level API for many accelerated operations common in neural networks and deep learning.
It furthermore has automatic differentiation builtin, which allows you to create and train neural networks without needing to manually
implement backpropagation - without needing a special Swift toolchain.Features include implementations for many basic binary and unary operators,
broadcasting, matrix operations, convolutional and recurrent neural networks,
commonly used optimizers, second derivatives and much more.
DL4S provides implementations for common network architectures, such as VGG, AlexNet, ResNet and Transformers.While its primary purpose is deep learning and optimization, DL4S can be used as a library for vectorized mathematical operations like numpy.
[Read the full documentation](https://palle-k.github.io/DL4S/)
## Overview
1. [Installation](#installation)
2. [Features](#features)
1. Layers
2. Optimizers
3. Losses
4. Tensor Operations
5. Engines
6. Architectures
3. [Examples](#examples)## Installation
### iOS / tvOS / macOS
1. In Xcode, select "File" > "Swift Packages" > "Add Package Dependency"
2. Enter `https://github.com/palle-k/DL4S.git` into the Package URL field and click "Next".
3. Select "Branch", "master" and click "Next".
4. Enable the Package Product DL4S, your app in the "Add to Target" column and click "Next".**Note**: Installation via CocoaPods is no longer supported for newer versions.
### Swift Package
Add the dependency to your `Package.swift` file:```swift
.package(url: "https://github.com/palle-k/DL4S.git", .branch("master"))
```Then add `DL4S` as a dependency to your target:
```swift
.target(name: "MyPackage", dependencies: ["DL4S"])
```#### MKL / IPP / OpenMP Support
DL4S can be accelerated with Intel's Math Kernel Library, Integrated Performance Primitives and OpenMP ([Installation Instructions](https://software.intel.com/en-us/articles/installing-intel-free-libs-and-python-apt-repo)).
On Apple devices, DL4S uses vectorized functions provided by the builtin Accelerate framework by default.
If no acceleration library is available, a fallback implementation is used.Compiling with MKL/IPP:
```bash
# After adding the APT repository as described in the installation instructions
sudo apt-get install intel-mkl-64bit-2019.5-075 intel-ipp-64bit-2019.5-075 libiomp-devexport MKLROOT=/opt/intel/mkl
export IPPROOT=/opt/intel/ipp
export LD_LIBRARY_PATH=${MKLROOT}/lib/intel64:${IPPROOT}/lib/intel64:${LD_LIBRARY_PATH}swift build -c release \
-Xswiftc -DMKL_ENABLE \
-Xlinker -L${MKLROOT}/lib/intel64 \
-Xlinker -L${IPPROOT}/lib/intel64
```### TensorBoard Support
[DL4S-Tensorboard](https://github.com/palle-k/DL4S-Tensorboard) provides a summary writer that can write tensorboard compatible logs.
### LLDB Extension
DL4S includes a LLDB python script that provides custom descriptions for Tensors (`util/debugger_support/tensor.py`).
To use enhanced summaries, execute `command script import /path/to/DL4S/util/debugger_support/tensor.py`
either directly in LLDB or add the command to your `~/.lldbinit` file.Then you can use the `print` or `frame variable` commands to print human-readable descriptions of tensors.
## Features
Layers
Core:
- [x] Convolution
- [x] Transposed Convolution
- [x] Dense/Linear/Fully Connected
- [x] LSTM
- [x] Gated Recurrent Unit (GRU)
- [x] Vanilla RNN
- [x] Embedding
- [x] Multi-head Attention
- [x] Transformer BlockPooling:
- [x] Max Pooling
- [x] Average Pooling
- [x] Adaptive Max Pooling
- [x] Adaptive Average PoolingNorm:
- [x] Batch Norm
- [x] Layer NormUtility:
- [x] Bidirectional RNNs
- [x] Sequential
- [x] Lambda
- [x] Dropout
- [x] LambdaActivation:
- [x] Relu
- [x] LeakyRelu
- [x] Gelu
- [x] Tanh
- [x] Sigmoid
- [x] Softmax
- [x] Log Softmax
- [x] Dropout
- [x] Gelu
- [x] Swish
- [x] Mish
- [x] LiSHTTransformer:
- [x] Positional Encoding
- [x] Scaled Dot Product Attention
- [x] Multihead Attention
- [x] Pointwise Feed Forward
- [x] Transformer Encoder Block
- [x] Transformer Decoder BlockOptimizers
- [x] SGD
- [x] Momentum
- [x] Adam
- [x] AMSGrad
- [x] AdaGrad
- [x] AdaDelta
- [x] RMSPropLosses
- [x] Binary Cross-Entropy
- [x] Categorical Cross-Entropy
- [x] Negative Log Likelihood (NLL Loss)
- [x] MSE
- [x] L1 & L2 regularizationTensor Operations
Behavior of broadcast operations is consistent with numpy rules.
- [x] broadcast-add
- [x] broadcast-sub
- [x] broadcast-mul
- [x] broadcast-div
- [x] matmul
- [x] neg
- [x] exp
- [x] pow
- [x] log
- [x] sqrt
- [x] sin
- [x] cos
- [x] tan
- [x] tanh
- [x] sum
- [x] max
- [x] relu
- [x] leaky relu
- [x] gelu
- [x] elu
- [x] elementwise min
- [x] elementwise max
- [x] reduce sum
- [x] reduce max
- [x] scatter
- [x] gather
- [x] conv2d
- [x] transposed conv2d
- [x] max pool
- [x] avg pool
- [x] subscript
- [x] subscript range
- [x] transpose
- [x] axis permute
- [x] reverse
- [x] im2col
- [x] col2im
- [x] stack / concat
- [x] swish activation
- [x] mish activation
- [x] lisht activation
- [x] diagonal matrix generation
- [x] diagonal extraction
- [x] band matrix generationEngines
- [x] CPU (Accelerate framework for Apple Devices)
- [x] CPU (Intel Math Kernel Library and Integrated Performance Primitives)
- [x] CPU (Generic)
- [ ] GPU (ArrayFire: OpenCL, CUDA)For an experimental, early stage GPU accelerated version, check out `feature/arrayfire`.
Architectures
Default implementations are provided for the following architectures:
- [x] ResNet18
- [x] VGG (11, 13, 16, 19)
- [x] AlexNet
- [x] Transformer## Examples
Some high level examples have been implemented in other repositories:
- [Neural Machine Translation](https://github.com/palle-k/Seq2Seq-DL4S) based on seq2seq with Attention
- [Generative Adversarial Networks](https://github.com/palle-k/DL4S-WGAN-GP) - Wasserstein GAN with Gradient Penalty (WGAN-GP)
- [Reinforcement Learning](https://github.com/palle-k/REINFORCE-DL4S) - Trains an agent to find the exit in a 2D grid world.### Arithmetic & Differentiation
DL4S provides a high-level interface to many vectorized operations on tensors.
```swift
let a = Tensor([[1,2],[3,4],[5,6]], requiresGradient: true)
let prod = a.transposed().matrixMultipled(with: a)
let s = prod.reduceSum()
let l = log(s)
print(l) // 5.1873856
```When a tensor is marked to require a gradient, a compute graph will be captured.
The graph stores all operations, which use that tensor directly or indirectly as an operand.It is then possible to backpropagate through that graph using the `gradients(of:)` function:
```swift
// Backpropagate
let dl_da = l.gradients(of: [a])[0]print(dl_da)
/*
[[0.034, 0.034]
[0.078, 0.078]
[0.123, 0.123]]
*/
```#### Second derivatives
The operations used during backpropagation are themselves differentiable.
Therefore, second derivatives can be computed by computing the gradient of the gradient.When higher order derivatives are required, the compute graph of the backwards pass has to be explicitly retained.
```swift
let t = Tensor([1,2,3,4], requiresGradient: true)let result = t * t * t
print(result) // [1, 8, 27, 64]let grad = result.gradients(of: [t], retainBackwardsGraph: true)[0]
print(grad) // [3, 12, 27, 48]let secondGrad = grad.gradients(of: [t], retainBackwardsGraph: true)[0]
print(secondGrad) // [6, 12, 18, 24]let thirdGrad = secondGrad.gradients(of: [t])[0]
print(thirdGrad) // [6, 6, 6, 6]
```### Convolutional Networks
Example for MNIST classification
```swift
// Input must be batchSizex1x28x28
var model = Sequential {
Convolution2D(inputChannels: 1, outputChannels: 6, kernelSize: (5, 5))
Relu()
MaxPool2D(windowSize: 2, stride: 2)
Convolution2D(inputChannels: 6, outputChannels: 16, kernelSize: (5, 5))
Relu()
MaxPool2D(windowSize: 2, stride: 2)
Flatten()
Dense(inputSize: 256, outputSize: 120)
Relu()
Dense(inputSize: 120, outputSize: 10)
LogSoftmax()
}var optimizer = Adam(model: model, learningRate: 0.001)
// Single iteration of minibatch gradient descent
let batch: Tensor = ... // shape: [batchSize, 1, 28, 28]
let y_true: Tensor = ... // shape: [batchSize]// use optimizer.model, not model
let pred = optimizer.model(batch)
let loss = categoricalNegativeLogLikelihood(expected: y_true, actual: pred)let gradients = loss.gradients(of: optimizer.model.parameters)
optimizer.update(along: gradients)
```### Recurrent Networks
Example for MNIST classification
The Gated Reccurent Unit scans the image from top to bottom and uses the final hidden state for classification.
```swift
let model = Sequential {
GRU(inputSize: 28, hiddenSize: 128, direction: .forward)
Lambda.Outputs, Tensor, Float, CPU> { inputs in
inputs.0
}
Dense(inputSize: 128, outputSize: 10)
LogSoftmax()
}var optimizer = Adam(model: model, learningRate: 0.001)
let batch: Tensor = ... // shape: [batchSize, 28, 28]
let y_true: Tensor = ... // shape: [batchSize]let x = batch.permuted(to: 1, 0, 2) // Swap first and second axis
let pred = optimizer.model(x)
let loss = categoricalNegativeLogLikelihood(expected: y_true, actual: pred)let gradients = loss.gradients(of: optimizer.model.parameters)
optimizer.update(along: gradients)
```