backpropagation classification

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • alex lee
    New Member
    • Apr 2008
    • 2

    backpropagation classification

    im using a backpropagation classification C code which is written by C. K Mohan on 1997. i was wondering how was the input file for the coding. i would to do a classification experimental by using backpropagation . Following is the link of the coding.

    www.cis.syr.edu/~mohan/html/Bookfiles/ckm_bp.c

    if got other C source code on the backpropagation , please feel free to suggest.
  • JosAH
    Recognized Expert MVP
    • Mar 2007
    • 11453

    #2
    Originally posted by alex lee
    im using a backpropagation classification C code which is written by C. K Mohan on 1997. i was wondering how was the input file for the coding. i would to do a classification experimental by using backpropagation . Following is the link of the coding.

    www.cis.syr.edu/~mohan/html/Bookfiles/ckm_bp.c

    if got other C source code on the backpropagation , please feel free to suggest.
    Read the source code: it either reads the number of layers, the initial weights
    and a few other constants from stdin (interactive mode) or it reads them from a
    file. Following the control flow shows you in what order these numbers must be
    present in the file. No formatting is required, just numbers separated by white space.

    kind regards,

    Jos

    Comment

    • alex lee
      New Member
      • Apr 2008
      • 2

      #3
      thanks for your reply.
      actually i am a newbie in c programming. can i ask for example input to the program?

      Comment

      • JosAH
        Recognized Expert MVP
        • Mar 2007
        • 11453

        #4
        Originally posted by alex lee
        thanks for your reply.
        actually i am a newbie in c programming. can i ask for example input to the program?
        No I'm not going to do your work for you; all you have to do is read the source
        code and jot down in what order which numbers are read by the program.

        kind regards,

        Jos

        Comment

        Working...