DeepRacket icon indicating copy to clipboard operation
DeepRacket copied to clipboard

A simple starting point for doing deep learning in Racket

Results 7 DeepRacket issues
Sort by recently updated
recently updated
newest added

This is great - please add to Racket Packages catalog so others can find out about it! https://pkgs.racket-lang.org

Sorry this is an incomplete transition. If you install the package deepracket you should be able to (require deepracket) If I got it right. Sadly I don't know enough about...

With the goal of eventually providing a Racket module, documentation should be developed that conforms to Racket best practices.

Examples should be provided in the repository for defining and training neural network architectures in DyNet.

The strength of Racket is its support for advanced DSL design. This should be used to develop a facility to easily specify network architectures.

The DyNet library now provides a C API. Using this should be more in line with the foreign function interface provided by Racket.

The code base consists of code that wraps the NVIDIA cuDNN library and the higher level Dynet Deep Learning API. These should be at least separated into two directories, if...