Skip to main content

Roundup of AI startups

Business Insider profiles 12 AI startups that their panel of venture capitalists considers likely to succeed in 2019. These startups fall into three categories: A) Enterprise apps: Appzen (auditing), Atrium (legal), FortressIQ (processes), Guru (knowledge management), People.ai (sales) B) Robots: Farmwise (tractor), 6 River Systems (warehouse), Shield.ai (drones in risky places) C) Others: Superhuman (email app), SambaNova (chips), Transfix (marketplace for trucking) *** Of these, I think group B (robots) is the most promising. The self-driving technology is particularly well suited in these settings (farms, warehouses) in which traffic control can be fully centralized. In some cases, the accuracy required is not too high, e.g. the tractor that differentiates weed from not weed needs only be moderately accurate. The drone company - it's not clear where the AI is. In Group A, I like Appzen, which uses AI to detect fraud in expense reports. It's clearly possible, and has a business model - although the model is about cost control rather than revenue growth. Guru, People.ai, and FortressIQ are applications that have current solutions, and it's not easy to see from a brief description how they will be better. Knowledge management and process streamlining are problems that are around forever, and never get solved. Atrium for legal documents is too vague a concept to judge. Superhuman, the new email interface, can be nice but Gmail killed the market for email software by giving it away free. AI is likely just a small part of this offering. I must say I like the new Gmail predictive typing feature. On the other hand, Gmail's predictive classification of emails to tabs continues to underwhelm after years of training. SambaNova has a great team, but no details on what they are really doing. Transfix, the marketplace connecting truckers and loads, sounds promising - if only because this problem has been studied for a long time. At the end of the year, we can come back and see how these companies performed.

from Big Data, Plainly Spoken (aka Numbers Rule Your World) http://bit.ly/2S24CET
via IFTTT

Comments

Popular posts from this blog

Controlling legend appearance in ggplot2 with override.aes

[This article was first published on Very statisticious on Very statisticious , and kindly contributed to R-bloggers ]. (You can report issue about the content on this page here ) Want to share your content on R-bloggers? click here if you have a blog, or here if you don't. In ggplot2 , aesthetics and their scale_*() functions change both the plot appearance and the plot legend appearance simultaneously. The override.aes argument in guide_legend() allows the user to change only the legend appearance without affecting the rest of the plot. This is useful for making the legend more readable or for creating certain types of combined legends. In this post I’ll first introduce override.aes with a basic example and then go through three additional plotting scenarios to how other instances where override.aes comes in handy. Table of Contents R packages Introducing override.aes Adding a guides() layer Using the guide argument in scale_*() Changing multiple aesthetic par...

Using RStudio and LaTeX

(This article was first published on r – Experimental Behaviour , and kindly contributed to R-bloggers) This post will explain how to integrate RStudio and LaTeX, especially the inclusion of well-formatted tables and nice-looking graphs and figures produced in RStudio and imported to LaTeX. To follow along you will need RStudio, MS Excel and LaTeX. Using tikzdevice to insert R Graphs into LaTeX I am a very visual thinker. If I want to understand a concept I usually and subconsciously try to visualise it. Therefore, more my PhD I tried to transport a lot of empirical insights by means of  visualization . These range from histograms, or violin plots to show distributions, over bargraphs including error bars to compare means, to interaction- or conditional effects of regression models. For quite a while it was very tedious to include such graphs in LaTeX documents. I tried several ways, like saving them as pdf and then including them in LaTeX as pdf, or any other file ...