项目作者: WestlakeAPC

项目描述 :
A Swift skeleton for neural nets and other important models in deep learning.
高级语言: Swift
项目地址: git://github.com/WestlakeAPC/NeuralKit.git
创建时间: 2016-09-22T14:09:22Z
项目社区:https://github.com/WestlakeAPC/NeuralKit

开源协议:Apache License 2.0

下载


NeuralKit, by Westlake APC Slack Status

NeuralKit is a project by the Westlake Accessible Programming Club.
It’s a Swift 3.0 library meant as a skeleton for low-level neural
nets and other important models in deep learning. We hope everyone
can learn a bit from our project.

Example apps for macOS and Linux will be developed soon in separate
repositories, using Interface Builder and GTK+ bindings for UI
respectively. Stay tuned for more information about the project!

To import into another project, just add this to your Package.swift:

  1. let package = Package(
  2. name: "YourProject",
  3. dependencies: [
  4. .Package(url: "https://github.com/WestlakeAPC/NeuralKit",
  5. majorVersion: 1)
  6. ]
  7. )