Re: [racket-users] generate sentences

2017-03-01 Thread Nguyen Linh Chi
Thanks for pointing me to ELIZA. https://en.m.wikipedia.org/wiki/ELIZA It's interesting. ^^ i dont doubt that people would develop sentiments toward a chatbot that just simply speak random. Not to say that, if i'm the one that makes the program, i would have affection toward it also. It's a puzz

generate novels Re: [racket-users] generate sentences

2017-03-01 Thread Hendrik Boom
nanogenmo is the annual challenge of writing a computer program that generates a novel. It's kind of like nanowrimo only instead of writing a novel yourself, you write a computer program that does so. You might find it interesting to google nanogenmo and look through their annual websites. Th

Re: [racket-users] generate sentences

2017-03-01 Thread Nguyen Linh Chi
Sorry but can i just ask this question, because this is out of my thinking capacity (i have very little knowledge of computer stuff) The program of lab 7 is to generate pseudo-natural sentences. It's not interactive in the sense that i cannot talk to it. I can only tell it to say-something and it

Re: [racket-users] generate sentences

2017-02-26 Thread Nguyen Linh Chi
Oh my goodness, it is real. I was really thinking that if i truly tried to generate such a paper, probably they would not notice. On Feb 26, 2017 02:01, "Matthew Butterick" wrote: > > On Feb 25, 2017, at 1:33 PM, Linh Chi Nguyen > wrote: > > anyway, when being asked to say-something, the machi

Re: [racket-users] generate sentences

2017-02-25 Thread Matthew Butterick
> On Feb 25, 2017, at 1:33 PM, Linh Chi Nguyen > wrote: > > anyway, when being asked to say-something, the machine generates quite good > sentences. i have this secret hope [0] that if i feed it enough game theory > literature, somehow it can generate something of value for my phd thesis =))

Re: [racket-users] generate sentences

2017-02-25 Thread Matthias Felleisen
With the usual PhD advisor, you may not even need an infinite number of monkeys :( > On Feb 25, 2017, at 4:33 PM, Linh Chi Nguyen > wrote: > > after i did the exercise as guided, i think there is no need to use > hash-table. > > also, i don't use the provided text input, but i read-words

Re: [racket-users] generate sentences

2017-02-25 Thread Linh Chi Nguyen
after i did the exercise as guided, i think there is no need to use hash-table. also, i don't use the provided text input, but i read-words from text files. so i have to add some trick to create the beginning " " and the end "." for the writing-style. in the function (add-to-ws ws word1 word2),

Re: [racket-users] generate sentences

2017-02-25 Thread Linh Chi Nguyen
oh it's very kind of you. thank you, let's see -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to racket-users+unsubscr...@googlegroups.com. For more options, visit

Re: [racket-users] generate sentences

2017-02-25 Thread Luis Sanjuán
On Thursday, February 23, 2017 at 11:50:30 AM UTC+1, Linh Chi Nguyen wrote: > Wow, it's really a good curriculum. > Just have to drop in to say something, im not doing this exercise for some > course, there is no teacher. > > > I was just massively sad and when i got up i need to do something th

Re: [racket-users] generate sentences

2017-02-23 Thread Nguyen Linh Chi
Wow, it's really a good curriculum. Just have to drop in to say something, im not doing this exercise for some course, there is no teacher. I was just massively sad and when i got up i need to do something that makes some sense. After lots of thinking, i just assume that there is this kind of exer

Re: [racket-users] generate sentences

2017-02-21 Thread Nguyen Linh Chi
Thank you Matthias, It seems that you all have developed a well structured path of programming experience for beginners. Great! Coding can be somewhat therapeutic, i start to think so. I'll check (and complain later :) Good day everyone ! On Feb 21, 2017 15:32, "Matthias Felleisen" wrote: > >

Re: [racket-users] generate sentences

2017-02-21 Thread Matthias Felleisen
Dear Linh Chi, the exercise is basically Lab 7 from the last instance of the Northeastern beginners course: http://www.ccs.neu.edu/course/cs2500f16/lab7.html If you work through this lab, you will get a performant solution based on lists. Once you have that, it should be fairly obvious how