Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
  1. Home
  2. General Programming
  3. C#
  4. how can i calculate shortest path between neurons in artifical neural network graph?

how can i calculate shortest path between neurons in artifical neural network graph?

Scheduled Pinned Locked Moved C#
questiondatabasesysadminalgorithms
1 Posts 1 Posters 1 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • K Offline
    K Offline
    karayel_kara
    wrote on last edited by
    #1

    Hi, Everbodys. i am writing a code that is about calculating shortest paths in feed forward neural network i have like the following code with neural structure in code: nron=6 and lay=6; class neuron { public int[] nextconnect = new int[nron]; public int[] preconnect = new int[nron]; public int number; public int dents;//dentrit count public int nextid,preid; // next and pre connections counts ~neuron() { } } class layer { public neuron[] noron = new neuron[nron]; public layer() { for (int index = 0; index < noron.Length; index++) { noron[index] = new neuron(); } } ~layer(){} } class net { public double lr;//learning rate; public int ban, hen; public layer[] layers = new layer[lay]; public net() { for (int index = 0; index < layers.Length; index++) { layers[index] = new layer(); } } ~net(){} } net network; i have prepared using feed forward connection structure but i didn't development a algorithm that has strong code can u help me as algorithm or code ? regards.

    1 Reply Last reply
    0
    Reply
    • Reply as topic
    Log in to reply
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes


    • Login

    • Don't have an account? Register

    • Login or register to search.
    • First post
      Last post
    0
    • Categories
    • Recent
    • Tags
    • Popular
    • World
    • Users
    • Groups