Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 808 Bytes

README.md

File metadata and controls

22 lines (18 loc) · 808 Bytes

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:

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