Skip to content

Commit

Permalink
Doc fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
ayanc committed Sep 2, 2016
1 parent 54ba098 commit c0d2f34
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@ Copyright (C) 2016, Ayan Chakrabarti <[email protected]>
This is a reference implementation of the algorithm described in the
paper:

Ayan Chakrabarti, "**A Neural Approach to Blind Motion Deblurring**",
Proc. of the European Conference on Computer Vision (ECCV) 2016.
[arXiv](http://arxiv.org/abs/1603.04771)
Ayan Chakrabarti, ["**A Neural Approach to Blind Motion Deblurring**"](http://arxiv.org/abs/1603.04771),
Proc. of the European Conference on Computer Vision (ECCV) 2016.

This implementation is being made available for non-commercial research
use only. If you find this code useful in your research, please consider
Expand All @@ -18,7 +17,7 @@ and contact <[email protected]> with any questions.
### Requirements

1. You will need to download the trained neural model, available as
MAT file at the [project page](http://www.ttic.edu/chakrabarti/ndeblur/).
a MAT file at the [project page](http://www.ttic.edu/chakrabarti/ndeblur/).

2. This implementation requires a modern CUDA-capable GPU (it has been
tested on an NVIDIA Titan X), and a recent version of MATLAB's
Expand Down
8 changes: 5 additions & 3 deletions training/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,8 @@ deblurring code. Please read through the following steps, individual
7. Once you're done training, create a model .mat file by saving the
following variables:

`load([wname '.mat'],'net','best_wts');`
`wts = best_wts;`
`save('-mat','model.mat','tfm','net','wts');`
```MATLAB
>>> load([wname '.mat'],'net','best_wts');
>>> wts = best_wts;
>>> save('-mat','model.mat','tfm','net','wts');
```

0 comments on commit c0d2f34

Please sign in to comment.