Closed Thread
Results 1 to 5 of 5

Thread: Random generation of string, towards goal result

  1. #1
    Bishop is offline Newbie
    Join Date
    Oct 2008
    Posts
    3
    Rep Power
    0

    Random generation of string, towards goal result

    Hello,

    Recently, I was experimenting a bit with genetic algorithms, and tried to generate simple string like "Hello World!". The algorithm works fine. But now I am wondering is there any mathematical or computer science topic, that covers solution for similar task without using genetic algorithms.

    Like it is obvious that if it was no feedback that would be just brutual solution - random character generation until you hit the target, but lets say there is feedback that tells how close you are...

  2. CODECALL Circuit advertisement
    Join Date
    Always
    Posts
    Many

     
  3. #2
    Join Date
    Jul 2006
    Posts
    16,478
    Blog Entries
    75
    Rep Power
    143

    Re: Random generation of string, towards goal result

    Neural Networks are another feedback based system. With both Neural Networks and genetic algorithms, you generally are trying to avoid a brittle solution to a problem like generating a specific string. You want a little bit of variation to avoid predictability and have adaptability.
    Programming is a branch of mathematics.
    My CodeCall Blog | My Personal Blog

  4. #3
    Bishop is offline Newbie
    Join Date
    Oct 2008
    Posts
    3
    Rep Power
    0

    Re: Random generation of string, towards goal result

    Thing is that, I am not concerned about designing feedback part, what I am concerned about is doing same task without genetic algorithms.

  5. #4
    Join Date
    Jul 2006
    Posts
    16,478
    Blog Entries
    75
    Rep Power
    143

    Re: Random generation of string, towards goal result

    You can generally provide an evaluation function that will compare the output to the desired output and provide the neural net the required feedback.
    Programming is a branch of mathematics.
    My CodeCall Blog | My Personal Blog

  6. #5
    Predictor is offline Newbie
    Join Date
    Jul 2007
    Posts
    20
    Rep Power
    0

    Re: Random generation of string, towards goal result

    Quote Originally Posted by Bishop View Post
    Hello,

    Recently, I was experimenting a bit with genetic algorithms, and tried to generate simple string like "Hello World!". The algorithm works fine. But now I am wondering is there any mathematical or computer science topic, that covers solution for similar task without using genetic algorithms.

    Like it is obvious that if it was no feedback that would be just brutual solution - random character generation until you hit the target, but lets say there is feedback that tells how close you are...
    I am not sure exactly you are asking. There are other optimization systems which, like genetic algorithms, require feedback (evaluating their candidate solutions) such as simulated annealing, Nelder-Mead, etc.

Closed Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Program for Image Processing & Random Sentence Generation
    By chax in forum General Programming
    Replies: 5
    Last Post: 10-08-2011, 01:30 PM
  2. Replies: 4
    Last Post: 03-11-2010, 11:48 AM
  3. Random password generation
    By Divya in forum PHP Development
    Replies: 7
    Last Post: 07-03-2009, 04:42 AM
  4. String generation for bruteforce
    By code0 in forum Java Help
    Replies: 11
    Last Post: 02-23-2009, 03:56 AM
  5. Random Map Generation
    By chax in forum Perl
    Replies: 3
    Last Post: 09-03-2007, 06:58 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts