<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Text Analysis Blog &#187; Products</title>
	<atom:link href="http://blog.saplo.com/category/products/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.saplo.com</link>
	<description>Keep track of what is happening around Saplo by following our blog</description>
	<lastBuildDate>Thu, 02 Feb 2012 15:17:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>6 Reasons Why Start-ups Should Use Cloud Services Like Amazon Web Services (AWS)</title>
		<link>http://blog.saplo.com/6-reasons-why-start-ups-should-use-cloud-services-like-amazon-web-services-aws/</link>
		<comments>http://blog.saplo.com/6-reasons-why-start-ups-should-use-cloud-services-like-amazon-web-services-aws/#comments</comments>
		<pubDate>Tue, 30 Aug 2011 12:49:18 +0000</pubDate>
		<dc:creator>Ikrom Hotamov</dc:creator>
				<category><![CDATA[API]]></category>
		<category><![CDATA[Products]]></category>
		<category><![CDATA[Amazon Web Services]]></category>
		<category><![CDATA[AWS]]></category>
		<category><![CDATA[CloudWatch]]></category>
		<category><![CDATA[Elastic Block Storage]]></category>
		<category><![CDATA[Elastic Cloud Computing]]></category>
		<category><![CDATA[Elastic Load Balancer]]></category>
		<category><![CDATA[Route 53]]></category>
		<category><![CDATA[Simple Storage Service]]></category>
		<category><![CDATA[Start-Up]]></category>
		<category><![CDATA[start-ups]]></category>

		<guid isPermaLink="false">http://blog.saplo.com/?p=1793</guid>
		<description><![CDATA[Amazon is a very convenient way for start-up companies to set their businesses up in a short amount of time. Especially with the variety of services it offers to easily scale out your business. We (Saplo) is one of such companies, taking advantage of Amazon&#8217;s Web Services and APIs here are our top six reasons ... <br /><br /><a href="http://blog.saplo.com/6-reasons-why-start-ups-should-use-cloud-services-like-amazon-web-services-aws/">[ Read more ]</a>]]></description>
			<content:encoded><![CDATA[<p><strong>Amazon is a very convenient way for start-up companies to set their businesses up in a short amount of time. Especially with the variety of services it offers to easily scale out your business. We (Saplo) is one of such companies, taking advantage of Amazon&#8217;s Web Services and APIs here are our top six reasons why start-ups should use the cloud.</strong></p>
<p style="text-align: center;"><strong><img class="aligncenter size-full wp-image-1805" title="Cloud Computing" src="http://blog.saplo.com/wp-content/uploads/2011/08/cloud-3205676821_634f5b27bb_b1.jpg" alt="" width="614" height="462" /><br />
</strong></p>
<div>
<h4 id="internal-source-marker_0.9954989678226411" dir="ltr">1) Elastic Cloud Computing (EC2)</h4>
<p>We use <a href="http://aws.amazon.com/ec2/">EC2</a> in different ways and parts of our system. First off, it&#8217;s a really convenient way for us to run tests.<br />
We have set up and bundled several EC2 test machines. Whenever needed, we can start an EC2 server using those bundles and have our test machines running in several seconds. It costs almost nothing, and you only pay for storing those bundles on Amazon&#8217;s S3, and for having those EC2 servers running during the test, which rounds up to a couple of cents during each test run.</p>
<p>Moreover, EC2 is perfect for scaling out our systems. We have bundles for different Saplo services, like the API, widget, etc, and whenever there is any load on the servers, some magic scripts automatically start up additional work servers. Of course, the perfect way to handle it would be to take use of <a href="http://aws.amazon.com/autoscaling/">Amazon&#8217;s Auto Scaling</a> solutions, but in our case, the load can not really be determined by the machine load. Therefore, we have our custom scripts to manage load levels, and start up/shut down additional instances whenever necessary.<br />
The only downside of using S3 bundled servers for this is that, if we change or update the servers, we need to re-bundle and re-store them on S3. Although the process of re-bundling is also automatized, it requires a little manual work, just to make sure everything goes as desired. In the future, we are looking forward to moving towards a &#8220;puppetized&#8221; solution, using <a href="http://www.puppetlabs.com/">Puppet-Lab&#8217;s</a> awesome framework to push changes directly into the servers, and automatically setting up any dummy Amazon EC2 instance whenever we need it.</p>
<h4 dir="ltr">2) Simple Storage Service (S3)</h4>
<p>Amazon has proven its S3 as a reliable service to store whatever data you want on the cloud. S3 also stands behind some other AWS services, like storing your EC2 bundles, EBS instances, snapshots, etc. Other than that, we use S3 for storing various kinds of data files that we want available at any time we need.</p>
<h4 dir="ltr">3) Elastic Block Storage (EBS)</h4>
<p><a href="http://aws.amazon.com/ebs/">Elastic Block Storage</a> is used for more critical parts of our services. We have customized automatic snapshotting scripts for almost all of the EBS instances we run, taking daily/weekly snapshots for availability reasons. Unlike EC2 instances, EBS is more reliable and offers extended functionality, like backups, surviving service interruptions, etc. for a little extra cost :)<br />
There is a really cool snapshotting tool by <a href="https://plus.google.com/111045584683584396225/posts">Eric Hammond</a> called <a href="http://alestic.com/2009/09/ec2-consistent-snapshot">ec2-consistent-snapshot</a>.</p>
<h4 dir="ltr">4) Elastic Load Balancer (ELB)</h4>
<p>In order to easily scale out and down, we take use of Amazon&#8217;s <a href="http://aws.amazon.com/elasticloadbalancing/">Elastic Load Balancers</a>.  All you have to do is register an extra worker server with your load balancer, and it’s transparently added into the group of working servers behind the load balancers and your users won’t even notice a glitch.<br />
Besides, load balancers are a perfect way of handling Amazon availability-zone blackouts. We have our instances spread out onto different availability zones behind our ELBs. Furthermore, it can automatically detect unhealthy instances and route its traffic to other healthy ones, until the damaged server comes back online or replaced.</p>
<h4 dir="ltr">5) Route 53</h4>
<p>After having to struggle with loopia.se and repeating failures on their DNS services, we had to come up with a more reliable solution. And guess what we ended up with! Right, <a href="http://aws.amazon.com/route53/">Amazon Route 53</a>. Once you get familiar with its API, Route 53 is a really easy and simple way of handling DNS routings in the cloud. Plus, the changes you make take effect almost instantly.</p>
<h4 dir="ltr">6) CloudWatch</h4>
<p><a href="http://aws.amazon.com/cloudwatch/">Amazon CloudWatch</a> offers great monitoring options for all the instances within Amazon. However, since we use a hybrid cloud with different machines spread on different providers, we have chosen <a href="https://www.icinga.org/">Icinga</a> open source monitoring service as a central monitoring point for all of our cloud servers. It&#8217;s used for monitoring servers from a single location, sending alert emails and even sms messages, automatically taking critical measures, etc. For instance, we use some custom icinga plugins to determine load on our API servers, and it automatically starts a new instance, or replaces unhealthy instances whenever necessary.</p>
</div>
<p>&nbsp;</p>
<p><em>Picture: <strong id="yui_3_4_0_3_1314625500304_2818"><a href="http://www.flickr.com/photos/23045224@N04/">Athena&#8217;s Pix</a></strong></em></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.saplo.com/6-reasons-why-start-ups-should-use-cloud-services-like-amazon-web-services-aws/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 Ways Google+ Can Fight Facebook</title>
		<link>http://blog.saplo.com/5-ways-google-can-fight-facebook/</link>
		<comments>http://blog.saplo.com/5-ways-google-can-fight-facebook/#comments</comments>
		<pubDate>Wed, 17 Aug 2011 15:11:31 +0000</pubDate>
		<dc:creator>Mattias Tyrberg</dc:creator>
				<category><![CDATA[API]]></category>
		<category><![CDATA[Products]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google plus]]></category>
		<category><![CDATA[related posts]]></category>
		<category><![CDATA[text analysis]]></category>
		<category><![CDATA[text analytics]]></category>
		<category><![CDATA[text filter]]></category>

		<guid isPermaLink="false">http://blog.saplo.com/?p=1766</guid>
		<description><![CDATA[Google+ has been out for one and a half month now and usage is growing but is it enough? There are some key features that are missing that would help Google+ to be a better alternative to Facebook. I will not focus on the most obvious ones (such as search, because its coming) but on ... <br /><br /><a href="http://blog.saplo.com/5-ways-google-can-fight-facebook/">[ Read more ]</a>]]></description>
			<content:encoded><![CDATA[<p><strong><strong><strong>Google+ has been out for one and a half month now and usage is growing but is it enough? There are some key features that are missing that would help Google+ to be a better alternative to Facebook. I will not focus on the most obvious ones (such as search, because its coming) but on cool and life changing features that really could make Google+ better than Facebook.</strong></strong></strong></p>
<p><strong><strong><strong> </strong></strong></strong><strong>1) Filter posts &#8211; Read only the posts that are interesting for <strong>you<br />
</strong></strong>Reading through the Stream there is a big problem finding the most important and interesting information. Facebook has the “Top News” but in Google+ you only get the most recent news.</p>
<p><img class="aligncenter size-full wp-image-1776" title="Google plus - Filter by interest using text analytics" src="http://blog.saplo.com/wp-content/uploads/2011/08/Google-plus-Filter-by-interest-using-text-analytics.jpg" alt="Filter by Interest - Google+ with text analytics" width="963" height="622" /></p>
<p style="text-align: center;"><em>The picture show an example of how easy the “Filter by Interest” feature could be implemented in the current UI.</em></p>
<p><em> </em>I noticed that my stream get noisy with very few users and I need some type of filter to find the most relevant posts. The solution to this problem is to atomically find the most interesting posts and I want to take this one step further than what Facebook have done. I want to analyse the meaning of the content and based on what it is about show only posts that are interesting for me. By using information such as your Sparks, the posts (and links) you shared and the posts you commented on you can use advanced text analytics to predict the relevance of each post based on the users interests.</p>
<p><strong>2) Automatically Recommend Sparks</strong><br />
The first page you see when you visit Sparks can be more interesting. Instead of getting standard Sparks you should get personal recommendations of Sparks that are interesting for you. As before this can be done using what you have written and commented on plus the sparks you already have and in combination with text analysis this will give you some great recommendations.</p>
<p style="text-align: center;"><img class="aligncenter size-large wp-image-1777" title="Google plus - Recommended Sparks by interest using text analytics" src="http://blog.saplo.com/wp-content/uploads/2011/08/Google-plus-Recommended-Sparks-by-interest-using-text-analytics-1024x677.jpg" alt="Recommended Sparks by interest - Google+ with text analytics" width="1024" height="677" /></p>
<p style="text-align: center;">&nbsp;</p>
<p><strong>Get relevant information on a Spark page<br />
</strong>Instead of just show the posts on the Spark-page there is an opportunity to show so much more relevant information. For instance;</p>
<p><strong>3) Related Persons </strong>to the spark, showing people that often comment or share information in the area. This makes it possible for persons that are interested in an area to find other people to add to circles and to interact with them.</p>
<p><strong>4) Related Sparks</strong>, showing other sparks that are related to this one and makes it easy to find more interesting material.</p>
<p><strong>5) Related Posts</strong>, find other posts that are about the same subject/event so you can find out about what have happened before this article was written.</p>
<p style="text-align: center;"><img class="aligncenter size-large wp-image-1778" title="Google plus - Related Sparks using text analytics" src="http://blog.saplo.com/wp-content/uploads/2011/08/Google-plus-Related-Sparks-using-text-analytics-1024x677.jpg" alt="Related Sparks - Google+ with text analytics" width="1024" height="677" /></p>
<p style="text-align: center;"><em>The picture shows how related persons, related Sparks and related posts can be implemented in Google+.</em></p>
<p><strong>Summary</strong><br />
I think there are a few killer features that could be build very easily that would be able to change Google+’s position.<br />
This are my top five<br />
1) Smart filer of Stream<br />
2) Automatic recommendation of Sparks<br />
3) Related Persons<br />
4) Related Sparks<br />
5) Related Posts<br />
Sure there is also an opportunity for Facebook to implement similar features before Google does it. So who will win, Google+ or Facebook?</p>
<p>&nbsp;</p>
<p><em>Note: The features are not science fiction they can all be implemented using existing <a href="http://saplo.com/products">text analytics technologies</a>.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.saplo.com/5-ways-google-can-fight-facebook/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Drupal Module For Entity Tagging And Related Content</title>
		<link>http://blog.saplo.com/drupal-module-for-entity-tagging-and-related-content/</link>
		<comments>http://blog.saplo.com/drupal-module-for-entity-tagging-and-related-content/#comments</comments>
		<pubDate>Sat, 13 Aug 2011 10:59:36 +0000</pubDate>
		<dc:creator>Oskar Olsson</dc:creator>
				<category><![CDATA[Drupal]]></category>
		<category><![CDATA[Products]]></category>
		<category><![CDATA[Entity Tagging]]></category>
		<category><![CDATA[Related Content]]></category>

		<guid isPermaLink="false">http://blog.saplo.com/?p=1753</guid>
		<description><![CDATA[We are bringing the semantic capabilities of the Saplo Text Analysis API to Drupal, one of the greatest and most widely used open source Content Management Systems (CMS). The supported languages are Swedish and English, with additional languages coming in the future depending on interest. The module works with Drupal 6.x and PHP 5 or ... <br /><br /><a href="http://blog.saplo.com/drupal-module-for-entity-tagging-and-related-content/">[ Read more ]</a>]]></description>
			<content:encoded><![CDATA[<p>We are bringing the semantic capabilities of the <a href="http://saplo.com/api" title="Saplo Text Analysis API">Saplo Text Analysis API</a> to <strong>Drupal</strong>, one of the greatest and most widely used open source Content Management Systems (CMS).</p>
<p>The supported languages are Swedish and English, with additional languages coming in the future depending on interest.</p>
<p>The module works with <strong>Drupal 6.x</strong> and PHP 5 or later. If you’re interested in seeing a version for <strong>Drupal 7</strong> please <a href="http://saplo.com/contact" title="Get in contact with Saplo">contact us</a>. At this moment the module is being reviewed by the Drupal community, but you’re free to download it using Git from the <a href="http://drupal.org/sandbox/oskarols/1247304" title="Download Saplo Drupal Module for Entity Tagging and Related Content from Git">sandbox page</a>.</p>
<p>The Saplo <strong>Drupal module</strong> supports two of the main features from the Saplo <strong>API</strong>.</p>
<p><img src="http://blog.saplo.com/wp-content/uploads/2011/08/drupal-module-entity-tagging-related-content.png" alt="Drupal module for entity tagging and related content" title="Drupal module for entity tagging and related content" width="500" height="272" class="aligncenter size-full wp-image-1759" /></p>
<h3>Tagging</h3>
<p>Using our module you can &#8211; with the push of a button &#8211; <strong>extract tags</strong> from articles.<br />
The benefits of this versus a manual approach are twofold; first of all it’s very convenient to have the tags magically appear with the click of a button. Second of all you add consistency to the <strong>tagging</strong>, since the Saplo <strong>Text Analysis API</strong> is based on machine learning and will intelligently <em>analyze</em> and <em>extract</em> the tags the same way every time. It’s like having a dedicated employee just doing your <strong>tagging</strong>.</p>
<h3>Related Articles</h3>
<p>The module also provides you with a means to display <strong>related content</strong>, for example lists of <strong>“Related articles”</strong> that are often found at the end of news articles.<br />
Similar modules have the capability to do this as well, but are often powered solely on <strong>tags</strong>. In other words, they make the assumption that articles that share the same tags should be related.<br />
The Saplo <strong>API</strong> goes beyond that; we use <strong>semantic analysis</strong> and <strong>machine learning</strong> to give a higher precision to this <em>relevance</em>.  </p>
<p>The caveat is that the module can only give you <strong>related content</strong> if that content has been previously analyzed. So as you analyze more and more of your articles or text, naturally more related content will be able to be displayed.<br />
We basically establish relationships between different pieces of content, which is measured in a perceptual value. E.g. “this article is 60% similar to that article”. These <em>relationships</em> will be stored in the database powering your <strong>Drupal</strong> installation; so you’re free to use it in interesting ways if you want to.</p>
<p>Included in the module is also a basic filter, where you can change the relevance thresholds for displayed related content. So if you only want to display articles that are very related, you can easily do so in the administrative interface.</p>
<h3>Using the Saplo Drupal Module</h3>
<p>Installing the module is easy; you will be able to find the complete guide on the module page. In essence, it goes like this:</p>
<ol>
<li>Download and unpack the module inside your module folder.</li>
<li>Enable the module in the Drupal administrative interface.</li>
<li>Enter the API Key-pair that you’ve received from signing up at <a href="http://saplo.com/signup/free" title="Sign up for a free Saplo Text Analysis API account">http://saplo.com/signup/free</a> into the modules administrative interface.</li>
<li>Enable the service you want (tagging, related articles) for your node types.</li>
<li>Insert a new node, and when inside the view click the “Add Saplo Metadata”-button.</li>
</ol>
<p><img src="http://blog.saplo.com/wp-content/uploads/2011/08/drupal-module-entity-tagging-related-content-settings.png" alt="Drupal module settings for entity tagging and related content" title="Drupal module settings for entity tagging and related content" width="500" height="271" class="aligncenter size-full wp-image-1760" /></p>
<p>The “Add Saplo Metadata”-button is probably the most common way you will be interacting with the module, besides changing settings inside the administrative interface.<br />
Pressing this button sends the text from the node to the Saplo API. Once the Saplo API is done analysing the text it sends back the the extracted metadata that you’ve requested. The data is then saved locally, and displayed when the node is viewed.</p>
<h3>Other features</h3>
<p>The module implements various useful Drupal hooks. Amongst others we have different permissions that you can enable for users to access the administrative interface and to extract metadata for articles.<br />
We also provide a small template that you can further configure that shows the related articles.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.saplo.com/drupal-module-for-entity-tagging-and-related-content/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Saplo Text Analysis Demo gets an update</title>
		<link>http://blog.saplo.com/saplo-text-analysis-demo-gets-an-update/</link>
		<comments>http://blog.saplo.com/saplo-text-analysis-demo-gets-an-update/#comments</comments>
		<pubDate>Tue, 07 Jun 2011 13:28:00 +0000</pubDate>
		<dc:creator>Joakim Stenberg</dc:creator>
				<category><![CDATA[API]]></category>
		<category><![CDATA[Products]]></category>
		<category><![CDATA[Entity Tagging]]></category>
		<category><![CDATA[Similar Articles]]></category>
		<category><![CDATA[Similar Tweets]]></category>
		<category><![CDATA[Text Analysis API]]></category>
		<category><![CDATA[Text Analysis Demo]]></category>

		<guid isPermaLink="false">http://blog.saplo.com/?p=1673</guid>
		<description><![CDATA[Finally it’s time for an update of our text analysis demo site, not a day to soon! Our old demo site was made in a rush, I think it was right before a conference of some kind. Back from the conference we figured that since the demo seemed to be working well enough, we could ... <br /><br /><a href="http://blog.saplo.com/saplo-text-analysis-demo-gets-an-update/">[ Read more ]</a>]]></description>
			<content:encoded><![CDATA[<p>Finally it’s time for an update of our text analysis demo site, not a day to soon! Our old demo site was made in a rush, I think it was right before a conference of some kind. Back from the conference we figured that since the demo seemed to be working well enough, we could leave it for a couple of days before starting to improve it&#8230; That was over a year ago.</p>
<p>The goal with our new <strong>text analysis demo</strong> is more then anything to make it <strong>easier</strong> to try out. That’s why the frontpage at <a href="http://demo.saplo.com" title="Text Analysis Demo">demo.saplo.com</a> now has a predefined text in the textarea. That way you as a visitor can just click submit and get <strong>results for the text immediately</strong>.</p>
<p><img class="alignnone size-full wp-image-1674" title="Text Analysis Demo frontpage" src="http://blog.saplo.com/wp-content/uploads/2011/06/text-analysis-demo-frontpage.png" alt="Add your own text to our Text Analysis Demo or use one of the predefined texts. You can switch between news articles and tweets." width="500" height="298" /></p>
<p>You can also toggle between <strong>English and Swedish</strong> texts or you can switch between <strong>news articles and tweets</strong>. If that doesn’t do it for you, there’s also the option of writing or pasting your own text into the textarea.</p>
<p>The demo provides you with three different kinds of results:</p>
<ul>
<li>Entity Tagging</li>
<li>Similar Articles</li>
<li>Similar Tweets</li>
</ul>
<p><img class="alignnone size-full wp-image-1675" title="Text Analysis Demo result page" src="http://blog.saplo.com/wp-content/uploads/2011/06/text-analysis-demo-result-page.png" alt="On the result page of our Text Analysis Demo you'll find entity tags marked in the provided text. Similar news articles and similar tweets are also available." width="500" height="267" /></p>
<p>Give the demo a try at <a href="http://demo.saplo.com" title="Text Analysis Demo">demo.saplo.com</a>!</p>
<p><strong>How is the demo built?</strong><br />
First of two different text collections is created through the <a href="http://saplo.com/api" title="Text Analysis API">Saplo Text Analysis API</a> using the <a href="http://developer.saplo.com/method/collection-create" title="Text Analysis API method collection.create">collection.create</a> method. The first collections store articles and the second tweets.</p>
<p>We crawl news articles from a couple of news sites and we collect tweets from specific Twitter streams. Tweets and articles are added to the two different text collections using the API method <a href="http://developer.saplo.com/method/text-create" title="Text Analysis API method text.create">text.create</a>.</p>
<p>Next we create a third text collection, in this collection articles and tweets written by visitors will be stored.</p>
<p>Both Similiar Articles and Similar Tweets uses the same API method, <a href="http://developer.saplo.com/method/text-relatedTexts" title="Text Analysis API method text.relatedTexts">text.relatedTexts</a>. Entity tagging is performed using our <a href="http://developer.saplo.com/method/text-tags" title="Text Analysis API method text.tags">text.tags</a> method.</p>
<p>That’s it, nothing more fancy about it.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.saplo.com/saplo-text-analysis-demo-gets-an-update/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Thought behind Saplo Stream</title>
		<link>http://blog.saplo.com/thought-behind-saplo-stream/</link>
		<comments>http://blog.saplo.com/thought-behind-saplo-stream/#comments</comments>
		<pubDate>Tue, 31 May 2011 16:31:26 +0000</pubDate>
		<dc:creator>Oskar Olsson</dc:creator>
				<category><![CDATA[API]]></category>
		<category><![CDATA[Products]]></category>
		<category><![CDATA[Gmail]]></category>
		<category><![CDATA[IMDB]]></category>
		<category><![CDATA[Priority Inbox]]></category>
		<category><![CDATA[Saplo Stream]]></category>
		<category><![CDATA[Yahoo Pipes]]></category>

		<guid isPermaLink="false">http://blog.saplo.com/?p=1663</guid>
		<description><![CDATA[While curious people have long since realized the potential of using smart filters to tweak, tune, and prune their received flow of information, at large these tools still go unused. Yahoo Pipes, still sadly relegated to the fringes of the tech crowd, is one of the tools that show how useful such tools can be. ... <br /><br /><a href="http://blog.saplo.com/thought-behind-saplo-stream/">[ Read more ]</a>]]></description>
			<content:encoded><![CDATA[<p>While curious people have long since realized the potential of using smart filters to tweak, tune, and prune their received flow of information, at large these tools still go unused. Yahoo Pipes, still sadly relegated to the fringes of the tech crowd, is one of the tools that show how useful such tools can be.</p>
<p>Just with Yahoo Pipes, the numbers of interesting use cases are vast. For instance, you could with some minor filtering send in an RSS-feed containing new movies, and only show the ones that are rated higher through a certain service (say, IMDB).  Another example is enriching a feed with geographical information, perhaps even showing it on a map.</p>
<p>A more recent example of such a filter is the widely celebrated Priority Inbox-feature for Gmail, where using certain heuristics an email can be suggested to be more important than others.</p>
<p>Tools from text analytics fit very nicely in this category; and can really be an integral part of piecing together certain contexts or bits of information while pushing others further away from each other.</p>
<p>Our experiments in this foray was (and still is, although development has been rather slow lately) Saplo Stream, a small twitter integrated web application where links from people you followed were crawled, and depending on what the content you yourself had shared through your own tweets, different types of links where displayed to you inside the application.</p>
<p><img class="alignnone size-full wp-image-1667" title="Saplo Stream" src="http://blog.saplo.com/wp-content/uploads/2011/05/saplo_stream.png" alt="Saplo Stream" width="500" height="265" /></p>
<p>The most interesting part however, was in the form of customizable filters for the incoming articles. We have all seen the “related articles” or “related content” at the bottom of news articles. In this case, the customizable filters could be tweaked and tuned to give a high relevance against certain types of content – meaning you could in fact filter out all the links coming in that for instance had to do with foreign policy, or mobile technology.</p>
<p>The filtering itself was done using our own <a title="”Text" href="”http://saplo.com/api”">text analysis API</a>, where you can bunch together texts in different ways and infer how similar they are to one another in different ways.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.saplo.com/thought-behind-saplo-stream/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Saplo Stream &#8211; a personalized and time constrained text stream</title>
		<link>http://blog.saplo.com/saplo-stream-a-personalized-and-time-constrained-text-stream/</link>
		<comments>http://blog.saplo.com/saplo-stream-a-personalized-and-time-constrained-text-stream/#comments</comments>
		<pubDate>Tue, 28 Sep 2010 16:20:26 +0000</pubDate>
		<dc:creator>Mattias Tyrberg</dc:creator>
				<category><![CDATA[Products]]></category>
		<category><![CDATA[filter]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[Personal stream]]></category>
		<category><![CDATA[personalization]]></category>
		<category><![CDATA[Saplo Stream]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://saplo.com/?p=1310</guid>
		<description><![CDATA[Today, we proudly present Saplo Stream (Alpha) that aspires to change the way you read text. This service filters and prioritizes large text streams based on your personal interests. Whether you have 5 or 45 minutes to spare, Saplo Stream finds the most relevant information to spend your time on. The problem &#8211; Information Overload ... <br /><br /><a href="http://blog.saplo.com/saplo-stream-a-personalized-and-time-constrained-text-stream/">[ Read more ]</a>]]></description>
			<content:encoded><![CDATA[<p>Today, we proudly present Saplo Stream (Alpha) that aspires to change the way you read text. This service filters and prioritizes large text streams based on your personal interests. Whether you have 5 or 45 minutes to spare, Saplo Stream finds the most relevant information to spend your time on.</p>
<p><strong>The problem &#8211; Information Overload</strong></p>
<p>Information on the Internet is growing by the minute and today&#8217;s fast paced society gives us less time to read it. We as humans are limited by a surplus rather than a lack of information. Current information technology (e.g., Google Search) produces enormous amounts of results which can be hard to survey. Even more information is discarded because your personal intent of a search query is unknown. Do you recognize the following situations: </p>
<p>- You have been away for a week and want to be updated on what has happened, where and how do you start reading?<br />
 &#8211; You have 10 minutes to spare when you travel by bus. How do you find the most relevant information to read?</p>
<p>In order to solve this problem of information overload there is an obvious need to augment current information gathering techniques with the ability to filter and sort large text masses.</p>
<p><strong>The solution &#8211; a personalized and time constrained text stream</strong></p>
<p>Saplo Stream will automatically filter text according to how relevant they are based on your personal interests. Thanks to filtering you can choose how many minutes you want to spend on reading. This service aspires to end the days of information overload. Whether you want to read the most interesting news from the past month in one hour or from the past day in 10 minutes, Saplo Stream will help you find the most relevant and thus valuable information.</p>
<p>For the time being, news sources are collected from your Twitter stream. However, we plan to add more sources in the future.</p>
<p><strong>How do you sign up?</strong><br />
Sign up using your Twitter account on <a href="http://saplostream.com" title="Saplo Stream">SaploStream.com</a></p>
<p>Keep in mind that this is an <strong>Alpha</strong> version and gradually more people will be given access. We will of course work as fast as we can to provide access to more people over time. Follow <a href="http://twitter.com/saplostream">@SaploStream</a> for updates.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.saplo.com/saplo-stream-a-personalized-and-time-constrained-text-stream/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FORES together with Saplo analyzed party leaders speech in Almedalen</title>
		<link>http://blog.saplo.com/fores-together-with-saplo-analyzed-party-leaders-speech-in-almedalen/</link>
		<comments>http://blog.saplo.com/fores-together-with-saplo-analyzed-party-leaders-speech-in-almedalen/#comments</comments>
		<pubDate>Fri, 16 Jul 2010 11:33:06 +0000</pubDate>
		<dc:creator>Fredrik Hörte</dc:creator>
				<category><![CDATA[Customers]]></category>
		<category><![CDATA[Products]]></category>

		<guid isPermaLink="false">http://saplo.com/?p=1218</guid>
		<description><![CDATA[This is a guest post by our API user Fores, a green and liberal research institute. Saplo is a nonpartisan company and invites other organizations to use our API. Think-Tank FORES together with Axess-TV and makthavare.se (makthavare.se) evaluated the statements from party leaders during the political week in Visby, Almedalsveckan, Sweden. In “Ideologisk After Speech”, ... <br /><br /><a href="http://blog.saplo.com/fores-together-with-saplo-analyzed-party-leaders-speech-in-almedalen/">[ Read more ]</a>]]></description>
			<content:encoded><![CDATA[<p><strong>This is a guest post by our API user Fores, a green and liberal research institute.<br />
Saplo is a nonpartisan company and invites other organizations to use our API.</strong></p>
<p>Think-Tank <a href="http://www.fores.se">FORES</a> together with Axess-TV and makthavare.se (makthavare.se) evaluated the statements from party leaders during the political week in Visby, Almedalsveckan, Sweden. In “Ideologisk After Speech”, broadcasted daily by <a href="http://www.axess.se/tv/program.aspx?id=1888">Axess-TV</a>, the statement were scrutinised from every aspect under the stewardship of FORES director Martin Ådahl.<br />
The statement underwent an ideological evaluation (liberal or conservative, left or right) by a political philosopher, a fact check was made by makthavare.se, and economist Andreas Bergh made a calculation of the cost from the Speech. In addition to this, we used the Saplo API to analyse the speeches.<br />
Politicians are often accused of being unclear, and being hard to separate from each other. They all sound the same, don ´t they?<br />
We were interested in finding out to which degree the party leaders sounded the same, but even more interested we were in finding out who they resemble. Is it true that Fredrik Reinfeldt (Prime Minister) sometimes sound more like a social democrat? In Almedalen, he apparently did, since his speech according to our analysis resembled Mona Sahlin”˜s (party leader, social democrat) previous speeches more than his own. By the way it seems like Mona Sahlin is the one party leader who can be said being difficult to differ from the others. She finished top three in every analysis, meaning that every statement was pretty similar to the statements Sahlin usually deliver.<br />
On the other hand it seems like Lars Ohly (party leader, left-wing party) is the odd man out, since every speech other than his own were furthest away from being similar to the left party leader´s.<br />
In order to do the analysis, we collected a large amount of speeches from every party leader and created a context (using Saplo Context) for every leader. We than compared the Almedalen speech to each context.<br />
Being aware that it is no exact science, it still added an extra spice to the After Speech and now we know – Fredrik Reinfeldt is more Mona Sahlin than Fredrik Reinfeldt. And Lars Ohly´s statements are the black sheep of Swedish political statements.</p>
<p><a href="http://fores.se/almedalen/ideologisk-after-speech-almedalen-2010/">http://fores.se/almedalen/ideologisk-after-speech-almedalen-2010/</a> (Swedish)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.saplo.com/fores-together-with-saplo-analyzed-party-leaders-speech-in-almedalen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Saplo Releases New Widget For News Sites</title>
		<link>http://blog.saplo.com/saplo-releases-new-widget-for-news-sites/</link>
		<comments>http://blog.saplo.com/saplo-releases-new-widget-for-news-sites/#comments</comments>
		<pubDate>Fri, 04 Jun 2010 14:06:04 +0000</pubDate>
		<dc:creator>Mattias Tyrberg</dc:creator>
				<category><![CDATA[Products]]></category>
		<category><![CDATA[Entity Tagging]]></category>
		<category><![CDATA[News Sites]]></category>
		<category><![CDATA[Related Articles]]></category>
		<category><![CDATA[Text Analytics API]]></category>
		<category><![CDATA[Widget]]></category>

		<guid isPermaLink="false">http://saplo.com/?p=1202</guid>
		<description><![CDATA[The past couple of weeks we have been working on an update for our Tags &#038; Match Widget. The Widget is today primarily used by Swedish News Sites and display entity tags and related articles based on what the user is currently reading. As many of you already know, Saplo´s main focus is to create ... <br /><br /><a href="http://blog.saplo.com/saplo-releases-new-widget-for-news-sites/">[ Read more ]</a>]]></description>
			<content:encoded><![CDATA[<p>The past couple of weeks we have been working on an update for our <a href="http://saplo.com/products/tags/" title="Saplo Entity Tagging">Tags</a> &#038; <a href="http://saplo.com/products/match/" title="Saplo Match">Match</a> Widget. <a href="http://saplo.com/apps/widget/" title="Saplo Widget">The Widget</a> is today primarily used by Swedish News Sites and display entity tags and related articles based on what the user is currently reading.</p>
<p>As many of you already know, Saplo´s main focus is to create an outstanding <strong>API for Text Analytics</strong>. What´s interesting with our new Widget is that we have built it entirely based on our <a href="http://saplo.com/api/" title="Saplo API">API</a>. This means that developers with access to our API could easily do the exact same thing.</p>
<p>Some of the news in Saplo Widget:</p>
<ul>
<li>Easy to use administration panel</li>
<li>Blacklist</li>
<li>Multiple User Accounts</li>
<li>Edit Entity Tags</li>
<li>Customizable Widget design</li>
</ul>
<p>Important coming features:</p>
<ul>
<li>Add and edit related articles</li>
<li>Statistics on Widget performance</li>
</ul>
<p>Our metrics have shown that more then 1 (%) percentage of all visitors have clicked on a tag or related article presented by Saplo Widget. We are very excited to see if and how the placement of the Widget and the design of the Widget will affect the click-through-rate. When we know we will share the news.</p>
<p><em>We have been working on improvements for the Widget based on extremely valuable feedback from an amazing customer of ours. Big thanks and keep it coming!</em></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.saplo.com/saplo-releases-new-widget-for-news-sites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Saplo entity tagging live at Sydsvenskan</title>
		<link>http://blog.saplo.com/saplo-entity-tagging-live-at-sydsvenskan/</link>
		<comments>http://blog.saplo.com/saplo-entity-tagging-live-at-sydsvenskan/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 22:28:37 +0000</pubDate>
		<dc:creator>Mattias Tyrberg</dc:creator>
				<category><![CDATA[Products]]></category>
		<category><![CDATA[Saplo Tags]]></category>
		<category><![CDATA[Sydsvenskan]]></category>

		<guid isPermaLink="false">http://saplo.com/wordpress/?p=418</guid>
		<description><![CDATA[Today Sydsvenskan opened up for users to view and use Saplo tags on their site. Saplo Tags automatically extracts entities such as persons, companies and geo-names (in this case in Swedish). This is eliminating manually work for editors. Please notice that this is a beta version and Saplo will focus a lot on improving the ... <br /><br /><a href="http://blog.saplo.com/saplo-entity-tagging-live-at-sydsvenskan/">[ Read more ]</a>]]></description>
			<content:encoded><![CDATA[<p>Today Sydsvenskan opened up for users to view and use Saplo tags on their site.</p>
<p>Saplo Tags automatically extracts entities such as persons, companies and geo-names (in this case in Swedish). This is eliminating manually work for editors. Please notice that this is a beta version and Saplo will focus a lot on improving the service in the upcoming months.</p>
<p>Read more about the service in Sydsvenskans blog (links in the end of the document).</p>
<p>Please let us know if you have any suggestions or ideas.</p>
<p>For more information about Saplo Tags and how you can use it, please contact:<br />
Mattias Tyrberg, CEO Saplo<br />
+46709797724</p>
<p><a title="Sydsvenskan.se" href="http://blogg.sydsvenskan.se/ping/2009/11/19/artificiell-intelligens-pa-sydvenskan-se/">Read more at Sydvenskan.se</a> (Swedish)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.saplo.com/saplo-entity-tagging-live-at-sydsvenskan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Saplo and Monster releases job report &#8211; Top Characteristics of Employees 2009</title>
		<link>http://blog.saplo.com/saplo-and-monster-releases-job-report-top-characteristics-of-employees-2009/</link>
		<comments>http://blog.saplo.com/saplo-and-monster-releases-job-report-top-characteristics-of-employees-2009/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 21:25:14 +0000</pubDate>
		<dc:creator>Mattias Tyrberg</dc:creator>
				<category><![CDATA[Products]]></category>
		<category><![CDATA[Monster]]></category>

		<guid isPermaLink="false">http://saplo.com/wordpress/?p=407</guid>
		<description><![CDATA[Today Saplo and Monster released a job report regarding the Swedish job market. The report is based on analysis of 3000 job ads and indicate what characteristics companies are looking for in employees. The report is in Swedish (if you are interested in having the report in English please contact us at we@saplo.com). Top 5 ... <br /><br /><a href="http://blog.saplo.com/saplo-and-monster-releases-job-report-top-characteristics-of-employees-2009/">[ Read more ]</a>]]></description>
			<content:encoded><![CDATA[<p>Today Saplo and Monster released a job report regarding the Swedish job market. The report is based on analysis of 3000 job ads and indicate what characteristics companies are looking for in employees.</p>
<p>The report is in Swedish (if you are interested in having the report in English please contact us at we@saplo.com).</p>
<p>Top 5 characteristics:<br />
1) structured<br />
2) independent<br />
3) humble<br />
4) enterprising<br />
5) responsibility taking</p>
<p>The analysis is done automatically and the word represents the in meaning most valuable characteristics for the employer.</p>
<h3>Information in Swedish</h3>
<p><strong>Saplo och Monster släpper jobbrapport &#8211; Viktigaste egenskaperna hos anställda 2009</strong></p>
<p>Vad är det som krävs för att få drömjobbet på en sviktande marknad?</p>
<p>Saplo har gjort en analys på över 3000 jobbannonser och har automatiskt tagit ut de egenskaper som arbetsgivaren tycker är viktigast.</p>
<p>Listan får publiceras fritt så länge källan Saplo.com uppges tydligt i texten samt att det återges att det bygger på jobbannonser från Monster.</p>
<p>De vanligaste egenskaperna som eftersöks hos dig som letar jobb. Förra årets placering inom parentes.</p>
<p>1. Strukturerad (1)<br />
2. Självgående (3)<br />
3. Prestigelös (4)<br />
4. Initiativrik (15)<br />
5. Ansvarstagande (8)<br />
6. Utåtriktad (6)<br />
7. Positiv (5)<br />
8. Serviceminded (7)<br />
9. Flexibel (9)<br />
10. Säljinriktad (NY)<br />
11. Stresstålig (2)<br />
12. Pedagogisk (NY)<br />
13. Entusiastisk (NY)<br />
14. Analytisk (NY)<br />
15. Kommunikativ (NY)<br />
16. Kreativ (NY)<br />
17. Disciplinerad (17)<br />
18. Resultatinriktad (NY)<br />
19. Noggrann (10)<br />
20. Tävlingsinriktad (NY)</p>
<p>Källa: Saplo/Monster</p>
<p>För frågor kring rapporten vänligen kontakta :<br />
Mattias Tyrberg, VD Saplo<br />
Email: Mattias@Saplo.com<br />
Mobil: 0709-797724</p>
<p>Läs relaterade artiklar:<br />
<a title="Metro" href="http://www.metro.se/2009/11/09/48220/har-ar-orden-som-ger-dig-jobbet/index.xml"> Här är orden som ger dig jobbet – Metro.se</a><br />
<a title="Dagens Industri" onclick="javascript:pageTracker._trackPageview('/outbound/article/di.se');" href="http://di.se/Nyheter/?page=/avdelningar/artikel.aspx%3FArticleID%3D2009%255C11%255C09%255C360975%26o%3Dsp3%26SectionID%3DEttan%26menusection%3DStartsidan%3BHuvudnyheter">Tre egenskaper som ger dig jobb – DI.se</a><br />
<a title="Dagens Nyheter" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.dn.se:13029');" href="http://www.dn.se:13029/ekonomi/har-ar-vanligaste-jobbannonsorden-1.991062">Här är vanligaste jobbannonsorden – DN.se</a><br />
<a title="Dagens Nyheter" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.dn.se');" href="http://www.dn.se/ekonomi/individualisters-host-i-jobbannonser-1.990981">Individualisters höst i jobbannonser – DN.se</a><br />
<a title="Upsala Nya Tidning" onclick="javascript:pageTracker._trackPageview('/outbound/article/www2.unt.se');" href="http://www2.unt.se/article/1,,MC=3-AV_ID=980092,00.html?f=10">Individualisters höst i jobbannonser – UNT.se</a><br />
<a title="Dalarnas Tidningar" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.dt.se');" href="http://www.dt.se/lokus/lokus_jobb/article513564.ece">Här är viktigaste egenskaperna för nytt jobb – DT.se</a><br />
<a title="Dagens PS" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.dagensps.se');" href="http://www.dagensps.se/artiklar/2009/11/09/22698448/index.xml">Egenskaper som får headhuntern att jubla – DagensPS.se</a><br />
<a title="Shortcut" onclick="javascript:pageTracker._trackPageview('/outbound/article/shortcut.nu');" href="http://shortcut.nu/Default.aspx?documentID=33&amp;articleId=1392">Topplista: Egenskaperna som ger dig jobb! – Shortcut.nu</a><br />
<a title="E24" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.e24.se');" href="http://www.e24.se/pengar24/jobbkarriar/artikel_1673747.e24">Höga krav i platsannonserna – E24.se</a><br />
<a title="Göteborgs-Posten" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.gp.se');" href="http://www.gp.se/ekonomi/1.246062-sadan-person-far-jobb">Sådan person får jobb – GP.se</a><br />
<a title="Nyheter24" onclick="javascript:pageTracker._trackPageview('/outbound/article/nyheter24.se');" href="http://nyheter24.se/nyheter/inrikes/376570-de-vanligaste-orden-i-jobbannonser">De vanligaste orden i jobbannonser – Nyheter24.se</a><br />
<a title="Blekinge Läns Tidning" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.blt.se');" href="http://www.blt.se/nyheter/tt_inrikes/individualisters-host-i-jobbannonser%281618758%29.gm">Individualisters höst i jobbannonser – BLT.se</a><br />
<a title="Jusektidningen" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.jusektidningen.se');" href="http://www.jusektidningen.se/arkivet/2009/10/stresstalighet-inte-sa-viktigt-langre/">Stresstålighet inte längre så viktigt – Jusektidningen.se</a><br />
<a title="Chef" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.chef.se');" href="http://www.chef.se/dynamisk/index.php/index/artikel/sa-ska-du-vara-foer-att-fa-jobb/196223.html">Så ska du vara för att få jobb – Chef.se</a><br />
<a title="IDG" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.idg.se');" href="http://www.idg.se/2.1085/1.268206/sa-vill-arbetsgivarna-ha-dig">Så vill arbetsgivarna ha dig – IDG.se</a><br />
<a title="Språkrådet" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.sprakradet.se');" href="http://www.sprakradet.se/5975">Är du analytisk, prestigelös och initiativrik? – Sprakradet.se</a><br />
<a title="Kollega" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.kollega.se');" href="http://www.kollega.se/?c=11196">Social kompetens är ute – Kollega.se</a><br />
<a title="Svenska Dagbladet" href="http://www.svd.se/opinion/ledarsidan/blatt-och-gront-salt-i-ett-rott-sar_3782291.svd">Blått och grönt salt i ett rött sår – SvD.se</a><a href="http://zaedno.eu/article4609.html" target="_blank"><br />
</a><a title="Norran" onclick="javascript:pageTracker._trackPageview('/outbound/article/norran.se');" href="http://norran.se/asikter/kronikor/olleskronikor/article360427.ece">Jag skulle skriva ”strukturerad” – Norran.se</a><br />
<a title="E24" href="http://www.e24.se/pengar24/jobb-och-karriar/tips-i-karriaren/artikel_1726247.e24">Kravlista lockar inte till nytt jobb – E24.se</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.saplo.com/saplo-and-monster-releases-job-report-top-characteristics-of-employees-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

