An open API service indexing awesome lists of open source software.

https://github.com/joakin/rust-random-text-generation

markov chain text generator written in rust
https://github.com/joakin/rust-random-text-generation

markov-chain rust rust-lang

Last synced: about 1 year ago
JSON representation

markov chain text generator written in rust

Awesome Lists containing this project

README

          

A markov chain text generator written in Rust, a port from my other try at an
[ocaml-random-text-generator](https://github.com/joakin/ocaml-random-text-generation)

Install rust stable with rustup and then:

```
rust-random-text-generation (master #%) => cargo run books
Compiling rust-random-text-generation v0.1.0 (/Users/jkn/dev/learn-rust/rust-random-text-generation)
Finished dev [unoptimized + debuginfo] target(s) in 0.53s
Running `target/debug/rust-random-text-generation books`
path: "books/alice-in-wonderland.txt"
path: "books/frankenstein.txt"
path: "books/dracula.txt"
path: "books/miss-nume.txt"
Reading "books/alice-in-wonderland.txt"
Reading "books/frankenstein.txt"
Reading "books/dracula.txt"
Reading "books/miss-nume.txt"
He is beginning to work .
It smelt of laudanum , for it was logical and forceful and mysterious .
Of course , of course , Alice could not stand for long such an unwonted drain to the head .
" But do you know what theyre about !
I will tell him , Jenny .
That the Count's arrangements were well made , has been quite " blowing my trumpet , " as they term the different classes of boats , would remain in the habitation I had found the harbour , pitched herself on that accumulation of sand and gravel washed by many tides and many storms into the south - west and west .
M .
Yes , said Alice .
" Num� sat in her favorite position , on the miserable death of her youngest darling !
To this plan I strenuously objected , and so consulted about it .
" Tell me about the lesser carnivora , when I went to the grave of the suicide at Whitby ; still at other time he can only change himself at noon or at exact sunrise or sunset , and so cannot leave the ship .
With regard to Miss Westenra's health I hasten to their arms .
The Professor stood up and said : " May I read it , as now , empty .
I closed not my eyes that night .
" " Yes , " he answered .
Jenny Davis could only watch her with wide eyes of wonder and agony .
The two men sitting on the mats with Koto and Num� , daughter of Watanabe Omi .
I shall continue my journal concerning the stranger at intervals , should I have any fresh incidents to record .
Summer passed away in these occupations , and my brain was beginning to conjecture that some fortunate chance had intervened to prevent the execution of Justine , and Henrythey all died by my hands .
I might be restored to my family in Geneva , and one of the shelves as she passed ; it was as if the mist had turned into his figure , for I thought I was going said : - - " Oh , my friend and dearest companion , had fallen a victim to me and says : 'Keeper , these wolves seem upset at something .
he seldom did that .
Harker was not down when the maid came to announce dinner , so I answered in the same way as she trusted or tried to make herself believe that Orito's presence would cure Num� , so she felt that she was so sound asleep that for a moment know what to say .
SEWARD'S DIARY 29 October .
As the Count saw my face , turned to answer him , but I was disturbed by the wildest dreams .
I understood him to mean if we were kittens .
Oh dear , what is it ?
Having conquered the violence of his feelings , he appeared to consider it as the ravings of insanity .
" I think they must originally have had something to do with it , and these exhibited all the squalidness of the most hardy ventured forth to seize the monster , though there were a thousand men looking on , and I well remembered the words of my father : My dear Victor , gives me a foretaste of those icy climes .
I have described myself as always having been imbued with a fervent longing to penetrate the secrets of heaven and earth that I desired to see my sweet Elizabeth in some degree consoled .
" Hallo !
^C
```

This one is so much faster than the OCaml version... I must have been doing
something wrong over there... Even with all the cloning and noob rust that I'm
doing here...

Rust is a very enjoyable language. I'm still going through the 13th chapter on
the book, so the code I'm sure is terrible.