All the Best Stories Are Endings

“Every new beginning comes from some other beginning’s end”

“Closing Time,” Semisonic

“There are neither beginnings nor endings to the turning of the Wheel of Time. But it was a beginning.”

The Wheel of Time, Robert Jordan

Sometimes, someone articulates an idea that has been rattling around in your brain with such simple clarity, that it unlocks a new way of looking at familiar things. That’s what Darren Mooney did in The Escapist Magazine when he said that all of The Lord of the Rings is one big ending.

Continue reading
Advertisement

The Wheel of Time Season One Finale Predictions

Season one of Amazon Prime Video’s adaptation of Robert Jordan’s The Wheel of Time has two episodes left. The show has departed in significant enough ways from the books that I don’t know how the season will end–and that means that it’s time for SPECULATION THAT I ALWAYS GET WRONG. That’s how I have fun with this stuff–seeing how well I can glom onto what the showrunners are doing. There will be SPOILERS for season 1, episodes 1 through 6 of Prime Video’s The Wheel of Time, and some spoilers from Robert Jordan’s The Eye of the World. (This post will be updated with what I got right and wrong after the episodes air.)

[UPDATED with the results of Episode 7]

[UPDATED with the results of Episode 8]

Continue reading

Dragonmount and The Wheel of Time

I’ve been a regular (paid!) columnist for The Wheel of Time fan site, Dragonmount, since 2020. As the site’s crew works through a surge of renewed interest in Robert Jordan’s epic fantasy series in the days leading up to Amazon Prime Video’s TV adaptation (November 19!), I’m expanding my duties to join Dragonmount’s podcast series.

This is so exciting for me. For three decades I’ve delighted in writing and talking about The Wheel of Time, and now I get to do it under the sponsorship of Tor Books and our wonderful supporters on Patreon.

On the eve of the Amazon Prime Video show premier, I want to re-surface my first columns of “Rajiv’s Threads In the Pattern” for folks new to the series–books or television. (These will continue to be catalogued in the “Non-Fiction” section of my Published page.)

Continue reading

The Wheel of Time Horse PoV

The question was posed on Twitter.

“But why are there no horse POVs in The Wheel of Time?”

It was a question that required an answer.

Chapter 1

An Empty Road

Down the wind flailed into the Two Rivers, into a tangled forest, and beat at the horse drawing a cart down the rock-strewn track. The two men walking beside her tried to tug their second skins around them against the gusts of wind while holding their weapons close, nearly failing at both. Bela, the shaggy brown mare, treated the howling of the rising wind with the equanimity she treated the soft creak of the cart’s axle. Things to be endured until the job was done. No birds sang in the forest, no squirrels chittered from a branch. Spring was late this year, but that, too, could be endured. The road to the village was well known. The sights and smells of the forest, familiar.

Continue reading

NLP and The Wheel Of Time – Part 1

I love epic fantasy stories. All the characters, plot lines, world-building, and the little details that foreshadow big developments — I devour them in multiple readings. I also have some time to play with the Google Cloud Platform’s Natural Language API. So I decided to see what analysis I could do with that API on one of the most voluminous and detailed epic fantasies I’ve read: Robert Jordan’s The Wheel Of Time series.

I’m going to blog my efforts, in case something interesting or useful shakes out. I’m using this opportunity to teach myself Python as I go, since that language is popular in the A.I. work I’ve seen. So there will probably be some discoveries (and horrendous examples of code) along the way.

My rough plan has the following milestones:

  1. Get the Wheel Of Time books in plain text format, so the Google APIs can read them.
  2. See what the API’s sentiment analysis, entity analysis, entity-sentiment analysis, and syntactic analysis data looks like for The Wheel Of Time.
  3. Use sentiment analysis to graph the emotional arcs, in total and maybe of characters, of the story, to compare them to the “six main story arcs” discussed in this article in The Atlantic.

After that? Let’s see where the data can take me. I have some thoughts on creating a system that can answer questions about the story, and possibly expanding the training model to include labels and concepts, but I’ll focus on my first three milestones to begin with.

Part 1: Get The Wheel Of Time In Plain Text

Tor Books has the commendable policy of selling all their eBooks unlocked and DRM-free, and I already have the books on my Barnes & Noble Nook, so I started with the EPUB file format.

Unfortunately, the Nook app on Android devices hides your eBook files in a directory you can only access if you have root access to your device. I wasn’t interested in the warranty implications of going down that route. But the family Windows 10 machine has a free Nook app that downloads your eBooks. After that, it’s just a matter of searching the drive for where it put *.epub. I found them in the rather obscure directory:

C:\Users\[myuser]\AppData\Local\Packages\BarnesNoble.Nook_[somehash]\LocalState

Huzzah! Then I renamed the file as a .zip (an .epub is a .zip with a particular directory structure), and dug into the ZIP archive. Unzipped, the file looked like this:

+- META-INF
|
+- OEBPS
|    +- Images
+- mimetype

The files I’m interested in are in OEBPS\. Each chapter or section (basically, each table of contents entry has an HTML file, conveniently named for sorting by the chapter number. The markup is clean and well-formed, and the style classes are intuitive. Cleaning it would be straightforward.

Now I had to learn some Python. I was familiar with the syntax, and I was an experienced Java programmer, so most of what I had to learn could be found on StackOverflow. Unless I got fancy, it would be a 1-use script, but there are 13 books in The Wheel Of Time (including the prequel, New Spring), so it wouldn’t hurt to take a stab at maintainability. I wanted to do proper Test-Driven Development, but I was getting impatient to see progress, so I just kept tweaking-and-running until I got it to work on real data.

I envisioned three components:

  1. Something that stripped out HTML markup from a character stream and left readable plain text.
  2. Something that created a plain text file from an HTML chapter file, using the first component.
  3. Something that took an EPUB file, unzipped it, iterated through the chapter files, used the previous component to make text file equivalents, and zipped them up for transfer to Google Cloud Platform, or wherever.

Python had a built in html.parser.HTMLParser which did exactly what I needed, for the first component. After that, it was all file I/O and some ZIP manipulation, all with standard packages. The “if __name__ == “__main__” construction for an executable class seemed awkward, but otherwise I was impressed with how compact the code was.

If you want to see my ugly-but-functional beginner Python code, feel free to peek on Github.

At this point, I had The Wheel Of Time all in a ZIP of plain text files. I was ready to figure out how to use the Google Cloud Platform’s Natural Language API. That will be in my next post.