<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>
<channel>
	<title>Comments on: Visualizing Word Sequence in Lyrics</title>
	<atom:link href="http://www.localoaf.org/2006/11/26/visualizing-word-sequence-in-lyrics/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.localoaf.org/2006/11/26/visualizing-word-sequence-in-lyrics/</link>
	<description>Information: It's the Magic</description>
	<pubDate>Thu, 29 Jul 2010 18:51:06 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Amoxicillin and alcohol.</title>
		<link>http://www.localoaf.org/2006/11/26/visualizing-word-sequence-in-lyrics/comment-page-1/#comment-26459</link>
		<dc:creator>Amoxicillin and alcohol.</dc:creator>
		<pubDate>Wed, 10 Jun 2009 07:01:07 +0000</pubDate>
		<guid isPermaLink="false">http://localoaf.org/2006/11/26/visualizing-word-sequence-in-lyrics/#comment-26459</guid>
		<description>&lt;strong&gt;Buy amoxicillin with no prescription....&lt;/strong&gt;

Amoxicillin. Dosing of amoxicillin for sinus infection. Can amoxicillin be used for acne. How quickly does amoxicillin work. Taking amoxicillin while pregnant. Amoxicillin soar throat....</description>
		<content:encoded><![CDATA[<p><strong>Buy amoxicillin with no prescription&#8230;.</strong></p>
<p>Amoxicillin. Dosing of amoxicillin for sinus infection. Can amoxicillin be used for acne. How quickly does amoxicillin work. Taking amoxicillin while pregnant. Amoxicillin soar throat&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ivan</title>
		<link>http://www.localoaf.org/2006/11/26/visualizing-word-sequence-in-lyrics/comment-page-1/#comment-49</link>
		<dc:creator>Ivan</dc:creator>
		<pubDate>Wed, 29 Nov 2006 19:59:00 +0000</pubDate>
		<guid isPermaLink="false">http://localoaf.org/2006/11/26/visualizing-word-sequence-in-lyrics/#comment-49</guid>
		<description>Ken-ichi,

My code is at http://hipnik.net/~ivan/code/dotGraph/grapher.py
It's a Python script that takes in lyrics-style text from stdin and output to stdout.

Example usage:
cat lyrics &#124; python grapher.py &#62; dotLyrics.dot

dotLyrics.dot will then have to be fed to GraphViz (http://graphviz.org)

Sample output is at:
http://hipnik.net/~ivan/code/dotGraph/elton-tinydancer.dot</description>
		<content:encoded><![CDATA[<p>Ken-ichi,</p>
<p>My code is at <a href="http://hipnik.net/~ivan/code/dotGraph/grapher.py" rel="nofollow">http://hipnik.net/~ivan/code/dotGraph/grapher.py</a><br />
It&#8217;s a Python script that takes in lyrics-style text from stdin and output to stdout.</p>
<p>Example usage:<br />
cat lyrics | python grapher.py &gt; dotLyrics.dot</p>
<p>dotLyrics.dot will then have to be fed to GraphViz (http://graphviz.org)</p>
<p>Sample output is at:<br />
<a href="http://hipnik.net/~ivan/code/dotGraph/elton-tinydancer.dot" rel="nofollow">http://hipnik.net/~ivan/code/dotGraph/elton-tinydancer.dot</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ken-ichi</title>
		<link>http://www.localoaf.org/2006/11/26/visualizing-word-sequence-in-lyrics/comment-page-1/#comment-40</link>
		<dc:creator>Ken-ichi</dc:creator>
		<pubDate>Tue, 28 Nov 2006 16:06:21 +0000</pubDate>
		<guid isPermaLink="false">http://localoaf.org/2006/11/26/visualizing-word-sequence-in-lyrics/#comment-40</guid>
		<description>Gah, you've crossed over from spineless blogger to actual creator!  Well, crossed back, I guess.  Would you mind publishing your code somewhere?  I'd like to see how it's done.</description>
		<content:encoded><![CDATA[<p>Gah, you&#8217;ve crossed over from spineless blogger to actual creator!  Well, crossed back, I guess.  Would you mind publishing your code somewhere?  I&#8217;d like to see how it&#8217;s done.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bockwurst</title>
		<link>http://www.localoaf.org/2006/11/26/visualizing-word-sequence-in-lyrics/comment-page-1/#comment-37</link>
		<dc:creator>bockwurst</dc:creator>
		<pubDate>Tue, 28 Nov 2006 09:35:44 +0000</pubDate>
		<guid isPermaLink="false">http://localoaf.org/2006/11/26/visualizing-word-sequence-in-lyrics/#comment-37</guid>
		<description>I wrote a quick Python script that generates similar graphs. It reads in and tokenizes the lyrics file the spits out a DOT-format file for GraphViz to chew on. Here's some sample output generated from the lyrics to Elton John's "Tiny Dancer":

http://hipnik.net/~ivan/pics/elton-tinydancer.png

No stop-word culling yet, but I label the transitions/edges with the frequency of occurrence.

The DOT file used to generate that PNG is at:
http://hipnik.net/~ivan/pics/elton-tinydancer.dot</description>
		<content:encoded><![CDATA[<p>I wrote a quick Python script that generates similar graphs. It reads in and tokenizes the lyrics file the spits out a DOT-format file for GraphViz to chew on. Here&#8217;s some sample output generated from the lyrics to Elton John&#8217;s &#8220;Tiny Dancer&#8221;:</p>
<p><a href="http://hipnik.net/~ivan/pics/elton-tinydancer.png" rel="nofollow">http://hipnik.net/~ivan/pics/elton-tinydancer.png</a></p>
<p>No stop-word culling yet, but I label the transitions/edges with the frequency of occurrence.</p>
<p>The DOT file used to generate that PNG is at:<br />
<a href="http://hipnik.net/~ivan/pics/elton-tinydancer.dot" rel="nofollow">http://hipnik.net/~ivan/pics/elton-tinydancer.dot</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: k7lim</title>
		<link>http://www.localoaf.org/2006/11/26/visualizing-word-sequence-in-lyrics/comment-page-1/#comment-28</link>
		<dc:creator>k7lim</dc:creator>
		<pubDate>Mon, 27 Nov 2006 19:36:39 +0000</pubDate>
		<guid isPermaLink="false">http://localoaf.org/2006/11/26/visualizing-word-sequence-in-lyrics/#comment-28</guid>
		<description>walter, very cool.  I've always wanted to check out processing.  keep us posted on your projects.</description>
		<content:encoded><![CDATA[<p>walter, very cool.  I&#8217;ve always wanted to check out processing.  keep us posted on your projects.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: k7lim</title>
		<link>http://www.localoaf.org/2006/11/26/visualizing-word-sequence-in-lyrics/comment-page-1/#comment-27</link>
		<dc:creator>k7lim</dc:creator>
		<pubDate>Mon, 27 Nov 2006 19:34:24 +0000</pubDate>
		<guid isPermaLink="false">http://localoaf.org/2006/11/26/visualizing-word-sequence-in-lyrics/#comment-27</guid>
		<description>across amateur lyric sites, there is some degree of disagreement about a given song's lyrics.  some measure of this phenomenon is due to mishearings, while another factor is whether the artist has published "official" lyrics (and in what format).  

i'd be curious to see a viz for the divergence of people's lyrics online.</description>
		<content:encoded><![CDATA[<p>across amateur lyric sites, there is some degree of disagreement about a given song&#8217;s lyrics.  some measure of this phenomenon is due to mishearings, while another factor is whether the artist has published &#8220;official&#8221; lyrics (and in what format).  </p>
<p>i&#8217;d be curious to see a viz for the divergence of people&#8217;s lyrics online.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Walter</title>
		<link>http://www.localoaf.org/2006/11/26/visualizing-word-sequence-in-lyrics/comment-page-1/#comment-26</link>
		<dc:creator>Walter</dc:creator>
		<pubDate>Mon, 27 Nov 2006 16:01:35 +0000</pubDate>
		<guid isPermaLink="false">http://localoaf.org/2006/11/26/visualizing-word-sequence-in-lyrics/#comment-26</guid>
		<description>Looks interesting!

I worked on a similar project using texts from political parties.

If you're interested, take a look:
http://www.metaportaldermedienpolemik.net/wiki/Wahlprogramme im Vergleich

(The description is in German but I hope the pictures and the demo speaks for itself)

Kind regards,
Walter</description>
		<content:encoded><![CDATA[<p>Looks interesting!</p>
<p>I worked on a similar project using texts from political parties.</p>
<p>If you&#8217;re interested, take a look:<br />
<a href="http://www.metaportaldermedienpolemik.net/wiki/Wahlprogramme" rel="nofollow">http://www.metaportaldermedienpolemik.net/wiki/Wahlprogramme</a> im Vergleich</p>
<p>(The description is in German but I hope the pictures and the demo speaks for itself)</p>
<p>Kind regards,<br />
Walter</p>
]]></content:encoded>
	</item>
</channel>
</rss>
