Skip to content

3.3. Starting the Session

useAIble edited this page May 10, 2017 · 2 revisions
Console.WriteLine("Training Session started");

To start the session, we will be using the method SessionStart() to set the network’s status to Started and return the Session ID, which we will then store. We will be enclosing this on a for loop that will reiterate until all the sessions are done.

for (int i = 0; i < sessions; i++)
{
	long sessionId = rlmNet.SessionStart();

With the network now started, we will be coding a for loop to iterate through all the sessions while learning.