Skip to main content

Microsoft launches a new AI startup program at Station F in Paris

Microsoft is rethinking its strategy when it comes to startup acceleration in Paris. The company is going to focus on artificial intelligence. This will lead to a new program for AI startups at Station F.
Microsoft has had a startup accelerator in the Sentier neighborhood for a few years now. When Station F opens at the end of June, the company is going to focus exclusively on artificial intelligence with a partnership with INRIA and move everything to the startup campus.
“We think that we’re first going to select 5 or 6 startups that can foster an ecosystem around INRIA and themselves,” Microsoft France Developer Experience leader Christophe Shaw told me. “The idea is that we’re eventually going to have a hundred startups in this club.”
And the first startup joining this program is Recast.ai. This French startup has been building a service that helps you build, launch and manage chatbots. The company also takes care of hosting those bots. A few big French companies have been relying on Recast.ai for their bots.
“We’ve been lucky that Microsoft spotted us from the very beginning of Recast,” co-founder and CEO Patrick Joubert told me. “We’ve been using Microsoft Azure to host our service.”
The Recast.ai team is looking forward to working next to other AI people so that they can learn from each other. As part of the program, they’ll also be able to talk with Microsoft experts and INRIA researchers. And the startup hopes that they’ll be able to find new clients by being surrounded with hundreds of companies at Station F.
Microsoft also plans to help all the other companies at Station F with some developer perks. If you’re working from Station F, you’ll automatically get free credit on Microsoft Azure as part of their plan to help startups.
“Eventually, we want to host one event per day at Station F, from technical presentations to business workshops,” Shaw said. The company is going to have a tiny space to host those events inside Station F. Everyone at Station F will be able to attend those events.

Comments

Popular posts from this blog

Pay Per Click by AppWorks Technologies Pvt Ltd

Making telescopes that curve and twist

New computational tool automates design of telescoping structures that provide compact storage and rapid deployment. Shown here: a complex telescoping lizard expands to many times its original volume, serving as a stress test of the method. Credit: Chris Yu/Carnegie Mellon University A new tool for computational design allows users to turn any 3D shape into a collapsible telescoping structure. New mathematical methods developed by researchers at Carnegie Mellon University capture the complex and diverse properties of such structures, which are valuable for a variety of applications in 3D fabrication and robotics—particularly where mechanisms must be compact in size and easily deployable. The research, "Computational Design of Telescoping Structures," led by Carnegie Mellon Professors Stelian Coros and Keenan Crane and PhD student Christopher Yu, will be presented at the annual SIGGRAPH conference, 30 July to 3 August in Los Angeles. The conference each year spotlights the...

Get start with Vue.js

Getting Started The official guide assumes intermediate level knowledge of HTML, CSS, and JavaScript. If you are totally new to frontend development, it might not be the best idea to jump right into a framework as your first step - grasp the basics then come back! Prior experience with other frameworks helps, but is not required. The easiest way to try out Vue.js is using the   JSFiddle Hello World example . Feel free to open it in another tab and follow along as we go through some basic examples. Or, you can simply   create an   index.html   file   and include Vue with: < script src = "https://unpkg.com/vue" > </ script > The   Installation   page provides more options of installing Vue. Note that we   do not   recommend beginners to start with   vue-cli , especially if you are not yet familiar with Node.js-based build tools. Declarative Rendering At the core of Vue.js is a system that enables us to declar...