Skip to content

Commit

Permalink
add readme for plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
pluskid committed Nov 3, 2015
1 parent f6cbba1 commit 0f22cfa
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions plugins/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Plugins of MXNet.jl

This directory contains *plugins* of MXNet.jl. A plugin is typically a component that could be part of MXNet.jl, but excluded from the `mx` namespace. The plugins are included here primarily for two reasons:

* To minimize the dependency of MXNet.jl on other optional packages.
* To serve as examples on how to extend some components of MXNet.jl.

The most straightforward way to use a plugin is to `include` the code. For example

```julia
include(joinpath(Pkg.dir("MXNet"), "plugins", "io", "svmlight.jl"))

provider = SVMLightProvider("/path/to/dataset", 100)
```

0 comments on commit 0f22cfa

Please sign in to comment.