Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7617515
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T03:10:10+00:00 2026-05-31T03:10:10+00:00

I have these informations to save in a variable for my basic neural network

  • 0

I have these informations to save in a variable for my basic neural network simulation.

  • Node (NodeId, State)
  • Relationship (SourceNodeId, TargetNodeId, Weight, State)

State is the activation level which is the only value which changes during simulation. It is an unsigned float.

I want to easily get all incoming and all outgoing relationships for the current node. By easily I mean very great performance. (I have around 1,000,000 nodes with each 50 relationships on average.)

The main part of my program looks like this (pseudo code).

foreach(Node in Nodes)
{
     Inputs[] = all incomeing relationships;
     Node.State = sum of all Inputs[] elements;

     Outputs[] = all outgoing relationships;
     normalize all Outputs[] elements temporarly; // so that the sum of their weights is 1

     foreach(Output in Outputs[])
     {
          Output.State = Node.State * Output.Weight;
     }
}

I hope you understand what I want to do. If not I will try to explain better.

What type of Object would be best to have quick access to the nodes by their SourceNodeId and by their TargetNodeId?

PS: Programming in C# using Visual Studio.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T03:10:12+00:00Added an answer on May 31, 2026 at 3:10 am

    I think list with nodes + two syncronized Dictionaries will be fast.

    List<Node> allNodes;
    Dictionary<Node,List<Node>> sourceTarget;
    Dictionary<Node,List<Node>> targetSource;
    

    I recommend you to encapsulate them into single object… Two-Way-Dictionary:

    class TwoWayDictionary<T1,T2>
    {
        private Dictionary<T1,List<T2>> sourceTarget;
        private Dictionary<T2,List<T1>> targetSource;
    
        // Here shold be public methods and accessors ...
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have these roles:Admin, Doctor and Patient. But login information is stored in different
I have two lists: ask[] timeStamp[] I need to add the information in these
I have these two pieces of code, wich one is more readable? foreach decimal
i have some truetype fonts and a programm takes these fonts so that a
I have 2 classes that inherit from a common base class. Each of these
I'm simply trying to create a secure user file that will save basic login
i have a video app which downloads and save many videos using NSURLConnection. I
I have an app that allows the user to take and save a new
I have an text outline tree where i display a lot of information There
I have two tables Plants and Information. For every plant there are many information,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.