nablator > 30-06-2026, 08:19 PM
Mauro > 30-06-2026, 10:18 PM
(30-06-2026, 06:17 PM)kostrubaty Wrote: You are not allowed to view links. Register or Login to view.As for indistinguishable -> It simply means that given 2 text excerpts one in voynichese one generated you're unable to tell which is which. You're able to tell only because you've checked with known text. If I were to say here's a new text I found in this language you could not objectively prove/disprove my claim basing your judgment solely on the text itself.
JoeyB > 01-07-2026, 12:53 AM
(30-06-2026, 08:09 PM)oshfdk Wrote: You are not allowed to view links. Register or Login to view.(30-06-2026, 08:03 PM)Jorge_Stolfi Wrote: You are not allowed to view links. Register or Login to view.For a Markov of order 3 the Author would need a table with ~20x20 = 400 entries listing the alternatives for the next character given the previous 2, each with its probability.
I thought order 3 is based on three previous entries? 20x20x20?
nablator > 01-07-2026, 10:29 AM
(30-06-2026, 10:18 PM)Mauro Wrote: You are not allowed to view links. Register or Login to view.(30-06-2026, 06:17 PM)kostrubaty Wrote: You are not allowed to view links. Register or Login to view.As for indistinguishable -> It simply means that given 2 text excerpts one in voynichese one generated you're unable to tell which is which. You're able to tell only because you've checked with known text. If I were to say here's a new text I found in this language you could not objectively prove/disprove my claim basing your judgment solely on the text itself.
If you can link me a reasonably long text sample generated by your Markov chain, say at least ten thousand words, I can run a battery of tests and tell how it compares to the original Voynich and to previous pseudo-Voynichese texts.
real corpus: 11642 words | Markov order 3 | recipes
generated: 11642 words
metric REAL GENERATED
----------------------------------------------------
char H2 (bits) 2.02 2.02
char H3 (bits) 1.75 1.78
word len mean 5.19 5.20
word len var/mean 0.63 0.75
type/token ratio 0.281 0.271
hapax % of types 68.8 67.3
immediate-repeat % 0.72 0.47
self-citation 0.676 0.648
----------------------------------------------------
suffix(2) profile cosine real↔gen: 1.000 (1.0 = same inventory)
prefix(2) profile cosine real↔gen: 1.000
gen_recipes.txt (Size: 70.29 KB / Downloads: 8)
ololololo > 01-07-2026, 11:23 AM
(01-07-2026, 10:29 AM)nablator Wrote: You are not allowed to view links. Register or Login to view.The result is impressive. Although many words in the manuscript do not appear, they seem to be "correct" from her perspective (such as olchaim).(30-06-2026, 10:18 PM)Mauro Wrote: You are not allowed to view links. Register or Login to view.(30-06-2026, 06:17 PM)kostrubaty Wrote: You are not allowed to view links. Register or Login to view.As for indistinguishable -> It simply means that given 2 text excerpts one in voynichese one generated you're unable to tell which is which. You're able to tell only because you've checked with known text. If I were to say here's a new text I found in this language you could not objectively prove/disprove my claim basing your judgment solely on the text itself.
If you can link me a reasonably long text sample generated by your Markov chain, say at least ten thousand words, I can run a battery of tests and tell how it compares to the original Voynich and to previous pseudo-Voynichese texts.
I tried the generator.
I have node.js already installed (with npm), but this TypeScript code needs bun.
To install it:
npm install -g bun
There is an option --show to output any number of generated words.
So for example:
bun generate.ts --section=recipes --show=11642
displays:
Code:real corpus: 11642 words | Markov order 3 | recipes generated: 11642 words metric REAL GENERATED ---------------------------------------------------- char H2 (bits) 2.02 2.02 char H3 (bits) 1.75 1.78 word len mean 5.19 5.20 word len var/mean 0.63 0.75 type/token ratio 0.281 0.271 hapax % of types 68.8 67.3 immediate-repeat % 0.72 0.47 self-citation 0.676 0.648 ---------------------------------------------------- suffix(2) profile cosine real↔gen: 1.000 (1.0 = same inventory) prefix(2) profile cosine real↔gen: 1.000
and outputs 11642 generated words:
oshfdk > 01-07-2026, 11:25 AM
(01-07-2026, 10:29 AM)nablator Wrote: You are not allowed to view links. Register or Login to view.and outputs 11642 generated words:
nablator > 01-07-2026, 12:08 PM
(01-07-2026, 11:25 AM)oshfdk Wrote: You are not allowed to view links. Register or Login to view.To my eye about one word in 6 looks weird. Just to make it fair, I didn't cross check with the transliterations, I've just marked below the words that I see as strange. I think there is nothing really wrong with most these words and I bet many of them do appear in the MS occasionally, but generally they look like rare oddities and this text is packed with them.
Quote:Also, I'm not sure the end/start pairs (across spaces) look like those in the manuscript.
const PAD = "^".repeat(order)
...
function genWord(seed = ""): string {
let w = seed
let ctx = (PAD + seed).slice(-order)Mauro > 01-07-2026, 01:01 PM
kostrubaty > 01-07-2026, 05:27 PM