diff options
author | txh18 <[email protected]> | 2015-10-28 19:13:30 +0800 |
---|---|---|
committer | txh18 <[email protected]> | 2015-10-28 19:13:30 +0800 |
commit | e828c358b2637eac603f519b981737977ef4cb64 (patch) | |
tree | 745f6040329fed908027734c41ed2516cb7bc281 /README.md | |
parent | e0fa1a48cb9f91bfcfc60b732b6f137a7a2071ba (diff) |
doc change
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 13 |
1 files changed, 10 insertions, 3 deletions
@@ -3,22 +3,29 @@ NOTE: This readme is obsolete and will be rearranged, for further information, p This user manual will information about how to use __Nerv__ and __Nerv__'s interface. -##How to use## +##How to make and start using## First make sure you have __lua__ and __CUDA__ installed on your computer. __Nerv__ is currently developed via github.You can download and make __Nerv__ by doing the following: ``` cd ~ git clone https://github.com/Nerv-SJTU/nerv.git cd nerv -git clone https://github.com/Nerv-SJTU/nerv-speech.git speech git submodule init && git submodule update make + +#further, if you want the speech modules +git clone https://github.com/Nerv-SJTU/nerv-speech.git speech make speech ``` The `git submodule` command is for the __luajit__ repository inside __Nerv__. Now, you can try to run some example scripts. ``` -./nerv examples/cumatrix_example.lua +./install/bin/nerv examples/cumatrix_example.lua +``` +To get an example of DNN(for ASR) training, run(this requires the speech modules) +You need to be at or (copy files from) `/slfs1`(SJTU speechlab cluster) to get this running. +``` +./install/bin/nerv nerv/examples/asr_trainer.lua nerv/examples/swb_baseline.lua ``` ##How to contribute## |