资源算法nengo-dl

nengo-dl

2019-12-30 | |  74 |   0 |   0

Latest PyPI versionTravis-CI build statusAppVeyor build statusTest coverage


图片.png

Deep learning integration for Nengo

NengoDL is a simulator for Nengo models. That means it takes a Nengo network as input, and allows the user to simulate that network using some underlying computational framework (in this case,TensorFlow).

In practice, what that means is that the code for constructing a Nengo model is exactly the same as it would be for the standard Nengo simulator.  All that changes is that we use a different Simulator class to execute the model.

For example:

import nengoimport nengo_dlimport numpy as npwith nengo.Network() as net:
    inp = nengo.Node(output=np.sin)
    ens = nengo.Ensemble(50, 1, neuron_type=nengo.LIF())
    nengo.Connection(inp, ens, synapse=0.1)
    p = nengo.Probe(ens)with nengo_dl.Simulator(net) as sim: # this is the only line that changes
    sim.run(1.0)print(sim.data[p])

However, NengoDL is not simply a duplicate of the Nengo simulator.  It also adds a number of unique features, such as:

  • optimizing the parameters of a model through deep learning training methods (using the Keras API)

  • faster simulation speed, on both CPU and GPU

  • inserting networks defined using TensorFlow (such as deep learning architectures) directly into a Nengo model

Documentation

Check out the documentation for


上一篇:nengo-gui

下一篇:nengo-ocl

用户评价
全部评价

热门资源

  • seetafaceJNI

    项目介绍 基于中科院seetaface2进行封装的JAVA...

  • spark-corenlp

    This package wraps Stanford CoreNLP annotators ...

  • Keras-ResNeXt

    Keras ResNeXt Implementation of ResNeXt models...

  • capsnet-with-caps...

    CapsNet with capsule-wise convolution Project ...

  • shih-styletransfer

    shih-styletransfer Code from Style Transfer ...