58

GitHub - mattn/vim-brain: Neural Networks written in Vim script

 5 years ago
source link: https://github.com/mattn/vim-brain
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

README.md

vim-brain

Neural Network Library for Vim script. This is Vim script port of goml/gobrain.

Usage

Learning XOR in Vim script.

function! s:test() abort
  call brain#srand(0)

  let l:patterns = [
  \ [[0.0, 0.0], [0.0]],
  \ [[0.0, 1.0], [1.0]],
  \ [[1.0, 0.0], [1.0]],
  \ [[1.0, 1.0], [0.0]],
  \]

  let l:ff = brain#new_feed()

  call l:ff.Init(2, 2, 1)

  call l:ff.Train(l:patterns, 1000, 0.6, 0.4, v:false)

  call l:ff.Test(l:patterns)
endfunction

call s:test()

Installation

Plug 'mattn/vim-brain'

License

MIT

Author

Yasuhiro Matsuoto (a.k.a. mattn)


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK