Search found 55 matches

by MrCreosote
Mon 25. Oct 2010, 18:25
Forum: PSPad
Topic: Debugging Methods
Replies: 1
Views: 11146

Debugging Methods

When the Compiler finds an error, it states the Line # and Col # where the error occurred. The problem is that the Line # refers to the line in some kind of compiled form - perhaps where all the #includes are replaced with the code they represent. In general it makes it difficult to know just where ...
by MrCreosote
Fri 22. Oct 2010, 19:40
Forum: Scripting
Topic: Trouble with GetNetError Function
Replies: 3
Views: 12047

Re: Trouble with GetNetError Function

I just discovered that the compiler will not flag an error when a procedure/subroutine is called w/o the empty parenthesis. (Is there a reason for this?) So when you try to execute, that call statement does nothing. It is interesting that the compiler will flag a function but not a procedure. Thanks...
by MrCreosote
Thu 21. Oct 2010, 22:05
Forum: Scripting
Topic: Trouble with GetNetError Function
Replies: 3
Views: 12047

Trouble with GetNetError Function

From the Help, GetNetError is a function which returns a double. I cannot get an assignment to work so I made a test case. I cannot get the following test case to compile: double a; void main() { a = GetNetError; } When I try to compile, I get an error: ERR: Can't implicitly convert from 'GetNetEdit...
by MrCreosote
Wed 20. Oct 2010, 22:12
Forum: Feedback and Suggestions
Topic: SUGGEST: Stop Training On #Reps or ElapsedTime
Replies: 0
Views: 10830

SUGGEST: Stop Training On #Reps or ElapsedTime

Stopping training appears to only have an Error control. Other stoppage events would be very useful if: # Reps/Epochs Limit Exceeded Elapsed Time Limit Exceeded (or End Time Exceeded) # Reps/Epochs After Min Error Limit Exceeded These can be applied to either the Teaching Lesson or the Validation Le...
by MrCreosote
Mon 18. Oct 2010, 20:30
Forum: Scripting
Topic: Arbitrary File Access: Type Text: R/W int, float, etc.
Replies: 2
Views: 11584

Arbitrary File Access: Type Text: R/W int, float, etc.

OBJECTIVE: Use a "control" file containing parameter settings which is read by a script and used to automate a MemBrain run. Things like Step Size, Error Target, Export File Name, Network Name, etc. would be contained in this Control File. PROBLEM is: I can't seem to I/O numbers from a tex...
by MrCreosote
Thu 14. Oct 2010, 16:13
Forum: All about using MemBrain
Topic: Node Geometric Order and Synchronization Questions
Replies: 3
Views: 12185

Re: Node Geometric Order and Synchronization Questions

Thanks so much for the quick reply. I'm EDITING the following RED out and replacing with the following BLUE: I think I may have it but 2 more quick questions (one rephrased): QUESTION: If I move nodes around graphically, do I change their GO? QUESTION: If I have the proper Names defined for my nodes...
by MrCreosote
Wed 13. Oct 2010, 23:04
Forum: All about using MemBrain
Topic: Node Geometric Order and Synchronization Questions
Replies: 3
Views: 12185

Node Geometric Order and Synchronization Questions

First, let me apologize for the length of this posting, but I am fairly unsure what settings I should use in this area. I've come up with a bunch of simple questions which should clarify things for me although they may be painfully tedious for you. With that said and again more apologies, let me beg...
by MrCreosote
Fri 8. Oct 2010, 19:52
Forum: Scripting
Topic: Cannot get Script IF statement to compile
Replies: 1
Views: 9282

Cannot get Script IF statement to compile

Every IF statement in my scripts gets a compiler error saying it expected a ';' after the IF statement. The following generates that error: void test() { IF( 1 == 2 ) { ShowTraceWin(true); Trace(" 1 = 2 is TRUE" + "...\n"); } } The following trace is produced: C:\_STOCKMODELSmb\0...
by MrCreosote
Thu 23. Sep 2010, 19:24
Forum: Scripting
Topic: Script ETeachResult Data Structure is Defined Where?
Replies: 3
Views: 15047

Re: Script ETeachResult Data Structure is Defined Where?

What are the Data Types?
by MrCreosote
Wed 22. Sep 2010, 19:38
Forum: Scripting
Topic: Script: How to Get Lesson Error
Replies: 1
Views: 11965

Script: How to Get Lesson Error

GetLessonReps() allows one to get the counter value for the lesson reps performed by the teacher. I need to control training based on error and am hoping that the Error counterpart of the above command is available. Thanks, Tom ______________________________ I was just organizing my prints of the va...