Swiftpack.co - Swift Packages by wvabrinskas

Swiftpack.co is a collection of thousands of indexed Swift packages. Search packages.

Packages published by wvabrinskas

wvabrinskas/Neuron 2.0.7
A neural network library for Swift
⭐️ 50
🕓 10 weeks ago
🔖 Release Notes

Releases

The markdown parsing is broken/disabled for release notes. Sorry about that, I'm chasing the source of a crash that's been bringing this website down for the last couple of days.
v2.0.7
10 weeks ago
- Fixed various bugs with `RNN` model and `LSTM` layer. Should be more consistent - Moved auto calculation of biases to each layer so biases can more easily be controlled - Standardized the `axis` definitions for mathematical operations on `Tensor` ``` +--------+ / /| / Z | +---X----+ | | | | | -1 Y + | | / | |/ +--------+ ``` Along axis 0 the Tensor of shape AxBxC, where A is the columns, B is the rows, and C is the depth, would perform a mathematical function along the Y axis returning a (Ax1xC) Tensor Along axis 1 the Tensor of shape AxBxC, where A is the columns, B is the rows, and C is the depth, would perform a mathematical function along the X axis returning a (1xBxC) Tensor Along axis 2 the Tensor of shape AxBxC, where A is the columns, B is the rows, and C is the depth, would perform a mathematical function along the Z axis returning a (AxBx1) Tensor Along axis -1 the Tensor of shape AxBxC, where A is the columns, B is the rows, and C is the depth, would perform a mathematical function along the Z axis returning a (1x1x1) Tensor Scalar
v2.0.6
12 weeks ago
Added RNN and LSTM support with Embedding and LSTM layers. - Instructions on how to use the layers can be found in the documentation of the layers themselves or in the FullModelTests file. Added Vectorizer. - This class vectorizes objects and returns it as a positional vector or a one hot vector. Instructions to use this can be found in the documentation on the class
v2.0.5
22 weeks ago
Updated NumSwift to 2.0.1
v2.0.4
38 weeks ago
Added dynamic member lookup to MetricsReporter
v2.0.3
41 weeks ago
Remove dataset protocol and moved to NeuronDatasets
v2.0.2
41 weeks ago
Drastically reduce size of the Neuron package by moving out unused datasets to a new repo NeuronDatasets.
v2.0.1
1 year ago
Updated NumSwift dependency to tag 2.0.0
v2.0
1 year ago
This is the big one! This is a complete re-write of Neuron! Changed effectively everything. Please take a look at the README before updating to this version. **It is INCOMPATIBLE with the older versions of Neuron**
v1.6.1
1 year ago
Added activation to `addDenseNormal`
v1.6.0
1 year ago
## What's Changed * Conv by @wvabrinskas in https://github.com/wvabrinskas/Neuron/pull/17 - Added prototype `Convolution` support. **Use with caution as this can potentially use 600+% of the CPU. GPU support coming...** - Refactored a bunch of functions to run concurrently. **You might see an increase in CPU usage depending on your training size.** - Added a more robust metrics calculator and system. - Added the MNIST dataset so the binary size of `Neuron` has increased due to this. - Refactored the way `Brain` is constructed. This will make it a lot easier to create. **Full Changelog**: https://github.com/wvabrinskas/Neuron/compare/1.5.1...1.6.0
iOS macOS watchOS tvOS
wvabrinskas/NeuronDatasets 1.0.16
Machine learning datasets to be used with Neuron package
⭐️ 1
🕓 10 weeks ago
🔖 Release Notes

Releases

The markdown parsing is broken/disabled for release notes. Sorry about that, I'm chasing the source of a crash that's been bringing this website down for the last couple of days.
v1.0.16
10 weeks ago
Updated Neuron to 2.0.7
v1.0.15
12 weeks ago
Added `filter` property to `CSVDataset`
v1.0.14
13 weeks ago
Added CSVDataset support for importing datasets that come in CSV format
v1.0.13
21 weeks ago
Updated Neuron version
v1.0.12
37 weeks ago
Added new `bin` folder with new `resize` script
v1.0.11
38 weeks ago
- Updated ImageDataset with support for grayScale and other image types
v1.0.10
38 weeks ago
Fixed RGB bug with image to pixels
v1.0.9
38 weeks ago
Add cache check to ImageDataset
v1.0.8
38 weeks ago
- Added ImageDataset - Added UI Utilities to help render images from a network
v1.0.7
38 weeks ago
Fixed CIFAR not referencing correct module
iOS macOS watchOS tvOS
wvabrinskas/Logger 1.0.7
Swift logging service
⭐️ 0
🕓 33 weeks ago
🔖 Release Notes

Releases

The markdown parsing is broken/disabled for release notes. Sorry about that, I'm chasing the source of a crash that's been bringing this website down for the last couple of days.
v1.0.7
33 weeks ago
Remove class requirement
iOS macOS watchOS tvOS
wvabrinskas/FareyAlgorithm 1.0
The farey algorithm written in swift provided as a swift package
⭐️ 0
🕓 3 years ago
🔖 Release Notes

Releases

The markdown parsing is broken/disabled for release notes. Sorry about that, I'm chasing the source of a crash that's been bringing this website down for the last couple of days.
Initial Release
3 years ago
wvabrinskas/NumSwift v2.0.6
Array arithmetic library for Swift
⭐️ 0
🕓 13 weeks ago
🔖 Release Notes

Releases

The markdown parsing is broken/disabled for release notes. Sorry about that, I'm chasing the source of a crash that's been bringing this website down for the last couple of days.
v2.0.8
10 weeks ago
Added random choice with probability to NumSwift class
v2.0.7
13 weeks ago
Added fast transpose using Accelerate framework for 2D and 3D array
2.0.6
13 weeks ago
Add uneven matrix math
v2.0.5
13 weeks ago
Add negative check to `safe` subscript on `Array`
v2.0.4
13 weeks ago
Add inverse mathematic functions for divide and subtract
v2.0.3
14 weeks ago
added matmul auto function to 3d array
v2.0.2
14 weeks ago
Fixed a bug with matrix multiplication where the output dimensions were always 1.
v2.0.1
36 weeks ago
Fixed a bug in convolution with index calculation
v2.0
1 year ago
2.0 updates with Neuron V2.0
v1.2.0
1 year ago
Added `NumSwiftC`. A new class high performance class that can perform `convolutions` and `transposed convolutions` in `C`!
iOS macOS watchOS tvOS
wvabrinskas/Paver v1.0
Ultra lightweight UIView layout utility
⭐️ 0
🕓 1 year ago
🔖 Release Notes

Releases

The markdown parsing is broken/disabled for release notes. Sorry about that, I'm chasing the source of a crash that's been bringing this website down for the last couple of days.
v1.0.2
1 year ago
- Easier to apply constraints without having to refer to the view itself.
v1.0.1
1 year ago
Fixed exposure issue. Added new functions to match constraints
1.0.0
1 year ago
Initial release
iOS watchOS
wvabrinskas/SimpleApiClient 1.1.4
The most bare-bones api client you can imagine in Swift
⭐️ 0
🕓 1 year ago
🔖 Release Notes

Releases

The markdown parsing is broken/disabled for release notes. Sorry about that, I'm chasing the source of a crash that's been bringing this website down for the last couple of days.
v1.1.4
1 year ago
Made decode public
v.1.1.3
1 year ago
Fixed build issue with `watchOS`. Increased minimum `watchOS` version to 6.0
v1.1.2
1 year ago
Added `@available` for watchOS below 6.0.0 for `async/await` code.
v1.1.1
1 year ago
Fixed macOS dependency issue and tests
v1.1.0
1 year ago
Added combine and Async/Await support
Swift Package
3 years ago
iOS macOS watchOS tvOS

Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics