From afa50502193f6b85bdfc4c19b59b3fc7e47016f6 Mon Sep 17 00:00:00 2001 From: kuannie1 Date: Mon, 8 May 2017 20:35:48 -0400 Subject: [PATCH 1/3] script to remove duplicates from results --- company-affiliation/removing_duplicates.py | 65 ++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 company-affiliation/removing_duplicates.py diff --git a/company-affiliation/removing_duplicates.py b/company-affiliation/removing_duplicates.py new file mode 100644 index 0000000..c97e77f --- /dev/null +++ b/company-affiliation/removing_duplicates.py @@ -0,0 +1,65 @@ +# This Python file uses the following encoding: utf-8 + +# import os, sys + +from selenium.webdriver.common.desired_capabilities import DesiredCapabilities +firefox_capabilities = DesiredCapabilities.FIREFOX +firefox_capabilities['marionette'] = True +firefox_capabilities['binary'] = '/usr/bin/firefox' +from selenium import webdriver +from selenium.common.exceptions import NoSuchElementException +from selenium.webdriver.common.keys import Keys +from datetime import datetime, time +from pattern.web import * +from pattern.web import URL, extension, download +from sets import Set +import json +import re +DUP_DICT = {u"Frederic" : u"Frédéric Bastien", u"Frederic Bastien" : u"Frédéric Bastien", u"nouiz" : u"Frédéric Bastien", + u"lamblin" : u"Pascal Lamblin", + u"abergeron" : u"Arnaud Bergeron", + u"carriepl" : u"Pierre Luc Carrier", + u"Jon Long" : u"Jonathan L Long", u"longjon" : u"Jonathan L Long", + u"Sergio" : u"Sergio Guadarrama", + u"frankseide" : u"Frank Seide", + u"terrytangyuan" : u"Yuan (Terry) Tang", + u"caisq" : u"Shanqing Cai", + u"yifeif" : u"Yifei Feng", + u"Daniel W Mane" : u"Dan Mané", + u"soumith" : u"Soumith Chintala", + u"Nicholas Léonard" : u"Nicholas Leonard", u"nicholas-leonard" : u"Nicholas Leonard", + u"GeorgOstrovski" : u"Georg Ostrovski", + u"agibsonccc" : u"Adam Gibson", + u"raver" : u"raver119", u"raver119@gmail.com" : u"raver119", + u"nyghtowl" : u"Melanie Warrick", + u"jyt109" : u"Jeffrey Tang", + u"bergstrj@iro.umontreal.ca" :u"James Bergstra", u"bergstra@ip05.m" : u"James Bergstra" } + +PATHtoLinkedInJSONs = "/home/anne/github-research/company-affiliation/resources/linkedin_info/" +DEBUG = True +pending = [] +repos = ["CNTK", "Theano", "caffe", "deeplearning4j", "tensorflow"] + +for repo in repos: + print repo + json_file = "{}_frequentcommitters.json".format(repo) + with open(json_file, 'r') as data_file: + json_dict = json.load(data_file) + affiliated = json_dict["affiliated"] + overall = json_dict["overall"] + # Get keys of DUP_DICT + extra_names = DUP_DICT.keys() + for i in range(len(affiliated)): + name = affiliated[i] + if name in extra_names: + affiliated[i] = DUP_DICT[name] + for i in range(len(overall)): + name = overall[i] + if name in extra_names: + overall[i] = DUP_DICT[name] + new_affiliated = Set(affiliated) + new_overall = Set(overall) + final_json= {} + final_json["affiliated"] = list(new_affiliated) + final_json["overall"] = list(new_overall) + print "\nAt least {} people out of the top {} committers are affilaited with {}".format(len(final_json["affiliated"]), len(final_json["overall"]), repo) From 978a8d2163a6da23edfbc923e50ced389ac1e1cb Mon Sep 17 00:00:00 2001 From: kuannie1 Date: Tue, 9 May 2017 00:46:35 -0400 Subject: [PATCH 2/3] still working on affiliation portion, but got the most frequent committers --- .../Untitled-checkpoint.ipynb | 89 ++++++++ .../Theano_frequentcommitters.json | 2 +- company-affiliation/Untitled.ipynb | 89 ++++++++ .../affiliation_helperfunctions.py | 207 +++++++----------- company-affiliation/companyaffiliation.json | 2 +- 5 files changed, 254 insertions(+), 135 deletions(-) create mode 100644 company-affiliation/.ipynb_checkpoints/Untitled-checkpoint.ipynb create mode 100644 company-affiliation/Untitled.ipynb diff --git a/company-affiliation/.ipynb_checkpoints/Untitled-checkpoint.ipynb b/company-affiliation/.ipynb_checkpoints/Untitled-checkpoint.ipynb new file mode 100644 index 0000000..5cfc9a8 --- /dev/null +++ b/company-affiliation/.ipynb_checkpoints/Untitled-checkpoint.ipynb @@ -0,0 +1,89 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "import json\n", + "def findHistory(name):\n", + "\tpersonalHistory = []\n", + "\treadablename = name.split(\" \")\n", + "\t# print readablename\n", + "\ttry:\n", + "\t\tname_key = \"\"\n", + "\t\tif len(readablename) == 3:\n", + "\t\t\tname_key += '{}{}{}'.format(readablename[0], readablename[1], readablename[2])\n", + "\t\telif len(readablename) == 2:\n", + "\t\t\tname_key += '{}{}'.format(readablename[0], readablename[1])\n", + "\t\telif len(readablename) == 1:\n", + "\t\t\tname_key += '{}'.format(readablename[0])\n", + "\t\telif len(readablename) == 4:\n", + "\t\t\tname_key += '{}{}{}{}'.format(readablename[0], readablename[1], readablename[2], readablename[3])\n", + "\t\twith open('companyaffiliation.json', 'r') as data_file:\n", + "\t\t\tdata = json.load(data_file)\n", + "\t\t\t# print data_file\n", + "\t\t\ttry:\n", + "\t\t\t\t# print data[name_key]\n", + "\t\t\t\tprint data\n", + "\t\t\t\tprint name_key\n", + "\t\t\t\treturn data[name_key]\n", + "\t\t\texcept KeyError, Argument:\n", + "\t\t\t\tpending.append(name)\n", + "\texcept IOError, Argument:\n", + "\t\tprint \"companyaffiliation.json doesn't exist yet\", Argument\n", + "\texcept UnicodeEncodeError, Argument:\n", + "\t\tpending.append(name)\n", + "\t\tprint \"we can't decode {}\".format(name), Argument" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "ename": "NameError", + "evalue": "global name 'json' is not defined", + "output_type": "error", + "traceback": [ + "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[1;31mNameError\u001b[0m Traceback (most recent call last)", + "\u001b[1;32m\u001b[0m in \u001b[0;36m\u001b[1;34m()\u001b[0m\n\u001b[1;32m----> 1\u001b[1;33m \u001b[1;32mprint\u001b[0m \u001b[0mfindHistory\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;34m\"Frédéric Bastien\"\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m", + "\u001b[1;32m\u001b[0m in \u001b[0;36mfindHistory\u001b[1;34m(name)\u001b[0m\n\u001b[0;32m 14\u001b[0m \u001b[0mname_key\u001b[0m \u001b[1;33m+=\u001b[0m \u001b[1;34m'{}{}{}{}'\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mformat\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mreadablename\u001b[0m\u001b[1;33m[\u001b[0m\u001b[1;36m0\u001b[0m\u001b[1;33m]\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mreadablename\u001b[0m\u001b[1;33m[\u001b[0m\u001b[1;36m1\u001b[0m\u001b[1;33m]\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mreadablename\u001b[0m\u001b[1;33m[\u001b[0m\u001b[1;36m2\u001b[0m\u001b[1;33m]\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mreadablename\u001b[0m\u001b[1;33m[\u001b[0m\u001b[1;36m3\u001b[0m\u001b[1;33m]\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 15\u001b[0m \u001b[1;32mwith\u001b[0m \u001b[0mopen\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;34m'companyaffiliation.json'\u001b[0m\u001b[1;33m,\u001b[0m \u001b[1;34m'r'\u001b[0m\u001b[1;33m)\u001b[0m \u001b[1;32mas\u001b[0m \u001b[0mdata_file\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m---> 16\u001b[1;33m \u001b[0mdata\u001b[0m \u001b[1;33m=\u001b[0m \u001b[0mjson\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mload\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mdata_file\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m 17\u001b[0m \u001b[1;31m# print data_file\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 18\u001b[0m \u001b[1;32mtry\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n", + "\u001b[1;31mNameError\u001b[0m: global name 'json' is not defined" + ] + } + ], + "source": [ + "print findHistory(\"Frédéric Bastien\")" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 2", + "language": "python", + "name": "python2" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} diff --git a/company-affiliation/Theano_frequentcommitters.json b/company-affiliation/Theano_frequentcommitters.json index c2b5776..ec44dd3 100644 --- a/company-affiliation/Theano_frequentcommitters.json +++ b/company-affiliation/Theano_frequentcommitters.json @@ -1 +1 @@ -{"affiliated": ["Frederic Bastien", "Pascal Lamblin", "James Bergstra", "Arnaud Bergeron", "Olivier Delalleau", "Razvan Pascanu", "Olivier Breuleux", "nouiz", "abergeron", "David Warde-Farley", "Iban Harlouchet", "lamblin", "carriepl", "Pierre Luc Carrier", "Joseph Turian", "Nicolas Ballas", "Amjad Almahairi", "slefrancois", "Nicolas Bouchard", "Sina Honari", "Tim Cooijmans", "Yann N. Dauphin", "Cesar Laurent", "Samira Shabanian", "Harm de Vries", "Chiheb Trabelsi", "hantek", "Chinnadhurai Sankar", "Pierre-Antoine Manzagol", "Olivier Mastropietro", "Francesco Visin", "AlexLamb", "Mathieu Germain", "Ying Zhang"], "overall": ["Frederic", "Frederic Bastien", "Pascal Lamblin", "James Bergstra", "Arnaud Bergeron", "Olivier Delalleau", "Razvan Pascanu", "Fr\u00e9d\u00e9ric Bastien", "Ian Goodfellow", "Olivier Breuleux", "nouiz", "abergeron", "David Warde-Farley", "Iban Harlouchet", "lamblin", "carriepl", "--global", "Pierre Luc Carrier", "abalkin", "Roy Xue", "ChienliMa", "Joseph Turian", "bergstrj@iro.umontreal.ca", "sentient07", "Nicolas Ballas", "Tanjay94", "Amjad Almahairi", "slefrancois", "Hengjean", "Jeremiah Lowin", "Nicolas Bouchard", "Caglar", "Sina Honari", "Matthew Rocklin", "Dustin Webb", "Eric Larsen", "f0k", "Tim Cooijmans", "Yann N. Dauphin", "Mohammad Pezeshki", "desjagui@atchoum.iro.umontreal.ca", "Christof Angermueller", "notoraptor", "Cesar Laurent", "Ziye Fan", "Gijs van Tulder", "james@X40", "Josh Bleecher Snyder", "AdeB", "gdesjardins", "Samira Shabanian", "Harm de Vries", "Chiheb Trabelsi", "Dumitru Erhan", "Saizheng Zhang", "Li", "olivier@olivier-desktop", "fsavard", "Sigurd Spieckermann", "John Salvatier", "goodfeli", "hantek", "Marc-Alexandre Cote", "Chinnadhurai Sankar", "Melanie Ducoffe", "Ramana.S", "Pierre-Antoine Manzagol", "sebastien-j", "Olivier Mastropietro", "Francesco Visin", "Lijun Xue", "Vivek Kulkarni", "turian@grenat.iro.umontreal.ca", "AlexLamb", "Mathieu Germain", "Alexander Matyasko", "projects@lgcm", "serdyuk", "Ying Zhang", "Iulian Vlad Serban"]} \ No newline at end of file +{"frequent": ["sentient07", "Caglar", "Christof Angermueller", "abalkin", "Dustin Webb", "Eric Larsen", "Hengjean", "Gijs van Tulder", "f0k", "Tanjay94", "Arnaud Bergeron", "Iban Harlouchet", "Pierre Luc Carrier", "Nicolas Ballas", "khaotik", "Yann N. Dauphin", "Matthew Rocklin", "Joseph Turian", "Jeremiah Lowin", "Razvan Pascanu", "desjagui@atchoum.iro.umontreal.ca", "Roy Xue", "Mohammad Pezeshki", "Olivier Breuleux", "amrithasuresh", "notoraptor", "Sina Honari", "Chiheb Trabelsi", "Benjamin Scellier", "David Warde-Farley", "ChienliMa", "Tim Cooijmans", "Ian Goodfellow", "Amjad Almahairi", "Pascal Lamblin", "--global", "slefrancois", "Olivier Delalleau", "James Bergstra", "Fr\u00e9d\u00e9ric Bastien", "Reyhane Askari", "Nicolas Bouchard", "Cesar Laurent"]} \ No newline at end of file diff --git a/company-affiliation/Untitled.ipynb b/company-affiliation/Untitled.ipynb new file mode 100644 index 0000000..5cfc9a8 --- /dev/null +++ b/company-affiliation/Untitled.ipynb @@ -0,0 +1,89 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "import json\n", + "def findHistory(name):\n", + "\tpersonalHistory = []\n", + "\treadablename = name.split(\" \")\n", + "\t# print readablename\n", + "\ttry:\n", + "\t\tname_key = \"\"\n", + "\t\tif len(readablename) == 3:\n", + "\t\t\tname_key += '{}{}{}'.format(readablename[0], readablename[1], readablename[2])\n", + "\t\telif len(readablename) == 2:\n", + "\t\t\tname_key += '{}{}'.format(readablename[0], readablename[1])\n", + "\t\telif len(readablename) == 1:\n", + "\t\t\tname_key += '{}'.format(readablename[0])\n", + "\t\telif len(readablename) == 4:\n", + "\t\t\tname_key += '{}{}{}{}'.format(readablename[0], readablename[1], readablename[2], readablename[3])\n", + "\t\twith open('companyaffiliation.json', 'r') as data_file:\n", + "\t\t\tdata = json.load(data_file)\n", + "\t\t\t# print data_file\n", + "\t\t\ttry:\n", + "\t\t\t\t# print data[name_key]\n", + "\t\t\t\tprint data\n", + "\t\t\t\tprint name_key\n", + "\t\t\t\treturn data[name_key]\n", + "\t\t\texcept KeyError, Argument:\n", + "\t\t\t\tpending.append(name)\n", + "\texcept IOError, Argument:\n", + "\t\tprint \"companyaffiliation.json doesn't exist yet\", Argument\n", + "\texcept UnicodeEncodeError, Argument:\n", + "\t\tpending.append(name)\n", + "\t\tprint \"we can't decode {}\".format(name), Argument" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "ename": "NameError", + "evalue": "global name 'json' is not defined", + "output_type": "error", + "traceback": [ + "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[1;31mNameError\u001b[0m Traceback (most recent call last)", + "\u001b[1;32m\u001b[0m in \u001b[0;36m\u001b[1;34m()\u001b[0m\n\u001b[1;32m----> 1\u001b[1;33m \u001b[1;32mprint\u001b[0m \u001b[0mfindHistory\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;34m\"Frédéric Bastien\"\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m", + "\u001b[1;32m\u001b[0m in \u001b[0;36mfindHistory\u001b[1;34m(name)\u001b[0m\n\u001b[0;32m 14\u001b[0m \u001b[0mname_key\u001b[0m \u001b[1;33m+=\u001b[0m \u001b[1;34m'{}{}{}{}'\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mformat\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mreadablename\u001b[0m\u001b[1;33m[\u001b[0m\u001b[1;36m0\u001b[0m\u001b[1;33m]\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mreadablename\u001b[0m\u001b[1;33m[\u001b[0m\u001b[1;36m1\u001b[0m\u001b[1;33m]\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mreadablename\u001b[0m\u001b[1;33m[\u001b[0m\u001b[1;36m2\u001b[0m\u001b[1;33m]\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mreadablename\u001b[0m\u001b[1;33m[\u001b[0m\u001b[1;36m3\u001b[0m\u001b[1;33m]\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 15\u001b[0m \u001b[1;32mwith\u001b[0m \u001b[0mopen\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;34m'companyaffiliation.json'\u001b[0m\u001b[1;33m,\u001b[0m \u001b[1;34m'r'\u001b[0m\u001b[1;33m)\u001b[0m \u001b[1;32mas\u001b[0m \u001b[0mdata_file\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m---> 16\u001b[1;33m \u001b[0mdata\u001b[0m \u001b[1;33m=\u001b[0m \u001b[0mjson\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mload\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mdata_file\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m 17\u001b[0m \u001b[1;31m# print data_file\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 18\u001b[0m \u001b[1;32mtry\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n", + "\u001b[1;31mNameError\u001b[0m: global name 'json' is not defined" + ] + } + ], + "source": [ + "print findHistory(\"Frédéric Bastien\")" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 2", + "language": "python", + "name": "python2" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} diff --git a/company-affiliation/affiliation_helperfunctions.py b/company-affiliation/affiliation_helperfunctions.py index d6dadaa..7d6f74c 100644 --- a/company-affiliation/affiliation_helperfunctions.py +++ b/company-affiliation/affiliation_helperfunctions.py @@ -1,4 +1,5 @@ # This Python file uses the following encoding: utf-8 +#-*- coding: utf-8 -*- import os, sys from selenium.webdriver.common.desired_capabilities import DesiredCapabilities @@ -14,77 +15,47 @@ from sets import Set import json import re +import csv +import unicodedata + +# PATHtoLinkedInJSONs = "/home/anne/github-research/company-affiliation/resources/linkedin_info/" -PATHtoLinkedInJSONs = "/home/anne/github-research/company-affiliation/resources/linkedin_info/" DEBUG = True pending = [] - -""" -Takes in all the results of the json file and returns the info we really need in a tuple -returns: (date list, sha list, name list) -Keep in mind the names aren't in their final, simplified form. There are duplicates in this names list. -""" -def obtainDatesShasNames(filename): - commits = json.load(open(filename, 'r')) - shas = [] - names = [] - dates = [] - companies = [] - for c in commits: - #TODO: - #store dates in dates - dates.append(c["commit"]["author"]["date"].encode("utf-8")) - #store sha in shas - commiturl = c["commit"]["url"] - commiturl_list = commiturl.split("/") - shas.append(commiturl_list[-1].encode("utf-8")) - #store name in names - names.append(c["commit"]["author"]["name"]) - pass - filterLists(dates, shas, names) - return (dates, shas, names) - -""" -Gets one of each name and stores the results into a list -""" -def simplifyNameList(comprehensiveNameList): - newNameSet = Set() - for name in comprehensiveNameList: - newNameSet.add(name) - return list(newNameSet) - -def num_of_10percent(companyfile): - (dates, shas, names) = obtainDatesShasNames(companyfile) - total_committer_list = simplifyNameList(names) - return len(total_committer_list)*.1 -def num_of_20percent(companyfile): - (dates, shas, names) = obtainDatesShasNames(companyfile) - total_committer_list = simplifyNameList(names) - return len(total_committer_list)*.2 +def obtainCommittersandCount(companyfile): + filepath = "/home/anne/github-research/committer_csvs" + name_commits_dict = {} + for root, _, files in os.walk(filepath): + for f in files: + fullpath = os.path.join(root, f) + if (f == companyfile): + try: + with open(fullpath, "rt") as f_obj: + reader = csv.reader(f_obj) + for row in reader: + name = row[0].decode('utf-8') + commitcount = int(row[1]) + name_commits_dict[name] = commitcount + except ValueError: + print fullpath, " has this error: ", ValueError + except TypeError: + print fullpath, " has this error: ", TypeError + return name_commits_dict + +def num_of_percent(companyfile, percent): + name_commits_dict = obtainCommittersandCount(companyfile) + if (percent > 100): + print "\ninvalid percentage. Try again\n" + return 0 + return int(len(name_commits_dict)*(percent*.01)) """ Gets the number of commits this person has for this particular project """ def findNumCommits(name, companyfile): - numcommits = 0 - (dates, shas, names) = obtainDatesShasNames(companyfile) - for currentname in names: - if name == currentname: - numcommits += 1 - return numcommits - -""" -eliminate Jenkins, OpenStack Proposal Bot, and Openstack Jenkins -""" -def filterLists(dates, shas, names): - for i in range(len(names) - 1, -1, -1): - n = names[i] - if (n == 'OpenStack Proposal Bot') or (n == 'Jenkins') or (n == 'OpenStack Jenkins') or (n == "A Unique TensorFlower"): - index_location = names.index(n) - del names[index_location] - del shas[index_location] - del dates[index_location] + name_commits_dict = obtainCommittersandCount(companyfile) + return name_commits_dict[name] # Find this person's work history if it's saved. If not, save it to a file called "pending" def findHistory(name): @@ -106,6 +77,9 @@ def findHistory(name): data = json.load(data_file) # print data_file try: + # print data[name_key] + print data + print name_key return data[name_key] except KeyError, Argument: pending.append(name) @@ -115,48 +89,26 @@ def findHistory(name): pending.append(name) print "we can't decode {}".format(name), Argument - """ Helper function: get the top 10% of committers at a company and saves it to a file """ -def frequentcommitters(companyfile, company): - # Obtain info for all commits - (dates, shas, names) = obtainDatesShasNames(companyfile) - # Obtain list of names with each name only once - uniquenames = simplifyNameList(names) - frequentcommitters = {} - print "going through {}'s committers. progress: \n".format(companyfile) - for name_index in range(len(uniquenames)): - name = uniquenames[name_index] - print name_index + 1, "out of ", len(uniquenames), " total committers" - if (findNumCommits(name, companyfile) > 2): - frequentcommitters[name] = findNumCommits(name, companyfile) - # For debugging: - # print frequentcommitters - # Sort the frequent committers by making a histogram: - num_20percent = num_of_20percent(companyfile) - resultinglist = [] - # We do this every time until we get 10% of the committers for this companyfile - while (num_20percent > 0): - committer_name = "" - max_commits = 3 - # Getting the top committer in this list - for name in frequentcommitters: - if frequentcommitters[name] > max_commits: - committer_name = name - max_commits = frequentcommitters[name] - # add the name to the resulting list - resultinglist.append(committer_name) - # delete the highest # of commits result to get the next one - del(frequentcommitters[committer_name]) - # Decrement the num_20percent so the while loop doesn't last forever - num_20percent -= 1 - # save resultinglist into a json file with companyfile as the key - jsondict = {} - jsondict["overall"] = resultinglist +def frequentcommitters(companyfile, company, percent): + name_commits_dict = obtainCommittersandCount(companyfile) + num_percent = num_of_percent(companyfile, percent) + # Loop through name_commits_dict num_percent times. (Inefficient, I know) + committers = [] + count_max = 1 + # get the values (commit count) of the dictionary + commit_number_list = sorted(name_commits_dict.values())[-1*num_percent:] + print commit_number_list + for name in name_commits_dict: + count = name_commits_dict[name] + if (count in commit_number_list): + committers.append(name) + jsondict = {"frequent": committers} with open('{}_frequentcommitters.json'.format(company), 'w') as f: json.dump(jsondict, f) - return resultinglist + return jsondict #Emergency linkedin processing. if we ever need this method again def getLinkedInInfo(name, url): @@ -198,27 +150,26 @@ def getLinkedInInfo(name, url): #Given company & work history, look for the word "Tensorflow", or "Google" for the tensorflow project #Look for "CNTK" or "Microsoft" for the CNTK project -def findNumEmployees(project, committers_list): +def findNumEmployees(companyfile, repo, percent): numEmployees = 0 employeeList = [] company = "" # company is the phrase to look for in the linkedin data or email domain association - if (project == "/home/anne/ResearchJSONs/tensorflow-tensorflow-commits.json"): + if (repo == "tensorflow"): company += "Google" - elif (project == "/home/anne/ResearchJSONs/CNTK-Microsoft-commits.json"): + elif (repo == "CNTK"): company += "Microsoft" - elif (project == "/home/anne/ResearchJSONs/deeplearning4j-deeplearning4j-commits.json"): + elif (repo == "deeplearning4j"): company += "Skymind" - elif (project == "/home/anne/ResearchJSONs/Theano-Theano-commits.json"): + elif (repo == "Theano"): company += "Montr" - elif (project == "/home/anne/ResearchJSONs/caffe-BVLC-commits.json"): + elif (repo == "caffe"): company += "Berkeley" - print "frequent committers: ", committers_list + committers_list = frequentcommitters(companyfile, repo, percent)["frequent"] #looping through frequentcommitters to see if this person has worked at the company for name_index in range(len(committers_list)): name = committers_list[name_index] - # print name_index, " out of ", len(committers_list), "frequent committers" try: # Find this person's linkedin history personalHistory = findHistory(name) #pulls up the personal work history of this person @@ -241,29 +192,19 @@ def findNumEmployees(project, committers_list): return employeeList, numEmployees if __name__ == '__main__': - # frequentcommitterslist = frequentcommitters(companyfile) - # Getting last minute linkedin data - # committerprofiles = {u'sonaliii': "https://www.linkedin.com/in/sonali-dayal"} - # for name in committerprofiles: - # print name - # getLinkedInInfo(name, committerprofiles[name]) - - companyfilepath = "/home/anne/ResearchJSONs/" + "deeplearning4j-deeplearning4j-commits.json" - repo = 'deeplearning4j' - - # frequentcommitters(companyfilepath, repo) - - - resultingfile = '{}_frequentcommitters.json'.format(repo) - with open(resultingfile, 'r') as data_file: - jsondict = json.load(data_file) - committers = jsondict["overall"] - - affiliatedcommitters = findNumEmployees(companyfilepath, committers)[0] - print affiliatedcommitters - - jsondict["affiliated"] = affiliatedcommitters - - f = open(resultingfile, 'w') - json.dump(jsondict, f) - f.close() + repo = "Theano" + csv_file = "Theano-Theano-dict.csv" + percent = 10 + + # print obtainCommittersandCount(csv_file) + # print frequentcommitters(csv_file, repo, percent) + + print findNumEmployees(csv_file, repo, percent)[0] + print findHistory("Frédéric Bastien") + # json_file = '{}_frequentcommitters.json'.format(repo) + # with open(json_file, 'r') as data_file: + # jsondict = json.load(json_file) + # committers = jsondict["frequent"] + + # affiliatedcommitters = findNumEmployees(csv_file, repo, percent)[0] + # print "affiliated, ", affiliatedcommitters diff --git a/company-affiliation/companyaffiliation.json b/company-affiliation/companyaffiliation.json index dfb478e..fb0f1d0 100644 --- a/company-affiliation/companyaffiliation.json +++ b/company-affiliation/companyaffiliation.json @@ -1 +1 @@ -{"CoryWright": ["iland Cloud", "Rackspace", "Rackspace", "Hush Labs", "Rackspace", "Rackspace", "Chinese Language", "Bachelor of Arts, History", "SaltStack, License 0xFE4C69B1", "Red Hat, License 804005746415516", "Linux Journal", "Linux Journal", "Linux Journal", "Linux Journal", "Linux Journal"], "NanRosemaryKe": ["Montreal Institute for Learning Algorithms (MILA)"], "NicolasPinto": ["Apple", "Perceptio", "MIT", "Harvard University", "Harvard University", "MIT", "MIT", "CERN", "Prof. Oh / CV Lab / CBNU (South Korea)", "", "", "", "MIT BCS", "Python Software Foundation", "Python Software Foundation", "MIT BCS", "Computational and Systems Neuroscience Committee", "Microsoft Research", "Google", "DARPA", "NSF", "NVIDIA", "NSF / NCSA", "Amazon AWS", "Amazon AWS", "Ph.D, Computational Neuroscience / AI", "M.S., AI/Neuroscience", "MS, Information, Systems, Communication", "M.S, Computer Science / Artificial Intelligence", "M.S, Computer Science / Software Engineering", "MS, Computer Science"], "UnderdogGeek": ["Bhaskar Mitra on LinkedIn", "Bhaskar shared", "Microsoft", "Microsoft", "Amazon", "Hewlett-Packard", "Floranta", "Bachelor of Engineering (BE), Computer Science", "BE, Computer Science", "Research Doctorate, Computer Science", "", "Proceedings of the ACM International Conference on Research and Development in Information Retrieval (SIGIR)", "Proceedings of the 23rd ACM International Conference on Information and Knowledge Management (CIKM)", "Proceedings of the 38th international ACM SIGIR conference on Research & development in information retrieval", "Proceedings of the 24th ACM International Conference on Information and Knowledge Management (CIKM)", "WWW'16, WWW World Wide Web Consortium (W3C)", "Arxiv.org"], "sarvesh-ranjan": ["11bilionclub", "Ola (ANI Technologies Pvt Ltd)", "Cisco", "Cisco", "Wipro", "IBM India Research Lab", "Impetus", "Integrated Dual Degree (Bachelors & Masters), Computer Science and Engineering", "High School, Mathematics", "Family Giving Tree", "Second Harvest Food Bank", "International Intern"], "ZhouWang": ["Microsoft", "Fraunhofer-Gesellschaft", "Vereinigte Staaten 8213302"], "MartinEnglund": ["United States 7568092", "", ""], "KentWang": ["Kent Wang", ""], "HirofumiIchihara": ["NTT (Nippon Telegraph and Telephone Corporation)", "NTT (Nippon Telegraph and Telephone Corporation)", "Master's degree, Computer Science"], "DougHellmann": ["Red Hat", "OpenStack", "Python Software Foundation", "O'Reilly & Associates", "Python community", "Addison-Wesley", "MS, Computer Science"], "VincentUntz": ["SUSE", "Association des utilisateurs francophones d'OpenStack", "OpenStack Foundation", "openSUSE Project", "GNOME Foundation", "openSUSE Project", "openSUSE Project", "SUSE", "SUSE / Novell", "GNOME Foundation", "GNOME Foundation", "GNOME Foundation", "Novell", "Institut National Polytechnique de Grenoble / LIG", "Institut National Polytechnique de Grenoble / ENSIMAG", "Institut National Polytechnique de Grenoble / LSR, LIG, ENSIMAG", "Institut National Polytechnique de Grenoble / ESISAR, ENSIMAG", "Institut National Polytechnique de Grenoble / LSR", "Sun Microsystems"], "SinaHonari": ["Universit de Montral", "Nvidia", "Universit de Montral", "Morgan Stanley", "Concordia University", "Researcher", "Researcher", "Researcher on market design techniques", "Universit de Montral", "Concordia University", "Concordia University", "trading agent competition international forum", "Doctor of Philosophy (PhD), Computer Science", "Master of Science (MS), Computer Science, 4.15/4.3"], "PierreLucCarrier": ["Montreal Institute for Learning Algorithms (MILA)"], "shrutiranade38": ["M.S, Quality Management", "B. Pharm Sc, Pharmaceutical Sciences"], "agibsonccc": ["Galvanize Inc", "Skymind.io Deep Learning support services training via deeplearning4j.org", "Zipfian Academy", "CritSend", "Clever Cloud Computing", "Mashape", "ITOxygen", "ITOxygen", "Coursera", "Coursera", "Dropped out, Computer Science/Data Science MIS, 3"], "ArnaudBergeron": ["Montreal Institute for Learning Algorithms (MILA)"], "wangxiyuan": ["MD Anderson Cancer Center", "Texas A&M University", "Chinese Academy of Sciences", "Private Tutor", "Shandong Agricultural University", "Shandong Agricultural Univerity", "Master's degree, Biotechnology, 4/4", "Student researcher, Neuroscience, Graduate Assay and Experience 98/100", "Bachelor of Science (B.S.), Biology/Biological Sciences, 3.55/4", "High School, Science, A", "Shandong Agricultural University", "China", "China", "", "", "", "Vice President", "Captain of Secretary", "Leader in Speech Group", "", "", "", "", "", "", "Score: 527", "Score: 522", "Journal of biomedical engineering"], "ThomasBechtold": ["Verizon- Information Technology", "State of New Jersey", "Master of Science (M.S.), Telecommunications and Computing Management"], "ShuquanHuang": ["Duke University", "University of Virginia", "Ph.D. student, Electrical & Computer Engineering", "BS, EE major, Engineering Business and CS minor", "Ten thousand villages", "Independent Animal Rescue (IAR)"], "KevinKirkpatrick": ["Scentsy, Inc. (Corporate Office)", "Scentsy, Inc.", "Scentsy, Inc.", "Hewlett-Packard", "Hewlett-Packard", "Hewlett-Packard", "Hewlett-Packard", "Boise Hawks Baseball Club", "MBA, Marketing, Finance, Entrepreneurship", "BS, Chemical Engineering"], "SiddharthAgrawal": ["Amazon", "MLPACK", "ICML Workshop on MLOSS 2015", "M.E., Computer Science and Engineering", "B.E.(Hons.), Computer Science and Engineering", "Coursera", "Coursera", "Coursera", "Udacity", "edX"], "JeremyStanley": ["Instacart", "Sailthru", "Sailthru", "Collective", "Collective", "Collective", "Ernst & Young", "Ernst & Young", "Generali USA", "First Round Review", "tech.instacart.com", "Medium", "Diginomica", "First Round Review", "AdExchanger", "AdExchanger", "AdExchanger", "AdExchanger", "MBA", "BS, Mathematics"], "StefT": ["City of Boston Police Department", "City of Boston Police Department", "City of Boston Police Department", "Krav Maga Worldwide, Inc.", "Protective Services Gruppe", "City of Warwick", "Sig Arms Academy", "Rhode Island Municipal Police Academy", "Rhode Island Municipal Police Academy", "Fairfax County Government", "MS, Urban Affairs", "BA, Sociology"], "sentient07": ["Theano", "Enorgo", "Electronics Engineering", ""], "MarkusBeissinger": ["Lobe", "Microsoft", "Osus, Inc.", "Jam4Life", "MSE Computer Science, Artificial Intelligence", "BS in Economics, Operations & Information Management, Marketing, Entrepreneurship", "BSE, Computer Science"], "DavidZ.Chen": ["David Z. liked", "David Z. liked", "David Z. liked", "David Z. liked", "David Z. liked", "David Z. liked", "Google", "LinkedIn", "Microsoft", "Yale University", "PaperG", "Wiley Interdisciplinary Reviews: Computational Molecular Science"], "CaoShuFeng": ["The Chinese Ceramic Society", "Bachelor of Applied Science (B.A.Sc.), Organic Chemistry, A"], "LorinHochstein": ["Netflix", "SendGrid", "Nimbis Services, Inc.", "Information Sciences Institute", "University of Nebraska-Lincoln", "University of Maryland, College Park", "Boston University", "Xiphos Technologies", "Matrox", "27th IEEE International Symposium on Software Reliability Engineering (ISSRE '16)", "IEEE Software", "O'Reilly Media", "OpenStack Foundation", "Workshop on Parallel Programming on Accelerator Clusters", "NASA Journal of Innovations in Systems and Software Engineering", "Journal of Systems and Software", "ACM Symposium on Cloud Computing", "PhD, Computer Science", "MS, Electrical Engineering", "BEng, Computer Engineering", "DEC, Pure & Applied Science"], "DolphMathews": ["Rackspace Hosting", "Akimeka", "Laszlo Rain", "Freelance Web Design & Development", "QikCom, Inc.", "Bachelor of Science, Electrical & Computer Engineering", "United States US20120233668 A1"], "AbhinavUpadhyay": ["NetBSD", "Pramati Technologies", "NetBSD", "Ubuntu", "Hover Technologies Pvt. Ltd", "Packt Publishing", "Coursera", "Coursera", "Coursera", "Coursera", "Udacity", "Coursera Course Certificates, License RBS7D7S6C6AQ", "Coursera Course Certificates, License GDZRVJHA4HK7", "AsiaBSDCon 2012, Tokyo", "EuroBSDCon 2016, Belgrade", "Score: 107", "Score: 323/340", "B.Tech, Information Technology", "", "Pramati Technologies Pvt. Ltd.", "", "Developer"], "ChristosTsirigotis": ["Dipl. Eng., Electrical and Computer Engineering", "High School"], "ThomasMesnard": ["EPFL (cole polytechnique fdrale de Lausanne)", "Montreal Institute of Learning Algorithm, Universit de Montral", "Institut Curie", "Master of Science (M.Sc.), Mathematics, Machine Learning and Vision", "Computer Science, Mathematics and Neuroscience", "CPGE, Mathematics and Physics", "Neural Computation", "ICML 2015 Deep Learning Workshop", "NIPS 2016. Computing with Spikes Workshop.", "Arxiv", "Arxiv", "cole normale suprieure", "Lyce Saint Louis", "cole normale suprieure"], "MattGraham": ["Doctor of Philosophy (PhD), Probabilistic Machine Learning", "Master of Science (by Research), Neuroinformatics and Computational Neuroscience, Distinction", "Master of Engineering (MEng), Information and Computer Engineering, First-Class Honours (Part IIA) / Distinction (Part IIB)", "University of Edinburgh", "University of Cambridge", "Granta Design", "Nrich", "Mott MacDonald", "Proceedings of the 19th International Conference on Artificial Intelligence and Statistics", "STEMNET"], "Marc-AlexandreCote": ["Maluuba", "Nuance Communications", "Nuance Communications", "Doctor of Philosophy (PhD), Computer Science", "Master's degree, Computer Science", "Bachelor's degree, Computer Science"], "thuyenvn": ["UC Santa Barbara", "Magic Leap", "Doctor of Philosophy (PhD), Electrical and Computer Engineering", "Master of Science (M.S.), Electrical and Computer Engineering", "Bachelor of Engineering (BEng), Electrical Engineering"], "DavidRipton": ["Marsh", "Marsh", "Willis"], "LuisAGarcia": ["IBM", "IBM", "IBM", "IBM", "The University of Texas at El Paso", "IBM", "IBM", "The University of Texas at El Paso", "United States US20110267422", "United States US8621462", "IBM", "IBM", "High Assurance Systems Engineering Symposium,10th IEEE", "Software Engineering and Knowledge Engineering", "Master of Science, Computer Science", "Bachelor of Science, Computer Science, cum laude"], "BrianElliott": ["Google", "Google", "Google", "Monsoon Commerce", "Alibris, Inc.", "Alibris, Inc.", "Alibris, Inc.", "Boston Consulting Group (BCG)", "Boston Consulting Group (BCG)", "San Francisco Friends School", "Internet Retailer", "The Oregonian"], "eraly": ["Susan Eraly on LinkedIn", "Susan shared", "Skymind.io - Deep learning for Industry", "Galvanize Inc", "Galvanize Inc", "NVIDIA", "ARM", "HP", "Bachelor of Engineering (BE), Electrical Engineering", "Coursera Verified Certificates, License 4AVGRBDHQR", "Coursera Verified Certificates, License 4J8FJ44NAN", "Coursera Verified Certificates, License DSPJEVKA3D", "Coursera Verified Certificates, License L9GA6Z48JA", "Coursera Verified Certificates, License UVJ27G3B2P", "Coursera Verified Certificates, License P9PRV2G2C6", "Coursera Verified Certificates, License TUULKP9KDJ", "Coursera Verified Certificates, License 5CDTJDWUTT"], "AndrewSelle": ["Google", "Walt Disney Animation Studios", "Walt Disney Animation Studios", "Industrial Light + Magic", "PhD, Computer Science", "MS, Computer Science", "BS, Computer Science, Mathematics"], "CesarLaurent": ["Montreal Institute for Learning Algorithms (MILA)"], "PhilippKranen": ["Microsoft", "Microsoft", "Microsoft Research", "RWTH Aachen University", "Siemens Corporate Research, Princeton NJ, USA", "Grnderkolleg Aachen", "Dr. rer. nat., Informatik", "Diplom, Informatik", "", ""], "nicholas-leonard": ["Twitter", "Element Inc.", "Universit de Montral", "Canadian Forces", "Canadian Forces", "Canadian Space Agency", "Canadian Forces", "ADIROUM", "Queen of Canada", "Master's Degree, Computer Science (Deep Learning)", "Bachelor's Degree, Computer Science", "High School"], "JulienDemouth": ["NVIDIA", "NVIDIA", "Ubisoft", "Pohang University of Science and Technology", "INRIA", "Coursera", "GPU Technology Conference (GTC) 2012", "Different editors", "Ph.D, Computer Science (Computational Geometry)"], "SanderDieleman": ["DeepMind", "got-djent.com", "Ghent University", "Spotify", "VTK Gent", "Think Wize", "Digital Effects", "IEEE International Conference on Acoustics, Speech, and Signal Processing (ICASSP 2014)", "Advances in Neural Information Processing Systems", "Proceedings of the 14th International Society for Music Information Retrieval Conference (ISMIR 2013)", "Proceedings of the 12th International Society for Music Information Retrieval Conference (ISMIR 2011)", "Kaggle, Booz Allen Hamilton", "Kaggle, Galaxy Zoo, Winton Capital", "Master, Engineering, Computer Science, ICT", "Bachelor, Engineering, Computer Science"], "mronian": ["Google Summer of Code", "IBM India Research Labs", "DatabaseUSA", "Tata Consultancy Services", "Bachelor of Technology (B.Tech.), Master of Technology (M.Tech), Computer Science", "", "", "Score: 275/408", "Score: 91,50%", "Score: 93.80%", "Governor"], "ChinnadhuraiSankar": ["Universit de Montral", "Twitter", "Qualcomm", "Qualcomm", "The University of British Columbia", "ICLR 2016 workshop, May 2-4, Puerto Rico", "Information Theory Workshop (ITW), 2011 IEEE", "Bachelor of Technology, Electrical Engineering", "Master of Science, Computer Engineering", "Doctor of Philosophy (PhD), Deep learning", "", "MITACS ,Canada", "CBSE India"], "MustafaIspir": ["Google", "Synopsis", "Synplicity", "Aselsan A.S.", "MilSOFT"], "AndreasJaeger": ["Watts Water Technologies", "Watts Water Technologies", "Watts Water Technologies", "Bobcat Company", "Bobcat Company", "Ingersoll Rand", "Thermo King", "MBA, Finance", "MIM, Masters International Management", "BS in Business Administration, European Business (Dipl.-Kfm.EBS), Finance, Accounting, Taxes (BIFIST)", "EBS, European Business School"], "e-lin": ["YI-JHEN", "YI-JHEN", "YI-JHEN", "YI-JHEN", "YI-JHEN", "YI-JHEN", "Groovenauts", "Garmin International", "Compal", "Compal", "Coursera Course Certificates, : X3DECA33SJBZ", "Japan Foundation and Japan Educational Exchanges and Services", "Japan Foundation and Japan Educational Exchanges and Services", "Japan Foundation and Japan Educational Exchanges and Services", "Taiwan"], "KumarKrishnaAgrawal": ["Montreal Institute for Learning Algorithms (MILA)"], "BartvanMerri\\xebnboer": ["Twitter", "Facebook", "Self-Employed", "TEDxWarwick", "AIESEC", "GroeneKruis Domicura", "Paris International Model United Nations (PIMUN)", "European Commission", "SOS Children's Villages", "Doctor of Philosophy (Ph.D.), Machine learning, A", "Master of Science (MSc), Complex Systems Science (Erasmus Mundus), A", "Master of Science (MSc), Complex Systems Science (Erasmus Mundus), GPA 3.9/4.0", "Bachelor of Science (BSc), Mathematics and Business Studies, First Class Honours", "Business, Israeli politics, Middle Eastern history, Ethics, A (93%)"], "SimonDENEL": ["Certifup", "Institut Langevin", "Thales Research & Technology", "CNS Conseil", "Thales Research & Technology", "A.L.S.E", "Coursera Course Certificates, Lizenz PG3P3H257TUK", "Coursera Course Certificates, Lizenz 4K2FT4P3W6B2", "Stanford University", "Coursera Course Certificates, Lizenz R5V2Z9T96UEK", "Frankreich FR3014221", "Master's degree, Embedded Computing Systems, With highest honors", "Classe prparatoire PT, Sciences industrielles", "", "Internat d'Excellence de Cachan"], "RussellBryant": ["Red Hat", "http://www.astricon.net", "O'Reilly Media, Inc.", "O'Reilly Media", "O'Reilly Media", "United States 9026864"], "Alex Meade": ["Lexmark", "Alex Meade Bikeworks, LLC", "Lexmark International", "Lexmark", "Lexmark", "MS, Mechanical Engineering", "BS, Mechanical Engineering", "BA, Liberal Arts"], "YifeiFeng": ["Yifei liked", "Google", "Microsoft", "Olin College of Engineering", "Microsoft", "IEEE Xplore", "Master of Science (M.S.), Electrical Engineering", "Bachelor of Science (B.S.), Electrical and Computer Engineering"], "RenatoUtsch": ["Google", "DCC UFMG", "CTWEB", "Bachelor of Computer Science"], "LiLao": ["Google"], "IbanHarlouchet": ["Statistique Canada", "Laboratoire MILA, Dpartement d'informatique et de Recherche Oprationnelle, Universit de Montral", "Odotech", "Ministre de lAlimentation, de lAgriculture et de la Pche", "Semestre d'hiver au Baccalaurat en informatique", "Matrise, Statistiques", "Matrise, Statistiques et conomtrie"], "Saxenauts": ["FireEye, Inc.", "Glassbeam, Inc", "Lifograph", "Cybage", "Master's of Science, Computer Software Engineering, 3.40", "P.G. Diploma in Advance Computing, Advance Computing, 3.5 CGPA", "Bachelor of Technology (BTech), Computer Science, 3.6 CGPA"], "PhilStahlfeld": ["Google", "Bucknell University", "Northrop Grumman Corporation", "Geisinger Medical Center", "President", "Federal Aviation Administration, License 3539082", "Bachelor of Science (B.S.), Computer Engineering", "", "Journal of Biomolecular NMR"], "kvmanohar22": ["Kharagpur RoboSoccer Students' Group", ""], "ChrisBasoglu": ["United States 7,272,670", "United States 7,103,102", "United States 7,095,785", "United States 7,051,123", "United States 6,434,649", "United States 6,347,344", "United States 5,910,117", "United States 5,528,302", "United States 5,492,125", "EE Times", "IEEE Transactions on Circuits and Systems for Video Technology", "Proceedings of SPIE Media Processors 2002", "Proceedings of SPIE Media Processors 2002", "IEEE Micro", "Real-Time Imaging", "Proceedings of SPIE Media Processors 2000", "Proceedings of SPIE Media Processors 2000", "Proceedings of SPIE Image and Video Communications and Processing 2000", "International Journal of Imaging Systems and Technology", "Parallel Computing", "International Journal of Imaging Systems", "IEEE Transactions on Education", "Proceedings of SPIE Medical Imaging 1996: Image Display", "Proceedings of SPIE Medical Imaging 1998: Image Display", "Proceedings of SPIE Medical Imaging 1998: Image Display", "Proceedings of SPIE Medical Imaging 1998: Image Display", "IEEE Transactions on Information Technology and Biomedicine", "Real-Time Imaging", "Proceedings of SPIE Medical Imaging 1997: Image Display", "Proceedings of SPIE Medical Imaging 1997: Image Display", "Proceedings of SPIE Medical Imaging 1997: Image Display", "Ultrasonic Imaging"], "kairat_kushaev": ["Mirantis", "Opensoft", "NetCracker", ", Computer Engineering, 4.95"], "SamiraShabanian": ["Universit de Montral", "Computer Science, Machine Learning", "Doctor of Philosophy (Ph.D.), Mathematics", "The First Workshop in \"Fixed Point Theory and Application\"", "The Second Workshop in \"Fixed Point Theory and Application\""], "RohanKanade": ["Red Hat", "Izel Technologies Pvt. Ltd.", "NTT DATA Americas", "Self-Employed", "Prolinkd", "Nextech Solutions", "Nextech Solutions", "OpenStack Foundation", "Sun Microsystems", "Sun Microsystems", "Bachelor of Science, Computer Science, Distinction ( 79.97 %)"], "YufangZhang": ["Pharmanet-i3"], "GerardoPorras": ["Timac AGRO Espaa", "Behr Iberia", "Asaja Crdoba"], "gdesjardins": ["Google DeepMind", "DeepMind Technologies", "Doctor of Philosophy (Ph.D.), Computer Science (in progress)", "Master's degree, Computer Science", "Bachelor of Engineering (B.Eng.), Computer Engineering"], "LukeIwanski": ["Codeplay Software Ltd", "Codeplay Software Ltd", "Codeplay Software Ltd", "Heehaw Digital", "Games Development"], "YongqiangWang": ["Microsoft", "University of Cambridge", "Microsoft Research, Redmond", "The University of Hong Kong", "Microsoft", "Microsoft Research Asia, Beijing, P.R.China", "United States US8369611", "United States US20100246941", "United States US20100239168"], "DarrenGarvey": ["YouView TV Limited", "Evi Technologies (formerly True Knowledge)", "360 Systems Ltd", "Bachelor of Science (BSc), Physics"], "ravikumar-venkatesan": ["Hewlett-Packard Enterprise", "Cisco", "HP", "Walmart.com", "Federal Reserve Bank of San Francisco", "Kana", "NetApp", "Oracle", "Offshore Digital Services/Sonata Software", "TeachTheFutureFoundation INC", "Master's, Business Administration and Management, General"], "YusukeIde": ["Rocknel Fastener", "", ""], "houmingwang": ["Charles River Laboratories", "MIT", "Purdue University", "China Agricultural University", "Purdue University", "Purdue University", "AAI, seatle", "Purdue University", "Chinese Government", "The Journal of Experimental Medicine", "PLoS ONE", "BMC Immunology", "The Journal of Experimental Medicine", "The Journal of Immunology", "Gastroenterology", "Mucosal Immunology", "Doctor of Philosophy (PhD), Immunology", "Master of Science (MS), Veterinary Medicine", "AVMA"], "IlliaPolosukhin": ["Illia shared", "Illia liked", "Illia liked", "Google Research", "Salford Systems", "Udacity", "Master's degree, Applied Math (and Computer Science)", ""], "AdrianSmith": ["Tha Alumni Music Group"], "AnandShanmugam": ["HCL Technologies", "CSC", "HCL Technologies", "Alcatel-Lucent", "BE, Electronics and Communication", "Mirantis, License 100-273"], "FrancescoVisin": ["Montreal Institute for Learning Algorithms (MILA)"], "GrantMurphy": ["Merck", "Princeton University", "Princeton University", "Princeton University", "Doctor of Philosophy (Ph.D.), Chemistry (Biochemistry/Biophysics)", "Bachelors Degree, Chemistry with Honors, Biology with Honors"], "FabienBoucher": ["Chauvin Arnoux", "Pyrocontrole", "Technique de commercialisation, Commerce international / commerce", "Licence, Ingnierie mcatronique, robotique et automatisation, Licence professionnelle", "BTS M.A.I, Mcanique des Automatismes Industriels", "BEP et BAC PRO MSMA, Maintenance des systmes mcaniques automatiss"], "AdriaPuigdomenech": ["Google DeepMind", "Microsoft", "TU Mnchen", "Intel Corporation", "TU Mnchen", "Fundaci puntCAT", "Universitat Autnoma de Barcelona", "Universitat Autnoma de Barcelona (Computer engineering)", "Master of Science (MSc), Informatics", "Computer engineering, Engineering", "Mathemathics degree, Maths"], "LudwigSchmidt-Hackenberg": ["EyeEm", "Techn. University of Kaiserslautern / TU", "Telefnica Digital", "Fraunhofer Institute for Digital Media Technology", "Fraunhofer Institute for Digital Media Technology", "Accenture", "BMW", "Diplomingenieur, Medientechnologie", "Study Abroad"], "KentonLee": ["University of Washington", "Doctor of Philosophy (PhD), Computer Science", "Bachelor of Science in Engineering, Computer Science", ""], "lucasb-eyer": ["RWTH Aachen University", "Kindred.ai", "Google", "Mint Medical", "Digatron Industrie Elektronik GmbH", "Dipl. Ing., Computational Engineering Science"], "WayneXiong": ["Wayne liked", "Wayne liked", "Wayne liked", "Wayne liked", "Wayne liked", "Wayne liked", "Microsoft", "Microsoft", "Microsoft"], "BrynKeller": ["Intel Labs", "Intel Corporation", "Intel Labs", "Jenkon", "Jenkon", "Jenkon", "Occupational Health Research", "US Army", "Coursera", "Bachelor of Science (BS), Mathematics", ""], "caisq": ["Google", "The MathWorks", "The MathWorks", "Boston University", "Boston University", "MIT", "Northeastern University", "Boston University", "Johns Hopkins University", "Vision Research", "Proceedings of the 27th Annual Intl. Conf. IEEE-EMBS,", "Journal of the Association for Research In Otolaryngology", "Journal of Tsinghua University (Sci. & Tech.)", "Proceedings of the 8th Intl. Seminar on Speech Production", "Journal of the Acoustical Society of America", "Journal of the Acoustical Society of America", "Journal of Neuroscience", "PLoS ONE", "Proc. 14th Annual Conference of the International Speech Communication Association (InterSpeech 2013)", "Brain and Langauge", "Frontiers in Human Neuroscience", "PhD, Health Science and Technology", "Master of Science, Electrical Engineering and Computer Science", "Master of Science in Engineering, Biomedical Engineering, 4.0 / 4.0", "Bachelor of Engineering, Biomedical Engineering", "", ""], "PaulDubs": ["ICTJOB Deutschland GmbH", "Paul Dubs IT Consulting", "Happy Systems GmbH", "shork GmbH", "Benjamin Lochmann New Media GmbH", "ADMS 2013", "Master of Science (MSc), Informatik"], "JamesEBlair": ["Hewlett-Packard", "OpenStack", "Rackspace Hosting", "UC Berkeley", "Free Software Foundation"], "NikolajStarodubtsev": ["Qiwi", "SmartLabs", "ARQA Technologies", "ARQA Technologies", "Novosoft LLC", "Specialist Computer Training Center", "ICAgile", "", ""], "AlexanderTivelkov": ["Mirantis", "Mirantis", "Argussoft Company", "Anton Malevsky Memorial World Cup", "Master of Science (MS), Applied Mathematics", ""], "crockpotveggies": ["New York Times", "Bernie A.I.", "3 Tier Logic", "Earhart DNA Project", "3 Tier Logic", "Alloy Technologies, Inc.", "Rubik", "ACG Corp.", "Snow4Innocents", "Holy Innocents Children's Hospital", "PlanSea Entertainment", "Bachelors, Business, Health Sciences", "Honours Secondary Diploma"], "Ewan Mellor": ["Freelancing", "BA (Hons), MA (Cantab)"], "AndreHolzner": ["Andre Holzner gefllt Folgendes:", "University of California at San Diego", "CERN", "EU Project", "ETH Zurich", "Kaggle"], "JaredCulp": ["Phunware, Inc.", "Intentional Futures", "NBBJ Design", "Hollwich Kushner LLC", "Master's degree, Advanced Architectural Design", "Bachelor of Architecture (BArch), Architecture"], "VinuRajashekhar": ["Google", "Microsoft", "RTEMS Project", "EPFL", "IIT Kharagpur", "National Council of Educational Research and Training (NCERT)", "Dual Degree (M.Tech and B.Tech), Computer Science"], "MohammadPezeshki": ["Laboratory for Intelligent Multimedia Processing (IMP) - Amirkabir University of Technology (Tehran Polytechnic)", "Laboratory of Human Language Technology and Machine Learning - Amirkabir University of Technology (Tehran Polytechnic)"], "TillHoffmann": ["Sonalytic", "A commodities trading advisor", "A commodities trading advisor", "Self employed", "UNamur", "University of Oxford", "University of Oxford", "Carl Zeiss Group", "Physical Review E", "Physical Review E", "Temporal Networks. Springer", "Doctor of Philosophy (PhD), Applied Mathematics", "Master of Physics, Theoretical physics and astrophysics"], "R\u00e9myL\u00e9one": ["Inria", "Tlcom ParisTech | Thales Communications & Security (CIFRE)", "IEEE Internet of Things Journal (Volume:1 , Issue: 5 )", "ICC 2015", "Sensornets 2013", "EWSN 2015", "Algotel 2013", "Master's degree (Research branch), Computer Networking and Telecommunications", "Master's degree, Computer Engineering - Applied Mathematics", "Classe prparatoires (MPSI - MP-Info), Mathematics, Physics and Computer Science", "Bac S - SI, Mention Bien", "Paris Montagne"], "LaurentMazare": ["Jane Street Capital", "Goldman Sachs", "LexiFi", "Amadeus", "ENC Cachan - LSV", "Verimag Lab", "INPG, ENSIMAG"], "LukeIwanski_": [], "ZakariaHaque": ["Google", "UC San Diego", "Qualcomm", "Ph.D. student (on leave), Computer Science", "Bachelor's degree, Computer Science, Magna Cum Laude"], "DanielMan\u00e9": ["Google", "Palantir Technologies", "University of Chicago", "University of Chicago", "Phoenix Capital Partners", "The Pritzker Organization", "Moodys Corporation", "Smith Barney", "Techforge LLC", "BA, Philosophy & Computer Science", ""], "marianitadn": ["Adobe", "Kalon Global Group, Inc.", "Kalon Global Group, Inc.", "Red Hat", "uberVU", "Foreman", "Faculty of Mathematics and Computer Science - University of Bucharest", "Cronian Labs", "Mathematics and Computer Science Students Union", "Children's University - eucenet Romania", "Faculty of Mathematics and Computer Science, University of Bucharest", "ROSEdu", "ROSEdu", "Master", "BS", "High School"], "GabrielWainer": ["Carleton University", "Over 300 publications available in this link", "Proceedings of the 2012 Winter Simulation Conference. Berlin, Germany. IEEE"], "SergeyNikitin": ["Salym Petroleum Development", "Salym Petroleum Development", "Salym Petroleum Development", "ZAO \"Ermakovskoe PRS\"", "ZAO \"Ermakovskoe PRS\"", "Round II, Completion and Well Intervention", "Round I, Completion and Well Intervention", "Master's degree, Development and exploitation of oil and gas fields, 4", "Gubkin Russian State University of Oil and Gas", "Shell", "Shell"], "RohanJain_": ["edX"], "Radu": ["Fyusion, Inc", "Open Perception, Inc.", "Willow Garage", "Stanford University", "Technische Universitt Mnchen", "Stanford Research Institute", "Technical University of Cluj-Napoca", "Advisory Board", "Senior Member", "Technical Committee on Service Robotics Chair", "Technical Committee on Computer & Robot Vision Chair", "IEEE Robotics and Automation Society", "International Conference on Advanced Robotics (ICAR)", "Open Source Software (OSS) World Challenge", "Robotics Science and Systems (RSS)", "EURON (European Robotics Network)", "PhD (Dr. Rer. Nat.), Computer Science"], "JulienRebetez": ["MindMaze", "HEIG-VD", "Ecole Polytechnique Fdrale de Lausanne (EPFL)", "IICT at HEIG-VD", "Google", "Iomedia Communication S.A", "CIAT", "Iomedia Communication S.A", "Google Summer of Code 2006", "Rpublique et Canton du Jura", "European Symposium on Artificial Neural Networks, Computational Intelligence and Machine Learning", "International Conference on Pattern Recognition (ICPR)", "International Symposium on Wearable Computers (ISWC)", "IWANN", "ICPRAM", "Master, Information Technology", "Bachelor of Science HES-SO, Informatique", "BS, Information Technology", ""], "BrianRosmaita": ["Rackspace, the #1 managed cloud company", "Rackspace, the #1 managed cloud company", "Rackspace, the #1 managed cloud company", "Rackspace", "Rackspace", "Rackspace", "VTLS", "VTLS", "VTLS", "Hamilton College", "SUNY Cortland", "Kent State University", "Andersen Consulting", "Texas Instruments", "Burroughs Corporation", "PhD, Philosophy", "M.S., Computer Science", "B.A., Philosophy"], "GunhanGulsoy": ["Google", "Google", "University of Florida", "University of Florida", "University of Washington", "University of Florida", "Bioinformatics (2011) 27(13): i149-i158 doi:10.1093/bioinformatics/btr203", "ACM Conference on Bioinformatics, Computational Biology and Biomedicine 2011", "GENSIPS 2010", "Journal of Bioinformatics and Computational Biology (JBCB)", "PhD, Computer Science", "Master of Science (M.Sc.), Computer Science, 3.64", "B.Sc, Computer Engineering", "Erasmus Exchange Student, Mathematics, Computer Science"], "joncrall": ["Kitware Inc.", "BS, Computer Science"], "MatthewWillson": ["Deepmind", "Microsoft", "SwiftKey", "Media Service Provider Ltd", "Playlouder", "BubbleLabs Inc, Toronto", "DrownedinSound.com"], "OlivierBreuleux": ["LISA Lab - University of Montreal, Theano"], "CoryBenfield": ["U.S. Navy", "vaw-126"], "MartinKletzander": ["Red Hat", "IBM Global Services Delivery Center", "Globus R, k.s.", "Masters Degree, Computer Software Engineering", "Unfinished Master's in IT Security", "Bachelor's degree, Information Technology"], "ManjunathKudlur_": [], "GabeSchwartz": ["Drexel University - Department of Computer Science"], "AdrianoCarmezim": ["Bachelor of Science (B.S.) Master of Science (M.S.), Computer Science", "Bachelor of Science (B.S.), Computer Science", "Volunteering", "Celia Soutto Mayor", "Leitura"], "ChuckShort": ["CTS Business Solutions", "CTS Business Solutions", "Master of Business Administration (M.B.A.), Finance and Financial Management Services", "Bachelor of Arts (B.A.), Economics"], "JuergHaefliger": ["Hewlett Packard Enterprise", "Hewlett-Packard", "Hewlett-Packard", "Hewlett-Packard", "Hewlett-Packard", "Silicon Graphics", "Vereinigte Staaten 7516358", "Society of Photographic Instrumentation Engineers (SPIE)", "Society of Photographic Instrumentation Engineers (SPIE)", "Society of Photographic Instrumentation Engineers (SPIE)", "Society of Photographic Instrumentation Engineers (SPIE)", "Society of Photographic Instrumentation Engineers (SPIE)", "Society of Photographic Instrumentation Engineers (SPIE)", "IEEE Journal of Solid-State Circuits", "Certificate, Embedded Systems Engineering", "PhD, Electrical Engineering", "MS, Electrical Engineering"], "PeteZaitcev": ["Red Hat, Inc."], "EronWright": ["EMC", "Microsoft", "Point2 Technologies", "United States 6721802", "United States 20130298210", "United States 20130297921", "Bachelor of Science, Computer Science", "Microsoft, License 6605540", "Coursera", "Coursera", "Coursera"], "DarcyLiu": ["Tencent", "Tencent", "Alibaba.com", "Hangzhou Normal University", "Tencent", "Masters Degree, Computer Science", "Bachelor, Computer Science and Technology"], "RohitKarajgi": ["Teradata", "Jio", "NTT Data Corporation", "Pace (formerly 2Wire)", "Symphony Teleca", "Symantec India (formerly Veritas Software India)"], "NikhilThorat": ["Google", "DuPont Pioneer", "Schedr", "CampusLIVE Inc", "Bachelor of Science (BS), Computer Science, Math"], "ReyhaneAskari_": [], "BrianCline": ["salesforce.com", "Concentric Cloud Solutions", "Level 3 Communications", "FedEx Services", "National Biostudios"], "DiZeng": ["DeepMap Inc.", "Transcend Robotics", "University of Maryland", "Masters Degree, Robotics, 3.97/4", "Bachelor of Science (BS), Mechanical Engineering, 3.7/4.0"], "BoWang": ["Google", "Microsoft Bing", "Microsoft Research Asia", "Baidu.com", "M.D., 3"], "DanBecker": ["Dan liked", "Dan shared", "Dan liked", "DataRobot", "Galvanize Inc", "Kaggle", "EXL Analytics", "Federal Trade Commission", "Johns Hopkins University, Department of Applied Economics", "PhD, Economics", "BA, Computer Science"], "WangYang": ["Facebook", "AI Frontiers Conference", "CBS Interactive", "OmniClaim, Inc.", "Department of Computer Science,Tufts University", "University of Science and Technology of China", "Master of Science, Computer Science", "Bachelor of Science, Physics", "Journal of Applied Physics", "China Education"], "TatyanaLeontovich": ["Mirantis"], "VenkateshSampath": ["Ericsson", "Huawei", "Ericsson", "Bachelor of Engineering (BE),MBA, Electrical, Electronics and Communications Engineering", "Ericsson Global services India Pvt Ltd", "Huawei Telecommunication India Pvt Ltd", "Huawei Telecommunication"], "f0k": ["Austrian Research Institute for Artificial Intelligence (OFAI) of the Austrian Society for Cybernetic Studies (OSGK)- Intelligent Music Processing and Machine Learning Group"], "chenguoguo": ["KITT.AI", "Johns Hopkins University", "Google", "Google", "Doctor of Philosophy (Ph.D.), Speech Recognition", "Bachelor's degree, Electronic Engineering"], "Fr\\ufffd\\ufffdd\\ufffd\\ufffdricBastien": ["mnubo", "Briowireless Inc.", "Synergie Pilates", "Tekelec", "Tekelec", "Tekelec", "Blueslice Networks", "Nortel", "Teleglobe", "Microcell", "TechnoMontral", "Startup Weekend", "WearHacks", "Fondation Montral inc.", "Academos", "Founder Institute", "C100", "CABA", "Gartner", "ABI Research", "Price Waterhouse Coopers", "Deloitte", "Canadian Innovation Exchange", "Ernst & Young", "C100", "Branham300", "Bronfman Family Foundation", "Light Reading", "IIoT Symposium", "C2 MTL 2016 & Montreal Chamber of Commerce", "Canadian Venture Capital Association conference 2016", "Continental Automated Buildings Association - 2016 forum", "Ecole Polytechnique de Montreal / HEC", "IoT World Forum - Dubai", "TechnoMontral - l'Internet des Objets", "The Founder Institute", "Europe EP2130324", "B.Eng", ""], "CassandraXia": ["Google", "World Bank", "MIT Media Lab", "B.S., Computer Science", "Master's degree, Media Arts and Sciences"], "iccha.sethi": ["Atlassian", "Rackspace, the #1 managed cloud company", "OpenStack", "Rackspace Hosting", "Let's Code Blacksburg!", "Virginia Bioinformatics Institute", "Siemens Technology India", "Rackspace", "Datastores Practice Area, Rackspace", "Rackspace", "Roanoke Blacksburg Technology Council", "Roanoke Blacksburg Technology Council", "Rackspace Blacksburg Office", "Virginia Bioinformatics Institute, Virginia Tech", "Cranwell International Center, Virginia Tech", "SSN College of Engineering, Anna University", "SSN College of Engineering, Anna University", "", "Computer Society of India, SSN Student Chapter", "Anna University", "Grace Hopper Conference", "Talk on \"Deploying Your Application on Public Cloud\" at GHC 2014", "OpenStack @ OpenSource Day at GHC 2014", "WECode Harvard Conference", "OpenSource Day at Grace Hopper Conference", "GNOME Foundation", "Student Opportunity Lab, Grace Hopper Conference", "The National Center for Women & Information Technology (NCWIT)", "Virginia Bioinfomatics Institute - Kids Tech University", "Grace Hopper Conference", "Committee Lead", "Women in Computing Day Co-chair", "Advertising Chair, First Year Representative"], "NiallBunting": ["Hewlett-Packard", "Bachelor of Science (BSc)", "", "Ofcom"], "AlessandroPilotti": ["Sheraton Grand Hotel & Spa Edinburgh", "One Aldwych", "Rocco Forte Hotels Brown's Hotel", "Rocco Forte Hotels Abu Dhabi", "Rocco Forte Hotels Hotel de Russie", "Rocco Forte Hotels Hotel de Russie", "Rocco Forte Hotels Hotel de Russie"], "KenPepple": ["Solinea", "Cloud Technology Partners", "Internap", "Oracle", "Sun Microsystems", "Sun Microsystems", "Sun Microsystems", "Sun Microsystems, Inc.", "Sun Microsystems, Inc.", "Paranet", "Prentice Hall", "Prentice Hall PTR", "O'Reilly", "ITIL / OGC"], "ChristianJauvin": ["Aviva Canada", "Independent Consultant - Freelancer", "McGill Surveillance Lab", "Coursera", "Coursera", "Coursera", "Coursera", "M.Sc., Computer Science"], "AlexandredeBrebisson": ["", "MRes in Statistics / Machine Learning, Statistics / Machine Learning, Distinction 88/100", "Msc in in Advanced Computing, Artificial intelligence, Machine Learning, Distinction 82/100, \"Distinguished Project\", winner of the Winton Capital Prize", "French engineering diploma, Applied Mathematics, Computer Science, Physics, Economics and other information sciences", "\"classes prepa\", Mathematics - Physics", "HyperCube Research (BearingPoint)", "FactSet Research Systems", "UK Ministry of Defence"], "ElenaEzhova": ["Shop"], "YaroslavBulatov_": [], "AshishJain": ["VMware", "VMware", "PayPal", "Symantec", "Ping Identity Corporation", "BEA Systems", "EEE"], "GorkaEguileor": ["JustYoyo", "FOSS Comunity", "NEXTFOR", "NET-TEL Ibrica", "Z-World", "Tecnologa de Informtica y Comunicaciones", "Bachelor's degree, Computer Science, Artificial Intelligence Specialty", "Mongo NoSQL database", "Computerized Accounting", "Chiromasseur, Chiromassage", "Typewriting", "C.O.U., Hard Sciences"], "AlfredoMoralejo": ["Red Hat", "Red Hat", "Red Hat", "Red Hat", "Roche Pharmaceuticals", "Roche Pharmaceuticals", "Hewlett-Packard", "Hewlett Packard", "Tackling the Challenges of Big Data", "Software Enginnering for Software as a Service", "Master Degree, Free and Open Source Software Technology", "RHS333 Red Hat Enterprise Security: Network Services", "RH318 Red Hat Virtualization Administration", "RH442 Enterprise System Monitoring and Performance Tunning", "RH423 Red Hat Enterprise Directory Services and Authentication", "RH436 Enterprise Clustering and Storage Management", "RH401 Red Hat Enterprise Deployment, Virtualization, and Systems Management", "VMware Infrastructure 3: Install and Configure V3.0", "ITIL V2 Foundation", "SAP: ADM200 SAP Web AS Java Administration", "Project Management", "Oracle 9i: SQL and PL/SQL", "Engineer, Chemical Engineering", "Red Hat, Nmero de la licencia: 110-652-021", "Red Hat, Nmero de la licencia: 110-652-021", "Red Hat, Nmero de la licencia: 110-652-021", "Red Hat, Nmero de la licencia: 110-652-021", "HP Education", "edX", "Member", "Member"], "NoahFiedel": ["Google", "Color", "Google", "Boeing/Jeppesen", "gt nexus", "medicalogic", "webtv", "jeppesen", "dorado", "Zefer"], "ChrisAllnutt": ["Outlawz"], "ColinRaffel": ["Doctor of Philosophy (Ph.D.), Electrical and Electronics Engineering", "Master's degree, Music, Science and Technology", "Bachelor of Arts, Mathematics, Physics", "Columbia University in the City of New York", "Experimentalists Anonymous", "The Way of H, Inc.", "Imagine Research", "Zoimp!", "SacredAgent", "WOBC"], "VuPham": ["SAP", "Arimo, Inc.", "Singapore University of Technology and Design (SUTD)", "A2iA", "Ecole polytechnique Universit de Nantes, Polytech Nantes", "Ho Chi Minh University of Science", "Scopic software", "VNG", "FPT Visky", "Coursera", "Coursera", "Microsoft", "IEEE-RIVF 2010 International Conference on Computing and Telecommunication Technologies, Vietnam National University", "he Third International Conference on Knowledge and Systems Engineering (KSE 2011). Hanoi, Vietnam.", "16th Panhellenic Conference on Informatics with International Participation (PCI 2012). Piraeus, Greece", "ICFHR 2014", "Spark summit San Francisco", "Arimo Inc. blog", "Computer Science", "Master of Science, Data Mining and Knowledge Management", "Computer Science", "Bachelor's degree, Computer Science"], "JoshKearney": ["Planet.", "Free & Accepted Masons of Wisconsin", "Village of Hazel Green, WI"], "AndyHill": ["Atlis", "Stand4", "Office Depot", "Oppenheimer & Co.", "Florida Atlantic University", "National Collegiate Volleyball Federation", "ABC", "MBA, Finance"], "AlexeyKamenev": ["Alexey liked", "Alexey liked", "NVIDIA", "Uber", "Microsoft", "Exigen", "Intel", "Mercury Development, LLC", "Coursera", "Coursera"], "NicholasLeonard": ["Twitter", "Element Inc.", "Universit de Montral", "Canadian Forces", "Canadian Forces", "Canadian Space Agency", "Canadian Forces", "ADIROUM", "Queen of Canada", "Master's Degree, Computer Science (Deep Learning)", "Bachelor's Degree, Computer Science", "High School"], "MatthewWillson_": [], "PankajMishra": ["FactorDaily", "The Economic Times", "TechCrunch", "Mint-The Wall Street Journal Newspaper", "The Economic Times", "IDG Media", "Mint-The Wall Street Journal Newspaper", "The CTO Forum", "Asia Computer Weekly", "Indian Express Newspapers Bombay Ltd", "B.Com", "+2"], "HaiweiXu": [""], "KaiLi": ["Kai liked", "Facebook", "Hewlett Packard Enterprise", "Institute for Pattern Recognition and Artificial Intelligence, Huazhong University of Sci & Tec.", "National Lab of Pattern Recognition, Chinese Academy of Sciences", "Doctor of Philosophy (PhD), Computer Science, 4.0/4.0", "Bachelor of Engineering (B.Eng.), Automatic Control, 3.81/4.0", "IEEE Transactions on Pattern Analysis and Machine Intelligence", "IEEE International Conference on Multimedia and Expo (ICME)", "Proceedings of ACM Multimedia Conference", "IEEE International Symposium on Multimedia (IEEE ISM)", "ACM International Conference on Multimedia Retrieval (ICMR) 2015", "Proceedings of IEEE Global Communications Conference (IEEE GLOBECOM)", "Proc. of 9th ACM International Conference on Distributed Even-based Systems", "Proceedings of 5th International Conference on Multimedia Communications, Services and Security (MCSS)", "IEEE INFOCOM 2012", "National Science Foundation", "HP Vertica", "University of Central Florida", "University of Central Florida", "Huazhong University of Sci. & Tec.", "Huazhong University of Sci. & Tec.", "Huazhong University of Sci. & Tec.", "Huazhong University of Sci. & Tec."], "jeanfad": ["SAP", "Microsoft", "OwiTech", "Lille University", "INRIA", "Xerox", "Xerox Research Centre Europe", "elixir", "Coursera", "ECML-PKDD'12", "ICMLA'10", "PhD, Computer Science", "Master, Computer Science", "Engineer, Computer Science"], "SamuelAudet": ["Skymind.io - Deep learning for Industry", "Fixstars Corporation", "Fixstars Corporation", "Fixstars Corporation", "Google Japan", "Doctor of Engineering, Mechanical and Control Engineering", "Master of Engineering, Computer Engineering"], "jsalvatier": ["AI Impacts", "Amazon", "RPX Research, Inc.", "Boise-Cascade", "Boise Cascade", "Capstone Technology", "Kimberly-Clark", "B.S.Ch.E., B.S., Chemical Engineering, Paper Science and Engineering"], "ZhiQiangFan": ["Lenovo Brasil"], "ThierryCarrez": ["OpenStack Foundation", "OpenStack", "OpenStack", "Thyone consulting", "OpenStack", "Canonical Ltd.", "Goodyear", "SCORT", "Personal blog", "SecurityFocus", "Gentoo Linux", "Ubuntu", "Engineer, Mechanical Systems engineering"], "Preetika": ["EY", "Collaborative Consulting", "Boston University Residence Life", "Rolls-Royce", "Boston University Optical Characterization and Nanophotonics Laboratory", "Master of Business Administration (M.B.A.)", "BS, Mechanical Engineering", "Study Abroad, Mechanical Engineering", "CBSE, High School", "Engineers Without Borders - Boston Professionals", "Engineers Without Borders - Boston University", "Boston University"], "AlexLamb": ["Universit de Montral", "Amazon", "JHU Human Language Technology Center of Excellence", "Johns Hopkins University", "Johns Hopkins University Applied Physics Laboratory", "North American Chapter of the Association for Computational Linguistics: Human Language Technologies (NAACL-HLT)", "Association for the Advancement of Artificial Intelligence", "Doctor of Philosophy (Ph.D.), Computer Science", "Bachelor of Science, Applied Mathematics and Computer Science"], "b0noI": ["Google", "Hexlet.org", "Amazon", "DIO-soft", "Samsung R&D", "Rodovid Bank", "Institute of geochemical", "Oracle", "Oracle", "10gen", "Bionic University", "Coursera Verified Certificates, License ABW3MZXEYW", "Coursera Verified Certificates, License MZQSKZCUKZ", "Coursera Verified Certificates, License V7PREBM886", "Coursera Verified Certificates, License HY9V4GHVYJ", "Coursera Verified Certificates, License MLKKP9JTFY", "Coursera Course Certificates, License JZDYKBQFFAXY", "Coursera Course Certificates, License N8C2VV2ND4XU", "Doctor of Philosophy (Ph.D.), Natural Language Processing", "\"MS\", information security"], "XavierBouthillier": ["Nuance Communications", "Universit de Montral", "Universit de Montral", "Proceedings of the 15th ACM on International conference on multimodal interaction", "Doctor of Philosophy (Ph.D.), Computer Science", "Master's Degree, Computer Science", "Exchange student, Computer science", "Bachelor's degree, Computer Science"], "JeremiahLowin": ["Jeremiah liked", "Kokino LLC", "Compass Coffee", "The Apache Software Foundation", "Lowin Data Company", "King Street Capital Management", "A.M., Statistics", "A.B., Economics"], "MikeC.Fletcher": ["Python Software Foundation", "VRPlumber Consulting Inc.", "PyOpenGL", "Jazinga Inc.", "Aurora Cable Internet", "Rogers Communications", "VexTech Inc.", "Cinemon Inc.", "VRTelecom Inc", "BIS, Design Epistemology, Virtual Reality"], "HughPerkins": ["ASAPP", "Standard Chartered", "Morgan Stanley", "Lehman Brothers", "Socit Gnrale Corporate and Investment Banking", "SecondLife", "UFlexData (a Mandragore Division)", "CS Communication & Systmes", "Masters Degree, Computer Science, GPA 97.5", "Chinese (Mandarin), HSK 5", "Bachelors Degree, Natural Sciences, Class II.1", "University of Oxford"], "Nouiz": ["mnubo", "Briowireless Inc.", "Synergie Pilates", "Tekelec", "Tekelec", "Tekelec", "Blueslice Networks", "Nortel", "Teleglobe", "Microcell", "TechnoMontral", "Startup Weekend", "WearHacks", "Fondation Montral inc.", "Academos", "Founder Institute", "C100", "CABA", "Gartner", "ABI Research", "Price Waterhouse Coopers", "Deloitte", "Canadian Innovation Exchange", "Ernst & Young", "C100", "Branham300", "Bronfman Family Foundation", "Light Reading", "", "IIoT Symposium", "C2 MTL 2016 & Montreal Chamber of Commerce", "Canadian Venture Capital Association conference 2016", "Continental Automated Buildings Association - 2016 forum", "Ecole Polytechnique de Montreal / HEC", "IoT World Forum - Dubai", "TechnoMontral - l'Internet des Objets", "The Founder Institute", "Europe EP2130324", "B.Eng", ""], "goodfeli": ["OpenAI", "Google", "Google", "Google", "Willow Garage", "PhD, Machine Learning", "Bachelor of Science, Master of Science, Computer Science", "Proc. AAAI 2014, pp. 1199-1205", "NIPS 2014", "ICLR 2014"], "MelanieDucoffe": ["Inria", "Universit de Rennes 1", "diplme ENS", "Master's degree (research), computer vision, data mining, signal processing, virtual reality", "Diplme d'ingnieur, sciences informatiques, Vision Image et Multimdia", "Attestation CPGE ( classes prparatoires), Mathmatiques et Physiques ( MPSI, MP*)"], "DanielSmilkov": ["Google", "MIT", "Macedonian Academy for Sciences and Arts", "IBM", "Netcetera", "Master of Science (M.Sc.), MIT Media Lab", "M.Sc., Networks - Topology, Evolution, Dynamics, GPA: 9.89/10", "Bachelor, Computer Science", "Physical Review E 84 (4), 046102"], "HenriqueTruta": ["Distributed Systems Laboratory - UFCG", "Accenture", "Master of Science (MSc), Cloud Computing", "Bachelor's degree, Computer Science"], "NolwennCauchois": ["Cloudwatt", "Cloudwatt", "Master, Mathmatiques et informatique appliqu la cryptologie", "Licence, Mathmatiques et informatique"], "IgorKorsunov": [], "ChrisBamford": ["Import.io", "Bam4d Systems", "TouchGo Technology", "TouchGo Technology", "Bam4d Systems", "Cybernetic Intelligent Systems, 2010 CIS 2010. 9th IEEE International Conference", "Paladyn. Journal of Behavioral Robotics.", "Applied Masters, Cybernetics, First Class Honours", ""], "TomLeaman": ["Michael Page", "Argyll Scott", "Michael Page", "Michael Page", "Michael Page", "Michael Page UK", "Royal Navy"], "JohnWarren": ["Energy Alloys, LLC"], "SherryMoore": ["Google", "Sun Microsystems", "Intel"], "VivekKulkarni": ["Vivek liked", "Vivek liked", "BHI, 2013 Maebashi , Japan", "Complenet 2014 (Accepted)", "National Institute of Technology Karnataka"], "MarkoRadmilac": ["Microsoft", "None (PhD), Computer Science", "Bachelors, Computer Science, Applied Math"], "IanGoodfellow": ["OpenAI", "Google", "Google", "Google", "Willow Garage", "PhD, Machine Learning", "Bachelor of Science, Master of Science, Computer Science", "Proc. AAAI 2014, pp. 1199-1205", "NIPS 2014", "ICLR 2014"], "KiallMacInnes": ["Hewlett-Packard", "Hewlett-Packard", "OpenStack", "Managed I.T.", "Style Design Systems Ltd", "Bacheors of Science, Computer Science"], "HarshShah": ["Socotra", "Africa", "World Health Partners", "Lazy Bear", "Google", "AdMob", "Global Pediatric Alliance", "Hercules Capital, Inc.", "Houlihan Lokey", "BA, Major: Communication Studies // Minor: Accounting", "Fall Semester Exchange Student", "Executive Marketing Academy"], "ValentinBisson": ["valentin liked", "valentin liked", "Squarepoint Capital", "master's", "Bachelor (last year, exchange)", "Bachelor", "Licence (French Bachelor equivalent)"], "PascalLamblin": ["Montreal Institute for Learning Algorithms (MILA)"], "JamesPage": ["Wishbone Energy Partners LLC", "BlackCrest Capital LLC", "National Petroleum Company", "Khalda Petroleum Company", "Qarun Petroleum Company", "Price Waterhouse", "BBA, Accounting & Finance, Investment and Banking"], "WilliamDarling": ["Microsoft", "Xerox Research Centre Europe", "University of Guelph", "Space Security Index", "Entertainment Software Association of Canada", "Gowling Lafleur Henderson LLP", "Paradynamics, Inc.", "Ginkgo Boutique Apple", "Coursera", "Coursera", "Coursera", "Intellectual Property Journal", "Proceedings of the 49th Annual Meeting of the Association for Computational Linguistics: Human Language Technologies: short papers", "Physics Department", "", "Ph.D., Computer Science (Machine Learning and Natural Language Processing)", "LL.B., B.C.L. (Common Law and Civil Law), Law", "B.Sc. (exchange year), Physics, Computer Science", "B.Sc. (Hons.), Physics, Computer Science"], "SamiraEbrahimiKahou": ["Samira liked", "Samira liked", "Samira liked", "Samira liked", "Samira liked", "Samira liked", "Twenty Billion Neurons GmbH", "Microsoft", "Netsis Software Inc."], "KyunghyunCho": ["New York University", "Universit de Montral", "Aalto University", "Universit de Montral", "ZenRobotics Ltd.", "Interactivy", "Corecess", "President", "Doctor of Philosophy (Ph.D.)", "Master of Science (M.Sc.)", "Bachelor of Science (B.Sc.)"], "IanLangmore": ["Google", "Johnson Research Labs", "Columbia University", "Opera Solutions", "Columbia University", "University of Washington", "Columbia University", "University of California", "University of California", "Qualcomm Inc", "KDD", "PhD, Mathematics 2008", "Master of Science, Electrical Engineering 2004", "Bachelor of Science, Electrical Engineering 2002"], "TobiasUrdin": ["Crystone AB / Crystone LLC", "Datorgruppen", "Crystone Sverige AB", "Fujitsu IsoWorks, SEB", "Fujitsu IsoWorks, SEB", "Board Member", "Cisco Systems Inc, Licensnummer 640-822", "High school graduation, System, Networking, Windows Server, Cisco, CCNA, LAN/WAN"], "ClintByrum": ["IBM", "Hewlett Packard", "Canonical Ltd.", "Adicio, Inc.", "Anonymizer, Inc.", "XNtech", "ERP.COM", "CR Computing Solutions"], "JamesCarey": ["EMC", "EMC", "EMC", "EMC", "Fidelity National Information Services", "Cingular", "Alltel Information Services", "BBA, Accounting"], "DavidSoergel": ["Google", "University of Massachusetts Amherst", "UC Berkeley", "Molecular Sciences Institute", "Asha Technologies", "Little Engine, Inc.", "Stanford University", "Ph.D., Computational Biology", "B.S., Symbolic Systems", "Computation and Neural Systems"], "RoyXue": ["Carnegie Mellon University", "Rakuten", "Tesla Motors", "University of Washington", "Theano Open Source Dev Community", "HackNTU", "INTERFIRM", "iFanr", "Carnegie Mellon University", "HackShanghai", "Google", "HappyChick Foundation", "AIESEC", "Master's degree, Software Engineering", "Master's degree, Computer Science and Systems, GPA 3.70", "Bachelor of Science (BS), Electrical and Electronics Engineering, GPA 3.5", "Deep Learning", "Coursera", "Coursera", "Coursera", "Coursera", "Coursera", "Coursera", "Canton Fair (China Import and Export Fair)", "Guangzhou International Documentary Film Festival", "Chinese Conference on Cloud Computing(CCCC 2013)", "PACKT Publishing", "", "", "", "", ""], "ClemensMarschner": ["Clemens Marschner gefllt Folgendes:", "Clemens Marschner gefllt Folgendes:", "Clemens Marschner gefllt Folgendes:", "Clemens Marschner gefllt Folgendes:", "Microsoft", "Microsoft", "Microsoft", "FAST, a Microsoft Subsidiary", "Fast Search & Transfer", "Computational Linguistics Department, Univ. Munich", "PhD Thesis, Centrum fr Informations- und Sprachverarbeitung, Munich, Germany", "Springer"], "RasmusLarsen": ["Rasmus liked", "Google", "L-3 Communications", "Stanford University", "Pulsent", "Stanford University", "post doc, Computer Science / Solar physics"], "NikosKarampatziakis": ["Microsoft", "Microsoft", "Doctor of Philosophy (Ph.D.), Computer Science, 4"], "AntonKhodakivskiy": ["Menta Capital LLC", "AppDirect", "Nemaris, LLC", "LiveTechnology Holdings, Inc.", "IMT", "Master's degree, Physics"], "MatthewEdmonds": ["The Tire Rack", "Church Growth Services Inc", "Bachelor of Architecture (BArch), Architecture"], "CiyongChen": ["Intel Corporation", "Cisco Systems", "Huawei Technologies", "Master's degree, Embedded Software Engineering", "Bachelor's degree, Electronic Information Science and Technology"], "RasmusMunkLarsen": ["Rasmus liked", "Google", "L-3 Communications", "Stanford University", "Pulsent", "Stanford University", "post doc, Computer Science / Solar physics"], "AliElqursh": ["Google", "Qualcomm", "Rutgers University", "Google", "Technicolor", "Bibliotheca Alexandrina", "PhD, Computer Science", "B.Sc, Computer Science"], "SamGross": ["Facebook AI Research", "Jam Labs, Inc.", "Yext", "D. E. Shaw & Co.", "Google (NYC)", "Google (Atlanta)", "Virginia Department of Motor Vehicles", "M.Eng., Electrical Engineering and Computer Science", "B.S., Computer Science"], "abergeron": ["Montreal Institute for Learning Algorithms (MILA)"], "PatrickNguyen": ["Google", "Microsoft", "Metanautix (acquired by Microsoft)", "Google", "Microsoft Research", "Panasonic", "beTrust", "Swisscom"], "KeshavaBharadwaj": ["Cisco", "Hewlett-Packard", "Hewlett-Packard", "Consultant - Corventis", "Hewlett-Packard", "Hewlett-Packard", "B.E, Electronics and communications", "B.E, Electronics and Communication"], "DaveChen": ["Google", "Yahoo!", "Lockheed Martin", "Ecrio Inc", "MS, Computer Science", "BS, Computer Science and Engineering", "High School", "SASE Circle Mentor", "CPP, Inc."], "LukaszKaiser": ["Google", "CNRS", "Google", "RWTH Aachen University", "RWTH Aachen University", "RWTH Aachen University", "RWTH Aachen University", "RWTH Aachen University", "Coursera", "Coursera", "NIPS 2015", "ICLR 2016", "Ph.D, Computer Science", "Master of Science, Computer Science", "Master of Science, Mathematics", ""], "YaroslavNechaev": ["Fondazione Bruno Kessler (FBK-irst)", "VIZERRA", "Total Digital Solutions", "RUSNANO", "Total Digital Solutions", "Intellectual business boutique", "SMS Siemag AG", "Novaya perevozochnaya kompaniya", "Specialist, Computer Science, Mathematics, Physics", ""], "VictorRodionov": ["Taylor | Australia", "peckvonhartel", "Architecture BVN", "Guida Mosley Brown Architects", "Bachelor of Architecture (B.Arch.), Architecture", "Bachelor of Applied Science (B.A.Sc.)"], "LiangChen": ["Amazon", "Microsoft Corporation", "Microsoft Corporation", "Microsoft Corporation", "LS Telcom AG, Germany", "Shanghai Nan Yang Info And Control Ltd., China", "BS, Computer Science"], "YutakaLeon": ["Google", "NICT", "ATR International"], "JamesPolley": ["U.S. Department of State", "U.S. Department of State", "U.S. Department of State"], "AlexRothberg": ["4Catalyzer", "Getco LLC", "D.E. Shaw & Co", "WebNotes (now: Crocodoc)", "Bridgewater Associates", "Bachelor's Degree, Computer Science, Economics", "High School"], "PawelKoniszewski": ["Pawe liked", "Pawe liked", "Intel Corporation", "Intel Corporation", "OpenStack Foundation", "Intel", "OpenStack Foundation", "Cisco", "OpenStack Foundation", "Geek Girls Carrots"], "BenNemec": ["Red Hat", "Red Hat", "None", "IBM", "IBM", "Luther College", "Boscobel Swimming Pool", "University of Minnesota - Rochester", "Rochester Active Sports Club", "RACE Jaguars", "BA, Computer Science"], "AnatolyBelikov": ["Research Institute of Precision Instruments", "Acronis", "Coursera", "Coursera", "Coursera Verified Certificates, : ESBPJCPDHX", "Udacity", "Doctor of Philosophy (Ph.D.), Information Technology", "Master's Degree, Computer Science", "Engineer's Degree, Computer Engineering"], "FrankSeide": ["Microsoft", "Microsoft", "Microsoft", "Microsoft", "Microsoft", "Microsoft", "Philips Research, Taipei", "Philips Research", "Dipl.-Ing., EE, CS"], "WeiHo": ["Google", "Microsoft", "USC Information Sciences Institute", "Princeton University", "B.S.E., Computer Science"], "JamesLi": ["Meltwater", "NextGen Angels", "Encore Alert (acquired by Meltwater)", "RE:action Strategy Group", "The White House", "Compass Partners", "Touchstone Consulting Group", "Cybis Communications", "GameDay Sports Marketing", "Future Business Leaders of America", "ZenithOptimedia", "Georgetown University", "TechCocktail", "Georgetown Startup Hoya Challenge", "Startup Weekend", "Georgetown University", "Oxford Academy", "FBLA", "FBLA", "GMS", "CGIU", "BS, Marketing, Management, Magna Cum Laude", ""], "AlbertoPlanas": ["Elettronica Santerno Espaa su"], "MatthewTreinish": ["United Security Investors, LLC", "Lore Group LLC", "Buckeye Consulting LLC", "Siren Digital, LLC", "Inspire Studios LLC", "Strategic Film Partners", "Malibu Film Festival", "Young and Rubicam", "BS, Sociology/Criminology", "High School", "California Bureau of Real Estate"], "AlexeiKornienko": ["Mirantis", "Ciklum", "Gameloft", "Gameloft", "Gameloft", "Gameloft", "10gen, The MongoDB Company", "10gen, The MongoDB Company", "Software engineering"], "ZiyeFan": ["Theano Development Community", "Great Wall Computer Software And Systems Inc., Ltd.", "Master's degree, Machine Intelligence (School of EECS)", "Bachelor's degree, EE (School of EECS)"], "EdgarMagana": ["Edgar Magana on LinkedIn", "Edgar shared", "Edgar shared", "Edgar shared", "Workday", "OpenStack", "Contrail Systems", "OpenStack", "Cisco", "PLUMgrid", "Cisco Systems", "Universitat Politecnica de Catalunya", "Deloitte Consulting", "2009 IEEE", "2009 IEEE", "OpenStack Docs"], "NoahFiedel_": [], "ry": ["s", "P"], "TakeakiMatsumoto": ["NTT Communications"], "EldarAkchurin": ["Microsoft", "Hewlett-Packard", "Kaspersky Lab", "Deutsche Bank", "Diploma, Applied Mathematics and Computer Science", "Master of Science, Software Systems Engineering"], "FlorentFlament": ["Burger King Corporation", "McDonald's", "Licence (2 annes valides) , Biologie des organismes et des populations", "Greenpeace"], "ShaneWang": ["T.R. ENGEL Group, LLC", "Morgans Hotel Group", "Rosewood London", "China Construction Bank", "Bachelors Degree, Mathematics and Computer Science, Summa Cum Laude", "Bachelors Degree, Hospitality Administration/Management, Summa Cum Laude", "Boston Athletic Association", "Be The Match operated by National Marrow Donor Program", ""], "NassimBabaci": ["Cloudreach", "Cloudwatt", "Wallix", "SunGard Financial Systems", "EMC", "AWS, License AWS-ASA-5424", "AWS, License AWS-ASOA-1284", "AWS, License AWS-ADEV-1433", "AWS, License AWS-PSA-2220", "Masters degree, Distributed Systems", "Software Engineer, Computer Systems Networking and Telecommunications"], "KirilGorovoy": ["Google", "Facebook", "University of Waterloo- AI Group", "Intel FPGA", "Google", "IBM"], "TimCooijmans": ["Universit de Montral", "Google", "Universit de Montral", "CERN", "Ideaspool", "Mapscape", "Compram", "Master of Science (M.Sc.), Operations Research", "Bachelor of Science (B.Sc.), Knowledge Engineering, 8.06 out of 10"], "NikhilMishra": ["Robot Learning Lab, UC Berkeley", "Trooly", "Beckman Laser Institute", "Bachelor's Degree, Electrical Engineering and Computer Science", "International Conference on Robotics and Automation", "Journal of Biomedical Optics"], "AlexanderMaretskiy": ["Mirantis"], "SaschaPeilicke": ["HERE", "HOTEL DE GmbH", "SUSE Linux Products GmbH", "openSUSE Project", "SUSE Linux Products GmbH", "KDE", "Google Summer of Code 2011", "Google Summer of Code 2010", "Institut fr Automation und Kommunikation (ifak e.V.)", "Google Summer of Code 2009", "SUBMIT e.V.", "Nokia Qt Software", "Language Center - University of Magdeburg", "Institute for Knowledge & Language Processing, University of Magdeburg", "Ubuntu", "Linux Professional Institute, Lizenz LPI000220879", "Novell Certification", "Linux Professional Institute, Lizenz License LPI000220879", "Diplom (German)", "", "openSUSE Project", "OpenStack", "KDE", ""], "JoeGordon": ["Pinterest", "Hewlett-Packard", "Cloudscaling", "Fujitsu", "University of Maryland Institute for Advanced Computer Studies", "United States 8,505,103", "United States 8,745,747", "United States"], "AswadRangnekar": ["NTT DATA Americas", "HappyChickoo", "eClerx", "", "Master of Engineering (MEng), Computer Engineering"], "YannN.Dauphin": ["Facebook", "Universit de Montral", "Microsoft", "Google", "GNU CLisp", "Ericsson", "Lambda Tree", "Verkkostadi", "Advances in Neural Information Processing System", "Doctor of Philosophy (Ph.D.), Computer Science"], "BrianBowen": ["FirstFuel Software", "Solstice Initiative", "ecovent Systems", "Ceres, Inc.", "EnerNOC", "Yale University Press", "Midwest Energy News", "Robert and Patricia Switzer Foundation", "Master in City Planning (MCP), Environmental Policy and Planning", "BA, Literature", "Green Business Certification, Inc.", "NCSL Energy Supply Task Force", "Department of Energy"], "ChienliMa": ["Intuit", "Google Summer of Code 2015", "eLong, Inc", "Master's degree, Computer Science, 4.0/4.0", "Bachelor's degree, Information Engineering"], "RonaldBradford": ["RB42", "Effective MySQL", "Oracle ACE Program", "Oracle Press", "Oracle Press", "Oracle Press", "Wrox", "MySQL Certification", "Master of Information Technology coursework", "Bachelor of Applied Science", "International Space Apps Challenge", "MySQL Community", "Oracle Corporation", "MySQL Inc"], "DannyGoodman": ["Danny Goodman on LinkedIn", "Danny liked", "(Gestating)", "Software and data consulting", "MetaMind", "MetroMile", "Stanford Pride", "Outright", "Chai Labs", "Numenta", "TMS, Inc.", "Tropos Networks", "Ellington Management Group", "Sun Microsystems", "MS, Computer Science, 4.1/4"], "ChrisFattarsi": ["Inventorum GmbH", "Piston Cloud", "Piston Cloud Computing, Inc.", "NASA Ames Research Center", "Novacoast", "Advanced Dental Imaging", "BS, Computer Engineering"], "WenChengMa": ["IBM"], "StuartMcLaren": ["S Mclaren Builders"], "PavanKumarSunkara": ["Apiary", "Dual (M.Tech & B.Tech), Computer Science"], "NicolasBouchard": ["Montreal Institute for Learning Algorithms (MILA)"], "RishabhJain": ["LiveRamp, An Acxiom Company", "OpenLab app", "Flagship Ventures", "Invisergy", "Morgan Stanley", "Doctor of Philosophy (PhD), Materials Science, NSF & NDSEG Fellow", "M.Sc., Optics and Photonics, The Thouron Award", "Bachelor of Science (B.Sc.), Finance, Summa Cum Laude", "B.S.E., Materials Science and Engineering"], "AndrewTranquada": ["Rackspace, the Open Cloud Company", "nTelos Inc.", "Nauticom Internet Services", "Redhat, License 111-056-511"], "AndreasScheuring": ["Jugendherberge Berlin Ostkreuz"], "AnitaKuno": ["I really dislike forms forcing me to enter values."], "RonanCollobert": ["Facebook", "Idiap Research Institute", "NEC Laboratories America", "Idiap Research Institute", "Universit de Montral"], "RickClark": ["Mastercard", "aaSemble", "Reliance Jio Infocomm", "Cisco", "Rackspace Hosting", "Canonical Ltd.", "Etrade Financial", "McKesson", "BB&T", "LearningSoft Corporation"], "YuxinWu": ["Facebook AI Research", "Facebook Oculus VR", "Megvii Technology (aka Face++)", "UC Berkeley", "Google", "Hulu", "HPC Advisory Council", "Asia Supercomputer Community", "ACM SIGMOD", "Trend Micro Inc.", "ACM SIGKDD", "China Computer Federation", "Tsinghua University", "", "ACM SIGGRAPH Asia", "Arxiv Preprint", "arxiv preprint", ""], "MelanieWarrick": ["Skymind.io - Deep learning for Industry"], "SteveKowalik": ["Sodexo", "Service America GroupLLC", "All seasons services Inc.", "A&W Resturant"], "MattFischer": ["Apple", "Apple", "Napster", "myplay", "N2K/CDNOW", "University of Virginia Club of New York", "IMG", "BA with Distinction, Political and Social Thought Distinguished Majors Program", "", "United States 11/082,207", "", "Business Insider"], "JashaDroppo": ["Microsoft Research", "IEEE (SPS) Speech and Language Technical Committee (SLTC)", "Microsoft Corporation", "Microsoft", "Combustion Specialists Inc", "Doctor of Philosophy (Ph.D.), Electrical Engineering", "BSEE, Electrical Engineering, Honors Program"], "steven-pigeon": ["UQAR", "Universit de Montral", "cole de technologie suprieure (TS)", "Vantrix", "Comact", "Ph. D., Data Compression"], "AuktavianGarrett": ["Cisco Systems", "Clarkston Consulting", "Cisco Systems", "Nortel Networks", "Acuity Healthcare Management LLP", "", "BS, Computer Engineer"], "IulianVladSerban": ["Blue Analysis", "DigiCorpus Aps", "Financys Aps", "Project Osiris", "Operation Dagsvrk", "Operation Dagsvrk", "Doctor of Philosophy (PhD), Machine Learning", "Master of Science, Machine Learning, Distinction", "", "Bachelor, Mathematics and Statistics", "Mathematics, Physics, Chemistry and Development of Technology"], "VladimirIvanov": ["Google", "Ukraine 10225", "United States"], "AsimShankar": ["Google", "Veritas Software (would later merge with symantec"], "PranaliDeore": ["Red Hat", "NTT Data Americas", "Sureline Systems, Inc.", "MSc(Comp.Sci), Computer Science"], "BartoszFic": ["Update Digital", "Intel Corporation", "Online Venture", "Master of Science in Engineering, Informatics", "Engineer's degree, Informatics"], "JonasRauber": ["University of Tubingen - Bethge Lab", "Karlsruhe Institute of Technology (KIT)"], "KunHuang": ["Facebook", "Google", "Sunny Arts Performing Group", "Macy's", "Norfolk Southern", "North Carolina State University", "Boeing Commercial Airplanes", "Cisco", "Ph.D., Industrial and Systems Enginnering", "Master, Industrial and Systems Enginnering", "Bachelor of Science, Mathematics", ""], "SergioCazzolato": ["Intel Agile Conference", "Conferencia giles 2012", "Intel Agile Conference 2012"], "Pierre-AntoineManzagol": ["Google", "Siemens", "Montreal Institute for Learning Algorithms (MILA)"], "LiuYuan": ["AWR-APLAC Corporatiosn", "IBM T. J. Watson Research Center", "Coursera", "Coursera", "Coursera", "Coursera", "Coursera", "Doctor of Philosophy (PhD)", "MS", "BSEE"], "JeffreyTang": ["Twitter", "Galvanize Inc", "Skymind.io - Deep learning for Industry", "IBM", "Integrative Genomics and Medicine - Medical Research Council"], "SimonLemieux": ["mldb.ai", "Datacratic", "Collge lionel-groulx"], "ItishaDewan": ["IIIT Hyderabad", "IIIT Hyderabad", "OpenStack", "Cykul", "Score: 334", "Score: 118", "Score: 2390", "Score: 2080", "Bachelor's Degree, Computer Science", "High School"], "AndrewHutchings": ["Utrip, Inc.", "Summer Program", "Coursera", "Coursera", "Coursera", "Coursera", "Coursera", "Master of Science (M.S.), Operations Research", "Bachelor of Science (B.S.), Mathematics"], "nanhailiao": ["Tianjin Kylin Information Ltd.co"], "JakubSygnowski": ["Google Research", "Google", "TouK", "", "", "Master's Degree, Computer Science", "Master's Degree, Computer Science"], "Fr\\xe9d\\xe9ricBastien": ["mnubo", "Briowireless Inc.", "Synergie Pilates", "Tekelec", "Tekelec", "Tekelec", "Blueslice Networks", "Nortel", "Teleglobe", "Microcell", "TechnoMontral", "Startup Weekend", "WearHacks", "Fondation Montral inc.", "Academos", "Founder Institute", "C100", "CABA", "Gartner", "ABI Research", "Price Waterhouse Coopers", "Deloitte", "Canadian Innovation Exchange", "Ernst & Young", "C100", "Branham300", "Bronfman Family Foundation", "Light Reading", "IIoT Symposium", "C2 MTL 2016 & Montreal Chamber of Commerce", "Canadian Venture Capital Association conference 2016", "Continental Automated Buildings Association - 2016 forum", "Ecole Polytechnique de Montreal / HEC", "IoT World Forum - Dubai", "TechnoMontral - l'Internet des Objets", "The Founder Institute", "Europe EP2130324", "B.Eng", ""], "JustinBayer": ["Volkswagen AG", "van der Smagt & Bayer GbR", "TU Munich", "IDSIA", "Dr., Machine Learning", ""], "EugeneBrevdo": ["SVBio", "The Climate Corporation", "Princeton University - Department of Electrical Engineering", "Siemens Corporate Research", "Google - Computer Vision for OCR", "Air Force Research Laboratories, Maui Optical and Supercomputing Site, Kihei, HI", "Rensselaer Polytechnic Institute - Electrical Impedance Tomography (EIT) Research Group", "Factset Research Systems"], "JulienDanjou": ["Red Hat", "OpenStack", "freedesktop.org", "Debian", "Debian France", "Julien Danjou", "eNovance", "eNovance", "Easter-eggs", "TuxFamily", "IELO", "Mandriva", "Frag Arena", "", "Rsultat : 935", "Master, Computer Science", "DUT, Computer Science", "Coursera"], "FrankChu": ["Shanghaitech University - School of Information Science and Technology"], "AndyMcCrae": ["Rackspace, the #1 managed cloud company", "Rackspace, the #1 managed cloud company", "Rackspace, the #1 managed cloud company", "Master of Engineering (MEng), Computer Science", "Software Developer", "805009233444167"], "YaroslavBulatov": ["OpenAI", "Google", "Strands", "ViewPlus Technologies", "Information Extraction and Transport", "Oregon State University"], "AndrewClayShafer": ["Pivotal", "Parvus Captus", "Rackspace", "Cloudscaling", "Agile Roots", "Ignite Salt Lake", "Cloudscaling", "Reductive Labs Inc.", "Reductive Labs", "Infopia", "Infopia", "Infopia", "Realm Systems Inc", "Driversoft", "O'Reilly Media", "MS, Scientific Computation", "BS, Mathematics", ""], "HaomaiWang": ["XSKY Data Technology", "UnitedStack", "Intel", ""], "Fabrizio(Misto)Milo": ["Fabrizio liked", "Fabrizio liked", "Fabrizio liked", "Fabrizio liked", "Fabrizio liked", "Fabrizio liked"], "vdumoulin": ["Montreal Institute for Learning Algorithms (MILA)"], "DhariniChandrasekar": ["Intel Corporation", "University of Cincinnati", "Interactive Intelligence", "Cloud Kinetics", "Master of Science (MS), Computer Science, 3.68/4.0", "Bachelor of Engineering (BE), Computer Science, CGPA : 8.1/10", "Higher Secondary Education, 94.4%", "Senior Secondary Education, 460/500 (92%)", "Bloomsbury Honors Society, USA", "University of Cincinnati", "Volunteer", "Internation Reseach Network, UARJ."], "LiYao": ["Montreal Institute for Learning Algorithms (MILA)"], "BillOwen": ["JDA Software", "JDA Software Group, Inc", "JDA Software", "JDA Software", "Expanets", "Viasoft"], "VincentDumoulin": ["LISA, University of Montreal", "Universit de Montral", "Ski Mont Saint Bruno", "arXiv", "Proc. AAAI 2014, pp. 1199-1205", "Doctor of Philosophy (Ph.D.), Computer Science", "B.Sc., Physics and Computer Science"], "skaae": ["University of Copenhagen", "MSc student, Systems Biology", "Bachelor of Science (BSc), Bioengineering and Biomedical Engineering"], "LaurentDinh": ["arXiV"], "HuazuoGao": ["Physics", ""], "jiakai": ["CILVR Lab at New York University", "NVIDIA", "Movement Lab at New York University", "Honda Research Institute USA, Inc.", "NVIDIA", "New York University", "3D Computer Game Engine Design, New York University", "The Center for Public Safety, Tsinghua University", "Robot Car Program, Tsinghua University", "Computer Organization Laboratory, Tsinghua University", "PhD Candidate, Computer Science", "Master, Computer Science, 3.75", "Bachelor, Engineering Physics, 3.7", "Bachelor, Electrical and Computer Engineering"], "MikKocikowski": ["Peak Unicorn Consulting", "Target", "Quid", "Various", "Hitachi Data Systems", "", "Ansible Fest 2016"], "DuncanMcGreggor": ["Element 84", "Open Source Community", "Multiple Organizations", "AdRoll", "Rackspace, the Open Cloud Company", "Multiple Organizations", "Canonical Ltd.", "Canonical Ltd.", "Divmod, Inc.", "AdytumSolutions, Inc.", "Public Broadcasting Service", "General Physics", "USinternetworking", "University of Maryland", "Face-Pressed Web Design", "US Army"], "AvinashPrasad": ["ISACA"], "AlexeyOrlov": ["Microsoft", "Microsoft", "Intel Corporation", "Intel Corporation", "Intel Corporation", "Scrum Alliance", "Scrum Trek", "Game Developers Conference, Moscow", "Master of Business Informatics, Business analyst", "Master of Science (M.S.), Mathematician, system programmer"], "DavidPeraza": ["Persistent Systems Inc.", "IBM", "IBM", "IBM", "Oceanwide usa", "IBM", "IBM", "IBM System Magazine", "IBM", "Persistent System Inc.", "Master of Science, Computer Science", "Bachelor's degree, Computer Engineering", "United States US8627274", "United States 8543687 B2"], "YoshuaBengio": ["Universit de Montral", "AT&T Labs, Inc.", "MIT", "McGill University", "PhD, Computer Science", "MSc, Computer Science", "B.Eng., Computer Engineering", ""], "SunYeopLee": ["IoTcubeCon", "KITRI", "Bachelor of Engineering (B.E.), Computer Science and Engineering", "Student in top 30, Product security", " ", "", "KT", "", "", " ", "", "", "", "", ""], "AndreasEberle": ["arconsis IT-Solutions GmbH", "arconsis IT-Solutions GmbH", "1&1 Internet AG", "1&1 Internet AG", "LuK GmbH & Co. KG", "Master of Science (M.Sc.), Computer Science", "Bachelor of Science (B.Sc.), Computer Science"], "EldarNugaev": ["Coursera", "edX", "Coursera", "edX, License 830298d563104f099bd7bf42f3273b8c", "Microsoft", "Hewlett-Packard", "Trafigura", "Digital Society Laboratory", "utinet.ru", "buzzoola.com", "Grid Dynamics", "Mirantis", "Score: http://rosalind.info"], "BinZhou": ["FM Global", "Pratt & Whitney", "Pratt & Whitney", "GE Power & Water", "GE Global Research", "University of Michigan", "PhD, Mechanical Engineering", "MBA", "GE"], "JakubKolodziejczyk": ["Jakub", "Lexues", "Personal projects", "Okinawa Institute of Science and Technology", "Nanyang Technological University", "Osaka University", "Master of Engineering (M.Eng.), Computer Aided Mechanical Engineering, First Class Honours"], "MitsuhiroTanino": ["Hitachi Data Systems", "OpenStack", "Hitachi", "Master of Engineering (M.Eng.), Department of Computer Science and Engineering"], "GeetikaBatra": ["OpenStack", "Lyxel Labs Private Limited", "OpenStack", "OpenStack", "Outreachy Intern at OpenStack", "Learn IT Girl, License 10060142", "Accredible, License Accredible-10222048", "Bachelor of Technology (B.Tech.), Electronics and Communication", "87.2%", ""], "FredericBastien": ["mnubo", "Briowireless Inc.", "Synergie Pilates", "Tekelec", "Tekelec", "Tekelec", "Blueslice Networks", "Nortel", "Teleglobe", "Microcell", "TechnoMontral", "Startup Weekend", "WearHacks", "Fondation Montral inc.", "Academos", "Founder Institute", "C100", "CABA", "Gartner", "ABI Research", "Price Waterhouse Coopers", "Deloitte", "Canadian Innovation Exchange", "Ernst & Young", "C100", "Branham300", "Bronfman Family Foundation", "Light Reading", "IIoT Symposium", "C2 MTL 2016 & Montreal Chamber of Commerce", "Canadian Venture Capital Association conference 2016", "Continental Automated Buildings Association - 2016 forum", "Ecole Polytechnique de Montreal / HEC", "IoT World Forum - Dubai", "TechnoMontral - l'Internet des Objets", "The Founder Institute", "Europe EP2130324", "B.Eng", ""], "TakuFukushima": ["Midokura"], "LuisdeBethencourt": ["Samsung Electronics", "Samsung Electronics", "GNOME Foundation", "Collabora Ltd", "Collabora Multimedia", "Oracle", "Sun Microsystems", "Imagen en Accin", "Bachelor of Science (BS), Computer Science", "1st year, Computer Science", "High School, Science"], "MartinWicke": ["Google", "eddy systems", "otherlab", "HighlightCam", "UC Berkeley", "Stanford University", "Max Planck Center for Visual Computing and Communication", "Dr. Sc. ETH, Computer Graphics", "Diplom, Informatik, \"mit Auszeichnung\" (summa cum laude)", "United States 8,995,823", "United States", "United States", "United States", "Computer Graphics Forum", "Computer Graphics Forum", "Transactions on Graphics", "Computer Graphics Forum", "Computer Graphics Forum", "Transactions on Graphics", "Information Processing in Sensor Networks", "Computer Graphics Forum", "Computer Graphics Forum", "Symposium on Point-Based Graphics", "Information Processing in Sensor Networks", "ACM Workshop on Mobile Entity Localization and Tracking in GPS-less Environments", "Transactions on Graphics", "Pacific Graphics", "Eurographics", "Symposium on Point-based Graphics", "Vision, Modeling, and Visualization", "Transactions on Graphics", "Computer Graphics Forum", "Sensor, Mesh and Ad Hoc Communications and Networks"], "KirillBobyrev": ["Google", "Google", "Subterranean Games", "Bachelors Degree, Applied Mathematics and Physics", "Specialist, Mathematics", "High School, Applied Mathematics", "High School", "Coursera Course Certificates, License 34DQUYZBJ22R", "Coursera Course Certificates, License T8TACVE4YV7N", "Coursera Course Certificates, License NDEJXRK5UBAG"], "CyrilRoelandt": ["INRIA", "Universit de Bordeaux", "INRIA", "ReactivOn", "Master's degree, Computer Science", "Master's degree, Computer Science"], "MajorHayden": ["Rackspace, the #1 managed cloud company", "GIAC", "Fedora Project", "Rackspace, the Open Cloud Company", "Rackspace, the Open Cloud Company", "SecureTrust, Inc", "MHTX Enterprises", "American Medical Response", "Red Hat, License 805010118556202", "MySQL AB", "Red Hat, License 805010118556202", "Red Hat, License 805010118556202", "Red Hat, License 805010118556202", "Red Hat, License 805010118556202", "Red Hat, License 805010118556202", "Red Hat, License 805010118556202", "Red Hat, License 805010118556202", "GIAC", "GIAC", "BS, Biological Sciences", "Cellular And Molecular Biology", "", "Member", "Member", "Life Member", "", "UT EMS"], "AndrewMelton": ["Schafer Corporation", "Atlantic Seaboard Wine Association", "Strategic Planning & Operations Research Executives in the Washington D.C. Metro Area", "Melton Consulting Services, LLC", "System Planning Corporation", "Barrel Oak Winery, LLC", "Paradise Springs Winery", "Decision Technologies Inc.", "TASC, Inc.", "Dynamis, Inc.", "CSCI", "BDM", "US Navy", "", "", "Professional Membership", "Certified Tourism Ambassador", "MS, Operations Research", "BS, Biology"], "CoryStone": ["UMB Bank", "UMB Bank", "Commerce Bank", "Commerce Bank", "Commerce Bank", "Business Management", ""], "MasashiOzawa": ["WDB"], "YinggongZHAO": ["Microsoft", "Nanjing University", "Microsoft Research Asia", "Doctor of Engineering, Computer Science and Technology"], "YuZhang": ["Google", "Microsoft", "UCLA", "IBM T.J Watson Research Center", "Tsinghua University", "Dow Chemical", "Dimitris N. Chorafas Foundation", "University of California, Los Angeles", "University of California, Los Angeles", "University of California Los Angeles", "University of California Los Angeles", "ACM Transactions on Economics and Computation", "IEEE Transactions on Signal Processing", "IEEE Journal on Selected Areas in Communications", "IEEE Journal on Selected Areas in Communications", "IEEE Journal on Selected Topics in Signal Processing", "IEEE Journal on Selected Areas in Communications", "Elsevier Journal on Signal Processing", "IEEE Transactions on Signal Processing", "IEEE INFOCOM", "IEEE Allerton Conference", "IEEE Conference on Decision and Control", "ACM SIGMETRICS Big Data Analytics Workshop", "IEEE INFOCOM 2014", "Doctor of Philosophy (Ph.D.), Electrical and Electronics Engineering", "Master's degree, Electrical and Electronics Engineering"], "KenThomas": ["Envisor Consulting", "The 410 Bridge", "ValleyCrest Companies", "Scapes LLC", "BS, Biology"], "HuanXie": ["Texas Southern University", "University of Houston", "Texas Southern University", "Texas Southern University", "Nanospectra Biosciences", "Ph.D., Chemistry", "B.S., Chemistry"], "ScottCyphers": ["Intel"], "YingZhang": ["cole Polytechnique de Montral", "Institut de recherhe de moteur Shanghai", "Master's degree, nformatique", "Ph.D, Mcanique", "D.E.A., Dynamique des structures", "Bachelor's degree, Mcanique, spcialit en moteur automobile"], "BhuvanArumugam": ["Apple", "Apple", "GoGrid", "IBM DemandTec Solutions", "OpenStack", "CollabNet, Inc.", "The Apache Software Foundation", "Ubuntu", "bk Systems P Ltd.", "Linux for You", "Linux for You magazine"], "MaciekChociej": ["Google", "Google", "Jagiellonian University", "Buzzword Junkie", "Madwands", "Jagiellonian University", "DRAGO Entertainment Sp. z o.o.", "Phiscape AG", "INTERIA.PL", "Storm Educational Software", "R-Data", "Jagiellonian University", "Computerland S.A.", "Proceedings of the International Conference on Computer Vision Theory and Applications Vol. 2, Rome, Italy, 24-26 Feb, 2012, 303-310", "United States", "Finished PhD programme, in hiatus, no dissertation, Theoretical Computer Science", "MSc, Grid Computing"], "DiogoMoitinhode": ["Enlitic", "Stuph.co", "Amazon.com", "Rensselaer Center for Open Source", "Kaggle.com", "COMAP, the Consortium for Mathematics and Its Applications", "", "GPU Technology Conference", "GOTO Conference Copenhagen 2016", "O'Reilly Artificial Intelligence Conference", "Re-work Deep Learning in Healthcare Summit", "ICML 2016", "ICLR 2016 Workshop Track", "ICLR 2016 Workshop Track", "Master's Degree, Computer Science / Machine Learning", "Bachelor's Degree, Computer Science and Mathematics, Magna Cum Laude"], "AlexBlack": ["Skymind.io"], "GaizkaNavarro": ["Microsoft"], "MichalDulko": ["Wockhardt UK", "Wockhardt UK", "Wockhardt UK", "ALcontrol Laboratories", "ALcontrol Laboratories (WSP Environmental Services)", "Minerva Scientific LTD", "MEng, Chemical Technology, Specialisation: Technical and Industrial Analytical Chemistry"], "YaoZhang": ["Intel Corporation", "University of Oxford", "EASA", "The University of Nottingham", "University of Nottingham", "Master of Science (MSc), Computer Science, 3.7 / 4.0 with Distinction Dissertation", "Bachelor's degree, Computer Science, Computer Science, 3.9 / 4.0, First Class, ranking top 5%", "Computer Science Department", "Department of Computer Science", "Xiaoma Primary School in Yulin, Guangxi Province, China", "Young Volunteer Association", "International Tennis Competition at Yinzhou District Gymnasium", "The University of Nottingham", "The University of Nottingham"], "GeorgePeristerakis": ["Polytechnique Montral", "Red Hat", "EVOLIO.ca", "LeSite", "Phoenix Technology Games", "20-20 Technologies", "TISEC Inc", "Montreal Python", "MSR 2012 - 9th IEEE Working Conference on Mining Software Repositories", "Masters Degree, Computer Science", "Bachelor, Computer Science (Software Systems)"], "AjayaAgrawal": ["Qubole", "OpenStack", "Morgan Stanley", "DrizzleDB Project", "Microsoft", "B. Tech, Computer Science", "Cloud Computing Concepts, Course and Programming mastery badge, 89%", "Mining Massive Datasets, 94.9% with Distinction", "Cloud Computing Concepts: Part 2, Course and Programming mastery badge, 99%", "Cloud Networking, Course and Programming mastery badge, 98%"], "SergioGuadarrama": ["Sergio shared", "Google", "UC Berkeley", "UC Berkeley", "European Centre for Soft Computing", "Universidad Politcnica de Madrid", "Universidad Rey Juan Carlos", "UC Berkeley", "Universidad Politcnica de Madrid", "IIIA - CSIC", "Proceedings of the 27th AAAI Conference on Artificial Intelligence (AAAI-2013), July 2013", "Int. Conference IPMU 2008", "Ph.D., Artificial Intelligence"], "ChristopherMacGown": ["Cisco", "Solidify Security", "Piston Cloud Computing, Inc.", "Piston Cloud Computing, Inc.", "OpenStack Foundation", "Piston Cloud Computing, Inc.", "Global Earthquake Model Foundation", "Rackspace Managed Hosting", "Soft Surroundings", "Design Works for Business", "Home Decorators Collection"], "MatthewRocklin": ["Continuum Analytics, Inc.", "Sandia National Laboratories", "University of Chicago", "Sandia National Laboratories", "Argonne National Laboratory", "University of California, Berkeley", "National Solar Observatory", "4d Imaging", "Doctor of Philosophy (PhD), Computer Science", "BA, Physics, Mathematics, Astronomy"], "haosdent": ["The Apache Software Foundation", "Shopee", "Alibaba Group", "EMC", "Bachelor of Science (BS), Network engineering, Four", "Asian Games Organizing Committee", "Adobe and W3C", "CSDN", "China Electronic Commerce Association", "Oracle", "Coder", "volunteer"], "SungKim": ["Hong Kong University of Science and Technology", "Microsoft", "MIT", "UC Santa Cruz"], "LiWei": ["CITIC Securities", "Deutsche Bank", "Citi", "NYSE", "Iowa State University", "University of Utah", "Doctor of Philosophy (Ph.D.), Finance and Financial Management Services", "Bachelor of Science (BS), Management Information Systems, General"], "NeilJerram": ["OpenStack", "Tigera", "Metaswitch Networks", "Project Calico", "QtMoko project", "GNU Project", "PhD, Fluid Mechanics", "BA, Engineering", ""], "YasuakiNagata": ["Mitsui OSK Lines", "Mizuho Financial Group", "Bachelor's degree, Mechanical Engineering"], "kaisheny": ["Ant Financial ", "A Startup Trading Company", "Microsoft Research", "Microsoft Research", "Microsoft", "Texas Instruments", "University of California at San Diego", "Advanced Telecommunications Research, Japan", "Deep Learning Workshop @ NIPS 2013", "Interspeech", "Computer, Speech, and Language", "NIPS", "ICASSP", "The 15th Annual Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies (NAACL 2016)", "Ph.D., Communication and Information Systems", "R. A., Electric Engineering", "M.E, Communications and Electronic Systems", "B. E., Radio Engineering", ""], "delallea@valhalla.apstat.com": ["Ubisoft", "Ubisoft", "ApSTAT Technologies", "Universit de Montral", "ApSTAT Technologies", "Universit de Montral", "Universit de Montral", "Doctor of Philosophy (Ph.D.), Machine Learning", "DEA (<=> Master's Degree), Artificial Intelligence", "Ingnieur, Computer Science", "Ingnieur"], "SergeyVilgelm": ["Mirantis", "REGGI Business", "Aspan Telecom", "Arna (BeTop, Ducat)", "Electronic Archive Corp", "Skif Trade", "Stanford University", "VDJK", "Engineers Degree, Electronic systems and technologies", ""], "JohnBresnahan": ["Robert Half Finance & Accounting", "Robert Half International", "Robert Half International", "Robert Half Management Resources", "Robert Half Finance & Accounting", "Katharine Gibbs School - Boston", "Kingston-Dwight Associates", "BS, Finance degree; Management degree"], "MartinTsvetanov": ["Hewlett Packard Enterprise", "EURODESIGN BG Ltd.", "Bachelor of Science (BSc), Computer Science", "Professional Degree, Computer Hardware and Technology", "Aberystwyth University"], "SamuelMerritt": ["Office of the Circuit Public Defender", "Boys & Girls Club of Sumter Co.", "Georgia Association of Circuit Public Defenders", "Boys & Girls Club of Sumter Co.", "Samuel G. Merritt", "Office of the District Attorney", "Doctor of Law (JD)", ""], "JoshuaHarlow": ["GoDaddy", "Yahoo!", "Rochester Institute of Technology", "Intel", "IBM", "SUNY Research Foundation", "Harlow Inc", "OpenStack", "Yahoo!", "Yahoo!", "Yahoo!", "International Journal of Advanced Intelligence Paradigms", "Master's degree", "Bachelor's degree", ""], "DanielWMane": ["Google", "Palantir Technologies", "University of Chicago", "University of Chicago", "Phoenix Capital Partners", "The Pritzker Organization", "Moodys Corporation", "Smith Barney", "Techforge LLC", "BA, Philosophy & Computer Science", ""], "ShanqingCai": ["Google", "The MathWorks", "The MathWorks", "Boston University", "Boston University", "MIT", "Northeastern University", "Boston University", "Johns Hopkins University", "Vision Research", "Proceedings of the 27th Annual Intl. Conf. IEEE-EMBS,", "Journal of the Association for Research In Otolaryngology", "Journal of Tsinghua University (Sci. & Tech.)", "Proceedings of the 8th Intl. Seminar on Speech Production", "Journal of the Acoustical Society of America", "Journal of the Acoustical Society of America", "Journal of Neuroscience", "PLoS ONE", "Proc. 14th Annual Conference of the International Speech Communication Association (InterSpeech 2013)", "Brain and Langauge", "Frontiers in Human Neuroscience", "PhD, Health Science and Technology", "Master of Science, Electrical Engineering and Computer Science", "Master of Science in Engineering, Biomedical Engineering, 4.0 / 4.0", "Bachelor of Engineering, Biomedical Engineering", "", ""], "PaulTucker": ["Google"], "RamiAl-Rfou": ["Google", "Stony Brook University", "Microsoft", "Google", "Google", "Stony Brook University", "METU", "IEEE", "Jovision", "IEEE", "We are All Jordan Youth Commission", "Member", "Member", "ACM SIGKDD", "Proceedings of the Seventeenth Conference on Computational Natural Language Learning", "24th International Conference on Computational Linguistics (Coling)", "ICML 2013 workshop on Deep Learning for Audio, Speech and Language Processing", "Complenet 2104", "Middle East Technical University", "Technical Report", "Technical Report", "15th SIAM International Conference on Data Mining (SDM 2015)", "Doctor of Philosophy (Ph.D.), Computer Science, 3.98", "Bachelor, Computer, Engineering, 3.79", "General Secondary Certificate, Scientific stream"], "VictorSergeyev": [""], "ArjunJain": ["IIT Bombay", "Perceptive Code LLC", "Apple", "NYU", "Media Integration and Communication Center (MICC), University of Florence", "Yahoo", "Pi Corporation", "United States", "Doctor of Philosophy (PhD), Computer Science", "Bachelor of Engineering (BE), Computer Science and Engineering"], "RJRyan": ["Google", "Mixxx", "Moca Mobile", "Google, Inc.", "NVIDIA", "Interactive Intelligence, Inc.", "MEng, Computer Science", "SB, Computer Science"], "DoronChen": ["United States 8072704", "European Journal of Operational Research 225, 36-43 (2013)", "Mass Storage Systems and Technologies (MSST), 2010 IEEE 26th Symposium: Research Track", "Operations Research Letters 38, 215-217 (2010)", "SIAM Journal on Matrix Analysis and Applications", "Computers and Operations Research 36: 1646-1655 (2009)", "ACM Transactions on Graphics 24(4): 1259-1282 (2005)", "Electronic Transactions on Numerical Analysis 21: 28-46 (2005)", "Linear Algebra and its Applications 405: 239-248 (2005)", "Linear Algebra and its Applications 392: 71-90 (2004)", "Numerical Linear Algebra with Applications 11: 695-721 (2004)", "Electronic Transactions on Numerical Analysis 16: 30-49 (2003)", "ACM SIGMETRICS Performance Evaluation Review", "ERCIM News"], "ColleenMurphy": ["Bloomberg BNA", "The GW Hatchet", "The Chronicle of Higher Education", "The GW Hatchet", "Minneapolis/St. Paul Business Journal", "Pohlad Family Companies", "Bachelor of Arts (B.A.), Political Communication, Spanish", "High school", "The School of Media and Public Affairs", "", "Society of Professional Journalists", "School of Media and Public Affairs", "The American News Women's Club", "The School of Media and Public Affairs", "President"], "JayPipes": ["Mirantis", "Apress"], "KamilRykowski": ["PuppyBox", "Intel Corporation", "Blue Services Sp. z o.o.", "Blue Services Sp. z o.o.", "e-InPost Sp. z o.o.", "Pnyks Sp. z o.o.", "MongoDB, Inc.", "Bachelor of Science (BSc), Applied Informatics"], "LiangliangHe": ["Xiaomi Technology", "Microsoft", "EMC", "VMware", "EMC", "Inria", "M.S.", "B.S."], "BenRoble": ["J.P. Morgan", "J.P. Morgan", "Export-Import Bank of the United States", "Taylor Companies", "Citi", "MBA, Finance and strategy", "BSLA, French and Business", "High School, High School"], "JasonYosinski": ["Geometric Intelligence", "Cornell University", "Google DeepMind", "Grey Garage", "Eliot Middle School", "Mink Labs", "Numerica", "DARPA Grand Challenge Team Caltech", "Proceedings of the 13th International Conference on the Synthesis and Simulation of Living Systems", "Proceedings of the 13th International Conference on the Synthesis and Simulation of Living Systems", "Ph.D.", "study abroad", "B.S.", "HS"], "KentaroTakeda": ["Portola Pharmaceuticals", "Genentech", "Journal of Molecular Biology, 2014, ISSN: 0022-2836", "Journal of Neuroscience", "Journal of Molecular Biology", "Bachelor's degree, Biochemistry and Molecular Biology"], "SvetlanaShturm": ["Mirantis", "Mirantis", "Mirantis", "Renet COM", "Applied Informatics in Economics, 5"], "boulanni": ["Google", "Adobe", "Microsoft", "Google", "Doctor of Philosophy (PhD), Computer Science", "Master of Applied Science (MASc), Engineering Physics", "Bachelor of Engineering (BEng), Engineering Physics"], "PatrickSkjennum": ["Mito.ai", "NTNU", "Abakus", "Romerike Markiseservice AS", "Knowit Objectnet", "Telenor Digital", "Rayon Visual Concepts", "Master of Technology (M.Tech.), Computer Science", "Media & Communication"], "MikeFedosin": ["Mirantis", "OpenStack", "ISPRAS", "Doctor of Philosophy (PhD), ", ", "], "DonalLafferty": ["Coursera Course Certificates, License B6KB3NSJ8V8R"], "SukritiRamesh_": [], "SakshamVarma": ["Amazon Web Services", "Cisco Systems", "University of Massachusetts Amherst", "Cisco Systems", "Yahoo!", "Design Innova", "Master's Degree, Computer Science, 3.80/4.0", "Bachelor of Technology (B.Tech.), Information Technology, 9.21/10", "SPSM '14 Proceedings of the 4th ACM Workshop on Security and Privacy in Smartphones & Mobile Devices", "Proceedings of the International Conference on Advancements in Information Technology Chennai: ICAIT 2011", "Proceedings of the National Level Conference on Information Processing and Computing, Coimbatore"], "GaryKotton": ["VMware", "Red Hat", "Radware", "Radware", "Algorithmic Research"], "KevinLMitchell": ["Master of Business Administration (MBA), Marketing/Marketing Management, General", "BSBA, Business Administration"], "ChrisBehrens": ["YA | Engage", "Superior Recreational Products", "Brand Activation Association (BAA)", "Minneapolis Downtown Council", "Institute for Research in Marketing, Carlson School of Management, University of Minnesota", "Minneapolis Club", "Circle Urban Ministries", "YA | Engage", "Baird Capital Partners", "SourceLink", "SourceLink", "SourceLink", "SourceLink", "ETrac Corporation", "ETrac Corporation", "GE Financial Assurance, Partnership Marketing Group (formerly The Signature Group)", "Official Airline Guides", "Official Airline Guides", "Bachelor of Science, Marketing", "Member"], "StephenGordon": ["salesforce.com", "VMware", "Microsoft Corporation", "Microsoft Corporation", "Microsoft Corporation", "Microsoft Corporation", "Microsoft", "Humanitarian Technology 2016 Science, Systems & Global Impact", "PENCIL, Inc.", "Carbon War Room", "MIT College of Engineering", "Carbon War Room", "Harvard University", "Microsoft", "United States Department of Defense", "Microsoft", "VMware", "MIT Sloan School of Management", "Salesforce Trailhead", "American Red Cross"], "HarmdeVries": ["Montreal Institute for Learning Algorithms (MILA)"], "SimonLefrancois": ["Montreal Institute for Learning Algorithms (MILA)"], "RobertMcGibbon": ["D. E. Shaw Research", "Stanford University", "Ph.D., Theoretical Chemistry", "A.B. Summa Cum Laude, Chemistry & Computer Science", ""], "MikhailKorobov": ["Scrapinghub"], "ChmouelBoudjnah": ["Red Hat", "Duolingo"], "SimonPasquier": ["State of Fribourg / SITel", "EMF", "SBB", "sunrise", "sunrise", "diAx", "Energie Ouest Suisse", "University of Geneva", "Doctor of Philosophy (Ph.D.), Theoretical and Mathematical Physics", "Master's degree, Physics"], "DerekMurray": ["Proceedings of OSDI 2016", "Proceedings of SOSP 2013", "Proceedings of NSDI 2011", "Proceedings of CIDR 2013", "Google", "PhD", "MSc", "BSc (Hons)"], "MattDietz": ["Rackspace, the #1 managed cloud company", "Rackspace, the Open Cloud Company", "Rackspace Hosting", "Rackspace Hosting", "XPEL Technologies", "ENSCO Inc", "Bachelors of Science, Computer Science", "", "United States", "United States"], "CharlesNicholson": ["Google", "Square", "Sony Computer Entertainment America", "Power of Two Games", "Sony Computer Entertainment America", "High Moon Studios", "High Moon Studios", "Liquidnet", "Disney", "Vicarious Visions", "United States 8375295", "United States", "United States", "United States"], "JustinLong": ["New York Times", "Bernie A.I.", "3 Tier Logic", "Earhart DNA Project", "3 Tier Logic", "Alloy Technologies, Inc.", "Rubik", "ACG Corp.", "Snow4Innocents", "Holy Innocents Children's Hospital", "PlanSea Entertainment", "Bachelors, Business, Health Sciences", "Honours Secondary Diploma"], "RazvanPascanu": ["Google DeepMind", "Universit de Montral", "Universite de Montreal", "Master, Smart Systems", "Bachelor of Science, Electrical Engineering and Computer Science"], "AntonArefiev": ["Chrysler Rus", "MAN Financial Services LLC", "De Lage Landen LLC", "Volvo Financial Services LLC", "Promsvyazbank CJSC", "Bachelor of Science, Asian Studies, Economics", "Bachelor's degree, Chinese language"], "BenoitSteiner": ["Google", "Coverity", "Tabula, Inc.", "Magma Design Automation", "Monterey Design Systems", "Ensim", "Mycom International", "Peregrine Systems", "Master's degree", "Master's degree", ""], "AlexanderGordeev": ["Atlas Copco", ", "], "LuongAnhTuan": ["Xuan Mai Investment and Construction Corporation"], "DanSmilkov": ["Google", "MIT", "Macedonian Academy for Sciences and Arts", "IBM", "Netcetera", "Master of Science (M.Sc.), MIT Media Lab", "M.Sc., Networks - Topology, Evolution, Dynamics, GPA: 9.89/10", "Bachelor, Computer Science", "Physical Review E 84 (4), 046102"], "sonaliii": ["Independent Contractor", "BCG Digital Ventures", "Skymind.ai - Deep learning for the JVM", "Contractor", "Cpmc Research Institute", "Statistics", "Computer Software Engineering", "Data Science", "Bachelor of Science (B.S.), Biochemistry, 3.87", "British Journal of Pharmacology"], "LijunXue": ["Carnegie Mellon University", "Rakuten", "Tesla Motors", "University of Washington", "Theano Open Source Dev Community", "HackNTU", "INTERFIRM", "iFanr", "Carnegie Mellon University", "HackShanghai", "Google", "HappyChick Foundation", "AIESEC", "Master's degree, Software Engineering", "Master's degree, Computer Science and Systems, GPA 3.70", "Bachelor of Science (BS), Electrical and Electronics Engineering, GPA 3.5", "Deep Learning", "Coursera", "Coursera", "Coursera", "Coursera", "Coursera", "Coursera", "Canton Fair (China Import and Export Fair)", "Guangzhou International Documentary Film Festival", "Chinese Conference on Cloud Computing(CCCC 2013)", "PACKT Publishing", "", "", "", "", ""], "JonasMeinertzHansen": ["FindZebra"], "BrianLamar": ["EMI - Research Solutions", "MMR, Marketing Research", "BBA Marketing, Marketing"], "JeyKottalam": ["Berkeley Institute for Data Science, UC Berkeley", "AMPLab, Computer Science Division, UC Berkeley", "Adjective Noun", "meetyou", "Coral8", "Google & The Mono Project", "UC Davis Department of Computer Science", "UC Davis DARPA Grand Challenge Team"], "Geetika_Batra": ["OpenStack", "Lyxel Labs Private Limited", "OpenStack", "OpenStack", "Outreachy Intern at OpenStack", "Learn IT Girl, License 10060142", "Accredible, License Accredible-10222048", "Bachelor of Technology (B.Tech.), Electronics and Communication", "87.2%", ""], "KyungHyunCho": ["University of Montreal - Postdoctoral Researcher", "Aalto University School of Science, Finland, Ph.D and M.Sc.", "Zen Robotics Inc., Finland", "Interactivy, Korea", "Korea Advanced Institute of Science and Technology - Undergraduate Researcher", "Korea Advanced Institute of Science and Technology - Undergraduate Researcher"], "SachiKing": ["Hewlett Packard Enterprise", "Anchor Systems", "Anchor Systems", "Atipa Technologies", "Atipa Technologies", "Zen Zero"], "SeongJaePark": ["SeongJae .", "Distributed Computing System Lab, Seoul National University", "Korea Open Source Software Lab", "Korea Open Source Software Lab", "n/a", "Samsung Electronics", "Suwon Samsung Software Membership", "Doctor of Philosophy (Ph.D.), Computer Science and Engineering", "Bachelor of Science (BS), Information Computer Engineering", "Bachelor of Science (BS), Electronics Engineering", "Google Developer Groups Korea Union", "Google Korea", "Google Developer Groups Suwon"], "AlexanderRosenbergJohansen": ["Salesforce", "DTU - Technical University of Denmark", "Master of Science (M.Sc.), Mathematics and Computer Science, 11.4 of 12.0", "Master of Science (M.Sc.), Computervidenskab", "Bachelor of Science (B.Sc.), Management Information Systems, General, 10.7 of 12.0", "Bachelor of Science (B.Sc.), Computervidenskab", "TensorFlow", "Deep Learning Research, In", "NIPS recurrent neural network Symposium, 2016", "International conference on acoustics speech and signal processing, 2016"], "DarrenWhite": ["dhs"], "MatthiasSchmitz": ["Unternehmensberatung Matthias Schmitz"], "AlanWu": ["Microsoft", "Qualcomm", "Holland Bloorview Kids Rehabilitation Hospital", "University of Toronto", "Master of Science (M.Sc.), Computer Science", "Bachelor of Applied Science (B.A.Sc.) in Engineering Science, Engineering Science", "Toronto Rehabilitation Institute", "China ZL 2008 2 0022119.9"], "SuharshSivakumar": ["Google", "University of Illinois at Urbana-Champaign", "Google", "University of Illinois at Urbana-Champaign -- Student Sustainability Committee", "Bazaarvoice", "City of Moline", "Bachelor of Science (BS), Computer Science"], "VincentVanhoucke": ["Vincent shared"], "YosefBerman": ["Doctor of Medicine (MD), Medicine", "Master of Business Administration (MBA), Finance, 3.67", "B.A., US History, Pre-Medical Sciences, 3.8", "MedStar Georgetown University Hospital", "Rutgers - Robert Wood Johnson Medical School", "Robert Wood Johnson Medical School", "Kaplan Test Prep and Admissions", "Summit Oaks Hospital", "University of Maryland"], "OlivierDelalleau": ["Ubisoft", "Ubisoft", "ApSTAT Technologies", "Universit de Montral", "ApSTAT Technologies", "Universit de Montral", "Universit de Montral", "Doctor of Philosophy (Ph.D.), Machine Learning", "DEA (<=> Master's Degree), Artificial Intelligence", "Ingnieur, Computer Science", "Ingnieur"], "DustinWebb": ["Webb Tech, LLC", "Omniture", "Strategix Performance", "Clear Channel Broadcasting of Salt Lake City", "Crossland Mortgage", "Teleperformance USA", "International Conference on Robotics and Automation 2013", "Ph.D, Artificial Intelligence and Robotics", "Bachelors of Science, Computer Science with emphasis in the application of AI to robotics", "AS, Computer Science", ""], "PawelSkowron": ["Intel Corporation", "Master of Business Administration (M.B.A.)", "BS", "Masters Degree", "Red Hat, Inc., Licencja 120-188-719", "Licencja scrum.org", "Oracle", "International Project Management Association, Licencja 80/2010"], "GokulaKrishnan": ["Gokula Krishnan auf LinkedIn", "Gokula Krishnan gefllt Folgendes:", "Gokula Krishnan hat Folgendes mitgeteilt:", "Gokula Krishnan gefllt Folgendes:", "ETH Zurich", "MIT Media Lab and Srujana Innovation Center, LV Prasad Eye Hospital", "BITS Pilani", "Wearable and Pervasive Computing and Networking Lab (WPN lab), BITS Pilani", "SDET Lab, BITS Pilani", "Georgia Institute of Technology", "BITS Pilani", "BITS firefox community", "Indian Institue of Remote Sensing", "Kanini Computers", "Department of Science and Technology, Government of India", "Homi Bhabha Centre for Science Education", "BITS Pilani", "IBM", "Microsoft", "Government of India", "Masters Degree, Computer Science", "Bachelor of Engineering (Honours), Computer Science, 9.18/10", "High school graduation, 474/500", "Till 10th", "Prfungsergebnis: 329/340", "Prfungsergebnis: 113/120", "Coursera Course Certificates, Lizenz XE6ZUFATXPNK", "Coursera Course Certificates, Lizenz TFQEUB686R7A", "Coursera Course Certificates, Lizenz RGATA6S756C5", "Coursera Course Certificates, Lizenz 6WQKBBW3MDEZ", "Duolingo", "edX"], "AndrewDai": ["Ph.D.", "BA"], "sguada": ["Sergio shared", "Google", "UC Berkeley", "UC Berkeley", "European Centre for Soft Computing", "Universidad Politcnica de Madrid", "Universidad Rey Juan Carlos", "UC Berkeley", "Universidad Politcnica de Madrid", "IIIA - CSIC", "Proceedings of the 27th AAAI Conference on Artificial Intelligence (AAAI-2013), July 2013", "Int. Conference IPMU 2008", "Ph.D., Artificial Intelligence"], "AnthonyYoung": ["GASY INVESTMENT Co", "GASY Investment Co.", "GASY INVESTMENT COMPANY", "KMY HOLDINGS, INC", "KMY HOLDINGS, INC", "SALOMON SMITH BARNEY", "PHILADELPHIA & AMERICAN STOCK EXCHANGE", "U.S. Marine Corp", "Economics, Economics, Mathematics"], "BartvanMerri\u00ebnboer": ["Twitter", "Facebook", "Self-Employed", "TEDxWarwick", "AIESEC", "GroeneKruis Domicura", "Paris International Model United Nations (PIMUN)", "European Commission", "SOS Children's Villages", "Doctor of Philosophy (Ph.D.), Machine learning, A", "Master of Science (MSc), Complex Systems Science (Erasmus Mundus), A", "Master of Science (MSc), Complex Systems Science (Erasmus Mundus), GPA 3.9/4.0", "Bachelor of Science (BSc), Mathematics and Business Studies, First Class Honours", "Business, Israeli politics, Middle Eastern history, Ethics, A (93%)"], "YinggongZHAO_": ["Microsoft", "Nanjing University", "Microsoft Research Asia", "Doctor of Engineering, Computer Science and Technology"], "LinYang": ["LinkedIn", "Max Talents", "Microsoft", "Prediction Systems Inc", "Bookman, Ltd", "Prediction Systems Inc"], "OliviaNordquist": ["Google", "HookLogic, Inc.", "University of Michigan", "Mary Markley Dining Services", "Bachelors Degree, Computer Science", "French Language and Literature", "Clarkston United Methodist Church", "Alternative Spring Break"], "JonBernard": ["CrossChx", "Bernard Interactive", "Victoria's Secret", "Victoria's Secret", "The Columbus Dispatch", "The Columbus Dispatch", "West Virginia Media Holdings, LLC", "Cox Enterprises, Inc. - WTOV-TV9", "B.A., Communication"], "MattJoyce": ["Center for Employment Opportunities", "GreenLight Fund", "William Penn Foundation", "Harvard University", "Harvard University", "Philly Fellows", "Philadelphia Committee to End Homelessness", "MPP", "BA, History", "Broad Street Ministry", "Philly Fellows", "Haverford College", "Leadership Philadelphia"], "YuefengZhou": ["Google", "Conviva", "Carnegie Mellon University", "Morgan Stanley", "Master's Degree, Information Networking, 3.77/4.0", "Bachelor's degree, Computer Science, 87/100", "Exchange Student, Computer Science", "Information Networking Institute, Carnegie Mellon University", "Chun-Tsung Endowment Fund"], "MarcAbramowitz": ["Marc liked", "SurveyMonkey", "SurveyMonkey", "pymssql open source project", "Chegg", "BlueKai", "Yahoo!, Flex Force (Tiger Team)", "Yahoo!, Yahoo! Personals Engineering Team", "Fireclick", "Digidesign", "Stanford University", "Lawrence Livermore National Laboratory", "Northeast Parallel Architectures Center", "MS", "BS", "Linux.com", "https://www.linux.com/news/installing-linux-vserver", "Linux.com", "Linux.com", "Linux.com", "Antic Magazine", "Antic Magazine"], "JoshLevenberg": ["Google Research"], "ChrisBuccella": ["Intralinks", "BA", "BS", "United States US8271501", "United States US8041555", "United States US7836348", "Kiva.org", "AARP TaxAide"], "SherryMoore_": ["Google", "Sun Microsystems", "Intel"], "DongjoonHyun": ["Hortonworks", "The Apache Software Foundation", "SK Telecom", "Samsung Electronics", "Data Mining and Knowledge Discovery", "ACM SIGKDD", "Distributed and Parallel Databases", "United States US8732759 B2", "United States US8661041 B2", "United States US8457472 B2", "United States US8352985 B2", "United States", "United States", "Korea 1015228710000", "Korea 1015400190000", "Korea 1012569400000", "Korea", "Korea", "Korea"], "nouiz": ["mnubo", "Briowireless Inc.", "Synergie Pilates", "Tekelec", "Tekelec", "Tekelec", "Blueslice Networks", "Nortel", "Teleglobe", "Microcell", "TechnoMontral", "Startup Weekend", "WearHacks", "Fondation Montral inc.", "Academos", "Founder Institute", "C100", "CABA", "Gartner", "ABI Research", "Price Waterhouse Coopers", "Deloitte", "Canadian Innovation Exchange", "Ernst & Young", "C100", "Branham300", "Bronfman Family Foundation", "Light Reading", "IIoT Symposium", "C2 MTL 2016 & Montreal Chamber of Commerce", "Canadian Venture Capital Association conference 2016", "Continental Automated Buildings Association - 2016 forum", "Ecole Polytechnique de Montreal / HEC", "IoT World Forum - Dubai", "TechnoMontral - l'Internet des Objets", "The Founder Institute", "Europe EP2130324", "B.Eng", ""], "SigurdSpieckermann": ["Siemens AG, Corporate Technology", "Siemens AG, Corporate Technology", "MAN Diesel & Turbo SE", "Hamburg University of Technology", "Kurschat GmbH Messtechnik + Automation", "Eisenfhr, Speiser & Partner Patentanwlte Rechtsanwlte", "Kurschat GmbH Messtechnik + Automation", "Eisenfhr, Speiser & Partner Patentanwlte Rechtsanwlte", "Channel Business Services GmbH / TuTech Innovation GmbH", "United States", "Neurocomputing (Special Issue ESANN 2014)", "Advances in Neural Information Processing Systems (NIPS), Second Workshop on Transfer and Multi-Task Learning: Theory meets Practice", "Proceedings of the European Conference on Machine Learning (ECML), Workshop on Generalization and Reuse of Machine Learning Models over Multiple Contexts", "Proceedings of the 24th International Conference on Artificial Neural Networks (ICANN)", "Proceedings of the 22nd European Symposium on Artificial Neural Networks, Computational Intelligence and Machine Learning (ESANN)", "Dr. rer. nat., Computer Science", "Master of Science (M.S.), Computational & Mathematical Engineering, GPA 3.65 (=A-)", "Bachelor of Science (B.Sc.), Computer Science and Engineering, 2.1 (German grading system)", "Abitur, 1.7 (German grading system)", "", ""], "JasonCannavale": ["Rackspace, the #1 managed cloud company", "", ""], "RobertDiPietro": ["Johns Hopkins University", "MIT Lincoln Laboratory", "Northeastern University", "Master of Science (MS), Electrical Engineering", "Bachelor of Science (BS), Applied Physics and Engineering"], "NguyenHungPhuong": ["Fujitsu Viet Nam", "FPT Software", "Bachelor's degree, Law", "IBM, License None", "No"], "ChristofAngermueller": ["Molecular Systems Biology", "http://biorxiv.org/content/early/2016/05/27/055715", "Nature Methods", "Nature Methods", "Diabetologia", "BioMed Research International", "Bioinformatics", "Cell"], "ThomasLeaman": ["Landstar - Ranger", "Arrow trucking", "GE Transportation", "Associate's degree, Logistics, Materials, and Supply Chain Management", "Associate's degree, Business/Commerce, General"], "YuwenYan": ["Shanghai Haizhi Intelligent Technology Co.", "Microsoft", "WI Input Method Team of HIT", "M.S., Computer science", "B.S., Computer science", "", ""], "IgorMacedoQuintanilha": ["Laboratrio de Sinais, Multimdia e Telecomunicaes - UFRJ", "Letsevo, Designoteca", "GTA - Grupo de Teleinformtica e Automao", "M.Sc., Electrical Engineering", "B.Sc., Electronics Engineering", "Coursera Course Certificates, License NXJPL29XL556"], "JoshuaV.Dillon": ["Google", "Georgia Institute of Technology", "Microsoft Research", "Purdue University", "Purdue University", "Purdue University", "Lawrence Livermore Nat. Lab", "IBM", "ThermoAnalytics Inc", "IBM", "IBM", "Michigan Department of Transportation", "Ph.D, Computational Science & Engineering, 4.0", "MS, Electrical & Computer Engineering", "B.S, Computer Engineering & Electrical Engineering"], "SteveMartinelli": ["OpenStack", "OpenStack", "IBM Canada", "IBM Canada", "IBM Canada", "IBM Canada Ltd.", "York University", "IBM", "IBM", "O'Reilly", "OpenStack Vancouver Summit", "OpenStack Vancouver Summit", "OpenStack Vancouver Summit", "OpenStack Summit Presentation November 2014", "Youtube", "IBM DeveloperWorks", "Thoughts on Cloud", "OpenStack Summit Presentation May 2014", "OpenStack", "Stackalytics", "IBM", "B. ASc, Computer Engineering"], "KuiShi": ["Huawei Technologies", "OpenStack Project", "Polycom", "EMC", "Wind River", "Institute of Software China Academy of Sciences", "Bachelor's degree, Computer Science & Technology"], "BriannaPoulos": ["Johns Hopkins University Applied Physics Laboratory", "Extreme Networks", "GlaxoSmithKline", "NC State Undergraduate Tutorial Center", "Cisco Systems", "NC State University Housing", "Bachelor of Science, Computer Engineering"], "ToanNguyen": ["Hetrick-Martin Institute", "Bachelor of Arts (B.A.), Chemistry, concentration: Biochemistry", "Biological Sciences", ""], "AmitAgarwal": ["Microsoft", "Microsoft", "Microsoft", "Microsoft", "Mentor Graphics India Pvt. Ltd.", "Microsoft", "UCLA VLSI CAD LAB", "Mentor Graphics India", "ICCAD 2008", "Journal - ACM Transactions on Design Automation of Electronic Systems (TODAES)", "United States 12/971,943", "United States 12/413,780", "United States 13/158,966", "United States PCT/US2012/039884", "United States 20120324430", "United States 8677322", "United States", "MS, Computer Science (Programming Languages and Systems)", "BTech, Computer Science and Engineering"], "KevinJamesMatzen": ["Cornell University", "Cornell University", "Microsoft", "University of Michigan", "National Instruments", "Ph.D., Computer Science", "BSE, Computer Engineering, Computer Science Engineering", "ICCV 2013", "ECCV 2014"], "XingdongZuo": ["Bachelor of Science (B.S.), Applied Mathematics"], "JosephTurian": ["Company in Stealth Mode", "MetaOptimize LLC", "GigaOM", "Universit de Montral", "MIT AI Lab", "Ph.D., Computer Science", "AB, Computer Science"], "JustinShepherd": ["Eastdil Secured", "CBRE", "Jones Lang LaSalle", "Master of Business Administration (MBA), Investments", "Bachelor of Arts (B.A.), Political Science and Government"], "LinkerLin": ["Dianping", "Alibaba", "Master of Computer Applications (M.C.A.), Recommendation System", "Bachelor of CS, Computer Software Engineering"], "AaronRosen": ["PDT Partners", "AppNexus", "AppNexus", "Facebook", "Google", "Addison Search", "Medialets", "Eliassen Group", "Apex Systems", "Apex Systems", "Hawk Ridge Systems", "B.A."], "SeanDague": ["Hewlett-Packard", "Mid Hudson Valley Linux and Open Source Users Group", "OpenStack Summit Spring 2013", "Poughkeepsie Farm Project", "MS, Computer Science", "Bachelors, Physics", ""], "Pamela-RoseVirtucio": ["Bachelor of Science (B.S.), Computer Science"], "frankseide": ["Microsoft", "Microsoft", "Microsoft", "Microsoft", "Microsoft", "Microsoft", "Philips Research, Taipei", "Philips Research", "Dipl.-Ing., EE, CS"], "fvsin": ["Montreal Institute for Learning Algorithms (MILA)"], "RobertLi": ["Brookfield Property Partners", "Tishman Speyer", "Grosvenor", "Shui On Land", "MSRED, Real Estate Finance and Investment", "Bachelor's degree, Econometrics"], "Caglar": ["Proceedings of the 15th ACM on International conference on multimodal interaction"], "StanLagun": ["Mirantis", "Mirantis", "Mirantis Inc."], "RussellSim": ["Pulcinella Toronto", "Culinary Management"], "GijsvanTulder": ["Biomedical Imaging Group Rotterdam, Erasmus MC"], "yifeif": ["Yifei liked", "Google", "Microsoft", "Olin College of Engineering", "Microsoft", "IEEE Xplore", "Master of Science (M.S.), Electrical Engineering", "Bachelor of Science (B.S.), Electrical and Computer Engineering"], "GeorgOstrovski": ["Google DeepMind", "DeepMind", "Sunrise Setting Ltd", "University of Warwick", "ISD Software und Systeme GmbH", "Coursera", "Coursera", "Coursera", "Coursera", "Coursera", "Journal of Dynamics and Games", "Physica D: Nonlinear Phenomena", "Topology and its Applications", "Regular and Chaotic Dynamics", "Doctor of Philosophy (PhD), Mathematics", "MSc in Mathematics, with distinction", "Visiting student", "Pre-diploma (Vordiplom), Mathematics, 1.1"], "JesseLivezey": ["UC Berkeley", "Audience, Inc.", "Cornell University", "Weill Cornell Medical College in Qatar", "Cornell University", "Facilitator, Teacher, Mentor", "Physics, Biophysics, Theoretical Neuroscience, Machine Learning", "B.A., Physics, Mathematics"], "QinZhao": ["Ingredion Incorporated", "Oceans Omega / Mycell Technologies LLC", "Rutgers University", "International Flavors & Fragrances Inc.", "Lifeflo Inc.", "Promotion In Motion Inc.", "Doctor of Philosophy (Ph.D.), Food Science, 3.9/4.0", "Bachelor of Science (BS), Biotechnology, 3.5/4.0", "Journal of Agricultural and Food Chemistry", "Carbohydrate Polymers", "Journal of Agricultural and Food Chemistry", "Journal of Agricultural and Food Chemistry", "Food Chemistry", "", "", "", ""], "yzhang87": ["GoDaddy", "EMC", "Pivotal Software, Inc.", "Amazon", "Beijing Topsec Network Security Technology", "Huawei", "MediaTek", "Lytran", "Master's degree, Information Technology, Mobility", "Bachelor's degree, automation"], "cai-lw": ["Wei LI gefllt Folgendes:", "Bachelor's Degree, Computer Science", "Master of Philosophy (M.Phil.), Electrical and Electronics Engineering", "Google", "Kaggle", "NetEase Youdao"], "DaveMcNally": ["Surgical Tables Inc", "BenchMark Rehab Partners", "Allen Medical Systems Inc", "Maverick Orthopedics Inc"], "SuneelMarthi": ["The Apache Software Foundation", "Red Hat", "Washington DC Apache Flink Meetup", "Intel Corporation", "VeriSign", "Lockheed Martin", "Plateau Systems", "AT&T Government Solutions", "Siemens Energy Management Systems", "Harris Corporation"], "KashifRasul": ["Samson Properties", "Cricket Communications", "PCC Wireless", "InTouch Wireless", "K S Wireless", "Northern Virginia Association of Realtors", "Bachelor of Science, Finance"], "delallea": ["Ubisoft", "Ubisoft", "ApSTAT Technologies", "Universit de Montral", "ApSTAT Technologies", "Universit de Montral", "Universit de Montral", "Doctor of Philosophy (Ph.D.), Machine Learning", "DEA (<=> Master's Degree), Artificial Intelligence", "Ingnieur, Computer Science", "Ingnieur"], "DerekHiggins": ["FEI Company"], "hunkim": ["Hong Kong University of Science and Technology", "Microsoft", "MIT", "UC Santa Cruz"], "JackRae": ["Google", "Quora", "Heswall Disabled Children's Holiday Fund", "Master of Science (M.S.), Statistics, 4.1 / 4.3", "Master of Science (M.Sc.), Mathematics and Computer Science, 1st Class Honors"], "YaguangTang": ["MANDOO GROUP PTY LTD"], "AlaRezmerita": ["Cloudwatt", "PROLOGUE", "INRIA", "Universit Paris-Sud 11", "Universit Paris-Sud 11", "Euro-Par 2006", "Euro-Par 2006", "MPRI, Informatique", "DESS, Informatique", "Matrise, Informatique"], "WilliRichert": ["Microsoft (Bing)", "packt", "packt", "PhD Thesis, C-LAB Publication / University of Paderborn"], "DjangoPeng": ["2012 Labs, Huawei Technologies", "University of California, San Diego", "Witspring Inc", "Zhejiang University", "Visiting Scholar, Bioinformatics", "Bachelor of Engineering (B.Eng.)(Top 5%), Computer Science", "Zhejiang University", "Zhejiang University", "Zhejiang University", "", "Zhejiang University", "COMAP(the Consortium for Mathematics and Its Applications)", "Huawei Technologies Co., Ltd", "Huawei Technologies Co., Ltd", "DataCamp, License 0a39a85efc0d93aab822ba10eb5830a6c5d2ae23", "DataCamp, License 16186fa5294a7bbfb80460da954b74cfdd94ea5e"], "AndreyBrindeyev": ["IBM Redbooks"], "TakaoNakaguchi": ["", "NTT-AT", ", "], "DavidG.Andersen": ["Carnegie Mellon Department of Computer Science", "MIT - Laboratory for Computer Science (LCS/CSAIL)", "Compaq SRC", "University of Utah", "ArosNet, Inc.", "Multi-State Lottery Association, Intel, Banner & Witcoff, LLC, IJNT, Inc., Ascensus, others"], "MattRiedemann": ["IBM", "IBM", "IBM", "IBM", "Daktronics", "Bachelor of Science, Computer Science"], "JakubRuzicka": ["EZ, a.s.", "EZ, a.s.", "EZ, a.s.", "HayGroup", "Appian Group", "Deloitte", "Master of Business Administration (MBA), Business Administration and Management, General", "Mgr, Economics", ""], "KaseyAlusi": ["Workday", "Workday", "Threadix", "Workday", "Boeing", "Boeing", "Bayer HealthCare", "Bayer HealthCare", "Bayer HealthCare", "Bachelors, Informatics"], "Graham Hayes": ["HubSpot", "HubSpot", "HubSpot", "HubSpot", "HubSpot", "HubSpot", "Salem Five", "Bachelor, Business Administration; Marketing"], "SamAbrahams": ["Sam liked", "Sam liked", "Memdump LLC", "Illumination Entertainment", "Technology Learning Center", "Roadmap to Success Program, University of Richmond", "Arlington Public Schools", "Bachelor of Science (B.S.), Mathematical Economics, cum laude", "International Space Apps Challenge - Pasadena", "Arlington Food Assistance Center", "Bleeding Edge Press"], "GrahamTaylor": ["School of Engineering, University of Guelph", "Investment Industry Regulatory Organization of Canada (IIROC)", "OANDA", "Courant Institute of Mathematical Sciences, New York University", "Mixamo", "Speech Technology Group, Microsoft Research", "INSA de Lyon Technical and Scientific University"], "DelipRao": ["Joostware", "Amazon", "Glassdoor", "Twitter", "Human Language Technology Center of Excellence", "Google", "Google Inc., CA", "Indian Institute of Technology Madras", "IBM India Research Labs, New Delhi", "PhD, Machine Learning, Natural Language Processing", "MS, Computer Science", "MS, Computer Science", "BE, Computer Science"], "FarukAhmed": ["Universit de Montral"], "AlexanderMatyasko": ["Doctor of Philosophy (PhD), Computer Science", "MS, Computer Science", "Engineer's degree, Computer Science", "Scand", "Coursera", "edX, License CaltechX/CS1156x/Fall2013", "Coursera", "Coursera", "Coursera", "edX, License RiceX/ELEC301x/Spring2014", "Coursera", "edX, License HarvardX/MCB80.1x", "Santa Fe Institute"], "AmjadAlmahairi": ["Maluuba", "Montreal Institute for Learning Algorithms (MILA), Universit de Montral", "Nuance Communications", "McGill University", "McGill University", "McGill University", "Doctor of Philosophy (PhD), Machine Learning", "MSc., Computer Science", "BEng., Informatics, Artificial Intelligence"], "OllieLeahy": ["Glanmire Gas Heating & Plumbing", "Mechanical and building services", "Duggan Engineering"], "MarkMcLoughlin": ["VWR International, LLC", "VWR International, LLC", "VWR International", "Cardinal Health", "Cardinal Health", "IBA", "Mallinckrodt", "BA"], "MikeTurvey": ["The David J. Joseph Company", "Sogeti", "David J. Joeseph", "MSIS, Information Systems", "Information Systems"], "MarkHillebrand": ["Microsoft", "Microsoft", "German Research Center for Artificial Intelligence, DFKI", ""], "ZhouhanLIN": ["Montreal Institute for Learning Algorithms (MILA)"], "SuneelMarthi_": ["Suneel liked", "Suneel liked", "Suneel liked", "Suneel liked", "Suneel liked", "Coursera", "Coursera", "Coursera", "Coursera"], "SeanOwen": ["Cloudera", "Myrrix Ltd", "Pentech Ventures LLP", "Google", "MBA", "BA, Computer Science", "Manning"], "dima": ["Karmasoft - CTO", "Jiber Media, CTO", "Freelance Ruby on Rails + iOS Developer", "Ruboss, CTO", "SAP, Senior Developer", "Master of Software Systems, University of British Columbia"], "IgorBabuschkin": ["DeepMind", "CERN", "Masters Degree, Physics"], "ZhongyueLuo": ["Intel Corporation", "Intel Corporation", "Sina.com", "Enswers Inc"], "RajeshTailor": ["Telstra SNP Monitoring", "Bsmart Management", "UTC Building & Industrial Systems", "Chubb Fire & Security", "Media Review International", "Warner Home Video", "International Masters Publishers", "International Masters Publishers", "International Masters Publishers", "International Masters Publishers", "Murphy Oil", "Murphy Oil"], "MatthewKoichiGrimes": ["University of Cambridge - Computer Vision & Robotics Group Machine Intelligence Lab"], "VictorMelo": ["Bomboniere Ponto Doce"], "WenjianHuang": ["", "The 19th Annual International Conference on Mobile Computing and Networking, ACM MobiCom 2013, Chair Sumi Helal", "Alibaba Group", "The Asia-Pacific Robot Contest, Asia-Pacific Broadcasting Union", "The Young Entrepreneurs Development Council Limited (YDC), Hong Kong", "GS1 Hong Kong", "GS1 Taiwan, GS1 Hong Kong", " US 20130301870 A1", " CN 103383738 A", " No. 61/964,794", "MiningLamp", "Alibaba Group", "Master's Degree, Electrical, Electronics and Communications Engineering", "Bachelor's Degree, Electrical, Electronics and Communications Engineering"], "RickHarris": ["Devonshires Solicitors", "UC Hastings College of the Law", "CASIS MEDIA LIMITED", "The University of Law", "Howard Kennedy LLP", "The City Law School, City University London", "National Centre of Domestic Violence", "Mishcon de Reya", "Michael Simon (Barrister)", "Argent Chambers", "PURE Public Relations", "Foxtons", "Chesterton Humberts", "Hersh & Hersh Attorneys at Law", "Chesterton Humberts", "Cameron Mackintosh Ltd", "BDO LLP", "BDO LLP", "Masters Degree - Virginia Leary Merit Scholarship Recipient, American/U.S. Law/Legal Studies/Jurisprudence and Health Law & Policy, Overall Average of A-", "Post Graduate Diploma in Legal Practice (LPC), Law", "Graduate Diploma in Law, Law", "Bachelor of Arts (BA), Theatre and Performance, 2:1 HONS", "A Levels, 3 A Levels, 9 GCSE's", "Jewish Care", "Jewish Care", "National Centre of Domestic Violence", "University of California, Hastings College of the Law", "Francis Holland School", "Francis Holland School", "Francis Holland School", "The Duke of Edinburghs Award", "The Duke of Edinburghs Award"], "vesis84": ["Karel dal(a) lb se", "Karel dal(a) lb se", "Brno University of Technology", "IBM"], "RadhikaG": ["Mozilla Foundation", "GVC Systems", "Bachelor of Technology (B.Tech.), Computer Science and Engineering", "High School", "Indian Association for Research in Computer Science (IARCS)", "Auro-Mira Service Society"], "GuillaumeAlain": ["University of Montreal", "University of Montreal", "Solace Systems", "Communications Research Centre", "International Conference on Machine Learning 2014", "M.Sc, Computer Science", "Master's, Mathematics (Number Theory)", "Bachelor's, Sciences (Mathematics)"], "DerekMiller": ["Interactive Intelligence", "Project Lead The Way", "Timmy Global Health", "Ball State University", "Ball State University", "Master of Science, Computer Science", "Bachelor of Arts (BA), Telecommunications, Graduated"], "CraigCitro": ["Google", "University of Washington", "Doctor of Philosophy (PhD), Mathematics", "Bachelor of Science (BS), Mathematics and Computer Science", "Bachelor of Science (BS), Mathematics and Computer Science"], "LyubovKolesnikova": [" \" \"", " \" \"", " ", " ", " ", ", , ", " , : 77004482"], "GiulioFidente": ["Red Hat, Licenza 804006254022826", "Red Hat, Licenza 804006254022826", "Red Hat", "Red Hat", "Red Hat", "dotMobi", "IBM", "Babel - a business unit of Par-Tec S.p.A.", "ATS", "Contributor", "Contributor", "Electronic and Automation", "Computer Engineering"], "VladimirNazarenko": ["Lanit-Tercom", "Master's degree, Mathematics and Computer Science", "Bachelor's degree, Mathematics and Computer Science"], "ReyhaneAskari": ["University of Montreal - MISA", "GMA Solar Inc.", "National Research Council Canada"], "NumanSiddique": ["Red Hat", "eNovance", "Cisco Systems", "NDS services Pay TV Technology", "NDS services Pay TV Technology", "VeriFone", "S/W Engineer from Tata elxsi at Schneider Electric", "Tata Elxsi", "Coursera Verified Certificates, License 574G6YVWNZ", "B.E, I.S & E", "Pre University, Science"], "JiaDong": ["Marcetable", "The Walt Disney Company", "The Walt Disney Company", "Amgen", "Advantech", "Marvell Semiconductor", "Master of Business Administration (M.B.A.)", "Bachelor of Science (B.S.)"], "KelvinXu": ["Montreal Institute for Learning Algorithms (MILA)", "Google Research - Brain Residency Program", "Courant Institute at NYU - machine learning group"], "BrantKnudson": ["IBM", "Unisys", "BS, Computer Science, 4.0", "IBM", "IBM"], "carriepl": ["Montreal Institute for Learning Algorithms (MILA)"], "AymanElkfrawy": ["Aurea Software", "Al-Azhar University", "NARSS", "Freelancer", "Leapforce", "Horizonssoftware", "IEEE 2010 Computer Society Students Competition", "IEEE Computer Society", "Bachelor's degree, Computer Engineering"], "ClementFarabet": ["Clment liked", "Clment liked", "Clment liked", "Clment liked", "Twitter", "MADBITS", "New York University"], "JeffDonahue": ["Ph.D., Computer Science", "B.S., Turing Scholars Honors Computer Science", "Pinterest", "UC Berkeley", "Pinterest", "Google", "Google", "Google", "Applied Research Labs", "National Instruments", "National Instruments"], "GauvainPocentek": ["Objectif Libre", "Ulteo", "Linutop"], "Taesup(TS)Kim": ["Universit de Montral", "Microsoft", "Solidware", "Intel Corporation", "LG Electronics", "Microsoft Research Cambridge", "Lam Research Korea", "Korea Univ.-Samsung Techwin Research Center", "168th Medical Battalion", "Doctor of Philosophy (Ph.D.), ", "M.S, Electrical Engineering", "B.E, Electrical Eng."], "VincentMichalski": ["Twenty Billion Neurons GmbH", "Goethe-Universitt Frankfurt a. Mainbersetzung anzeigen\nWie finden Sie diese bersetzung?GutFehlerhaft", "Universit de Montral, Montreal Institute for Learning Algorithms", "Goethe-Universitt Frankfurt a. Main, Bernstein Focus Neurotechnology", "Universit de Montral, Montreal Institute for Learning Algorithms", "Frankfurt Institute for Advanced Studies, Bernstein Focus Neurotechnology", "Goethe-Universitt Frankfurt a. Main, Institute for Sinology", "Goethe-Universitt Frankfurt a. Main, Frankfurt Institute for Advanced Studies", "Goethe-Universitt Frankfurt a. Main, Institute for Sinology", "Doctor of Philosophy (Ph.D.), Computer Sciencebersetzung anzeigen\nWie finden Sie diese bersetzung?GutFehlerhaft", "Master's degree, Computer Sciencebersetzung anzeigen\nWie finden Sie diese bersetzung?GutFehlerhaft"], "ManjunathKudlur": ["Google", "NVIDIA", "University of Michigan", "IBM TJ Watson Research Center", "Synfora Inc.", "Hewlett Packard", "Zaplet"], "ClarkBoylan": ["OpenStack Foundation", "Hewlett-Packard", "Intel Corporation", "Garmin International", "Portland State University", "Intel Corporation", "BS, Computer Science"], "HemanthMakkapati": ["Sun Microsystems", "Openstack Foundation, License COA-1600-0248-0100", "13th IEEE/ACM International Symposium on Cluster, Cloud and Grid Computing", "8th IEEE International Conference on E-Science (e-Science), 2012", "India Workshop on Reverse Engineering (IWRE), 2012", "India Workshop on Reverse Engineering, IWRE 2011", "North Texas Food Bank", "Blacksburg Middle School", "Virginia Tech Indian Students Association", "Virginia Tech Indian Students Association", "Department of Computer Science at Virginia Tech", "Tata Research Development & Design Center", "Tata Research Development & Design Center", "Tata Research Development & Design Center"], "MariusKillinger": ["Google", "Max Planck Institute for Medical Research", "Bosch Singapore", "Bosch", "Masters Degree, Physics", "Bachelors Degree, Physics, 1.4"], "DamienMartin-Guillerez": ["Damien Martin-Guillerez gefllt Folgendes:", "Damien Martin-Guillerez gefllt Folgendes:", "Damien Martin-Guillerez gefllt Folgendes:", "Damien Martin-Guillerez gefllt Folgendes:", "Google", "INRIA", "iQSpot", "LAAS-CNRS"], "RainyaMosher": ["Cisco", "Jamberry Nails", "Rackspace, the #1 managed cloud company", "Rackspace, the #1 managed cloud company", "SA OpenStackers Meetup", "Rackspace Hosting", "Chenega Global Services, LLC", "TerraHealth Inc.", "Eclipsys Corporation", "Dell Computer Corporation", "Pratt & Whitney Avionics", "RFS Design", "Scrum Alliance", "Project Management Institute, License 1385732", "Scrum Alliance", "Family Justice Center of Bexar County", "Masters of Science, Technology Commercialization, 3.7", "Bachelor of Business, Information Systems, Cum Laude / 4.0 major / 3.6 cumulative", ""], "AnandChakravarty": ["Google", "Google", "Microsoft", "Microsoft", "Microsoft Corporation", "Microsoft Corporation", "Microsoft Corporation", "Microsoft", "United States", "Master of Science (M.S.), Computer Science"], "ZimingDong": ["LinkedIn", "Masters Degree, Computer Science", "Bachelors Degree, Computer Science", "Sohu, Inc.", "Association of Computing Machinery", "Coursera Course Certificates, : KAJYKT42GPNV", "ACM International Collegiate Programming Contest"], "RebeccaFinn": ["We Are Social", "Mom Central Consulting", "StudentUniverse.com", "Situation Interactive", "Be the Change Abroad", "J.Crew", "Boston Life", "Marketing", ""], "BorisPavlovic": ["DocuSign", "Early Stage Startup", "Microsoft", "Microsoft", "Microsoft", "Microsoft", "Fairmont Hotels and Resorts", "Fairmont Hotels and Resorts", "Four Seasons Hotels and Resorts", "HOTEL EDOUARD 7", "InterContinental Hotels Group", "Master of Business Administration (MBA)", "Bachelor of Science, International Hospitality Management", "International Sommelier Guild", "Board Member", "President", "Director At Large", "President", "Summit Assistance Dogs", "Microsoft Executive Briefing Center", "Microsoft Advertising", "Microsoft Advertising"], "WlodzimierzBorkowski": ["Intel Corporation", "ADVA Optical Networking", "ADVA Optical Networking", "MongoDB", "Udacity", "The Linux Foundation", "DataCamp, Licencja 2a1199d6a7d190d6625774ba4f3be6542f74d54c", "Big Data University, Licencja BD0111EN", "Big Data University, Licencja BD0115EN", "postgraduate, Software engineering in practice", "postgraduate, Projecting and programming desktop applications", "Master of Engineering (M.Eng.), electronic and telecommunication"], "nyghtowl": ["Skymind.io - Deep learning for Industry"], "terrytangyuan": ["Uptake", "RStudio, Inc.", "DataNovo, Inc.", "Analytical Flavor Systems", "Penn State Department of Mathematics and National Science Foundation", "Penn State Department of Statistics", "Schreyer Honors College", "Schreyer Honors College", "Schreyer Honors College", "HackRPI at Rensselaer Polytechnic Institute", "Capital One", "Google", "Bachelor of science, Mathematics and Computer Science", ""], "IharHrachyshka": ["OpenStack", "Red Hat Czech s.r.o", "OpenStack", "OpenStack", "OpenStack", "Red Hat Czech s.r.o", "EPAM Systems", "Infoblox", "EPAM Systems", "Promwad", "Velesys", "Bachalor, Computer Science"], "SollyRoss": ["Red Hat", "Red Hat", "Rothbury Software", "Memolane", "Bachelor of Science (B.S.), Mathematics and Computer Science, Dean's List"], "DeanTroyer": ["Intel Corporation"], "JamesWexler": ["Google", "Amazon", "Microsoft Corporation", "Raytheon Integrated Defense Systems", "Raytheon Integrated Defense Systems", "Mohawk Innovative Technology, Inc", "MS, Computer Science", "BS, Computer Science"], "koraykavukcuoglu": ["Google Deepmind", "Deepmind Technologies", "NEC Laboratories America", "New York University", "Google", "NEC Laboratories America", "NEC Laboratories America", "Siemens Corporate Research", "Roketsan Missiles Inc.", "PhD", "MS", "MS", "BS"], "AlexeySurkov": ["Google", "ABBYY", "Master's degree, computer science, mathematics", "Goethe Institut"], "StephanHoyer": ["Google", "The Climate Corporation", "University of California, Berkeley", "The Climate Corporation", "Theory of Algorithms Course, UC Berkeley", "US Department of Energy", "", "The Climate Corporation", "The Climate Corporation", "PhD, Theoretical Physics", "BA, Physics, with High Honors and Phi Beta Kappa", ""], "QiweiYe": ["Microsoft", "Microsoft", "Microsoft", "Microsoft", "Computer"], "AdamGandelman": ["IBM", "Akanda inc", "HP Cloud Services", "Canonical Ltd.", "Janrain, Inc.", "LINBIT USA", "ICONN.NET, LLC"], "JonasDegrave": ["Ghent University", "Picanol Group", "Melexis", "Colruyt", "Covameat", "Coursera", "Rode Kruis-Vlaanderen", "Pirate Party Belgium", "Pirate Party Belgium", "SIAM, Society for Industrial and Applied Mathematics", "Master of Science, Electrical Engineering: ICT", "MOSIG: Graphics, Visuals and Robotics", "ASO, Wetenschappen-Wiskunde 8 uur"], "JoostvanDoorn": ["Master of Science (MSc), Artificial Intelligence", "Bachelor of Science (BSc), Computer Science, Cum laude", "VWO, Nature and Technology", "Centrum Wiskunde & Informatica", "University of Twente", "I.C.T.S.V. Inter-Actief", "I.C.T.S.V. Inter-Actief", "Nedforce", "Bestuur 2012-2013, Symposium 2012"], "RobinNabel": ["Google", "Google", "Democratic National Committee", "University of St Andrews", "J.P. Morgan", "Tilde, Ltd", "Masters Degree, Computer Science", "Nanodegree, Self-Driving Car Engineering", "EAP - full year exchange program, Computer Science, GPA 3.95/4.0", "High School", "University of St. Andrews Student's Association", "Athletic Union, University of St. Andrews", "Andrew Melville Hall", "University of St. Andrews, University of California at Davis", "School of Computer Science, University of St Andrews", "Worcester Sixth Form College"], "AttilaFazekas": ["ExxonMobil", "ExxonMobil", "ExxonMobil", "KFKI Ltd.", "Master of Science (MSc), Information Technology", "Exchange semester, Information Technology, MSc", "High School/Secondary Diplomas and Certificates", "High school, Mathematics", "Bachelor of Business Administration (BBA), Business Administration and Management, General"], "JohnLenihan": ["InfoSpace, Inc.", "Bachelor's Degree, Business Administration"], "Raingo": ["Yuncheng liked", "Yuncheng liked", "University of Rochester", "Snapchat, Inc.", "Yahoo", "Microsoft", "Microsoft Research Asia", "University of Science and Technology of China", "Doctor of Philosophy (PhD), Computer Science", "Bachelor of Engineering (BE), Electrical and Electronics Engineering"], "XiYang": ["Capco", "Capco", "LaunchHouse", "KeyBank", "Case Western Reserve University", "Jiangxi Special Type Vehicle Company, Ltd., Jiangxi, China.", "China Minsheng Banking Corporation, Ltd., Beijing, China.", "Capco", "Central Conservatory of music, China", "Capco", "The George Washington University", "Toastmasters International", "New York Cares", "Global Business Accelerator", "Cleveland Foundation Foundry Project", "Score: 740", "Score: 112", "Master of Business Administration (M.B.A.)", "Master, Finance", "Bachelors Degree, International Finance"], "ThomasGeorge": ["Eco Adapt", "iDMOG", "Egos Ventures Inc.", "Snecma", "", "Master of Science (M.Sc.), Artificial intelligence", "Master of science and executive engineering, Data Science", "Erasmus exchange program for my third year of bsc, Mathematics", "Licence, Mathmatiques, Physique, Mcanique, Informatique"], "BenjaminScellier": ["Arxiv", "Knowesis Pte Ltd", "University of Oxford", "Prescient Limited", "Lyce Louis-le-Grand", "French Army", "Academy of Sciences, Institut de France", "International Mathematical Olympiad", "German Mathematical Olympiad", "Ministry of National Education (France)", "International Mathematical Olympiad", "French Mathematical Olympiad", "Doctor of Philosophy (Ph.D.), Deep Learning (Artificial Intelligence)", "Masters Degree, Statistics", "Masters Degree, Applied Mathematics", "Mathematics, Physics and Computer Science"], "GabrielHurley": ["Oracle", "Nebula, Inc.", "NASA", "Strike Awe", "Zero Coordinate Inc", "UC Berkeley", "BA, Social Welfare"], "Kaixhin": ["Twitter", "Kaixhin", "inensu", "Wellframe", "Mobile Sanctuary", "Wellcome Trust", "St. George's University of London", "Doctor of Philosophy (Ph.D.), Bioengineering", "Master of Science (MSc), Biomedical Engineering, Merit", "Bachelor of Arts (BA), Computer Science, II.1", "Department of Bioengineering, Imperial College London", "Credit Suisse", ""], "JoseCastroLeon": ["CERN", "CERN", "CERN", "Aplicaciones Tecnologicas de Domotica", "Master Degree, Computer Engineering (Ingenieria Informatica)", "Bachelor degree, Computer Engineering (Ingenieria Tecnica Informatica, especialidad de Sistemas)"], "NicholasKuechler": ["OpenStack, License COA-1600-0135-0100", "Red Hat, License 120-044-649"], "NathanHowell": ["GoDaddy", "Alpha Heavy Industries", "eBay", "Positronic", "Microsoft", "United States 7,219,148", "United States 7,610,344", "United States 7,272,853", "United States 7,543,076", "United States 8,214,438", "United States 8,533,270", "United States"], "EdwardHopeMorley": ["Canonical UK", "Hewlett-Packard", "Hewlett-Packard", "2:1, MEng Computer Systems Engineering"], "XavierGlorot": ["Google DeepMind", "Microsoft", "UPMC - Sorbonne Universities", "Universit de Montral", "Universit de Montral", "Polytechnique Montral", "Hilti", "Doctor of Philosophy (Ph.D.), Computer Science", "Engineers Degree, Electronics, Computer Science and Communications Engineering", "Electrical and Computer Engineering"], "ke-kuroki": ["Community Lead", "Restaurant Brands International", "Andela", "Google", "iHub Nairobi", "VituMob", "Fitimage Studios LLC", "Cybercasia", "Score: 8/10", "Score: 7/10", "Score: 7/10", "Score: 7/10", "Score: 6/10", "Won't stop learning anytime soon, Computer Software Engineering (Web platform)", ""], "JanPrach": ["Chartboost", "Identified", "VigLink", "AVAST Software", "Sun Microsystems", "mgm technology partners GmbH", "Engineer (MSc), Computer Science, Software Engineering, Computer Vision"], "A.RosenbergJohansen": ["Salesforce", "DTU - Technical University of Denmark", "Master of Science (M.Sc.), Mathematics and Computer Science, 11.4 of 12.0", "Master of Science (M.Sc.), Computervidenskab", "Bachelor of Science (B.Sc.), Management Information Systems, General, 10.7 of 12.0", "Bachelor of Science (B.Sc.), Computervidenskab", "TensorFlow", "Deep Learning Research, In", "NIPS recurrent neural network Symposium, 2016", "International conference on acoustics speech and signal processing, 2016"], "IsakuYamahata": ["Intel", "VA Linux Systems Japan", "FUJITSU SOFTWARE TECHNOLOGIES LIMITED", "Softbank creative", "Nikkei BP"], "jyt109": ["Twitter", "Galvanize Inc", "Skymind.io - Deep learning for Industry", "IBM", "Integrative Genomics and Medicine - Medical Research Council"], "NicolasBallas": ["Universit de Montral", "CEA and Mines ParisTech", "Carnegie Mellon University", "LTU Technologies", "Siemens", "EPITA Research and Development Laboratory", "EPITA", "24/7 Real Media", "IBM", "Fulbright Program", "PhD, Applied Mathematics, Computer Science", "Master, Machine learning and Computer vision", "Master, Computer Science"], "lamblin": ["Montreal Institute for Learning Algorithms (MILA)"], "OleksiiChuprykov": ["Mirantis", "OpenStack", "Mirantis", "Mirantis", ""], "qipeng": ["Stanford University", "Stanford University", "Stanford University", "Stanford University", "Soulgame", "Stanford University", "Tsinghua University", "PhD, Computer Science", "MS, Computer Science", "BE, Computer Software", "Neural Computation", "ICONIP 2013", "", "", "Vice President"], "turambar": ["XPRIZE", "University of Southern California", "Podimetrics", "Alfred E. Mann Institute", "University of Southern California", "Stanford University", "Phi Beta Kappa, Beta of California, Stanford University", "Stanford University", "Project Management Committee for OODT Project", "Co-organizer", "United States 7933900", "1st Workshop on Data Mining for Medical Informatics (DMMI): Electronic Phenotyping", "Proceedings of the IEEE 14th International Conference on Data Mining (ICDM)", "Proceedings of the IEEE International Conference on Data Mining 2013", "AAAI 2013 Fall Symposium Series Discovery Informatics Workshop", "Proceedings of ACM International Health Informatics Conference 2012", "OReilly Open Source Convention: Special Session on Healthcare Technology", "9th International Conference on Complexity in Acute Illness", "SPIE Electronic Imaging: Human vision and electronic imaging XIV", "Journal of Community Health", "ICML 2015", "SIGKDD 2015", "Doctor of Philosophy (Ph.D.), Computer Science", "Deep Learning"], "HuiXiang": ["Allergan plc", "Nitto Denko Corporation", "Allergan, Inc", "DuPont Pharmaceuticals/Bristol-Myers Squibb", "DSM Biologics", "National Research Council Canada - Biotechnology Research Institute"], "AbhijeetMalawade": ["NTT DATA Americas", "Covelix", "Synnove Systems Pvt. Ltd", "Divinet Access Technology", "B.E.(I.T.), Information Technology", "", ""], "MartinThoma": ["Karlsruhe Institute of Technology (KIT)", "Karlsruhe Institute of Technology (KIT) / University of Karlsruhe (TH)", "Coursera", "Coursera", "Duolingo", "Bundeswettbewerb Informatik", "Masters Degree", "Computer Science", "Bachelors Degree, Computer Science", "Abitur"], "FangweiLi": ["Google", "Google", "Google", "Microsoft", "PhD candidate, Computer Science", "BEng, Computer Science"], "TimSalimans": ["OpenAI", "Aidence", "Aidence", "Algoritmica", "Erasmus University Rotterdam", "Microsoft Research", "Independent trader on the Betfair markets", "International Society for Bayesian Analysis", "Kaggle.com", "Erasmus School of Economics", "Bayesian Analysis", "PhD Dissertation", "PhD, Econometrics", "MPhil / MSc, Economics, Major in Econometrics", "BSc (Hons), Liberal Arts and Sciences (Magna Cum Laude) Major in Mathematics & Physics", "Exchange Semester in Australia, Science"], "ThiloWill": ["Microsoft", "Linguatec GmbH", "Sail-Labs GmbH", "IXEC GmbH", "debis Systemhaus GmbH", "Institute of Parallel and Distributed Computing, University of Stuttgart", "Doctor of Philosophy (PhD), Theoretical and Mathematical Physics", "Diplom (Master of Sc.), Physics, passed with excellence"], "BertrandLallau": ["Thales Services", "Alcatel-Lucent", "Nextenso"], "MoslemKazemi": ["Uber", "Brain Corporation", "Brain Corporation", "Carnegie Mellon University", "Carnegie Mellon University", "Simon Fraser University", "Simon Fraser University", "Simon Fraser University", "University of Regina", "Postdoctoral Fellow", "Doctor of Philosophy", "Master of Applied Science", "Bachelor of Applied Science"], "VijayVasudevan": ["Google", "Carnegie Mellon University", "Ph.D, Computer Science", "B.S., Electrical Engineering and Computer Science"], "PhilippeHamel": ["Google Research - Information Retrieval and the Web, Machine Intelligence"], "DanielKrook": ["IBM", "", "", "", "", "", "", "", "", "", "", "IBM developerWorks", "IBM developerWorks", "IBM developerWorks", "IBM developerWorks", "IBM developerWorks", "IBM Redbooks", "IBM developerWorks", "IBM WebSphere Developer Technical Journal", "United States 9,413,833", "United States 9,413,818", "United States 9,361,455", "United States 9,323,572", "United States 9,246,920", "United States 9,229,784", "United States 9,215,153", "United States 9,147,181", "United States 9,122,696", "United States 9,003,480", "United States 8,881,136", "United States 8,880,841", "United States 8,856,664", "United States 8,843,621", "United States 8,494,143", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "IBM", "IBM", "IBM", "IBM", "IBM", "IBM", "IBM", "IBM"], "PatrickMezard": ["Clustree", "MASA Group", "Mercurial", "BadTech SAS", "BadTech SAS", "FactSet Research Systems", "Mappy", ""], "MikeSeltzer": ["Michael liked", "Microsoft", "Microsoft", "Teradyne", "Doctor of Philosophy (PhD), Electrical and Computer Engineering", "Master of Science (MS), Electrical and Computer Engineering"], "MehdiMirza": ["DeepMind", "Universit de Montral", "Google DeepMind", "Flickr", "Atlas Wearables", "Idiap Research Institute", "MIT", "Doctor of Philosophy (Ph.D.), Computer Science", "MSc, Artificial Intelligence", "BSc, Physics"], "ChenFan": ["Amazon", "Star Valley Tech Inc.", "Doctor of Philosophy (PhD), Multimedia communication", "Bachelor of Science (BS), Information communication"], "DirkMueller": ["Coherent Inc.", "Coherent Inc.", "LUMERA LASER GmbH", "Kapteyn-Murnane Laboratories (KMLabs) Inc.", "Corning Incorporated", "Ph.D., Physics", "Vordiplom, Physics"], "GeorgyOkrokvertskhov": ["Mirantis", "Mirantis", "Mirantis", "Mirantis", "Cisco", "Mirantis", "PhD, Physics, Non-linear Dynamics", "Master of Science (MS), Physics, Biophysics"], "JingtianPeng": ["2012 Labs, Huawei Technologies", "University of California, San Diego", "Witspring Inc", "Zhejiang University", "Visiting Scholar, Bioinformatics", "Bachelor of Engineering (B.Eng.)(Top 5%), Computer Science", "Zhejiang University", "Zhejiang University", "Zhejiang University", "", "Zhejiang University", "COMAP(the Consortium for Mathematics and Its Applications)", "Huawei Technologies Co., Ltd", "Huawei Technologies Co., Ltd", "DataCamp, License 0a39a85efc0d93aab822ba10eb5830a6c5d2ae23", "DataCamp, License 16186fa5294a7bbfb80460da954b74cfdd94ea5e"], "DumitruErhan": ["Google Brain", "Google", "Yahoo!", "Google", "Microsoft Research", "Max-Planck Institute for Biological Cybernetics", "Helsinki University of Technology", "PhD, Computer Science", "MSc, Computer Science", "BSc, Electrical Engineering and Computer Science"], "FeiLongWang": ["Catalyst IT Limited", "IBM", "IBM", "IBM", "DCHanson", "IBM China Research Lab", "China's Ministry of Industry and Information Technology, License 08202110005", "IBM", "IBM", "IBM", "Master of Computer Applications (MCA)", "Bachelor's degree, Computer/Information Technology Administration and Management"], "MalcolmSlaney": ["Google", "Stanford University", "Department of Electrical Engineering - University of Washington", "Microsoft", "Yahoo!", "IBM", "Interval Research", "Apple Inc.", "Schlumberger Palo Alto Research", "Bell Laboratories", "PhD, Electrical Enginering", "BSEE with Honors, MSEE, PhD, Electrical Engineering"], "Bart": ["Twitter", "Facebook", "Self-Employed", "TEDxWarwick", "AIESEC", "GroeneKruis Domicura", "Paris International Model United Nations (PIMUN)", "European Commission", "SOS Children's Villages", "Doctor of Philosophy (Ph.D.), Machine learning, A", "Master of Science (MSc), Complex Systems Science (Erasmus Mundus), A", "Master of Science (MSc), Complex Systems Science (Erasmus Mundus), GPA 3.9/4.0", "Bachelor of Science (BSc), Mathematics and Business Studies, First Class Honours", "Business, Israeli politics, Middle Eastern history, Ethics, A (93%)"], "EricBrown": ["MediaWallah", "nToggle, Inc", "Nomi (acquired by Brickstream)", "Media Armor, Inc (acquired by Nomi)", "Jumptap (acquired by Millennial Media)", "Jumptap (acquired by Millennial Media)", "Jumptap (acquired by Millennial Media)", "Dotomi (acquired by ValueClick Media, now Conversant)", "Hyperknowledge", "Parametric Technology Corporation", "Knowledge Management Software", "Compaq", "AdExchanger", "AdMonsters", "AdMonsters", "Diploma", "BS", "High School", "National Restaurant Association Educational Foundation (NRAEF)", "Massachusetts Restaurant Association"], "DanijarHafner": ["B.S. IT Systems Engineering, Computer Science, GPA 3.8/4.0", "", "Google Inc.", "Information Systems Group, Hasso Plattner Institute", "Google Inc.", "Human Computer Interaction Group, Hasso Plattner Institute", "Bleeding Edge Press", "24th European Symposium on Algorithms (ESA)", "SAP, Fujitsu, Dell, HP", "Hasso Plattner Institute", "International Air Transport Association", "Cisco Systems, Inc.", "Google Inc."], "SabariKumarMurugesan": ["VMware", "VMware", "VMware", "Citrix Online", "Columbia Law School", "Oracle", "Oracle", "Master of Science (MS), Electrical, Computer Networks", "Bachelor of Engineering (B.E.), Electronics, Instrumentation"], "UnmeshGurjar": ["Airtel Business", "Airtel Business", "Airtel Business", "Reliance Communications", "Hughes Communications India Limited", "Hughes Communications India Limited", "Onward Technologies Ltd", "The Art of Living", "Bharti Airtel", "Dale Carnegie Training India"], "JamieLennox": ["Cleaver-Brooks Sales and Service, Inc."], "SukritiRamesh": ["Google", "ETH Zurich", "IBM Research", "L3S Research Center", "Hewlett-Packard"], "KirillZaitsev": ["Howden", "Ingersoll Rand", "Camozzi Pneumatics Ltd", "Master of Business Administration (M.B.A.), Strategic Business Administration", "Executive Coaching, Managing the Company", "Master's degree, Mechatronics and International Engineering", "Bachelor's degree, Mechatronics and International Engineering"], "ArnaudLegendre": ["Apple", "VMware", "Google Summer of Code", "Adobe", "Insight Centre for Data Analytics", "VMware", "EPFL (cole polytechnique fdrale de Lausanne)", "Accenture", "Master of Science (MS) Exchange, Computer Science", "Master of Science (MS), Computer Science", "UC Berkeley Extension, License In progress", "Coursera Course Certificates, License QFRARJY6TQEB", "Coursera Course Certificates, License 96AVAT45K99V"], "AlexGaynor": ["Freelance Filmmaker"], "ArturSvechnikov": ["Actimind", "Freelance Software Development", "BoonEx", "Meridis", "Coursera", "Coursera", "Coursera", "Software Engineering"], "MichaelKrotscheck": ["VMware", "OpenStack Foundation", "HP Cloud Services", "Rosetta Stone", "Livemocha", "The Active Network", "Adobe Systems", "Resource Interactive", "Elliance", "Abreon", "NDCHealth", "Master of Business Administration", "BArch"], "JohnDewey": ["JANUS Research Group, Inc.", "JANUS Research Group Inc.", "JANUS Research Group, Inc.", "US Army", "Masters in Strategic Studies, Strategic Studies", "MSEE, Electrical Engineering", "BS in Engineering, Electrical Engineering"], "AdrienVerg\u00e9": [], "ebrevdo": ["SVBio", "The Climate Corporation", "Princeton University - Department of Electrical Engineering", "Siemens Corporate Research", "Google - Computer Vision for OCR", "Air Force Research Laboratories, Maui Optical and Supercomputing Site, Kihei, HI", "Rensselaer Polytechnic Institute - Electrical Impedance Tomography (EIT) Research Group", "Factset Research Systems"], "DaneFichter": ["trichome health consualtants"], "TomHancock": ["Agence France-Presse", "Chinese", "MPhil, Philosophy", "BA (Hons), Philosophy"], "VitaliyKolosov": ["OMK-IT", "IBS Holding", "Razvitie Plus", "", "", "specialist, computer scince, maths, economics, phisics"], "JonShlens": ["Google", "Howard Hughes Medical Institute", "UC Berkeley", "Salk Institute for Biological Studies", "Pixar Animation Studios", "Doctor of Philosophy (Ph.D.), Computational Neuroscience", "Bachelor of Arts (B.A.), Physics and Computer Science"], "SorenHansen": ["BSBA, Finance; Economics & Strategy", "", "Capital One", "Capital One", "Northern Trust Corporation", "Olin Business School", "UTC Aerospace Systems", "Cultivation Capital", "TAYLOR COMMUNITY CONSULTING PROJECT", "Goodwill-Easter Seals of MN", "Thomson Reuters", "Lunds and Byerly's", "Partner", "Co-President", "Industrials Portfolio Manager", "State President (October 2011-October 2012)"], "GustavLarsson": ["University of Chicago", "Tricycle Design HB", "Civis Analytics", "Tobii Technology AB", "Physical Sciences Division, University of Chicago", "Department of Computer Science, University of Chicago", "Doctor of Philosophy (Ph.D.), Computer Science", "Master of Science (M.S.), Engineering Physics"], "AshwiniShukla": ["Member", "ACM+IEEE Joint Conference on Digital Libraries (JCDL) 2002", "Scrum Alliance", "University Learning Institute"], "MichaelStill": ["Rackspace, the #1 managed cloud company", "OpenStack", "OpenStack", "OpenStack", "Rackspace, the Open Cloud Company", "Rackspace, the Open Cloud Company", "linux.conf.au 2013", "Canonical Ltd.", "Google", "The Australian National University", "Google Inc", "Google Inc", "TOWER Software", "AUUG", "Linux.Conf.Au", "Linux Australia", "IPAustralia", "IPAustralia", "National Center for Social and Economic Modelling (NATSEM)", "Australian Catholic University", "Questacon", "Department of Defence", "University of Canberra", "Aspect Computing", "Apress", "Apress", "PhD, Computer Science", "BEng, Computer Engineering", "Former board member, former conference director", "The Scout Association of Australia (Scouts Australia)", "The Scout Association of Australia (Scouts Australia)", "St John Ambulance Australia (ACT) Inc", "The Scout Association of Australia (Scouts Australia)", "The Scout Association of Australia (Scouts Australia)", "OpenStack Foundation, License COA-1600-0181-0100"], "ChihebTrabelsi": ["Polytechnique Montral", "Polytechnique Montral", "Polytechnique Montral", "Master of Science (M.Sc.), Computer Science", "", "Licence Fondamentale, Informatique de Gestion"], "CastuloJMartinez": ["Intel Corporation", "IBM", "Master's degree, Electrical and Electronics Engineering, Master's Degree in Electronics Design", "Bachelor of Engineering (B.E.), Electrical and Electronics Engineering"], "AbhishekKekane": ["NTT DATA Americas", "NTT DATA Americas", "IQSPL", "Masters Degree, Computer Management"], "YanisGuenane": ["eNovance from Red Hat", "eNovance", "Freelance", "MNM Consulting", "TechTel21", "Logica", "Epitech", "Six Flags Great America", "Master Technologies de l'information", "Master, Information Technology", "Red Hat, License 150-132-280", "Red Hat, License 150-132-280"], "JinLi": ["GE Capital", "GE Capital", "Citigroup", "IBM", "CFA Institute", "Chinese Institute of Certified Public Accountants", "Member", "Master of Business Administration (MBA), Master of Accounting"], "PavelKirpichyov": ["SIA DYNINNO", "SIA Ambrella", "Partnership Alliance", "Webmedia", "Secondary education, Computer network administration", "Primary education"], "ZonghengYang": ["Google", "AMPLab, UC Berkeley", "Databricks", "Twitter", "UC Berkeley", "Bachelor of Arts (B.A.), Computer Science (Honors program); Mathematics.", ""], "AndyHsiang": ["H&K International", "Agri Ocean Service", "CEVA Logistics", "Express Line Corporation", "Express Line Corporation", "Sino Pearl"], "XiaoqiangZheng": ["Google", "NVIDIA", "Ph.D, Computer Graphics", "B.S, Computer Science"], "EoghanGlynn": ["Red Hat", "Red Hat", "Amazon Web Services", "Red Hat", "Progress Software", "IONA Technologies", "Institute of Technology Tallaght, Dublin", "ICL Fujitsu", "BSc (Joint Honours), Computer Science & Mathematics"], "JoshBleecherSnyder": ["foggy.co", "Braintree", "card.io (Lumber Labs)", "Treeline Labs", "AdCru", "AdMob, Inc.", "Synthese", "MA Philosophy, ABD", "BA", ""], "orhanf": ["Facebook AI Research, Paris", "IBM T.J. Watson Research Center", "University of Montreal Machinie Learning Lab-LISA", "Middle East Technical University - Department of Computer Engineering", "Military Academy - Department of Industrial and Systems Engineering"], "PeteWarden_": ["Goog", "Jetpac", "O'Reilly Media", "OpenHeatMap", "MoveableCode, inc.", "Mailana", "Apple", "PetesPlugins", "Visual Sciences", "BSc, Computer Science"], "slefrancois": ["Montreal Institute for Learning Algorithms (MILA)"], "JamesMorgan": ["Precision Metrics", "Welsbach Electric Corp.", "J.F. White Contracting Co.", "J.F. White Contracting Co.", "PKF-Mark III, Inc.", "Bucks County (PA) Community College", "Gannett Fleming, Inc."], "FabrizioMilo": ["Fabrizio liked", "Fabrizio liked", "Fabrizio liked", "Fabrizio liked", "Fabrizio liked", "Fabrizio liked"], "DeeptiRamakrishna": ["Intel Corporation", "Intel Corporation", "University of Washington", "MindTree", "Masters Degree, Electrical Engineering, 3.95/4.0", "Bachelors Degree, Electronics and Communications Engineering, 79.43/100", "Open Source Technology Center (OTC) at Intel Corporation", "Open Source Technology Center (OTC) at Intel Corporation", "Open Source Technology Center (OTC) at Intel Corporation", "Open Source Technology Center (OTC) at Intel Corporation", "System Validation Engineering (SVE) at Intel Corporation", "System Validation Engineering (SVE) at Intel Corporation", "System Validation Engineering (SVE) at Intel Corporation", "The National Institute of Engineering, India", "Developer", "Rackspace, the #1 managed cloud company"], "CaoXuanHoang": ["SPECCO"], "VaibhavBhatkar": ["Izel Technologies Pvt. Ltd.", "EMC", "Merce Technologies Private Limited", "B.E, Computer Science"], "yobibyte": ["RWTH Aachen University", "Terminal", "hlpme.ru", "CDC.ru", "Imagespark", "Ernst & Young", "RWTH Aachen University"], "ZachPloskey": ["Ploskey Technical", "University of Washington", "University of Washington", "University of Washington Dept. of Earth & Space Sciences", "University of Washington Dept. of Oceanography", "Pacific Northwest National Laboratory", "BAE Systems", "UW Dept. of Earth & Space Sciences", "UW Dept. of Earth & Space Sciences", "UW Dept. of Earth & Space Sciences", "UW Dept. of Earth & Space Sciences", "UW Dept. of Earth & Space Sciences", "Bachelor's Degree, Earth & Space Sciences", "Bachelor's Degree, Anthropology", "Doctor of Philosophy (Ph.D.), Earth & Space Sciences", "", "Rockin' Out"], "MarkWashenberger": ["Nebula, Inc.", "Rackspace Hosting", "Rackspace Hosting", "Rackspace Hosting", "Bachelor of Science (BS), Computer Science, 3.99", "Bachelor of Science (BS), Physics, 3.99", "Bachelor of Science (BS), Mathematics, 3.99"], "ClayGerrard": ["Swift Stack", "Rackspace", "Rackspace Managed Hosting", "Concept Cellular Int'l Inc", "Bachelor of Applied Science (BASc), Computer Science"], "lewuathe": ["The Apache Software Foundation", "Treasure Data", "Yahoo! JAPAN", "Tateno Dennou,Inc.", "Yahoo! JAPAN", "Coursera", "Coursera", ", Information Science", "Japan", "Wiley", "Willey / Wrox"], "MichaelIMandel": ["Brooklyn College, CUNY - Computer & Information Science", "CUNY Graduate Center", "Jelenik Speech and Language Technologies Workshop", "The Ohio State University - Computer Science & Engineering", "Telecom ParisTech - Signal & Image Processing", "Audience, Inc", "University of Montreal - LISA Lab", "Musically Intelligent Machine LLC", "Columbia University - LabROSA", "Boston University - Shinn-Cunningham Lab", "Google, Inc - Google News", "Owl Multimedia", "Bose Corporation", "MIT - CS/AI Lab and Media Lab"], "EdeMeijer": ["Buybrain", "experty", "SNT", "Coursera Course Certificates, Licentienummer YFVBZ7SFULUA", "Coursera Course Certificates, Licentienummer SGJHMT5UPS45", "Coursera Course Certificates, Licentienummer AVKVGZ5XVQ7C"], "JianminChen": ["Google", "Intel Corporation", "University of Florida", "University of Florida", "Motorola Solutions", "ICCD", "IISWC", "IPDPS", "PhD, Computer Engineering", "Bachelor, Computer Science; Computer Science & Technology"], "OlivierMastropietro": ["Montreal Institute for Learning Algorithms (MILA)"], "IldikoVancsa": ["OpenStack", "Ericsson", "Ericsson", "Ericsson", "Ericsson", "OptXware Ltd", "Active Technical Contributor", "Master's degree, Computer Science"], "IcchaSethi": ["Atlassian", "Rackspace, the #1 managed cloud company", "OpenStack", "Rackspace Hosting", "Let's Code Blacksburg!", "Virginia Bioinformatics Institute", "Siemens Technology India", "Rackspace", "Datastores Practice Area, Rackspace", "Rackspace", "Roanoke Blacksburg Technology Council", "Roanoke Blacksburg Technology Council", "Rackspace Blacksburg Office", "Virginia Bioinformatics Institute, Virginia Tech", "Cranwell International Center, Virginia Tech", "SSN College of Engineering, Anna University", "SSN College of Engineering, Anna University", "", "Computer Society of India, SSN Student Chapter", "Anna University", "Grace Hopper Conference", "Talk on \"Deploying Your Application on Public Cloud\" at GHC 2014", "OpenStack @ OpenSource Day at GHC 2014", "WECode Harvard Conference", "OpenSource Day at Grace Hopper Conference", "GNOME Foundation", "Student Opportunity Lab, Grace Hopper Conference", "The National Center for Women & Information Technology (NCWIT)", "Virginia Bioinfomatics Institute - Kids Tech University", "Grace Hopper Conference", "Committee Lead", "Women in Computing Day Co-chair", "Advertising Chair, First Year Representative"], "JustineTunney": ["Google", "Google", "Google", "Occupy Wall Street"], "DinaBelova": ["Materials Chemistry Section, University of Copenhagen", "University of Copenhagen", "Institute of Geology of KRC, RAS", "Scientific Research Institute of Atomic Reactors", "Institute of Geology of KRC, RAS", "Doctor of Philosophy (Ph.D.), Surface chemistry", "Master, Environmental Geochemistry, Hons", "Bachelor, Gelogy, Hons", "RUSMAM", "Crystal Growth and Design", "Journal of Contaminant Hydrology"], "RafaelRivero": ["Verizon", "Verizon Enterprise Solutions", "Verizon", "Verizon", "Verizon Wireless", "Dieste Harmel and Partners", "Digicel USA", "Verizon", "Verizon", "Global Ingenieria", "Verizon", "Verizon", "Marketing Certificate", "MBA, Finance & Telecom"], "medakk": ["Bachelor of Technology, Computer Science Engineering", "PUC, Electronics", "10th ICSE"], "ChrisN": ["Skymind.io - Deep learning for Industry", "FutureAdvisor", "Bloomberg", "New York Times", "Radio France International - English Service", "International Herald Tribune", "Zink Magazine", "International Political Science Association", "Grameen Bank", "Bloomberg News", "Growth", "Bachelor of Arts (B.A.), Economics, Political Science, Magna Cum Laude", "Moments of calm, Zazen", "Philosophy and Political Science", "High School Diploma"], "AbhishekChanda": ["Dell EMC", "Dell EMC", "EMC", "Cloudscaling (acquired by EMC)", "Huawei", "Rutgers University", "Microsoft India (R&D) Pvt Ltd", "United States US20140173018 A1", "Microsoft IT", "Rutgers University", "IEEE NOMEN", "HotMobile poster session", "FutureNet 2012", "European Wireless", "Hack.in", "Master of Science (MS), Electrical and Computer Engineering", "Bachelor of Engineering (BE), Computer Science", "", "Hurricane Electric"], "ErnoKuvaja": ["Red Hat", "Hewlett-Packard Company", "Hewlett Packard", "2nd", ""], "Yuan(Terry)Tang": ["Uptake", "RStudio, Inc.", "DataNovo, Inc.", "Analytical Flavor Systems", "Penn State Department of Mathematics and National Science Foundation", "Penn State Department of Statistics", "Schreyer Honors College", "Schreyer Honors College", "Schreyer Honors College", "HackRPI at Rensselaer Polytechnic Institute", "Capital One", "Google", "Bachelor of science, Mathematics and Computer Science", ""], "JohnSalvatier": ["AI Impacts", "Amazon", "RPX Research, Inc.", "Boise-Cascade", "Boise Cascade", "Capstone Technology", "Kimberly-Clark", "B.S.Ch.E., B.S., Chemical Engineering, Paper Science and Engineering"], "AdamGibson": ["Galvanize Inc", "Skymind.io Deep Learning support services training via deeplearning4j.org", "Zipfian Academy", "CritSend", "Clever Cloud Computing", "Mashape", "ITOxygen", "ITOxygen", "Coursera", "Coursera", "Dropped out, Computer Science/Data Science MIS, 3"], "MatthewBooth": ["Connectivity, Inc.", "BIA Kelsey", "BIAKelsey", "Done Right (Perform Local, Inc)", "Citysearch"], "MathieuGermain": ["Universit de Montral", "Invup", "SherWeb", "Technische Universitt Darmstadt", "Universit de Sherbrooke", "Nuance Communications", "Canadian Space Agency", "cole Secondaire Champagnat", "Centre Prvention Suicide", "Coursera", "Master of Science (MS), Deep Learning", "Bachelor, Computer Science"], "DavanumSrinivas": ["MBA", "M.Sc. (Tech), Information Systems"], "SaizhengZhang": ["Maluuba", "Microsoft Research Redmond", "Deepglint", "Carnegie Mellon University Silicon Valley", "Doctor of Philosophy (Ph.D.), Computer Science", "Bachelor of Engineering (BEng), Electronic Engineering and Information Science"], "CindyPallares": ["Wells Fargo Financial", ""], "hantek": ["Montreal Institute for Learning Algorithms (MILA)"], "GeoffreyIrving": ["Google Brain", "Eddy Systems", "Otherlab", "Weta Digital", "D. E. Shaw Research", "Pixar Animation Studios", "United States US8290757 B2", "United States", "United States", "Proceeding SIGGRAPH '08 ACM SIGGRAPH 2008 talks"], "AlexeyGalkin": ["IBM", "IBM", "IBM", "IBM", "Bachelor's Degree, Computational and Applied Mathematics"], "DanielRenshaw": ["Master of Philosophy (MPhil), Machine learning (esp. neural networks), speech technologies, and natural language processing", "BSc (honours), Artificial Intelligence & Computer Science, 1st", "IEEE International Conference on Acoustics, Speech, and Signal Processing (ICASSP)", "INTERSPEECH 2015: 16th Annual Conference of the International Speech Communication Association (to appear)"], "JamesBergstra": ["Kindred.ai", "University of Waterloo", "Harvard University", "Universit de Montral", "I-mmersion Studios Inc.", "Ph.D., Computer Science", "M.Sc., Computer Science", "B.Sc., Math, Philosophy, Computer Science", "B.Sc., Math, Philosophy, Comp Sci", "B.Sc., Math, Philosophy, Comp Sci", "", "", ""], "JonathanHseu": ["Google", "Dropbox", "Google"], "JoshPatterson": ["Josh liked", "Josh liked", "Josh liked", "Josh liked", "Josh liked", "Josh shared", "Skymind.io - Deep learning for Industry", "Relish", "Skymind.io - Deep learning for Industry", "O'Reilly Media", "Patterson Consulting of TN", "Continuuity", "Cloudera", "Cloudera", "Cloudera", "Tennessee Valley Authority", "University of Tennessee at Chattanooga", "LEWCON, LLC", "Cerillian", "USXpress", "Realty Center, GMAC", "", "IAAI-09"], "EricWindisch": ["Docker, Inc", "Cloudscaling (acquired by EMC Corp)", "GrokThis.net", "Harris Computer Systems", "Site5 Internet Solutions, Inc.", "BurstNET Technologies, Inc.", "OpenStack Foundation", ""], "RohanJain": ["Google", "Microsoft - Bing, Machine Learning Div", "Tryst - 2008, IIT Delhi's technical festival", "Indian Institue of Technoloy, Delhi", "Network Appliance Inc"], "PatrickNguyen_": [], "LouisTaylor": ["Paulson & Co.", "Deutsche Bank Equity Research", "Prudential Securities", "Real Estate Private Equity", "Board Member", "Member", "Member", "President, Co-Founder, Board Chair", "President, Co-Founder, Board Chair", "President, Board Chair", "Board Member and Coach", "Board member, Treasurer"], "NikhilKomawar": ["IBM", "OpenStack", "OpenStack", "Rackspace", "Rackspace", "Virginia Tech", "Verizon Data Services", "University of Tuebingen", "Head Organizer", "Student Teaching Student", "Masters Degree, Computer Science", "Bachelor of Technology, Computer Science and Engineering", "", "Virginia Tech", "Indian Institute of Technology, Guwahati", "GNOME Foundation", "Score: Top 0.3%", "Score: Top 0.3%"], "PeteWarden": ["Google", "Jetpac", "O'Reilly Media", "OpenHeatMap", "MoveableCode, inc.", "Mailana", "Apple", "PetesPlugins", "Visual Sciences", "BSc, Computer Science"], "DavidWarde-Farley": ["DeepMind", "Universit de Montral", "Google", "Google", "Citizen Lab", "PhD, Computer Science", "M. Sc., Computer Science", "Hon. B. Sc., Computer Science, Statistics", ""], "RomanBogorodskiy": ["Mirantis", "The Apache Software Foundation", "FreeBSD", "Grid Dynamics", "Grid Dynamics Consulting", "Renet Com", "Fannet Telecom", "MSc, Mechanics and Mathematics"], "SamStavinoha": ["The Dow Chemical Company", "Kappa Kappa Gamma", "The Dow Chemical Company", "Kappa Kappa Gamma", "Hearst Magazines", "Bachelor of Science (B.S.), Advertising", "Girls on the Run International", "Reading Is Fundamental"], "DavidKoo": ["Groundworks Office", "David Koo", "UC Berkeley", "Melndrez", "Hogle-Ireland", "City of Ontario", "City of Walnut", "Masters Degree, Landscape Architecture", "Bachelors Degree, Educational; Urban & Regional Planning"], "BartvanMerrienboer": ["Twitter", "Facebook", "Self-Employed", "TEDxWarwick", "AIESEC", "GroeneKruis Domicura", "Paris International Model United Nations (PIMUN)", "European Commission", "SOS Children's Villages", "Doctor of Philosophy (Ph.D.), Machine learning, A", "Master of Science (MSc), Complex Systems Science (Erasmus Mundus), A", "Master of Science (MSc), Complex Systems Science (Erasmus Mundus), GPA 3.9/4.0", "Bachelor of Science (BSc), Mathematics and Business Studies, First Class Honours", "Business, Israeli politics, Middle Eastern history, Ethics, A (93%)"], "CyprienNoel": ["Flickr (Yahoo)", "Stanford University & NVIDIA Tech Talks", "NVIDIA GTC 2015", "H2O.ai (0xData)", "ObjectFabric", "Strange Loop 2011", "Self", "JavaOne 2010", "C3S2E10", "SmartTrade Technologies USA", "SmartTrade Technologies", "LORIA - Lorraine laboratory of computer science - Cortex Team", "ACM", "Masters, Engineering & Computer Science"], "SamMorrison": ["TBWA\\Media Arts Lab", "Laundry Service", "Kaltura", "Alphaserve Technologies", "Bachelor of Science (B.S.), Information Management and Technology, GPA 3.7 Within Major", "Continuing Education, Advertising", "Enitiative", "CenterState CEO", "Communications Officer"], "GuillaumeDesjardins": ["Google DeepMind", "DeepMind Technologies", "Doctor of Philosophy (Ph.D.), Computer Science (in progress)", "Master's degree, Computer Science", "Bachelor of Engineering (B.Eng.), Computer Engineering"], "PaulChristiano": ["Theory of Computing Group - UC Berkeley"], "JasonKoelker": ["WELBRO Building Corporation"], "FlavioPercoco": ["Red Hat", "OpenStack", "OpenStack", "OpenStack", "Red Hat", "Red Hat", "The Net Planet Europe", "Reitek S.p.A.", "Humanitarian FOSS Project", "DST PDVSA", "Fundacite"], "lukeiwanski": ["Codeplay Software Ltd", "Codeplay Software Ltd", "Codeplay Software Ltd", "Heehaw Digital", "Games Development"], "VadimMazalov": ["Microsoft", "Amazon", "Microsoft", "Western University", "Quantica Trading (formerly Embium)", "Western University", "Microsoft", "Peter-Service", "Ziiva Information Technology", "Oracle", "Oracle", "Oracle", "Project Euler"], "VishvanandaIshaya": ["Oracle", "OpenStack", "Datera", "Nebula, Inc.", "OpenStack", "Nebula, Inc.", "OpenStack", "Rackspace Hosting", "NASA Ames Research Center"], "AndrewHarp": ["Google", "Google", "Midway Games", "IBM", "IBM", "MS, Computer Science", "Bachelor of Science, Computer Science"], "Chmouel_Boudjnah": ["Red Hat", "Duolingo"], "FanZiye(t13m)": ["Theano Development Community", "Great Wall Computer Software And Systems Inc., Ltd.", "Master's degree, Machine Intelligence (School of EECS)", "Bachelor's degree, EE (School of EECS)"], "raver119": ["Skymind.io"]} \ No newline at end of file +{ "CoryWright": ["iland Cloud", "Rackspace", "Rackspace", "Hush Labs", "Rackspace", "Rackspace", "Chinese Language", "Bachelor of Arts, History", "SaltStack, License 0xFE4C69B1", "Red Hat, License 804005746415516", "Linux Journal", "Linux Journal", "Linux Journal", "Linux Journal", "Linux Journal"], "NanRosemaryKe": ["Montreal Institute for Learning Algorithms (MILA)"], "NicolasPinto": ["Apple", "Perceptio", "MIT", "Harvard University", "Harvard University", "MIT", "MIT", "CERN", "Prof. Oh / CV Lab / CBNU (South Korea)", "", "", "", "MIT BCS", "Python Software Foundation", "Python Software Foundation", "MIT BCS", "Computational and Systems Neuroscience Committee", "Microsoft Research", "Google", "DARPA", "NSF", "NVIDIA", "NSF / NCSA", "Amazon AWS", "Amazon AWS", "Ph.D, Computational Neuroscience / AI", "M.S., AI/Neuroscience", "MS, Information, Systems, Communication", "M.S, Computer Science / Artificial Intelligence", "M.S, Computer Science / Software Engineering", "MS, Computer Science"], "UnderdogGeek": ["Bhaskar Mitra on LinkedIn", "Bhaskar shared", "Microsoft", "Microsoft", "Amazon", "Hewlett-Packard", "Floranta", "Bachelor of Engineering (BE), Computer Science", "BE, Computer Science", "Research Doctorate, Computer Science", "", "Proceedings of the ACM International Conference on Research and Development in Information Retrieval (SIGIR)", "Proceedings of the 23rd ACM International Conference on Information and Knowledge Management (CIKM)", "Proceedings of the 38th international ACM SIGIR conference on Research & development in information retrieval", "Proceedings of the 24th ACM International Conference on Information and Knowledge Management (CIKM)", "WWW'16, WWW World Wide Web Consortium (W3C)", "Arxiv.org"], "sarvesh-ranjan": ["11bilionclub", "Ola (ANI Technologies Pvt Ltd)", "Cisco", "Cisco", "Wipro", "IBM India Research Lab", "Impetus", "Integrated Dual Degree (Bachelors & Masters), Computer Science and Engineering", "High School, Mathematics", "Family Giving Tree", "Second Harvest Food Bank", "International Intern"], "ZhouWang": ["Microsoft", "Fraunhofer-Gesellschaft", "Vereinigte Staaten 8213302"], "MartinEnglund": ["United States 7568092", "", ""], "KentWang": ["Kent Wang", ""], "HirofumiIchihara": ["NTT (Nippon Telegraph and Telephone Corporation)", "NTT (Nippon Telegraph and Telephone Corporation)", "Master's degree, Computer Science"], "DougHellmann": ["Red Hat", "OpenStack", "Python Software Foundation", "O'Reilly & Associates", "Python community", "Addison-Wesley", "MS, Computer Science"], "VincentUntz": ["SUSE", "Association des utilisateurs francophones d'OpenStack", "OpenStack Foundation", "openSUSE Project", "GNOME Foundation", "openSUSE Project", "openSUSE Project", "SUSE", "SUSE / Novell", "GNOME Foundation", "GNOME Foundation", "GNOME Foundation", "Novell", "Institut National Polytechnique de Grenoble / LIG", "Institut National Polytechnique de Grenoble / ENSIMAG", "Institut National Polytechnique de Grenoble / LSR, LIG, ENSIMAG", "Institut National Polytechnique de Grenoble / ESISAR, ENSIMAG", "Institut National Polytechnique de Grenoble / LSR", "Sun Microsystems"], "SinaHonari": ["Universit de Montral", "Nvidia", "Universit de Montral", "Morgan Stanley", "Concordia University", "Researcher", "Researcher", "Researcher on market design techniques", "Universit de Montral", "Concordia University", "Concordia University", "trading agent competition international forum", "Doctor of Philosophy (PhD), Computer Science", "Master of Science (MS), Computer Science, 4.15/4.3"], "PierreLucCarrier": ["Montreal Institute for Learning Algorithms (MILA)"], "shrutiranade38": ["M.S, Quality Management", "B. Pharm Sc, Pharmaceutical Sciences"], "agibsonccc": ["Galvanize Inc", "Skymind.io Deep Learning support services training via deeplearning4j.org", "Zipfian Academy", "CritSend", "Clever Cloud Computing", "Mashape", "ITOxygen", "ITOxygen", "Coursera", "Coursera", "Dropped out, Computer Science/Data Science MIS, 3"], "ArnaudBergeron": ["Montreal Institute for Learning Algorithms (MILA)"], "wangxiyuan": ["MD Anderson Cancer Center", "Texas A&M University", "Chinese Academy of Sciences", "Private Tutor", "Shandong Agricultural University", "Shandong Agricultural Univerity", "Master's degree, Biotechnology, 4/4", "Student researcher, Neuroscience, Graduate Assay and Experience 98/100", "Bachelor of Science (B.S.), Biology/Biological Sciences, 3.55/4", "High School, Science, A", "Shandong Agricultural University", "China", "China", "", "", "", "Vice President", "Captain of Secretary", "Leader in Speech Group", "", "", "", "", "", "", "Score: 527", "Score: 522", "Journal of biomedical engineering"], "ThomasBechtold": ["Verizon- Information Technology", "State of New Jersey", "Master of Science (M.S.), Telecommunications and Computing Management"], "ShuquanHuang": ["Duke University", "University of Virginia", "Ph.D. student, Electrical & Computer Engineering", "BS, EE major, Engineering Business and CS minor", "Ten thousand villages", "Independent Animal Rescue (IAR)"], "KevinKirkpatrick": ["Scentsy, Inc. (Corporate Office)", "Scentsy, Inc.", "Scentsy, Inc.", "Hewlett-Packard", "Hewlett-Packard", "Hewlett-Packard", "Hewlett-Packard", "Boise Hawks Baseball Club", "MBA, Marketing, Finance, Entrepreneurship", "BS, Chemical Engineering"], "SiddharthAgrawal": ["Amazon", "MLPACK", "ICML Workshop on MLOSS 2015", "M.E., Computer Science and Engineering", "B.E.(Hons.), Computer Science and Engineering", "Coursera", "Coursera", "Coursera", "Udacity", "edX"], "JeremyStanley": ["Instacart", "Sailthru", "Sailthru", "Collective", "Collective", "Collective", "Ernst & Young", "Ernst & Young", "Generali USA", "First Round Review", "tech.instacart.com", "Medium", "Diginomica", "First Round Review", "AdExchanger", "AdExchanger", "AdExchanger", "AdExchanger", "MBA", "BS, Mathematics"], "StefT": ["City of Boston Police Department", "City of Boston Police Department", "City of Boston Police Department", "Krav Maga Worldwide, Inc.", "Protective Services Gruppe", "City of Warwick", "Sig Arms Academy", "Rhode Island Municipal Police Academy", "Rhode Island Municipal Police Academy", "Fairfax County Government", "MS, Urban Affairs", "BA, Sociology"], "sentient07": ["Theano", "Enorgo", "Electronics Engineering", ""], "MarkusBeissinger": ["Lobe", "Microsoft", "Osus, Inc.", "Jam4Life", "MSE Computer Science, Artificial Intelligence", "BS in Economics, Operations & Information Management, Marketing, Entrepreneurship", "BSE, Computer Science"], "DavidZ.Chen": ["David Z. liked", "David Z. liked", "David Z. liked", "David Z. liked", "David Z. liked", "David Z. liked", "Google", "LinkedIn", "Microsoft", "Yale University", "PaperG", "Wiley Interdisciplinary Reviews: Computational Molecular Science"], "CaoShuFeng": ["The Chinese Ceramic Society", "Bachelor of Applied Science (B.A.Sc.), Organic Chemistry, A"], "LorinHochstein": ["Netflix", "SendGrid", "Nimbis Services, Inc.", "Information Sciences Institute", "University of Nebraska-Lincoln", "University of Maryland, College Park", "Boston University", "Xiphos Technologies", "Matrox", "27th IEEE International Symposium on Software Reliability Engineering (ISSRE '16)", "IEEE Software", "O'Reilly Media", "OpenStack Foundation", "Workshop on Parallel Programming on Accelerator Clusters", "NASA Journal of Innovations in Systems and Software Engineering", "Journal of Systems and Software", "ACM Symposium on Cloud Computing", "PhD, Computer Science", "MS, Electrical Engineering", "BEng, Computer Engineering", "DEC, Pure & Applied Science"], "DolphMathews": ["Rackspace Hosting", "Akimeka", "Laszlo Rain", "Freelance Web Design & Development", "QikCom, Inc.", "Bachelor of Science, Electrical & Computer Engineering", "United States US20120233668 A1"], "AbhinavUpadhyay": ["NetBSD", "Pramati Technologies", "NetBSD", "Ubuntu", "Hover Technologies Pvt. Ltd", "Packt Publishing", "Coursera", "Coursera", "Coursera", "Coursera", "Udacity", "Coursera Course Certificates, License RBS7D7S6C6AQ", "Coursera Course Certificates, License GDZRVJHA4HK7", "AsiaBSDCon 2012, Tokyo", "EuroBSDCon 2016, Belgrade", "Score: 107", "Score: 323/340", "B.Tech, Information Technology", "", "Pramati Technologies Pvt. Ltd.", "", "Developer"], "ChristosTsirigotis": ["Dipl. Eng., Electrical and Computer Engineering", "High School"], "ThomasMesnard": ["EPFL (cole polytechnique fdrale de Lausanne)", "Montreal Institute of Learning Algorithm, Universit de Montral", "Institut Curie", "Master of Science (M.Sc.), Mathematics, Machine Learning and Vision", "Computer Science, Mathematics and Neuroscience", "CPGE, Mathematics and Physics", "Neural Computation", "ICML 2015 Deep Learning Workshop", "NIPS 2016. Computing with Spikes Workshop.", "Arxiv", "Arxiv", "cole normale suprieure", "Lyce Saint Louis", "cole normale suprieure"], "MattGraham": ["Doctor of Philosophy (PhD), Probabilistic Machine Learning", "Master of Science (by Research), Neuroinformatics and Computational Neuroscience, Distinction", "Master of Engineering (MEng), Information and Computer Engineering, First-Class Honours (Part IIA) / Distinction (Part IIB)", "University of Edinburgh", "University of Cambridge", "Granta Design", "Nrich", "Mott MacDonald", "Proceedings of the 19th International Conference on Artificial Intelligence and Statistics", "STEMNET"], "Marc-AlexandreCote": ["Maluuba", "Nuance Communications", "Nuance Communications", "Doctor of Philosophy (PhD), Computer Science", "Master's degree, Computer Science", "Bachelor's degree, Computer Science"], "thuyenvn": ["UC Santa Barbara", "Magic Leap", "Doctor of Philosophy (PhD), Electrical and Computer Engineering", "Master of Science (M.S.), Electrical and Computer Engineering", "Bachelor of Engineering (BEng), Electrical Engineering"], "DavidRipton": ["Marsh", "Marsh", "Willis"], "LuisAGarcia": ["IBM", "IBM", "IBM", "IBM", "The University of Texas at El Paso", "IBM", "IBM", "The University of Texas at El Paso", "United States US20110267422", "United States US8621462", "IBM", "IBM", "High Assurance Systems Engineering Symposium,10th IEEE", "Software Engineering and Knowledge Engineering", "Master of Science, Computer Science", "Bachelor of Science, Computer Science, cum laude"], "BrianElliott": ["Google", "Google", "Google", "Monsoon Commerce", "Alibris, Inc.", "Alibris, Inc.", "Alibris, Inc.", "Boston Consulting Group (BCG)", "Boston Consulting Group (BCG)", "San Francisco Friends School", "Internet Retailer", "The Oregonian"], "eraly": ["Susan Eraly on LinkedIn", "Susan shared", "Skymind.io - Deep learning for Industry", "Galvanize Inc", "Galvanize Inc", "NVIDIA", "ARM", "HP", "Bachelor of Engineering (BE), Electrical Engineering", "Coursera Verified Certificates, License 4AVGRBDHQR", "Coursera Verified Certificates, License 4J8FJ44NAN", "Coursera Verified Certificates, License DSPJEVKA3D", "Coursera Verified Certificates, License L9GA6Z48JA", "Coursera Verified Certificates, License UVJ27G3B2P", "Coursera Verified Certificates, License P9PRV2G2C6", "Coursera Verified Certificates, License TUULKP9KDJ", "Coursera Verified Certificates, License 5CDTJDWUTT"], "AndrewSelle": ["Google", "Walt Disney Animation Studios", "Walt Disney Animation Studios", "Industrial Light + Magic", "PhD, Computer Science", "MS, Computer Science", "BS, Computer Science, Mathematics"], "CesarLaurent": ["Montreal Institute for Learning Algorithms (MILA)"], "PhilippKranen": ["Microsoft", "Microsoft", "Microsoft Research", "RWTH Aachen University", "Siemens Corporate Research, Princeton NJ, USA", "Grnderkolleg Aachen", "Dr. rer. nat., Informatik", "Diplom, Informatik", "", ""], "nicholas-leonard": ["Twitter", "Element Inc.", "Universit de Montral", "Canadian Forces", "Canadian Forces", "Canadian Space Agency", "Canadian Forces", "ADIROUM", "Queen of Canada", "Master's Degree, Computer Science (Deep Learning)", "Bachelor's Degree, Computer Science", "High School"], "JulienDemouth": ["NVIDIA", "NVIDIA", "Ubisoft", "Pohang University of Science and Technology", "INRIA", "Coursera", "GPU Technology Conference (GTC) 2012", "Different editors", "Ph.D, Computer Science (Computational Geometry)"], "SanderDieleman": ["DeepMind", "got-djent.com", "Ghent University", "Spotify", "VTK Gent", "Think Wize", "Digital Effects", "IEEE International Conference on Acoustics, Speech, and Signal Processing (ICASSP 2014)", "Advances in Neural Information Processing Systems", "Proceedings of the 14th International Society for Music Information Retrieval Conference (ISMIR 2013)", "Proceedings of the 12th International Society for Music Information Retrieval Conference (ISMIR 2011)", "Kaggle, Booz Allen Hamilton", "Kaggle, Galaxy Zoo, Winton Capital", "Master, Engineering, Computer Science, ICT", "Bachelor, Engineering, Computer Science"], "mronian": ["Google Summer of Code", "IBM India Research Labs", "DatabaseUSA", "Tata Consultancy Services", "Bachelor of Technology (B.Tech.), Master of Technology (M.Tech), Computer Science", "", "", "Score: 275/408", "Score: 91,50%", "Score: 93.80%", "Governor"], "ChinnadhuraiSankar": ["Universit de Montral", "Twitter", "Qualcomm", "Qualcomm", "The University of British Columbia", "ICLR 2016 workshop, May 2-4, Puerto Rico", "Information Theory Workshop (ITW), 2011 IEEE", "Bachelor of Technology, Electrical Engineering", "Master of Science, Computer Engineering", "Doctor of Philosophy (PhD), Deep learning", "", "MITACS ,Canada", "CBSE India"], "MustafaIspir": ["Google", "Synopsis", "Synplicity", "Aselsan A.S.", "MilSOFT"], "AndreasJaeger": ["Watts Water Technologies", "Watts Water Technologies", "Watts Water Technologies", "Bobcat Company", "Bobcat Company", "Ingersoll Rand", "Thermo King", "MBA, Finance", "MIM, Masters International Management", "BS in Business Administration, European Business (Dipl.-Kfm.EBS), Finance, Accounting, Taxes (BIFIST)", "EBS, European Business School"], "e-lin": ["YI-JHEN", "YI-JHEN", "YI-JHEN", "YI-JHEN", "YI-JHEN", "YI-JHEN", "Groovenauts", "Garmin International", "Compal", "Compal", "Coursera Course Certificates, : X3DECA33SJBZ", "Japan Foundation and Japan Educational Exchanges and Services", "Japan Foundation and Japan Educational Exchanges and Services", "Japan Foundation and Japan Educational Exchanges and Services", "Taiwan"], "KumarKrishnaAgrawal": ["Montreal Institute for Learning Algorithms (MILA)"], "BartvanMerri\\xebnboer": ["Twitter", "Facebook", "Self-Employed", "TEDxWarwick", "AIESEC", "GroeneKruis Domicura", "Paris International Model United Nations (PIMUN)", "European Commission", "SOS Children's Villages", "Doctor of Philosophy (Ph.D.), Machine learning, A", "Master of Science (MSc), Complex Systems Science (Erasmus Mundus), A", "Master of Science (MSc), Complex Systems Science (Erasmus Mundus), GPA 3.9/4.0", "Bachelor of Science (BSc), Mathematics and Business Studies, First Class Honours", "Business, Israeli politics, Middle Eastern history, Ethics, A (93%)"], "SimonDENEL": ["Certifup", "Institut Langevin", "Thales Research & Technology", "CNS Conseil", "Thales Research & Technology", "A.L.S.E", "Coursera Course Certificates, Lizenz PG3P3H257TUK", "Coursera Course Certificates, Lizenz 4K2FT4P3W6B2", "Stanford University", "Coursera Course Certificates, Lizenz R5V2Z9T96UEK", "Frankreich FR3014221", "Master's degree, Embedded Computing Systems, With highest honors", "Classe prparatoire PT, Sciences industrielles", "", "Internat d'Excellence de Cachan"], "RussellBryant": ["Red Hat", "http://www.astricon.net", "O'Reilly Media, Inc.", "O'Reilly Media", "O'Reilly Media", "United States 9026864"], "Alex Meade": ["Lexmark", "Alex Meade Bikeworks, LLC", "Lexmark International", "Lexmark", "Lexmark", "MS, Mechanical Engineering", "BS, Mechanical Engineering", "BA, Liberal Arts"], "YifeiFeng": ["Yifei liked", "Google", "Microsoft", "Olin College of Engineering", "Microsoft", "IEEE Xplore", "Master of Science (M.S.), Electrical Engineering", "Bachelor of Science (B.S.), Electrical and Computer Engineering"], "RenatoUtsch": ["Google", "DCC UFMG", "CTWEB", "Bachelor of Computer Science"], "LiLao": ["Google"], "IbanHarlouchet": ["Statistique Canada", "Laboratoire MILA, Dpartement d'informatique et de Recherche Oprationnelle, Universit de Montral", "Odotech", "Ministre de lAlimentation, de lAgriculture et de la Pche", "Semestre d'hiver au Baccalaurat en informatique", "Matrise, Statistiques", "Matrise, Statistiques et conomtrie"], "Saxenauts": ["FireEye, Inc.", "Glassbeam, Inc", "Lifograph", "Cybage", "Master's of Science, Computer Software Engineering, 3.40", "P.G. Diploma in Advance Computing, Advance Computing, 3.5 CGPA", "Bachelor of Technology (BTech), Computer Science, 3.6 CGPA"], "PhilStahlfeld": ["Google", "Bucknell University", "Northrop Grumman Corporation", "Geisinger Medical Center", "President", "Federal Aviation Administration, License 3539082", "Bachelor of Science (B.S.), Computer Engineering", "", "Journal of Biomolecular NMR"], "kvmanohar22": ["Kharagpur RoboSoccer Students' Group", ""], "ChrisBasoglu": ["United States 7,272,670", "United States 7,103,102", "United States 7,095,785", "United States 7,051,123", "United States 6,434,649", "United States 6,347,344", "United States 5,910,117", "United States 5,528,302", "United States 5,492,125", "EE Times", "IEEE Transactions on Circuits and Systems for Video Technology", "Proceedings of SPIE Media Processors 2002", "Proceedings of SPIE Media Processors 2002", "IEEE Micro", "Real-Time Imaging", "Proceedings of SPIE Media Processors 2000", "Proceedings of SPIE Media Processors 2000", "Proceedings of SPIE Image and Video Communications and Processing 2000", "International Journal of Imaging Systems and Technology", "Parallel Computing", "International Journal of Imaging Systems", "IEEE Transactions on Education", "Proceedings of SPIE Medical Imaging 1996: Image Display", "Proceedings of SPIE Medical Imaging 1998: Image Display", "Proceedings of SPIE Medical Imaging 1998: Image Display", "Proceedings of SPIE Medical Imaging 1998: Image Display", "IEEE Transactions on Information Technology and Biomedicine", "Real-Time Imaging", "Proceedings of SPIE Medical Imaging 1997: Image Display", "Proceedings of SPIE Medical Imaging 1997: Image Display", "Proceedings of SPIE Medical Imaging 1997: Image Display", "Ultrasonic Imaging"], "kairat_kushaev": ["Mirantis", "Opensoft", "NetCracker", ", Computer Engineering, 4.95"], "SamiraShabanian": ["Universit de Montral", "Computer Science, Machine Learning", "Doctor of Philosophy (Ph.D.), Mathematics", "The First Workshop in \"Fixed Point Theory and Application\"", "The Second Workshop in \"Fixed Point Theory and Application\""], "RohanKanade": ["Red Hat", "Izel Technologies Pvt. Ltd.", "NTT DATA Americas", "Self-Employed", "Prolinkd", "Nextech Solutions", "Nextech Solutions", "OpenStack Foundation", "Sun Microsystems", "Sun Microsystems", "Bachelor of Science, Computer Science, Distinction ( 79.97 %)"], "YufangZhang": ["Pharmanet-i3"], "GerardoPorras": ["Timac AGRO Espaa", "Behr Iberia", "Asaja Crdoba"], "gdesjardins": ["Google DeepMind", "DeepMind Technologies", "Doctor of Philosophy (Ph.D.), Computer Science (in progress)", "Master's degree, Computer Science", "Bachelor of Engineering (B.Eng.), Computer Engineering"], "LukeIwanski": ["Codeplay Software Ltd", "Codeplay Software Ltd", "Codeplay Software Ltd", "Heehaw Digital", "Games Development"], "YongqiangWang": ["Microsoft", "University of Cambridge", "Microsoft Research, Redmond", "The University of Hong Kong", "Microsoft", "Microsoft Research Asia, Beijing, P.R.China", "United States US8369611", "United States US20100246941", "United States US20100239168"], "DarrenGarvey": ["YouView TV Limited", "Evi Technologies (formerly True Knowledge)", "360 Systems Ltd", "Bachelor of Science (BSc), Physics"], "ravikumar-venkatesan": ["Hewlett-Packard Enterprise", "Cisco", "HP", "Walmart.com", "Federal Reserve Bank of San Francisco", "Kana", "NetApp", "Oracle", "Offshore Digital Services/Sonata Software", "TeachTheFutureFoundation INC", "Master's, Business Administration and Management, General"], "YusukeIde": ["Rocknel Fastener", "", ""], "houmingwang": ["Charles River Laboratories", "MIT", "Purdue University", "China Agricultural University", "Purdue University", "Purdue University", "AAI, seatle", "Purdue University", "Chinese Government", "The Journal of Experimental Medicine", "PLoS ONE", "BMC Immunology", "The Journal of Experimental Medicine", "The Journal of Immunology", "Gastroenterology", "Mucosal Immunology", "Doctor of Philosophy (PhD), Immunology", "Master of Science (MS), Veterinary Medicine", "AVMA"], "IlliaPolosukhin": ["Illia shared", "Illia liked", "Illia liked", "Google Research", "Salford Systems", "Udacity", "Master's degree, Applied Math (and Computer Science)", ""], "AdrianSmith": ["Tha Alumni Music Group"], "AnandShanmugam": ["HCL Technologies", "CSC", "HCL Technologies", "Alcatel-Lucent", "BE, Electronics and Communication", "Mirantis, License 100-273"], "FrancescoVisin": ["Montreal Institute for Learning Algorithms (MILA)"], "GrantMurphy": ["Merck", "Princeton University", "Princeton University", "Princeton University", "Doctor of Philosophy (Ph.D.), Chemistry (Biochemistry/Biophysics)", "Bachelors Degree, Chemistry with Honors, Biology with Honors"], "FabienBoucher": ["Chauvin Arnoux", "Pyrocontrole", "Technique de commercialisation, Commerce international / commerce", "Licence, Ingnierie mcatronique, robotique et automatisation, Licence professionnelle", "BTS M.A.I, Mcanique des Automatismes Industriels", "BEP et BAC PRO MSMA, Maintenance des systmes mcaniques automatiss"], "AdriaPuigdomenech": ["Google DeepMind", "Microsoft", "TU Mnchen", "Intel Corporation", "TU Mnchen", "Fundaci puntCAT", "Universitat Autnoma de Barcelona", "Universitat Autnoma de Barcelona (Computer engineering)", "Master of Science (MSc), Informatics", "Computer engineering, Engineering", "Mathemathics degree, Maths"], "LudwigSchmidt-Hackenberg": ["EyeEm", "Techn. University of Kaiserslautern / TU", "Telefnica Digital", "Fraunhofer Institute for Digital Media Technology", "Fraunhofer Institute for Digital Media Technology", "Accenture", "BMW", "Diplomingenieur, Medientechnologie", "Study Abroad"], "KentonLee": ["University of Washington", "Doctor of Philosophy (PhD), Computer Science", "Bachelor of Science in Engineering, Computer Science", ""], "lucasb-eyer": ["RWTH Aachen University", "Kindred.ai", "Google", "Mint Medical", "Digatron Industrie Elektronik GmbH", "Dipl. Ing., Computational Engineering Science"], "WayneXiong": ["Wayne liked", "Wayne liked", "Wayne liked", "Wayne liked", "Wayne liked", "Wayne liked", "Microsoft", "Microsoft", "Microsoft"], "BrynKeller": ["Intel Labs", "Intel Corporation", "Intel Labs", "Jenkon", "Jenkon", "Jenkon", "Occupational Health Research", "US Army", "Coursera", "Bachelor of Science (BS), Mathematics", ""], "caisq": ["Google", "The MathWorks", "The MathWorks", "Boston University", "Boston University", "MIT", "Northeastern University", "Boston University", "Johns Hopkins University", "Vision Research", "Proceedings of the 27th Annual Intl. Conf. IEEE-EMBS,", "Journal of the Association for Research In Otolaryngology", "Journal of Tsinghua University (Sci. & Tech.)", "Proceedings of the 8th Intl. Seminar on Speech Production", "Journal of the Acoustical Society of America", "Journal of the Acoustical Society of America", "Journal of Neuroscience", "PLoS ONE", "Proc. 14th Annual Conference of the International Speech Communication Association (InterSpeech 2013)", "Brain and Langauge", "Frontiers in Human Neuroscience", "PhD, Health Science and Technology", "Master of Science, Electrical Engineering and Computer Science", "Master of Science in Engineering, Biomedical Engineering, 4.0 / 4.0", "Bachelor of Engineering, Biomedical Engineering", "", ""], "PaulDubs": ["ICTJOB Deutschland GmbH", "Paul Dubs IT Consulting", "Happy Systems GmbH", "shork GmbH", "Benjamin Lochmann New Media GmbH", "ADMS 2013", "Master of Science (MSc), Informatik"], "JamesEBlair": ["Hewlett-Packard", "OpenStack", "Rackspace Hosting", "UC Berkeley", "Free Software Foundation"], "NikolajStarodubtsev": ["Qiwi", "SmartLabs", "ARQA Technologies", "ARQA Technologies", "Novosoft LLC", "Specialist Computer Training Center", "ICAgile", "", ""], "AlexanderTivelkov": ["Mirantis", "Mirantis", "Argussoft Company", "Anton Malevsky Memorial World Cup", "Master of Science (MS), Applied Mathematics", ""], "crockpotveggies": ["New York Times", "Bernie A.I.", "3 Tier Logic", "Earhart DNA Project", "3 Tier Logic", "Alloy Technologies, Inc.", "Rubik", "ACG Corp.", "Snow4Innocents", "Holy Innocents Children's Hospital", "PlanSea Entertainment", "Bachelors, Business, Health Sciences", "Honours Secondary Diploma"], "Ewan Mellor": ["Freelancing", "BA (Hons), MA (Cantab)"], "AndreHolzner": ["Andre Holzner gefllt Folgendes:", "University of California at San Diego", "CERN", "EU Project", "ETH Zurich", "Kaggle"], "JaredCulp": ["Phunware, Inc.", "Intentional Futures", "NBBJ Design", "Hollwich Kushner LLC", "Master's degree, Advanced Architectural Design", "Bachelor of Architecture (BArch), Architecture"], "VinuRajashekhar": ["Google", "Microsoft", "RTEMS Project", "EPFL", "IIT Kharagpur", "National Council of Educational Research and Training (NCERT)", "Dual Degree (M.Tech and B.Tech), Computer Science"], "MohammadPezeshki": ["Laboratory for Intelligent Multimedia Processing (IMP) - Amirkabir University of Technology (Tehran Polytechnic)", "Laboratory of Human Language Technology and Machine Learning - Amirkabir University of Technology (Tehran Polytechnic)"], "TillHoffmann": ["Sonalytic", "A commodities trading advisor", "A commodities trading advisor", "Self employed", "UNamur", "University of Oxford", "University of Oxford", "Carl Zeiss Group", "Physical Review E", "Physical Review E", "Temporal Networks. Springer", "Doctor of Philosophy (PhD), Applied Mathematics", "Master of Physics, Theoretical physics and astrophysics"], "R\u00e9myL\u00e9one": ["Inria", "Tlcom ParisTech | Thales Communications & Security (CIFRE)", "IEEE Internet of Things Journal (Volume:1 , Issue: 5 )", "ICC 2015", "Sensornets 2013", "EWSN 2015", "Algotel 2013", "Master's degree (Research branch), Computer Networking and Telecommunications", "Master's degree, Computer Engineering - Applied Mathematics", "Classe prparatoires (MPSI - MP-Info), Mathematics, Physics and Computer Science", "Bac S - SI, Mention Bien", "Paris Montagne"], "LaurentMazare": ["Jane Street Capital", "Goldman Sachs", "LexiFi", "Amadeus", "ENC Cachan - LSV", "Verimag Lab", "INPG, ENSIMAG"], "LukeIwanski_": [], "ZakariaHaque": ["Google", "UC San Diego", "Qualcomm", "Ph.D. student (on leave), Computer Science", "Bachelor's degree, Computer Science, Magna Cum Laude"], "DanielMan\u00e9": ["Google", "Palantir Technologies", "University of Chicago", "University of Chicago", "Phoenix Capital Partners", "The Pritzker Organization", "Moodys Corporation", "Smith Barney", "Techforge LLC", "BA, Philosophy & Computer Science", ""], "marianitadn": ["Adobe", "Kalon Global Group, Inc.", "Kalon Global Group, Inc.", "Red Hat", "uberVU", "Foreman", "Faculty of Mathematics and Computer Science - University of Bucharest", "Cronian Labs", "Mathematics and Computer Science Students Union", "Children's University - eucenet Romania", "Faculty of Mathematics and Computer Science, University of Bucharest", "ROSEdu", "ROSEdu", "Master", "BS", "High School"], "GabrielWainer": ["Carleton University", "Over 300 publications available in this link", "Proceedings of the 2012 Winter Simulation Conference. Berlin, Germany. IEEE"], "SergeyNikitin": ["Salym Petroleum Development", "Salym Petroleum Development", "Salym Petroleum Development", "ZAO \"Ermakovskoe PRS\"", "ZAO \"Ermakovskoe PRS\"", "Round II, Completion and Well Intervention", "Round I, Completion and Well Intervention", "Master's degree, Development and exploitation of oil and gas fields, 4", "Gubkin Russian State University of Oil and Gas", "Shell", "Shell"], "RohanJain_": ["edX"], "Radu": ["Fyusion, Inc", "Open Perception, Inc.", "Willow Garage", "Stanford University", "Technische Universitt Mnchen", "Stanford Research Institute", "Technical University of Cluj-Napoca", "Advisory Board", "Senior Member", "Technical Committee on Service Robotics Chair", "Technical Committee on Computer & Robot Vision Chair", "IEEE Robotics and Automation Society", "International Conference on Advanced Robotics (ICAR)", "Open Source Software (OSS) World Challenge", "Robotics Science and Systems (RSS)", "EURON (European Robotics Network)", "PhD (Dr. Rer. Nat.), Computer Science"], "JulienRebetez": ["MindMaze", "HEIG-VD", "Ecole Polytechnique Fdrale de Lausanne (EPFL)", "IICT at HEIG-VD", "Google", "Iomedia Communication S.A", "CIAT", "Iomedia Communication S.A", "Google Summer of Code 2006", "Rpublique et Canton du Jura", "European Symposium on Artificial Neural Networks, Computational Intelligence and Machine Learning", "International Conference on Pattern Recognition (ICPR)", "International Symposium on Wearable Computers (ISWC)", "IWANN", "ICPRAM", "Master, Information Technology", "Bachelor of Science HES-SO, Informatique", "BS, Information Technology", ""], "BrianRosmaita": ["Rackspace, the #1 managed cloud company", "Rackspace, the #1 managed cloud company", "Rackspace, the #1 managed cloud company", "Rackspace", "Rackspace", "Rackspace", "VTLS", "VTLS", "VTLS", "Hamilton College", "SUNY Cortland", "Kent State University", "Andersen Consulting", "Texas Instruments", "Burroughs Corporation", "PhD, Philosophy", "M.S., Computer Science", "B.A., Philosophy"], "GunhanGulsoy": ["Google", "Google", "University of Florida", "University of Florida", "University of Washington", "University of Florida", "Bioinformatics (2011) 27(13): i149-i158 doi:10.1093/bioinformatics/btr203", "ACM Conference on Bioinformatics, Computational Biology and Biomedicine 2011", "GENSIPS 2010", "Journal of Bioinformatics and Computational Biology (JBCB)", "PhD, Computer Science", "Master of Science (M.Sc.), Computer Science, 3.64", "B.Sc, Computer Engineering", "Erasmus Exchange Student, Mathematics, Computer Science"], "joncrall": ["Kitware Inc.", "BS, Computer Science"], "MatthewWillson": ["Deepmind", "Microsoft", "SwiftKey", "Media Service Provider Ltd", "Playlouder", "BubbleLabs Inc, Toronto", "DrownedinSound.com"], "OlivierBreuleux": ["LISA Lab - University of Montreal, Theano"], "CoryBenfield": ["U.S. Navy", "vaw-126"], "MartinKletzander": ["Red Hat", "IBM Global Services Delivery Center", "Globus R, k.s.", "Masters Degree, Computer Software Engineering", "Unfinished Master's in IT Security", "Bachelor's degree, Information Technology"], "ManjunathKudlur_": [], "GabeSchwartz": ["Drexel University - Department of Computer Science"], "AdrianoCarmezim": ["Bachelor of Science (B.S.) Master of Science (M.S.), Computer Science", "Bachelor of Science (B.S.), Computer Science", "Volunteering", "Celia Soutto Mayor", "Leitura"], "ChuckShort": ["CTS Business Solutions", "CTS Business Solutions", "Master of Business Administration (M.B.A.), Finance and Financial Management Services", "Bachelor of Arts (B.A.), Economics"], "JuergHaefliger": ["Hewlett Packard Enterprise", "Hewlett-Packard", "Hewlett-Packard", "Hewlett-Packard", "Hewlett-Packard", "Silicon Graphics", "Vereinigte Staaten 7516358", "Society of Photographic Instrumentation Engineers (SPIE)", "Society of Photographic Instrumentation Engineers (SPIE)", "Society of Photographic Instrumentation Engineers (SPIE)", "Society of Photographic Instrumentation Engineers (SPIE)", "Society of Photographic Instrumentation Engineers (SPIE)", "Society of Photographic Instrumentation Engineers (SPIE)", "IEEE Journal of Solid-State Circuits", "Certificate, Embedded Systems Engineering", "PhD, Electrical Engineering", "MS, Electrical Engineering"], "PeteZaitcev": ["Red Hat, Inc."], "EronWright": ["EMC", "Microsoft", "Point2 Technologies", "United States 6721802", "United States 20130298210", "United States 20130297921", "Bachelor of Science, Computer Science", "Microsoft, License 6605540", "Coursera", "Coursera", "Coursera"], "DarcyLiu": ["Tencent", "Tencent", "Alibaba.com", "Hangzhou Normal University", "Tencent", "Masters Degree, Computer Science", "Bachelor, Computer Science and Technology"], "RohitKarajgi": ["Teradata", "Jio", "NTT Data Corporation", "Pace (formerly 2Wire)", "Symphony Teleca", "Symantec India (formerly Veritas Software India)"], "NikhilThorat": ["Google", "DuPont Pioneer", "Schedr", "CampusLIVE Inc", "Bachelor of Science (BS), Computer Science, Math"], "ReyhaneAskari_": [], "BrianCline": ["salesforce.com", "Concentric Cloud Solutions", "Level 3 Communications", "FedEx Services", "National Biostudios"], "DiZeng": ["DeepMap Inc.", "Transcend Robotics", "University of Maryland", "Masters Degree, Robotics, 3.97/4", "Bachelor of Science (BS), Mechanical Engineering, 3.7/4.0"], "BoWang": ["Google", "Microsoft Bing", "Microsoft Research Asia", "Baidu.com", "M.D., 3"], "DanBecker": ["Dan liked", "Dan shared", "Dan liked", "DataRobot", "Galvanize Inc", "Kaggle", "EXL Analytics", "Federal Trade Commission", "Johns Hopkins University, Department of Applied Economics", "PhD, Economics", "BA, Computer Science"], "WangYang": ["Facebook", "AI Frontiers Conference", "CBS Interactive", "OmniClaim, Inc.", "Department of Computer Science,Tufts University", "University of Science and Technology of China", "Master of Science, Computer Science", "Bachelor of Science, Physics", "Journal of Applied Physics", "China Education"], "TatyanaLeontovich": ["Mirantis"], "VenkateshSampath": ["Ericsson", "Huawei", "Ericsson", "Bachelor of Engineering (BE),MBA, Electrical, Electronics and Communications Engineering", "Ericsson Global services India Pvt Ltd", "Huawei Telecommunication India Pvt Ltd", "Huawei Telecommunication"], "f0k": ["Austrian Research Institute for Artificial Intelligence (OFAI) of the Austrian Society for Cybernetic Studies (OSGK)- Intelligent Music Processing and Machine Learning Group"], "chenguoguo": ["KITT.AI", "Johns Hopkins University", "Google", "Google", "Doctor of Philosophy (Ph.D.), Speech Recognition", "Bachelor's degree, Electronic Engineering"], "Fr\\ufffd\\ufffdd\\ufffd\\ufffdricBastien": ["mnubo", "Briowireless Inc.", "Synergie Pilates", "Tekelec", "Tekelec", "Tekelec", "Blueslice Networks", "Nortel", "Teleglobe", "Microcell", "TechnoMontral", "Startup Weekend", "WearHacks", "Fondation Montral inc.", "Academos", "Founder Institute", "C100", "CABA", "Gartner", "ABI Research", "Price Waterhouse Coopers", "Deloitte", "Canadian Innovation Exchange", "Ernst & Young", "C100", "Branham300", "Bronfman Family Foundation", "Light Reading", "IIoT Symposium", "C2 MTL 2016 & Montreal Chamber of Commerce", "Canadian Venture Capital Association conference 2016", "Continental Automated Buildings Association - 2016 forum", "Ecole Polytechnique de Montreal / HEC", "IoT World Forum - Dubai", "TechnoMontral - l'Internet des Objets", "The Founder Institute", "Europe EP2130324", "B.Eng", ""], "CassandraXia": ["Google", "World Bank", "MIT Media Lab", "B.S., Computer Science", "Master's degree, Media Arts and Sciences"], "iccha.sethi": ["Atlassian", "Rackspace, the #1 managed cloud company", "OpenStack", "Rackspace Hosting", "Let's Code Blacksburg!", "Virginia Bioinformatics Institute", "Siemens Technology India", "Rackspace", "Datastores Practice Area, Rackspace", "Rackspace", "Roanoke Blacksburg Technology Council", "Roanoke Blacksburg Technology Council", "Rackspace Blacksburg Office", "Virginia Bioinformatics Institute, Virginia Tech", "Cranwell International Center, Virginia Tech", "SSN College of Engineering, Anna University", "SSN College of Engineering, Anna University", "", "Computer Society of India, SSN Student Chapter", "Anna University", "Grace Hopper Conference", "Talk on \"Deploying Your Application on Public Cloud\" at GHC 2014", "OpenStack @ OpenSource Day at GHC 2014", "WECode Harvard Conference", "OpenSource Day at Grace Hopper Conference", "GNOME Foundation", "Student Opportunity Lab, Grace Hopper Conference", "The National Center for Women & Information Technology (NCWIT)", "Virginia Bioinfomatics Institute - Kids Tech University", "Grace Hopper Conference", "Committee Lead", "Women in Computing Day Co-chair", "Advertising Chair, First Year Representative"], "NiallBunting": ["Hewlett-Packard", "Bachelor of Science (BSc)", "", "Ofcom"], "AlessandroPilotti": ["Sheraton Grand Hotel & Spa Edinburgh", "One Aldwych", "Rocco Forte Hotels Brown's Hotel", "Rocco Forte Hotels Abu Dhabi", "Rocco Forte Hotels Hotel de Russie", "Rocco Forte Hotels Hotel de Russie", "Rocco Forte Hotels Hotel de Russie"], "KenPepple": ["Solinea", "Cloud Technology Partners", "Internap", "Oracle", "Sun Microsystems", "Sun Microsystems", "Sun Microsystems", "Sun Microsystems, Inc.", "Sun Microsystems, Inc.", "Paranet", "Prentice Hall", "Prentice Hall PTR", "O'Reilly", "ITIL / OGC"], "ChristianJauvin": ["Aviva Canada", "Independent Consultant - Freelancer", "McGill Surveillance Lab", "Coursera", "Coursera", "Coursera", "Coursera", "M.Sc., Computer Science"], "AlexandredeBrebisson": ["", "MRes in Statistics / Machine Learning, Statistics / Machine Learning, Distinction 88/100", "Msc in in Advanced Computing, Artificial intelligence, Machine Learning, Distinction 82/100, \"Distinguished Project\", winner of the Winton Capital Prize", "French engineering diploma, Applied Mathematics, Computer Science, Physics, Economics and other information sciences", "\"classes prepa\", Mathematics - Physics", "HyperCube Research (BearingPoint)", "FactSet Research Systems", "UK Ministry of Defence"], "ElenaEzhova": ["Shop"], "YaroslavBulatov_": [], "AshishJain": ["VMware", "VMware", "PayPal", "Symantec", "Ping Identity Corporation", "BEA Systems", "EEE"], "GorkaEguileor": ["JustYoyo", "FOSS Comunity", "NEXTFOR", "NET-TEL Ibrica", "Z-World", "Tecnologa de Informtica y Comunicaciones", "Bachelor's degree, Computer Science, Artificial Intelligence Specialty", "Mongo NoSQL database", "Computerized Accounting", "Chiromasseur, Chiromassage", "Typewriting", "C.O.U., Hard Sciences"], "AlfredoMoralejo": ["Red Hat", "Red Hat", "Red Hat", "Red Hat", "Roche Pharmaceuticals", "Roche Pharmaceuticals", "Hewlett-Packard", "Hewlett Packard", "Tackling the Challenges of Big Data", "Software Enginnering for Software as a Service", "Master Degree, Free and Open Source Software Technology", "RHS333 Red Hat Enterprise Security: Network Services", "RH318 Red Hat Virtualization Administration", "RH442 Enterprise System Monitoring and Performance Tunning", "RH423 Red Hat Enterprise Directory Services and Authentication", "RH436 Enterprise Clustering and Storage Management", "RH401 Red Hat Enterprise Deployment, Virtualization, and Systems Management", "VMware Infrastructure 3: Install and Configure V3.0", "ITIL V2 Foundation", "SAP: ADM200 SAP Web AS Java Administration", "Project Management", "Oracle 9i: SQL and PL/SQL", "Engineer, Chemical Engineering", "Red Hat, Nmero de la licencia: 110-652-021", "Red Hat, Nmero de la licencia: 110-652-021", "Red Hat, Nmero de la licencia: 110-652-021", "Red Hat, Nmero de la licencia: 110-652-021", "HP Education", "edX", "Member", "Member"], "NoahFiedel": ["Google", "Color", "Google", "Boeing/Jeppesen", "gt nexus", "medicalogic", "webtv", "jeppesen", "dorado", "Zefer"], "ChrisAllnutt": ["Outlawz"], "ColinRaffel": ["Doctor of Philosophy (Ph.D.), Electrical and Electronics Engineering", "Master's degree, Music, Science and Technology", "Bachelor of Arts, Mathematics, Physics", "Columbia University in the City of New York", "Experimentalists Anonymous", "The Way of H, Inc.", "Imagine Research", "Zoimp!", "SacredAgent", "WOBC"], "VuPham": ["SAP", "Arimo, Inc.", "Singapore University of Technology and Design (SUTD)", "A2iA", "Ecole polytechnique Universit de Nantes, Polytech Nantes", "Ho Chi Minh University of Science", "Scopic software", "VNG", "FPT Visky", "Coursera", "Coursera", "Microsoft", "IEEE-RIVF 2010 International Conference on Computing and Telecommunication Technologies, Vietnam National University", "he Third International Conference on Knowledge and Systems Engineering (KSE 2011). Hanoi, Vietnam.", "16th Panhellenic Conference on Informatics with International Participation (PCI 2012). Piraeus, Greece", "ICFHR 2014", "Spark summit San Francisco", "Arimo Inc. blog", "Computer Science", "Master of Science, Data Mining and Knowledge Management", "Computer Science", "Bachelor's degree, Computer Science"], "JoshKearney": ["Planet.", "Free & Accepted Masons of Wisconsin", "Village of Hazel Green, WI"], "AndyHill": ["Atlis", "Stand4", "Office Depot", "Oppenheimer & Co.", "Florida Atlantic University", "National Collegiate Volleyball Federation", "ABC", "MBA, Finance"], "AlexeyKamenev": ["Alexey liked", "Alexey liked", "NVIDIA", "Uber", "Microsoft", "Exigen", "Intel", "Mercury Development, LLC", "Coursera", "Coursera"], "NicholasLeonard": ["Twitter", "Element Inc.", "Universit de Montral", "Canadian Forces", "Canadian Forces", "Canadian Space Agency", "Canadian Forces", "ADIROUM", "Queen of Canada", "Master's Degree, Computer Science (Deep Learning)", "Bachelor's Degree, Computer Science", "High School"], "MatthewWillson_": [], "PankajMishra": ["FactorDaily", "The Economic Times", "TechCrunch", "Mint-The Wall Street Journal Newspaper", "The Economic Times", "IDG Media", "Mint-The Wall Street Journal Newspaper", "The CTO Forum", "Asia Computer Weekly", "Indian Express Newspapers Bombay Ltd", "B.Com", "+2"], "HaiweiXu": [""], "KaiLi": ["Kai liked", "Facebook", "Hewlett Packard Enterprise", "Institute for Pattern Recognition and Artificial Intelligence, Huazhong University of Sci & Tec.", "National Lab of Pattern Recognition, Chinese Academy of Sciences", "Doctor of Philosophy (PhD), Computer Science, 4.0/4.0", "Bachelor of Engineering (B.Eng.), Automatic Control, 3.81/4.0", "IEEE Transactions on Pattern Analysis and Machine Intelligence", "IEEE International Conference on Multimedia and Expo (ICME)", "Proceedings of ACM Multimedia Conference", "IEEE International Symposium on Multimedia (IEEE ISM)", "ACM International Conference on Multimedia Retrieval (ICMR) 2015", "Proceedings of IEEE Global Communications Conference (IEEE GLOBECOM)", "Proc. of 9th ACM International Conference on Distributed Even-based Systems", "Proceedings of 5th International Conference on Multimedia Communications, Services and Security (MCSS)", "IEEE INFOCOM 2012", "National Science Foundation", "HP Vertica", "University of Central Florida", "University of Central Florida", "Huazhong University of Sci. & Tec.", "Huazhong University of Sci. & Tec.", "Huazhong University of Sci. & Tec.", "Huazhong University of Sci. & Tec."], "jeanfad": ["SAP", "Microsoft", "OwiTech", "Lille University", "INRIA", "Xerox", "Xerox Research Centre Europe", "elixir", "Coursera", "ECML-PKDD'12", "ICMLA'10", "PhD, Computer Science", "Master, Computer Science", "Engineer, Computer Science"], "SamuelAudet": ["Skymind.io - Deep learning for Industry", "Fixstars Corporation", "Fixstars Corporation", "Fixstars Corporation", "Google Japan", "Doctor of Engineering, Mechanical and Control Engineering", "Master of Engineering, Computer Engineering"], "jsalvatier": ["AI Impacts", "Amazon", "RPX Research, Inc.", "Boise-Cascade", "Boise Cascade", "Capstone Technology", "Kimberly-Clark", "B.S.Ch.E., B.S., Chemical Engineering, Paper Science and Engineering"], "ZhiQiangFan": ["Lenovo Brasil"], "ThierryCarrez": ["OpenStack Foundation", "OpenStack", "OpenStack", "Thyone consulting", "OpenStack", "Canonical Ltd.", "Goodyear", "SCORT", "Personal blog", "SecurityFocus", "Gentoo Linux", "Ubuntu", "Engineer, Mechanical Systems engineering"], "Preetika": ["EY", "Collaborative Consulting", "Boston University Residence Life", "Rolls-Royce", "Boston University Optical Characterization and Nanophotonics Laboratory", "Master of Business Administration (M.B.A.)", "BS, Mechanical Engineering", "Study Abroad, Mechanical Engineering", "CBSE, High School", "Engineers Without Borders - Boston Professionals", "Engineers Without Borders - Boston University", "Boston University"], "AlexLamb": ["Universit de Montral", "Amazon", "JHU Human Language Technology Center of Excellence", "Johns Hopkins University", "Johns Hopkins University Applied Physics Laboratory", "North American Chapter of the Association for Computational Linguistics: Human Language Technologies (NAACL-HLT)", "Association for the Advancement of Artificial Intelligence", "Doctor of Philosophy (Ph.D.), Computer Science", "Bachelor of Science, Applied Mathematics and Computer Science"], "b0noI": ["Google", "Hexlet.org", "Amazon", "DIO-soft", "Samsung R&D", "Rodovid Bank", "Institute of geochemical", "Oracle", "Oracle", "10gen", "Bionic University", "Coursera Verified Certificates, License ABW3MZXEYW", "Coursera Verified Certificates, License MZQSKZCUKZ", "Coursera Verified Certificates, License V7PREBM886", "Coursera Verified Certificates, License HY9V4GHVYJ", "Coursera Verified Certificates, License MLKKP9JTFY", "Coursera Course Certificates, License JZDYKBQFFAXY", "Coursera Course Certificates, License N8C2VV2ND4XU", "Doctor of Philosophy (Ph.D.), Natural Language Processing", "\"MS\", information security"], "XavierBouthillier": ["Nuance Communications", "Universit de Montral", "Universit de Montral", "Proceedings of the 15th ACM on International conference on multimodal interaction", "Doctor of Philosophy (Ph.D.), Computer Science", "Master's Degree, Computer Science", "Exchange student, Computer science", "Bachelor's degree, Computer Science"], "JeremiahLowin": ["Jeremiah liked", "Kokino LLC", "Compass Coffee", "The Apache Software Foundation", "Lowin Data Company", "King Street Capital Management", "A.M., Statistics", "A.B., Economics"], "MikeC.Fletcher": ["Python Software Foundation", "VRPlumber Consulting Inc.", "PyOpenGL", "Jazinga Inc.", "Aurora Cable Internet", "Rogers Communications", "VexTech Inc.", "Cinemon Inc.", "VRTelecom Inc", "BIS, Design Epistemology, Virtual Reality"], "HughPerkins": ["ASAPP", "Standard Chartered", "Morgan Stanley", "Lehman Brothers", "Socit Gnrale Corporate and Investment Banking", "SecondLife", "UFlexData (a Mandragore Division)", "CS Communication & Systmes", "Masters Degree, Computer Science, GPA 97.5", "Chinese (Mandarin), HSK 5", "Bachelors Degree, Natural Sciences, Class II.1", "University of Oxford"], "Nouiz": ["mnubo", "Briowireless Inc.", "Synergie Pilates", "Tekelec", "Tekelec", "Tekelec", "Blueslice Networks", "Nortel", "Teleglobe", "Microcell", "TechnoMontral", "Startup Weekend", "WearHacks", "Fondation Montral inc.", "Academos", "Founder Institute", "C100", "CABA", "Gartner", "ABI Research", "Price Waterhouse Coopers", "Deloitte", "Canadian Innovation Exchange", "Ernst & Young", "C100", "Branham300", "Bronfman Family Foundation", "Light Reading", "", "IIoT Symposium", "C2 MTL 2016 & Montreal Chamber of Commerce", "Canadian Venture Capital Association conference 2016", "Continental Automated Buildings Association - 2016 forum", "Ecole Polytechnique de Montreal / HEC", "IoT World Forum - Dubai", "TechnoMontral - l'Internet des Objets", "The Founder Institute", "Europe EP2130324", "B.Eng", ""], "goodfeli": ["OpenAI", "Google", "Google", "Google", "Willow Garage", "PhD, Machine Learning", "Bachelor of Science, Master of Science, Computer Science", "Proc. AAAI 2014, pp. 1199-1205", "NIPS 2014", "ICLR 2014"], "MelanieDucoffe": ["Inria", "Universit de Rennes 1", "diplme ENS", "Master's degree (research), computer vision, data mining, signal processing, virtual reality", "Diplme d'ingnieur, sciences informatiques, Vision Image et Multimdia", "Attestation CPGE ( classes prparatoires), Mathmatiques et Physiques ( MPSI, MP*)"], "DanielSmilkov": ["Google", "MIT", "Macedonian Academy for Sciences and Arts", "IBM", "Netcetera", "Master of Science (M.Sc.), MIT Media Lab", "M.Sc., Networks - Topology, Evolution, Dynamics, GPA: 9.89/10", "Bachelor, Computer Science", "Physical Review E 84 (4), 046102"], "HenriqueTruta": ["Distributed Systems Laboratory - UFCG", "Accenture", "Master of Science (MSc), Cloud Computing", "Bachelor's degree, Computer Science"], "NolwennCauchois": ["Cloudwatt", "Cloudwatt", "Master, Mathmatiques et informatique appliqu la cryptologie", "Licence, Mathmatiques et informatique"], "IgorKorsunov": [], "ChrisBamford": ["Import.io", "Bam4d Systems", "TouchGo Technology", "TouchGo Technology", "Bam4d Systems", "Cybernetic Intelligent Systems, 2010 CIS 2010. 9th IEEE International Conference", "Paladyn. Journal of Behavioral Robotics.", "Applied Masters, Cybernetics, First Class Honours", ""], "TomLeaman": ["Michael Page", "Argyll Scott", "Michael Page", "Michael Page", "Michael Page", "Michael Page UK", "Royal Navy"], "JohnWarren": ["Energy Alloys, LLC"], "SherryMoore": ["Google", "Sun Microsystems", "Intel"], "VivekKulkarni": ["Vivek liked", "Vivek liked", "BHI, 2013 Maebashi , Japan", "Complenet 2014 (Accepted)", "National Institute of Technology Karnataka"], "MarkoRadmilac": ["Microsoft", "None (PhD), Computer Science", "Bachelors, Computer Science, Applied Math"], "IanGoodfellow": ["OpenAI", "Google", "Google", "Google", "Willow Garage", "PhD, Machine Learning", "Bachelor of Science, Master of Science, Computer Science", "Proc. AAAI 2014, pp. 1199-1205", "NIPS 2014", "ICLR 2014"], "KiallMacInnes": ["Hewlett-Packard", "Hewlett-Packard", "OpenStack", "Managed I.T.", "Style Design Systems Ltd", "Bacheors of Science, Computer Science"], "HarshShah": ["Socotra", "Africa", "World Health Partners", "Lazy Bear", "Google", "AdMob", "Global Pediatric Alliance", "Hercules Capital, Inc.", "Houlihan Lokey", "BA, Major: Communication Studies // Minor: Accounting", "Fall Semester Exchange Student", "Executive Marketing Academy"], "ValentinBisson": ["valentin liked", "valentin liked", "Squarepoint Capital", "master's", "Bachelor (last year, exchange)", "Bachelor", "Licence (French Bachelor equivalent)"], "PascalLamblin": ["Montreal Institute for Learning Algorithms (MILA)"], "JamesPage": ["Wishbone Energy Partners LLC", "BlackCrest Capital LLC", "National Petroleum Company", "Khalda Petroleum Company", "Qarun Petroleum Company", "Price Waterhouse", "BBA, Accounting & Finance, Investment and Banking"], "WilliamDarling": ["Microsoft", "Xerox Research Centre Europe", "University of Guelph", "Space Security Index", "Entertainment Software Association of Canada", "Gowling Lafleur Henderson LLP", "Paradynamics, Inc.", "Ginkgo Boutique Apple", "Coursera", "Coursera", "Coursera", "Intellectual Property Journal", "Proceedings of the 49th Annual Meeting of the Association for Computational Linguistics: Human Language Technologies: short papers", "Physics Department", "", "Ph.D., Computer Science (Machine Learning and Natural Language Processing)", "LL.B., B.C.L. (Common Law and Civil Law), Law", "B.Sc. (exchange year), Physics, Computer Science", "B.Sc. (Hons.), Physics, Computer Science"], "SamiraEbrahimiKahou": ["Samira liked", "Samira liked", "Samira liked", "Samira liked", "Samira liked", "Samira liked", "Twenty Billion Neurons GmbH", "Microsoft", "Netsis Software Inc."], "KyunghyunCho": ["New York University", "Universit de Montral", "Aalto University", "Universit de Montral", "ZenRobotics Ltd.", "Interactivy", "Corecess", "President", "Doctor of Philosophy (Ph.D.)", "Master of Science (M.Sc.)", "Bachelor of Science (B.Sc.)"], "IanLangmore": ["Google", "Johnson Research Labs", "Columbia University", "Opera Solutions", "Columbia University", "University of Washington", "Columbia University", "University of California", "University of California", "Qualcomm Inc", "KDD", "PhD, Mathematics 2008", "Master of Science, Electrical Engineering 2004", "Bachelor of Science, Electrical Engineering 2002"], "TobiasUrdin": ["Crystone AB / Crystone LLC", "Datorgruppen", "Crystone Sverige AB", "Fujitsu IsoWorks, SEB", "Fujitsu IsoWorks, SEB", "Board Member", "Cisco Systems Inc, Licensnummer 640-822", "High school graduation, System, Networking, Windows Server, Cisco, CCNA, LAN/WAN"], "ClintByrum": ["IBM", "Hewlett Packard", "Canonical Ltd.", "Adicio, Inc.", "Anonymizer, Inc.", "XNtech", "ERP.COM", "CR Computing Solutions"], "JamesCarey": ["EMC", "EMC", "EMC", "EMC", "Fidelity National Information Services", "Cingular", "Alltel Information Services", "BBA, Accounting"], "DavidSoergel": ["Google", "University of Massachusetts Amherst", "UC Berkeley", "Molecular Sciences Institute", "Asha Technologies", "Little Engine, Inc.", "Stanford University", "Ph.D., Computational Biology", "B.S., Symbolic Systems", "Computation and Neural Systems"], "RoyXue": ["Carnegie Mellon University", "Rakuten", "Tesla Motors", "University of Washington", "Theano Open Source Dev Community", "HackNTU", "INTERFIRM", "iFanr", "Carnegie Mellon University", "HackShanghai", "Google", "HappyChick Foundation", "AIESEC", "Master's degree, Software Engineering", "Master's degree, Computer Science and Systems, GPA 3.70", "Bachelor of Science (BS), Electrical and Electronics Engineering, GPA 3.5", "Deep Learning", "Coursera", "Coursera", "Coursera", "Coursera", "Coursera", "Coursera", "Canton Fair (China Import and Export Fair)", "Guangzhou International Documentary Film Festival", "Chinese Conference on Cloud Computing(CCCC 2013)", "PACKT Publishing", "", "", "", "", ""], "ClemensMarschner": ["Clemens Marschner gefllt Folgendes:", "Clemens Marschner gefllt Folgendes:", "Clemens Marschner gefllt Folgendes:", "Clemens Marschner gefllt Folgendes:", "Microsoft", "Microsoft", "Microsoft", "FAST, a Microsoft Subsidiary", "Fast Search & Transfer", "Computational Linguistics Department, Univ. Munich", "PhD Thesis, Centrum fr Informations- und Sprachverarbeitung, Munich, Germany", "Springer"], "RasmusLarsen": ["Rasmus liked", "Google", "L-3 Communications", "Stanford University", "Pulsent", "Stanford University", "post doc, Computer Science / Solar physics"], "NikosKarampatziakis": ["Microsoft", "Microsoft", "Doctor of Philosophy (Ph.D.), Computer Science, 4"], "AntonKhodakivskiy": ["Menta Capital LLC", "AppDirect", "Nemaris, LLC", "LiveTechnology Holdings, Inc.", "IMT", "Master's degree, Physics"], "MatthewEdmonds": ["The Tire Rack", "Church Growth Services Inc", "Bachelor of Architecture (BArch), Architecture"], "CiyongChen": ["Intel Corporation", "Cisco Systems", "Huawei Technologies", "Master's degree, Embedded Software Engineering", "Bachelor's degree, Electronic Information Science and Technology"], "RasmusMunkLarsen": ["Rasmus liked", "Google", "L-3 Communications", "Stanford University", "Pulsent", "Stanford University", "post doc, Computer Science / Solar physics"], "AliElqursh": ["Google", "Qualcomm", "Rutgers University", "Google", "Technicolor", "Bibliotheca Alexandrina", "PhD, Computer Science", "B.Sc, Computer Science"], "SamGross": ["Facebook AI Research", "Jam Labs, Inc.", "Yext", "D. E. Shaw & Co.", "Google (NYC)", "Google (Atlanta)", "Virginia Department of Motor Vehicles", "M.Eng., Electrical Engineering and Computer Science", "B.S., Computer Science"], "abergeron": ["Montreal Institute for Learning Algorithms (MILA)"], "PatrickNguyen": ["Google", "Microsoft", "Metanautix (acquired by Microsoft)", "Google", "Microsoft Research", "Panasonic", "beTrust", "Swisscom"], "KeshavaBharadwaj": ["Cisco", "Hewlett-Packard", "Hewlett-Packard", "Consultant - Corventis", "Hewlett-Packard", "Hewlett-Packard", "B.E, Electronics and communications", "B.E, Electronics and Communication"], "DaveChen": ["Google", "Yahoo!", "Lockheed Martin", "Ecrio Inc", "MS, Computer Science", "BS, Computer Science and Engineering", "High School", "SASE Circle Mentor", "CPP, Inc."], "LukaszKaiser": ["Google", "CNRS", "Google", "RWTH Aachen University", "RWTH Aachen University", "RWTH Aachen University", "RWTH Aachen University", "RWTH Aachen University", "Coursera", "Coursera", "NIPS 2015", "ICLR 2016", "Ph.D, Computer Science", "Master of Science, Computer Science", "Master of Science, Mathematics", ""], "YaroslavNechaev": ["Fondazione Bruno Kessler (FBK-irst)", "VIZERRA", "Total Digital Solutions", "RUSNANO", "Total Digital Solutions", "Intellectual business boutique", "SMS Siemag AG", "Novaya perevozochnaya kompaniya", "Specialist, Computer Science, Mathematics, Physics", ""], "VictorRodionov": ["Taylor | Australia", "peckvonhartel", "Architecture BVN", "Guida Mosley Brown Architects", "Bachelor of Architecture (B.Arch.), Architecture", "Bachelor of Applied Science (B.A.Sc.)"], "LiangChen": ["Amazon", "Microsoft Corporation", "Microsoft Corporation", "Microsoft Corporation", "LS Telcom AG, Germany", "Shanghai Nan Yang Info And Control Ltd., China", "BS, Computer Science"], "YutakaLeon": ["Google", "NICT", "ATR International"], "JamesPolley": ["U.S. Department of State", "U.S. Department of State", "U.S. Department of State"], "AlexRothberg": ["4Catalyzer", "Getco LLC", "D.E. Shaw & Co", "WebNotes (now: Crocodoc)", "Bridgewater Associates", "Bachelor's Degree, Computer Science, Economics", "High School"], "PawelKoniszewski": ["Pawe liked", "Pawe liked", "Intel Corporation", "Intel Corporation", "OpenStack Foundation", "Intel", "OpenStack Foundation", "Cisco", "OpenStack Foundation", "Geek Girls Carrots"], "BenNemec": ["Red Hat", "Red Hat", "None", "IBM", "IBM", "Luther College", "Boscobel Swimming Pool", "University of Minnesota - Rochester", "Rochester Active Sports Club", "RACE Jaguars", "BA, Computer Science"], "AnatolyBelikov": ["Research Institute of Precision Instruments", "Acronis", "Coursera", "Coursera", "Coursera Verified Certificates, : ESBPJCPDHX", "Udacity", "Doctor of Philosophy (Ph.D.), Information Technology", "Master's Degree, Computer Science", "Engineer's Degree, Computer Engineering"], "FrankSeide": ["Microsoft", "Microsoft", "Microsoft", "Microsoft", "Microsoft", "Microsoft", "Philips Research, Taipei", "Philips Research", "Dipl.-Ing., EE, CS"], "WeiHo": ["Google", "Microsoft", "USC Information Sciences Institute", "Princeton University", "B.S.E., Computer Science"], "JamesLi": ["Meltwater", "NextGen Angels", "Encore Alert (acquired by Meltwater)", "RE:action Strategy Group", "The White House", "Compass Partners", "Touchstone Consulting Group", "Cybis Communications", "GameDay Sports Marketing", "Future Business Leaders of America", "ZenithOptimedia", "Georgetown University", "TechCocktail", "Georgetown Startup Hoya Challenge", "Startup Weekend", "Georgetown University", "Oxford Academy", "FBLA", "FBLA", "GMS", "CGIU", "BS, Marketing, Management, Magna Cum Laude", ""], "AlbertoPlanas": ["Elettronica Santerno Espaa su"], "MatthewTreinish": ["United Security Investors, LLC", "Lore Group LLC", "Buckeye Consulting LLC", "Siren Digital, LLC", "Inspire Studios LLC", "Strategic Film Partners", "Malibu Film Festival", "Young and Rubicam", "BS, Sociology/Criminology", "High School", "California Bureau of Real Estate"], "AlexeiKornienko": ["Mirantis", "Ciklum", "Gameloft", "Gameloft", "Gameloft", "Gameloft", "10gen, The MongoDB Company", "10gen, The MongoDB Company", "Software engineering"], "ZiyeFan": ["Theano Development Community", "Great Wall Computer Software And Systems Inc., Ltd.", "Master's degree, Machine Intelligence (School of EECS)", "Bachelor's degree, EE (School of EECS)"], "EdgarMagana": ["Edgar Magana on LinkedIn", "Edgar shared", "Edgar shared", "Edgar shared", "Workday", "OpenStack", "Contrail Systems", "OpenStack", "Cisco", "PLUMgrid", "Cisco Systems", "Universitat Politecnica de Catalunya", "Deloitte Consulting", "2009 IEEE", "2009 IEEE", "OpenStack Docs"], "NoahFiedel_": [], "ry": ["s", "P"], "TakeakiMatsumoto": ["NTT Communications"], "EldarAkchurin": ["Microsoft", "Hewlett-Packard", "Kaspersky Lab", "Deutsche Bank", "Diploma, Applied Mathematics and Computer Science", "Master of Science, Software Systems Engineering"], "FlorentFlament": ["Burger King Corporation", "McDonald's", "Licence (2 annes valides) , Biologie des organismes et des populations", "Greenpeace"], "ShaneWang": ["T.R. ENGEL Group, LLC", "Morgans Hotel Group", "Rosewood London", "China Construction Bank", "Bachelors Degree, Mathematics and Computer Science, Summa Cum Laude", "Bachelors Degree, Hospitality Administration/Management, Summa Cum Laude", "Boston Athletic Association", "Be The Match operated by National Marrow Donor Program", ""], "NassimBabaci": ["Cloudreach", "Cloudwatt", "Wallix", "SunGard Financial Systems", "EMC", "AWS, License AWS-ASA-5424", "AWS, License AWS-ASOA-1284", "AWS, License AWS-ADEV-1433", "AWS, License AWS-PSA-2220", "Masters degree, Distributed Systems", "Software Engineer, Computer Systems Networking and Telecommunications"], "KirilGorovoy": ["Google", "Facebook", "University of Waterloo- AI Group", "Intel FPGA", "Google", "IBM"], "TimCooijmans": ["Universit de Montral", "Google", "Universit de Montral", "CERN", "Ideaspool", "Mapscape", "Compram", "Master of Science (M.Sc.), Operations Research", "Bachelor of Science (B.Sc.), Knowledge Engineering, 8.06 out of 10"], "NikhilMishra": ["Robot Learning Lab, UC Berkeley", "Trooly", "Beckman Laser Institute", "Bachelor's Degree, Electrical Engineering and Computer Science", "International Conference on Robotics and Automation", "Journal of Biomedical Optics"], "AlexanderMaretskiy": ["Mirantis"], "SaschaPeilicke": ["HERE", "HOTEL DE GmbH", "SUSE Linux Products GmbH", "openSUSE Project", "SUSE Linux Products GmbH", "KDE", "Google Summer of Code 2011", "Google Summer of Code 2010", "Institut fr Automation und Kommunikation (ifak e.V.)", "Google Summer of Code 2009", "SUBMIT e.V.", "Nokia Qt Software", "Language Center - University of Magdeburg", "Institute for Knowledge & Language Processing, University of Magdeburg", "Ubuntu", "Linux Professional Institute, Lizenz LPI000220879", "Novell Certification", "Linux Professional Institute, Lizenz License LPI000220879", "Diplom (German)", "", "openSUSE Project", "OpenStack", "KDE", ""], "JoeGordon": ["Pinterest", "Hewlett-Packard", "Cloudscaling", "Fujitsu", "University of Maryland Institute for Advanced Computer Studies", "United States 8,505,103", "United States 8,745,747", "United States"], "AswadRangnekar": ["NTT DATA Americas", "HappyChickoo", "eClerx", "", "Master of Engineering (MEng), Computer Engineering"], "YannN.Dauphin": ["Facebook", "Universit de Montral", "Microsoft", "Google", "GNU CLisp", "Ericsson", "Lambda Tree", "Verkkostadi", "Advances in Neural Information Processing System", "Doctor of Philosophy (Ph.D.), Computer Science"], "BrianBowen": ["FirstFuel Software", "Solstice Initiative", "ecovent Systems", "Ceres, Inc.", "EnerNOC", "Yale University Press", "Midwest Energy News", "Robert and Patricia Switzer Foundation", "Master in City Planning (MCP), Environmental Policy and Planning", "BA, Literature", "Green Business Certification, Inc.", "NCSL Energy Supply Task Force", "Department of Energy"], "ChienliMa": ["Intuit", "Google Summer of Code 2015", "eLong, Inc", "Master's degree, Computer Science, 4.0/4.0", "Bachelor's degree, Information Engineering"], "RonaldBradford": ["RB42", "Effective MySQL", "Oracle ACE Program", "Oracle Press", "Oracle Press", "Oracle Press", "Wrox", "MySQL Certification", "Master of Information Technology coursework", "Bachelor of Applied Science", "International Space Apps Challenge", "MySQL Community", "Oracle Corporation", "MySQL Inc"], "DannyGoodman": ["Danny Goodman on LinkedIn", "Danny liked", "(Gestating)", "Software and data consulting", "MetaMind", "MetroMile", "Stanford Pride", "Outright", "Chai Labs", "Numenta", "TMS, Inc.", "Tropos Networks", "Ellington Management Group", "Sun Microsystems", "MS, Computer Science, 4.1/4"], "ChrisFattarsi": ["Inventorum GmbH", "Piston Cloud", "Piston Cloud Computing, Inc.", "NASA Ames Research Center", "Novacoast", "Advanced Dental Imaging", "BS, Computer Engineering"], "WenChengMa": ["IBM"], "StuartMcLaren": ["S Mclaren Builders"], "PavanKumarSunkara": ["Apiary", "Dual (M.Tech & B.Tech), Computer Science"], "NicolasBouchard": ["Montreal Institute for Learning Algorithms (MILA)"], "RishabhJain": ["LiveRamp, An Acxiom Company", "OpenLab app", "Flagship Ventures", "Invisergy", "Morgan Stanley", "Doctor of Philosophy (PhD), Materials Science, NSF & NDSEG Fellow", "M.Sc., Optics and Photonics, The Thouron Award", "Bachelor of Science (B.Sc.), Finance, Summa Cum Laude", "B.S.E., Materials Science and Engineering"], "AndrewTranquada": ["Rackspace, the Open Cloud Company", "nTelos Inc.", "Nauticom Internet Services", "Redhat, License 111-056-511"], "AndreasScheuring": ["Jugendherberge Berlin Ostkreuz"], "AnitaKuno": ["I really dislike forms forcing me to enter values."], "RonanCollobert": ["Facebook", "Idiap Research Institute", "NEC Laboratories America", "Idiap Research Institute", "Universit de Montral"], "RickClark": ["Mastercard", "aaSemble", "Reliance Jio Infocomm", "Cisco", "Rackspace Hosting", "Canonical Ltd.", "Etrade Financial", "McKesson", "BB&T", "LearningSoft Corporation"], "YuxinWu": ["Facebook AI Research", "Facebook Oculus VR", "Megvii Technology (aka Face++)", "UC Berkeley", "Google", "Hulu", "HPC Advisory Council", "Asia Supercomputer Community", "ACM SIGMOD", "Trend Micro Inc.", "ACM SIGKDD", "China Computer Federation", "Tsinghua University", "", "ACM SIGGRAPH Asia", "Arxiv Preprint", "arxiv preprint", ""], "MelanieWarrick": ["Skymind.io - Deep learning for Industry"], "SteveKowalik": ["Sodexo", "Service America GroupLLC", "All seasons services Inc.", "A&W Resturant"], "MattFischer": ["Apple", "Apple", "Napster", "myplay", "N2K/CDNOW", "University of Virginia Club of New York", "IMG", "BA with Distinction, Political and Social Thought Distinguished Majors Program", "", "United States 11/082,207", "", "Business Insider"], "JashaDroppo": ["Microsoft Research", "IEEE (SPS) Speech and Language Technical Committee (SLTC)", "Microsoft Corporation", "Microsoft", "Combustion Specialists Inc", "Doctor of Philosophy (Ph.D.), Electrical Engineering", "BSEE, Electrical Engineering, Honors Program"], "steven-pigeon": ["UQAR", "Universit de Montral", "cole de technologie suprieure (TS)", "Vantrix", "Comact", "Ph. D., Data Compression"], "AuktavianGarrett": ["Cisco Systems", "Clarkston Consulting", "Cisco Systems", "Nortel Networks", "Acuity Healthcare Management LLP", "", "BS, Computer Engineer"], "IulianVladSerban": ["Blue Analysis", "DigiCorpus Aps", "Financys Aps", "Project Osiris", "Operation Dagsvrk", "Operation Dagsvrk", "Doctor of Philosophy (PhD), Machine Learning", "Master of Science, Machine Learning, Distinction", "", "Bachelor, Mathematics and Statistics", "Mathematics, Physics, Chemistry and Development of Technology"], "VladimirIvanov": ["Google", "Ukraine 10225", "United States"], "AsimShankar": ["Google", "Veritas Software (would later merge with symantec"], "PranaliDeore": ["Red Hat", "NTT Data Americas", "Sureline Systems, Inc.", "MSc(Comp.Sci), Computer Science"], "BartoszFic": ["Update Digital", "Intel Corporation", "Online Venture", "Master of Science in Engineering, Informatics", "Engineer's degree, Informatics"], "JonasRauber": ["University of Tubingen - Bethge Lab", "Karlsruhe Institute of Technology (KIT)"], "KunHuang": ["Facebook", "Google", "Sunny Arts Performing Group", "Macy's", "Norfolk Southern", "North Carolina State University", "Boeing Commercial Airplanes", "Cisco", "Ph.D., Industrial and Systems Enginnering", "Master, Industrial and Systems Enginnering", "Bachelor of Science, Mathematics", ""], "SergioCazzolato": ["Intel Agile Conference", "Conferencia giles 2012", "Intel Agile Conference 2012"], "Pierre-AntoineManzagol": ["Google", "Siemens", "Montreal Institute for Learning Algorithms (MILA)"], "LiuYuan": ["AWR-APLAC Corporatiosn", "IBM T. J. Watson Research Center", "Coursera", "Coursera", "Coursera", "Coursera", "Coursera", "Doctor of Philosophy (PhD)", "MS", "BSEE"], "JeffreyTang": ["Twitter", "Galvanize Inc", "Skymind.io - Deep learning for Industry", "IBM", "Integrative Genomics and Medicine - Medical Research Council"], "SimonLemieux": ["mldb.ai", "Datacratic", "Collge lionel-groulx"], "ItishaDewan": ["IIIT Hyderabad", "IIIT Hyderabad", "OpenStack", "Cykul", "Score: 334", "Score: 118", "Score: 2390", "Score: 2080", "Bachelor's Degree, Computer Science", "High School"], "AndrewHutchings": ["Utrip, Inc.", "Summer Program", "Coursera", "Coursera", "Coursera", "Coursera", "Coursera", "Master of Science (M.S.), Operations Research", "Bachelor of Science (B.S.), Mathematics"], "nanhailiao": ["Tianjin Kylin Information Ltd.co"], "JakubSygnowski": ["Google Research", "Google", "TouK", "", "", "Master's Degree, Computer Science", "Master's Degree, Computer Science"], "Fr\\xe9d\\xe9ricBastien": ["mnubo", "Briowireless Inc.", "Synergie Pilates", "Tekelec", "Tekelec", "Tekelec", "Blueslice Networks", "Nortel", "Teleglobe", "Microcell", "TechnoMontral", "Startup Weekend", "WearHacks", "Fondation Montral inc.", "Academos", "Founder Institute", "C100", "CABA", "Gartner", "ABI Research", "Price Waterhouse Coopers", "Deloitte", "Canadian Innovation Exchange", "Ernst & Young", "C100", "Branham300", "Bronfman Family Foundation", "Light Reading", "IIoT Symposium", "C2 MTL 2016 & Montreal Chamber of Commerce", "Canadian Venture Capital Association conference 2016", "Continental Automated Buildings Association - 2016 forum", "Ecole Polytechnique de Montreal / HEC", "IoT World Forum - Dubai", "TechnoMontral - l'Internet des Objets", "The Founder Institute", "Europe EP2130324", "B.Eng", ""], "JustinBayer": ["Volkswagen AG", "van der Smagt & Bayer GbR", "TU Munich", "IDSIA", "Dr., Machine Learning", ""], "EugeneBrevdo": ["SVBio", "The Climate Corporation", "Princeton University - Department of Electrical Engineering", "Siemens Corporate Research", "Google - Computer Vision for OCR", "Air Force Research Laboratories, Maui Optical and Supercomputing Site, Kihei, HI", "Rensselaer Polytechnic Institute - Electrical Impedance Tomography (EIT) Research Group", "Factset Research Systems"], "JulienDanjou": ["Red Hat", "OpenStack", "freedesktop.org", "Debian", "Debian France", "Julien Danjou", "eNovance", "eNovance", "Easter-eggs", "TuxFamily", "IELO", "Mandriva", "Frag Arena", "", "Rsultat : 935", "Master, Computer Science", "DUT, Computer Science", "Coursera"], "FrankChu": ["Shanghaitech University - School of Information Science and Technology"], "AndyMcCrae": ["Rackspace, the #1 managed cloud company", "Rackspace, the #1 managed cloud company", "Rackspace, the #1 managed cloud company", "Master of Engineering (MEng), Computer Science", "Software Developer", "805009233444167"], "YaroslavBulatov": ["OpenAI", "Google", "Strands", "ViewPlus Technologies", "Information Extraction and Transport", "Oregon State University"], "AndrewClayShafer": ["Pivotal", "Parvus Captus", "Rackspace", "Cloudscaling", "Agile Roots", "Ignite Salt Lake", "Cloudscaling", "Reductive Labs Inc.", "Reductive Labs", "Infopia", "Infopia", "Infopia", "Realm Systems Inc", "Driversoft", "O'Reilly Media", "MS, Scientific Computation", "BS, Mathematics", ""], "HaomaiWang": ["XSKY Data Technology", "UnitedStack", "Intel", ""], "Fabrizio(Misto)Milo": ["Fabrizio liked", "Fabrizio liked", "Fabrizio liked", "Fabrizio liked", "Fabrizio liked", "Fabrizio liked"], "vdumoulin": ["Montreal Institute for Learning Algorithms (MILA)"], "DhariniChandrasekar": ["Intel Corporation", "University of Cincinnati", "Interactive Intelligence", "Cloud Kinetics", "Master of Science (MS), Computer Science, 3.68/4.0", "Bachelor of Engineering (BE), Computer Science, CGPA : 8.1/10", "Higher Secondary Education, 94.4%", "Senior Secondary Education, 460/500 (92%)", "Bloomsbury Honors Society, USA", "University of Cincinnati", "Volunteer", "Internation Reseach Network, UARJ."], "LiYao": ["Montreal Institute for Learning Algorithms (MILA)"], "BillOwen": ["JDA Software", "JDA Software Group, Inc", "JDA Software", "JDA Software", "Expanets", "Viasoft"], "VincentDumoulin": ["LISA, University of Montreal", "Universit de Montral", "Ski Mont Saint Bruno", "arXiv", "Proc. AAAI 2014, pp. 1199-1205", "Doctor of Philosophy (Ph.D.), Computer Science", "B.Sc., Physics and Computer Science"], "skaae": ["University of Copenhagen", "MSc student, Systems Biology", "Bachelor of Science (BSc), Bioengineering and Biomedical Engineering"], "LaurentDinh": ["arXiV"], "HuazuoGao": ["Physics", ""], "jiakai": ["CILVR Lab at New York University", "NVIDIA", "Movement Lab at New York University", "Honda Research Institute USA, Inc.", "NVIDIA", "New York University", "3D Computer Game Engine Design, New York University", "The Center for Public Safety, Tsinghua University", "Robot Car Program, Tsinghua University", "Computer Organization Laboratory, Tsinghua University", "PhD Candidate, Computer Science", "Master, Computer Science, 3.75", "Bachelor, Engineering Physics, 3.7", "Bachelor, Electrical and Computer Engineering"], "MikKocikowski": ["Peak Unicorn Consulting", "Target", "Quid", "Various", "Hitachi Data Systems", "", "Ansible Fest 2016"], "DuncanMcGreggor": ["Element 84", "Open Source Community", "Multiple Organizations", "AdRoll", "Rackspace, the Open Cloud Company", "Multiple Organizations", "Canonical Ltd.", "Canonical Ltd.", "Divmod, Inc.", "AdytumSolutions, Inc.", "Public Broadcasting Service", "General Physics", "USinternetworking", "University of Maryland", "Face-Pressed Web Design", "US Army"], "AvinashPrasad": ["ISACA"], "AlexeyOrlov": ["Microsoft", "Microsoft", "Intel Corporation", "Intel Corporation", "Intel Corporation", "Scrum Alliance", "Scrum Trek", "Game Developers Conference, Moscow", "Master of Business Informatics, Business analyst", "Master of Science (M.S.), Mathematician, system programmer"], "DavidPeraza": ["Persistent Systems Inc.", "IBM", "IBM", "IBM", "Oceanwide usa", "IBM", "IBM", "IBM System Magazine", "IBM", "Persistent System Inc.", "Master of Science, Computer Science", "Bachelor's degree, Computer Engineering", "United States US8627274", "United States 8543687 B2"], "YoshuaBengio": ["Universit de Montral", "AT&T Labs, Inc.", "MIT", "McGill University", "PhD, Computer Science", "MSc, Computer Science", "B.Eng., Computer Engineering", ""], "SunYeopLee": ["IoTcubeCon", "KITRI", "Bachelor of Engineering (B.E.), Computer Science and Engineering", "Student in top 30, Product security", " ", "", "KT", "", "", " ", "", "", "", "", ""], "AndreasEberle": ["arconsis IT-Solutions GmbH", "arconsis IT-Solutions GmbH", "1&1 Internet AG", "1&1 Internet AG", "LuK GmbH & Co. KG", "Master of Science (M.Sc.), Computer Science", "Bachelor of Science (B.Sc.), Computer Science"], "EldarNugaev": ["Coursera", "edX", "Coursera", "edX, License 830298d563104f099bd7bf42f3273b8c", "Microsoft", "Hewlett-Packard", "Trafigura", "Digital Society Laboratory", "utinet.ru", "buzzoola.com", "Grid Dynamics", "Mirantis", "Score: http://rosalind.info"], "BinZhou": ["FM Global", "Pratt & Whitney", "Pratt & Whitney", "GE Power & Water", "GE Global Research", "University of Michigan", "PhD, Mechanical Engineering", "MBA", "GE"], "JakubKolodziejczyk": ["Jakub", "Lexues", "Personal projects", "Okinawa Institute of Science and Technology", "Nanyang Technological University", "Osaka University", "Master of Engineering (M.Eng.), Computer Aided Mechanical Engineering, First Class Honours"], "MitsuhiroTanino": ["Hitachi Data Systems", "OpenStack", "Hitachi", "Master of Engineering (M.Eng.), Department of Computer Science and Engineering"], "GeetikaBatra": ["OpenStack", "Lyxel Labs Private Limited", "OpenStack", "OpenStack", "Outreachy Intern at OpenStack", "Learn IT Girl, License 10060142", "Accredible, License Accredible-10222048", "Bachelor of Technology (B.Tech.), Electronics and Communication", "87.2%", ""], "FrédéricBastien": ["mnubo", "Briowireless Inc.", "Synergie Pilates", "Tekelec", "Tekelec", "Tekelec", "Blueslice Networks", "Nortel", "Teleglobe", "Microcell", "TechnoMontral", "Startup Weekend", "WearHacks", "Fondation Montral inc.", "Academos", "Founder Institute", "C100", "CABA", "Gartner", "ABI Research", "Price Waterhouse Coopers", "Deloitte", "Canadian Innovation Exchange", "Ernst & Young", "C100", "Branham300", "Bronfman Family Foundation", "Light Reading", "IIoT Symposium", "C2 MTL 2016 & Montreal Chamber of Commerce", "Canadian Venture Capital Association conference 2016", "Continental Automated Buildings Association - 2016 forum", "Ecole Polytechnique de Montreal / HEC", "IoT World Forum - Dubai", "TechnoMontral - l'Internet des Objets", "The Founder Institute", "Europe EP2130324", "B.Eng", ""], "TakuFukushima": ["Midokura"], "LuisdeBethencourt": ["Samsung Electronics", "Samsung Electronics", "GNOME Foundation", "Collabora Ltd", "Collabora Multimedia", "Oracle", "Sun Microsystems", "Imagen en Accin", "Bachelor of Science (BS), Computer Science", "1st year, Computer Science", "High School, Science"], "MartinWicke": ["Google", "eddy systems", "otherlab", "HighlightCam", "UC Berkeley", "Stanford University", "Max Planck Center for Visual Computing and Communication", "Dr. Sc. ETH, Computer Graphics", "Diplom, Informatik, \"mit Auszeichnung\" (summa cum laude)", "United States 8,995,823", "United States", "United States", "United States", "Computer Graphics Forum", "Computer Graphics Forum", "Transactions on Graphics", "Computer Graphics Forum", "Computer Graphics Forum", "Transactions on Graphics", "Information Processing in Sensor Networks", "Computer Graphics Forum", "Computer Graphics Forum", "Symposium on Point-Based Graphics", "Information Processing in Sensor Networks", "ACM Workshop on Mobile Entity Localization and Tracking in GPS-less Environments", "Transactions on Graphics", "Pacific Graphics", "Eurographics", "Symposium on Point-based Graphics", "Vision, Modeling, and Visualization", "Transactions on Graphics", "Computer Graphics Forum", "Sensor, Mesh and Ad Hoc Communications and Networks"], "KirillBobyrev": ["Google", "Google", "Subterranean Games", "Bachelors Degree, Applied Mathematics and Physics", "Specialist, Mathematics", "High School, Applied Mathematics", "High School", "Coursera Course Certificates, License 34DQUYZBJ22R", "Coursera Course Certificates, License T8TACVE4YV7N", "Coursera Course Certificates, License NDEJXRK5UBAG"], "CyrilRoelandt": ["INRIA", "Universit de Bordeaux", "INRIA", "ReactivOn", "Master's degree, Computer Science", "Master's degree, Computer Science"], "MajorHayden": ["Rackspace, the #1 managed cloud company", "GIAC", "Fedora Project", "Rackspace, the Open Cloud Company", "Rackspace, the Open Cloud Company", "SecureTrust, Inc", "MHTX Enterprises", "American Medical Response", "Red Hat, License 805010118556202", "MySQL AB", "Red Hat, License 805010118556202", "Red Hat, License 805010118556202", "Red Hat, License 805010118556202", "Red Hat, License 805010118556202", "Red Hat, License 805010118556202", "Red Hat, License 805010118556202", "Red Hat, License 805010118556202", "GIAC", "GIAC", "BS, Biological Sciences", "Cellular And Molecular Biology", "", "Member", "Member", "Life Member", "", "UT EMS"], "AndrewMelton": ["Schafer Corporation", "Atlantic Seaboard Wine Association", "Strategic Planning & Operations Research Executives in the Washington D.C. Metro Area", "Melton Consulting Services, LLC", "System Planning Corporation", "Barrel Oak Winery, LLC", "Paradise Springs Winery", "Decision Technologies Inc.", "TASC, Inc.", "Dynamis, Inc.", "CSCI", "BDM", "US Navy", "", "", "Professional Membership", "Certified Tourism Ambassador", "MS, Operations Research", "BS, Biology"], "CoryStone": ["UMB Bank", "UMB Bank", "Commerce Bank", "Commerce Bank", "Commerce Bank", "Business Management", ""], "MasashiOzawa": ["WDB"], "YinggongZHAO": ["Microsoft", "Nanjing University", "Microsoft Research Asia", "Doctor of Engineering, Computer Science and Technology"], "YuZhang": ["Google", "Microsoft", "UCLA", "IBM T.J Watson Research Center", "Tsinghua University", "Dow Chemical", "Dimitris N. Chorafas Foundation", "University of California, Los Angeles", "University of California, Los Angeles", "University of California Los Angeles", "University of California Los Angeles", "ACM Transactions on Economics and Computation", "IEEE Transactions on Signal Processing", "IEEE Journal on Selected Areas in Communications", "IEEE Journal on Selected Areas in Communications", "IEEE Journal on Selected Topics in Signal Processing", "IEEE Journal on Selected Areas in Communications", "Elsevier Journal on Signal Processing", "IEEE Transactions on Signal Processing", "IEEE INFOCOM", "IEEE Allerton Conference", "IEEE Conference on Decision and Control", "ACM SIGMETRICS Big Data Analytics Workshop", "IEEE INFOCOM 2014", "Doctor of Philosophy (Ph.D.), Electrical and Electronics Engineering", "Master's degree, Electrical and Electronics Engineering"], "KenThomas": ["Envisor Consulting", "The 410 Bridge", "ValleyCrest Companies", "Scapes LLC", "BS, Biology"], "HuanXie": ["Texas Southern University", "University of Houston", "Texas Southern University", "Texas Southern University", "Nanospectra Biosciences", "Ph.D., Chemistry", "B.S., Chemistry"], "ScottCyphers": ["Intel"], "YingZhang": ["cole Polytechnique de Montral", "Institut de recherhe de moteur Shanghai", "Master's degree, nformatique", "Ph.D, Mcanique", "D.E.A., Dynamique des structures", "Bachelor's degree, Mcanique, spcialit en moteur automobile"], "BhuvanArumugam": ["Apple", "Apple", "GoGrid", "IBM DemandTec Solutions", "OpenStack", "CollabNet, Inc.", "The Apache Software Foundation", "Ubuntu", "bk Systems P Ltd.", "Linux for You", "Linux for You magazine"], "MaciekChociej": ["Google", "Google", "Jagiellonian University", "Buzzword Junkie", "Madwands", "Jagiellonian University", "DRAGO Entertainment Sp. z o.o.", "Phiscape AG", "INTERIA.PL", "Storm Educational Software", "R-Data", "Jagiellonian University", "Computerland S.A.", "Proceedings of the International Conference on Computer Vision Theory and Applications Vol. 2, Rome, Italy, 24-26 Feb, 2012, 303-310", "United States", "Finished PhD programme, in hiatus, no dissertation, Theoretical Computer Science", "MSc, Grid Computing"], "DiogoMoitinhode": ["Enlitic", "Stuph.co", "Amazon.com", "Rensselaer Center for Open Source", "Kaggle.com", "COMAP, the Consortium for Mathematics and Its Applications", "", "GPU Technology Conference", "GOTO Conference Copenhagen 2016", "O'Reilly Artificial Intelligence Conference", "Re-work Deep Learning in Healthcare Summit", "ICML 2016", "ICLR 2016 Workshop Track", "ICLR 2016 Workshop Track", "Master's Degree, Computer Science / Machine Learning", "Bachelor's Degree, Computer Science and Mathematics, Magna Cum Laude"], "AlexBlack": ["Skymind.io"], "GaizkaNavarro": ["Microsoft"], "MichalDulko": ["Wockhardt UK", "Wockhardt UK", "Wockhardt UK", "ALcontrol Laboratories", "ALcontrol Laboratories (WSP Environmental Services)", "Minerva Scientific LTD", "MEng, Chemical Technology, Specialisation: Technical and Industrial Analytical Chemistry"], "YaoZhang": ["Intel Corporation", "University of Oxford", "EASA", "The University of Nottingham", "University of Nottingham", "Master of Science (MSc), Computer Science, 3.7 / 4.0 with Distinction Dissertation", "Bachelor's degree, Computer Science, Computer Science, 3.9 / 4.0, First Class, ranking top 5%", "Computer Science Department", "Department of Computer Science", "Xiaoma Primary School in Yulin, Guangxi Province, China", "Young Volunteer Association", "International Tennis Competition at Yinzhou District Gymnasium", "The University of Nottingham", "The University of Nottingham"], "GeorgePeristerakis": ["Polytechnique Montral", "Red Hat", "EVOLIO.ca", "LeSite", "Phoenix Technology Games", "20-20 Technologies", "TISEC Inc", "Montreal Python", "MSR 2012 - 9th IEEE Working Conference on Mining Software Repositories", "Masters Degree, Computer Science", "Bachelor, Computer Science (Software Systems)"], "AjayaAgrawal": ["Qubole", "OpenStack", "Morgan Stanley", "DrizzleDB Project", "Microsoft", "B. Tech, Computer Science", "Cloud Computing Concepts, Course and Programming mastery badge, 89%", "Mining Massive Datasets, 94.9% with Distinction", "Cloud Computing Concepts: Part 2, Course and Programming mastery badge, 99%", "Cloud Networking, Course and Programming mastery badge, 98%"], "SergioGuadarrama": ["Sergio shared", "Google", "UC Berkeley", "UC Berkeley", "European Centre for Soft Computing", "Universidad Politcnica de Madrid", "Universidad Rey Juan Carlos", "UC Berkeley", "Universidad Politcnica de Madrid", "IIIA - CSIC", "Proceedings of the 27th AAAI Conference on Artificial Intelligence (AAAI-2013), July 2013", "Int. Conference IPMU 2008", "Ph.D., Artificial Intelligence"], "ChristopherMacGown": ["Cisco", "Solidify Security", "Piston Cloud Computing, Inc.", "Piston Cloud Computing, Inc.", "OpenStack Foundation", "Piston Cloud Computing, Inc.", "Global Earthquake Model Foundation", "Rackspace Managed Hosting", "Soft Surroundings", "Design Works for Business", "Home Decorators Collection"], "MatthewRocklin": ["Continuum Analytics, Inc.", "Sandia National Laboratories", "University of Chicago", "Sandia National Laboratories", "Argonne National Laboratory", "University of California, Berkeley", "National Solar Observatory", "4d Imaging", "Doctor of Philosophy (PhD), Computer Science", "BA, Physics, Mathematics, Astronomy"], "haosdent": ["The Apache Software Foundation", "Shopee", "Alibaba Group", "EMC", "Bachelor of Science (BS), Network engineering, Four", "Asian Games Organizing Committee", "Adobe and W3C", "CSDN", "China Electronic Commerce Association", "Oracle", "Coder", "volunteer"], "SungKim": ["Hong Kong University of Science and Technology", "Microsoft", "MIT", "UC Santa Cruz"], "LiWei": ["CITIC Securities", "Deutsche Bank", "Citi", "NYSE", "Iowa State University", "University of Utah", "Doctor of Philosophy (Ph.D.), Finance and Financial Management Services", "Bachelor of Science (BS), Management Information Systems, General"], "NeilJerram": ["OpenStack", "Tigera", "Metaswitch Networks", "Project Calico", "QtMoko project", "GNU Project", "PhD, Fluid Mechanics", "BA, Engineering", ""], "YasuakiNagata": ["Mitsui OSK Lines", "Mizuho Financial Group", "Bachelor's degree, Mechanical Engineering"], "kaisheny": ["Ant Financial ", "A Startup Trading Company", "Microsoft Research", "Microsoft Research", "Microsoft", "Texas Instruments", "University of California at San Diego", "Advanced Telecommunications Research, Japan", "Deep Learning Workshop @ NIPS 2013", "Interspeech", "Computer, Speech, and Language", "NIPS", "ICASSP", "The 15th Annual Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies (NAACL 2016)", "Ph.D., Communication and Information Systems", "R. A., Electric Engineering", "M.E, Communications and Electronic Systems", "B. E., Radio Engineering", ""], "delallea@valhalla.apstat.com": ["Ubisoft", "Ubisoft", "ApSTAT Technologies", "Universit de Montral", "ApSTAT Technologies", "Universit de Montral", "Universit de Montral", "Doctor of Philosophy (Ph.D.), Machine Learning", "DEA (<=> Master's Degree), Artificial Intelligence", "Ingnieur, Computer Science", "Ingnieur"], "SergeyVilgelm": ["Mirantis", "REGGI Business", "Aspan Telecom", "Arna (BeTop, Ducat)", "Electronic Archive Corp", "Skif Trade", "Stanford University", "VDJK", "Engineers Degree, Electronic systems and technologies", ""], "JohnBresnahan": ["Robert Half Finance & Accounting", "Robert Half International", "Robert Half International", "Robert Half Management Resources", "Robert Half Finance & Accounting", "Katharine Gibbs School - Boston", "Kingston-Dwight Associates", "BS, Finance degree; Management degree"], "MartinTsvetanov": ["Hewlett Packard Enterprise", "EURODESIGN BG Ltd.", "Bachelor of Science (BSc), Computer Science", "Professional Degree, Computer Hardware and Technology", "Aberystwyth University"], "SamuelMerritt": ["Office of the Circuit Public Defender", "Boys & Girls Club of Sumter Co.", "Georgia Association of Circuit Public Defenders", "Boys & Girls Club of Sumter Co.", "Samuel G. Merritt", "Office of the District Attorney", "Doctor of Law (JD)", ""], "JoshuaHarlow": ["GoDaddy", "Yahoo!", "Rochester Institute of Technology", "Intel", "IBM", "SUNY Research Foundation", "Harlow Inc", "OpenStack", "Yahoo!", "Yahoo!", "Yahoo!", "International Journal of Advanced Intelligence Paradigms", "Master's degree", "Bachelor's degree", ""], "DanielWMane": ["Google", "Palantir Technologies", "University of Chicago", "University of Chicago", "Phoenix Capital Partners", "The Pritzker Organization", "Moodys Corporation", "Smith Barney", "Techforge LLC", "BA, Philosophy & Computer Science", ""], "ShanqingCai": ["Google", "The MathWorks", "The MathWorks", "Boston University", "Boston University", "MIT", "Northeastern University", "Boston University", "Johns Hopkins University", "Vision Research", "Proceedings of the 27th Annual Intl. Conf. IEEE-EMBS,", "Journal of the Association for Research In Otolaryngology", "Journal of Tsinghua University (Sci. & Tech.)", "Proceedings of the 8th Intl. Seminar on Speech Production", "Journal of the Acoustical Society of America", "Journal of the Acoustical Society of America", "Journal of Neuroscience", "PLoS ONE", "Proc. 14th Annual Conference of the International Speech Communication Association (InterSpeech 2013)", "Brain and Langauge", "Frontiers in Human Neuroscience", "PhD, Health Science and Technology", "Master of Science, Electrical Engineering and Computer Science", "Master of Science in Engineering, Biomedical Engineering, 4.0 / 4.0", "Bachelor of Engineering, Biomedical Engineering", "", ""], "PaulTucker": ["Google"], "RamiAl-Rfou": ["Google", "Stony Brook University", "Microsoft", "Google", "Google", "Stony Brook University", "METU", "IEEE", "Jovision", "IEEE", "We are All Jordan Youth Commission", "Member", "Member", "ACM SIGKDD", "Proceedings of the Seventeenth Conference on Computational Natural Language Learning", "24th International Conference on Computational Linguistics (Coling)", "ICML 2013 workshop on Deep Learning for Audio, Speech and Language Processing", "Complenet 2104", "Middle East Technical University", "Technical Report", "Technical Report", "15th SIAM International Conference on Data Mining (SDM 2015)", "Doctor of Philosophy (Ph.D.), Computer Science, 3.98", "Bachelor, Computer, Engineering, 3.79", "General Secondary Certificate, Scientific stream"], "VictorSergeyev": [""], "ArjunJain": ["IIT Bombay", "Perceptive Code LLC", "Apple", "NYU", "Media Integration and Communication Center (MICC), University of Florence", "Yahoo", "Pi Corporation", "United States", "Doctor of Philosophy (PhD), Computer Science", "Bachelor of Engineering (BE), Computer Science and Engineering"], "RJRyan": ["Google", "Mixxx", "Moca Mobile", "Google, Inc.", "NVIDIA", "Interactive Intelligence, Inc.", "MEng, Computer Science", "SB, Computer Science"], "DoronChen": ["United States 8072704", "European Journal of Operational Research 225, 36-43 (2013)", "Mass Storage Systems and Technologies (MSST), 2010 IEEE 26th Symposium: Research Track", "Operations Research Letters 38, 215-217 (2010)", "SIAM Journal on Matrix Analysis and Applications", "Computers and Operations Research 36: 1646-1655 (2009)", "ACM Transactions on Graphics 24(4): 1259-1282 (2005)", "Electronic Transactions on Numerical Analysis 21: 28-46 (2005)", "Linear Algebra and its Applications 405: 239-248 (2005)", "Linear Algebra and its Applications 392: 71-90 (2004)", "Numerical Linear Algebra with Applications 11: 695-721 (2004)", "Electronic Transactions on Numerical Analysis 16: 30-49 (2003)", "ACM SIGMETRICS Performance Evaluation Review", "ERCIM News"], "ColleenMurphy": ["Bloomberg BNA", "The GW Hatchet", "The Chronicle of Higher Education", "The GW Hatchet", "Minneapolis/St. Paul Business Journal", "Pohlad Family Companies", "Bachelor of Arts (B.A.), Political Communication, Spanish", "High school", "The School of Media and Public Affairs", "", "Society of Professional Journalists", "School of Media and Public Affairs", "The American News Women's Club", "The School of Media and Public Affairs", "President"], "JayPipes": ["Mirantis", "Apress"], "KamilRykowski": ["PuppyBox", "Intel Corporation", "Blue Services Sp. z o.o.", "Blue Services Sp. z o.o.", "e-InPost Sp. z o.o.", "Pnyks Sp. z o.o.", "MongoDB, Inc.", "Bachelor of Science (BSc), Applied Informatics"], "LiangliangHe": ["Xiaomi Technology", "Microsoft", "EMC", "VMware", "EMC", "Inria", "M.S.", "B.S."], "BenRoble": ["J.P. Morgan", "J.P. Morgan", "Export-Import Bank of the United States", "Taylor Companies", "Citi", "MBA, Finance and strategy", "BSLA, French and Business", "High School, High School"], "JasonYosinski": ["Geometric Intelligence", "Cornell University", "Google DeepMind", "Grey Garage", "Eliot Middle School", "Mink Labs", "Numerica", "DARPA Grand Challenge Team Caltech", "Proceedings of the 13th International Conference on the Synthesis and Simulation of Living Systems", "Proceedings of the 13th International Conference on the Synthesis and Simulation of Living Systems", "Ph.D.", "study abroad", "B.S.", "HS"], "KentaroTakeda": ["Portola Pharmaceuticals", "Genentech", "Journal of Molecular Biology, 2014, ISSN: 0022-2836", "Journal of Neuroscience", "Journal of Molecular Biology", "Bachelor's degree, Biochemistry and Molecular Biology"], "SvetlanaShturm": ["Mirantis", "Mirantis", "Mirantis", "Renet COM", "Applied Informatics in Economics, 5"], "boulanni": ["Google", "Adobe", "Microsoft", "Google", "Doctor of Philosophy (PhD), Computer Science", "Master of Applied Science (MASc), Engineering Physics", "Bachelor of Engineering (BEng), Engineering Physics"], "PatrickSkjennum": ["Mito.ai", "NTNU", "Abakus", "Romerike Markiseservice AS", "Knowit Objectnet", "Telenor Digital", "Rayon Visual Concepts", "Master of Technology (M.Tech.), Computer Science", "Media & Communication"], "MikeFedosin": ["Mirantis", "OpenStack", "ISPRAS", "Doctor of Philosophy (PhD), ", ", "], "DonalLafferty": ["Coursera Course Certificates, License B6KB3NSJ8V8R"], "SukritiRamesh_": [], "SakshamVarma": ["Amazon Web Services", "Cisco Systems", "University of Massachusetts Amherst", "Cisco Systems", "Yahoo!", "Design Innova", "Master's Degree, Computer Science, 3.80/4.0", "Bachelor of Technology (B.Tech.), Information Technology, 9.21/10", "SPSM '14 Proceedings of the 4th ACM Workshop on Security and Privacy in Smartphones & Mobile Devices", "Proceedings of the International Conference on Advancements in Information Technology Chennai: ICAIT 2011", "Proceedings of the National Level Conference on Information Processing and Computing, Coimbatore"], "GaryKotton": ["VMware", "Red Hat", "Radware", "Radware", "Algorithmic Research"], "KevinLMitchell": ["Master of Business Administration (MBA), Marketing/Marketing Management, General", "BSBA, Business Administration"], "ChrisBehrens": ["YA | Engage", "Superior Recreational Products", "Brand Activation Association (BAA)", "Minneapolis Downtown Council", "Institute for Research in Marketing, Carlson School of Management, University of Minnesota", "Minneapolis Club", "Circle Urban Ministries", "YA | Engage", "Baird Capital Partners", "SourceLink", "SourceLink", "SourceLink", "SourceLink", "ETrac Corporation", "ETrac Corporation", "GE Financial Assurance, Partnership Marketing Group (formerly The Signature Group)", "Official Airline Guides", "Official Airline Guides", "Bachelor of Science, Marketing", "Member"], "StephenGordon": ["salesforce.com", "VMware", "Microsoft Corporation", "Microsoft Corporation", "Microsoft Corporation", "Microsoft Corporation", "Microsoft", "Humanitarian Technology 2016 Science, Systems & Global Impact", "PENCIL, Inc.", "Carbon War Room", "MIT College of Engineering", "Carbon War Room", "Harvard University", "Microsoft", "United States Department of Defense", "Microsoft", "VMware", "MIT Sloan School of Management", "Salesforce Trailhead", "American Red Cross"], "HarmdeVries": ["Montreal Institute for Learning Algorithms (MILA)"], "SimonLefrancois": ["Montreal Institute for Learning Algorithms (MILA)"], "RobertMcGibbon": ["D. E. Shaw Research", "Stanford University", "Ph.D., Theoretical Chemistry", "A.B. Summa Cum Laude, Chemistry & Computer Science", ""], "MikhailKorobov": ["Scrapinghub"], "ChmouelBoudjnah": ["Red Hat", "Duolingo"], "SimonPasquier": ["State of Fribourg / SITel", "EMF", "SBB", "sunrise", "sunrise", "diAx", "Energie Ouest Suisse", "University of Geneva", "Doctor of Philosophy (Ph.D.), Theoretical and Mathematical Physics", "Master's degree, Physics"], "DerekMurray": ["Proceedings of OSDI 2016", "Proceedings of SOSP 2013", "Proceedings of NSDI 2011", "Proceedings of CIDR 2013", "Google", "PhD", "MSc", "BSc (Hons)"], "MattDietz": ["Rackspace, the #1 managed cloud company", "Rackspace, the Open Cloud Company", "Rackspace Hosting", "Rackspace Hosting", "XPEL Technologies", "ENSCO Inc", "Bachelors of Science, Computer Science", "", "United States", "United States"], "CharlesNicholson": ["Google", "Square", "Sony Computer Entertainment America", "Power of Two Games", "Sony Computer Entertainment America", "High Moon Studios", "High Moon Studios", "Liquidnet", "Disney", "Vicarious Visions", "United States 8375295", "United States", "United States", "United States"], "JustinLong": ["New York Times", "Bernie A.I.", "3 Tier Logic", "Earhart DNA Project", "3 Tier Logic", "Alloy Technologies, Inc.", "Rubik", "ACG Corp.", "Snow4Innocents", "Holy Innocents Children's Hospital", "PlanSea Entertainment", "Bachelors, Business, Health Sciences", "Honours Secondary Diploma"], "RazvanPascanu": ["Google DeepMind", "Universit de Montral", "Universite de Montreal", "Master, Smart Systems", "Bachelor of Science, Electrical Engineering and Computer Science"], "AntonArefiev": ["Chrysler Rus", "MAN Financial Services LLC", "De Lage Landen LLC", "Volvo Financial Services LLC", "Promsvyazbank CJSC", "Bachelor of Science, Asian Studies, Economics", "Bachelor's degree, Chinese language"], "BenoitSteiner": ["Google", "Coverity", "Tabula, Inc.", "Magma Design Automation", "Monterey Design Systems", "Ensim", "Mycom International", "Peregrine Systems", "Master's degree", "Master's degree", ""], "AlexanderGordeev": ["Atlas Copco", ", "], "LuongAnhTuan": ["Xuan Mai Investment and Construction Corporation"], "DanSmilkov": ["Google", "MIT", "Macedonian Academy for Sciences and Arts", "IBM", "Netcetera", "Master of Science (M.Sc.), MIT Media Lab", "M.Sc., Networks - Topology, Evolution, Dynamics, GPA: 9.89/10", "Bachelor, Computer Science", "Physical Review E 84 (4), 046102"], "sonaliii": ["Independent Contractor", "BCG Digital Ventures", "Skymind.ai - Deep learning for the JVM", "Contractor", "Cpmc Research Institute", "Statistics", "Computer Software Engineering", "Data Science", "Bachelor of Science (B.S.), Biochemistry, 3.87", "British Journal of Pharmacology"], "LijunXue": ["Carnegie Mellon University", "Rakuten", "Tesla Motors", "University of Washington", "Theano Open Source Dev Community", "HackNTU", "INTERFIRM", "iFanr", "Carnegie Mellon University", "HackShanghai", "Google", "HappyChick Foundation", "AIESEC", "Master's degree, Software Engineering", "Master's degree, Computer Science and Systems, GPA 3.70", "Bachelor of Science (BS), Electrical and Electronics Engineering, GPA 3.5", "Deep Learning", "Coursera", "Coursera", "Coursera", "Coursera", "Coursera", "Coursera", "Canton Fair (China Import and Export Fair)", "Guangzhou International Documentary Film Festival", "Chinese Conference on Cloud Computing(CCCC 2013)", "PACKT Publishing", "", "", "", "", ""], "JonasMeinertzHansen": ["FindZebra"], "BrianLamar": ["EMI - Research Solutions", "MMR, Marketing Research", "BBA Marketing, Marketing"], "JeyKottalam": ["Berkeley Institute for Data Science, UC Berkeley", "AMPLab, Computer Science Division, UC Berkeley", "Adjective Noun", "meetyou", "Coral8", "Google & The Mono Project", "UC Davis Department of Computer Science", "UC Davis DARPA Grand Challenge Team"], "Geetika_Batra": ["OpenStack", "Lyxel Labs Private Limited", "OpenStack", "OpenStack", "Outreachy Intern at OpenStack", "Learn IT Girl, License 10060142", "Accredible, License Accredible-10222048", "Bachelor of Technology (B.Tech.), Electronics and Communication", "87.2%", ""], "KyungHyunCho": ["University of Montreal - Postdoctoral Researcher", "Aalto University School of Science, Finland, Ph.D and M.Sc.", "Zen Robotics Inc., Finland", "Interactivy, Korea", "Korea Advanced Institute of Science and Technology - Undergraduate Researcher", "Korea Advanced Institute of Science and Technology - Undergraduate Researcher"], "SachiKing": ["Hewlett Packard Enterprise", "Anchor Systems", "Anchor Systems", "Atipa Technologies", "Atipa Technologies", "Zen Zero"], "SeongJaePark": ["SeongJae .", "Distributed Computing System Lab, Seoul National University", "Korea Open Source Software Lab", "Korea Open Source Software Lab", "n/a", "Samsung Electronics", "Suwon Samsung Software Membership", "Doctor of Philosophy (Ph.D.), Computer Science and Engineering", "Bachelor of Science (BS), Information Computer Engineering", "Bachelor of Science (BS), Electronics Engineering", "Google Developer Groups Korea Union", "Google Korea", "Google Developer Groups Suwon"], "AlexanderRosenbergJohansen": ["Salesforce", "DTU - Technical University of Denmark", "Master of Science (M.Sc.), Mathematics and Computer Science, 11.4 of 12.0", "Master of Science (M.Sc.), Computervidenskab", "Bachelor of Science (B.Sc.), Management Information Systems, General, 10.7 of 12.0", "Bachelor of Science (B.Sc.), Computervidenskab", "TensorFlow", "Deep Learning Research, In", "NIPS recurrent neural network Symposium, 2016", "International conference on acoustics speech and signal processing, 2016"], "DarrenWhite": ["dhs"], "MatthiasSchmitz": ["Unternehmensberatung Matthias Schmitz"], "AlanWu": ["Microsoft", "Qualcomm", "Holland Bloorview Kids Rehabilitation Hospital", "University of Toronto", "Master of Science (M.Sc.), Computer Science", "Bachelor of Applied Science (B.A.Sc.) in Engineering Science, Engineering Science", "Toronto Rehabilitation Institute", "China ZL 2008 2 0022119.9"], "SuharshSivakumar": ["Google", "University of Illinois at Urbana-Champaign", "Google", "University of Illinois at Urbana-Champaign -- Student Sustainability Committee", "Bazaarvoice", "City of Moline", "Bachelor of Science (BS), Computer Science"], "VincentVanhoucke": ["Vincent shared"], "YosefBerman": ["Doctor of Medicine (MD), Medicine", "Master of Business Administration (MBA), Finance, 3.67", "B.A., US History, Pre-Medical Sciences, 3.8", "MedStar Georgetown University Hospital", "Rutgers - Robert Wood Johnson Medical School", "Robert Wood Johnson Medical School", "Kaplan Test Prep and Admissions", "Summit Oaks Hospital", "University of Maryland"], "OlivierDelalleau": ["Ubisoft", "Ubisoft", "ApSTAT Technologies", "Universit de Montral", "ApSTAT Technologies", "Universit de Montral", "Universit de Montral", "Doctor of Philosophy (Ph.D.), Machine Learning", "DEA (<=> Master's Degree), Artificial Intelligence", "Ingnieur, Computer Science", "Ingnieur"], "DustinWebb": ["Webb Tech, LLC", "Omniture", "Strategix Performance", "Clear Channel Broadcasting of Salt Lake City", "Crossland Mortgage", "Teleperformance USA", "International Conference on Robotics and Automation 2013", "Ph.D, Artificial Intelligence and Robotics", "Bachelors of Science, Computer Science with emphasis in the application of AI to robotics", "AS, Computer Science", ""], "PawelSkowron": ["Intel Corporation", "Master of Business Administration (M.B.A.)", "BS", "Masters Degree", "Red Hat, Inc., Licencja 120-188-719", "Licencja scrum.org", "Oracle", "International Project Management Association, Licencja 80/2010"], "GokulaKrishnan": ["Gokula Krishnan auf LinkedIn", "Gokula Krishnan gefllt Folgendes:", "Gokula Krishnan hat Folgendes mitgeteilt:", "Gokula Krishnan gefllt Folgendes:", "ETH Zurich", "MIT Media Lab and Srujana Innovation Center, LV Prasad Eye Hospital", "BITS Pilani", "Wearable and Pervasive Computing and Networking Lab (WPN lab), BITS Pilani", "SDET Lab, BITS Pilani", "Georgia Institute of Technology", "BITS Pilani", "BITS firefox community", "Indian Institue of Remote Sensing", "Kanini Computers", "Department of Science and Technology, Government of India", "Homi Bhabha Centre for Science Education", "BITS Pilani", "IBM", "Microsoft", "Government of India", "Masters Degree, Computer Science", "Bachelor of Engineering (Honours), Computer Science, 9.18/10", "High school graduation, 474/500", "Till 10th", "Prfungsergebnis: 329/340", "Prfungsergebnis: 113/120", "Coursera Course Certificates, Lizenz XE6ZUFATXPNK", "Coursera Course Certificates, Lizenz TFQEUB686R7A", "Coursera Course Certificates, Lizenz RGATA6S756C5", "Coursera Course Certificates, Lizenz 6WQKBBW3MDEZ", "Duolingo", "edX"], "AndrewDai": ["Ph.D.", "BA"], "sguada": ["Sergio shared", "Google", "UC Berkeley", "UC Berkeley", "European Centre for Soft Computing", "Universidad Politcnica de Madrid", "Universidad Rey Juan Carlos", "UC Berkeley", "Universidad Politcnica de Madrid", "IIIA - CSIC", "Proceedings of the 27th AAAI Conference on Artificial Intelligence (AAAI-2013), July 2013", "Int. Conference IPMU 2008", "Ph.D., Artificial Intelligence"], "AnthonyYoung": ["GASY INVESTMENT Co", "GASY Investment Co.", "GASY INVESTMENT COMPANY", "KMY HOLDINGS, INC", "KMY HOLDINGS, INC", "SALOMON SMITH BARNEY", "PHILADELPHIA & AMERICAN STOCK EXCHANGE", "U.S. Marine Corp", "Economics, Economics, Mathematics"], "BartvanMerri\u00ebnboer": ["Twitter", "Facebook", "Self-Employed", "TEDxWarwick", "AIESEC", "GroeneKruis Domicura", "Paris International Model United Nations (PIMUN)", "European Commission", "SOS Children's Villages", "Doctor of Philosophy (Ph.D.), Machine learning, A", "Master of Science (MSc), Complex Systems Science (Erasmus Mundus), A", "Master of Science (MSc), Complex Systems Science (Erasmus Mundus), GPA 3.9/4.0", "Bachelor of Science (BSc), Mathematics and Business Studies, First Class Honours", "Business, Israeli politics, Middle Eastern history, Ethics, A (93%)"], "YinggongZHAO_": ["Microsoft", "Nanjing University", "Microsoft Research Asia", "Doctor of Engineering, Computer Science and Technology"], "LinYang": ["LinkedIn", "Max Talents", "Microsoft", "Prediction Systems Inc", "Bookman, Ltd", "Prediction Systems Inc"], "OliviaNordquist": ["Google", "HookLogic, Inc.", "University of Michigan", "Mary Markley Dining Services", "Bachelors Degree, Computer Science", "French Language and Literature", "Clarkston United Methodist Church", "Alternative Spring Break"], "JonBernard": ["CrossChx", "Bernard Interactive", "Victoria's Secret", "Victoria's Secret", "The Columbus Dispatch", "The Columbus Dispatch", "West Virginia Media Holdings, LLC", "Cox Enterprises, Inc. - WTOV-TV9", "B.A., Communication"], "MattJoyce": ["Center for Employment Opportunities", "GreenLight Fund", "William Penn Foundation", "Harvard University", "Harvard University", "Philly Fellows", "Philadelphia Committee to End Homelessness", "MPP", "BA, History", "Broad Street Ministry", "Philly Fellows", "Haverford College", "Leadership Philadelphia"], "YuefengZhou": ["Google", "Conviva", "Carnegie Mellon University", "Morgan Stanley", "Master's Degree, Information Networking, 3.77/4.0", "Bachelor's degree, Computer Science, 87/100", "Exchange Student, Computer Science", "Information Networking Institute, Carnegie Mellon University", "Chun-Tsung Endowment Fund"], "MarcAbramowitz": ["Marc liked", "SurveyMonkey", "SurveyMonkey", "pymssql open source project", "Chegg", "BlueKai", "Yahoo!, Flex Force (Tiger Team)", "Yahoo!, Yahoo! Personals Engineering Team", "Fireclick", "Digidesign", "Stanford University", "Lawrence Livermore National Laboratory", "Northeast Parallel Architectures Center", "MS", "BS", "Linux.com", "https://www.linux.com/news/installing-linux-vserver", "Linux.com", "Linux.com", "Linux.com", "Antic Magazine", "Antic Magazine"], "JoshLevenberg": ["Google Research"], "ChrisBuccella": ["Intralinks", "BA", "BS", "United States US8271501", "United States US8041555", "United States US7836348", "Kiva.org", "AARP TaxAide"], "SherryMoore_": ["Google", "Sun Microsystems", "Intel"], "DongjoonHyun": ["Hortonworks", "The Apache Software Foundation", "SK Telecom", "Samsung Electronics", "Data Mining and Knowledge Discovery", "ACM SIGKDD", "Distributed and Parallel Databases", "United States US8732759 B2", "United States US8661041 B2", "United States US8457472 B2", "United States US8352985 B2", "United States", "United States", "Korea 1015228710000", "Korea 1015400190000", "Korea 1012569400000", "Korea", "Korea", "Korea"], "nouiz": ["mnubo", "Briowireless Inc.", "Synergie Pilates", "Tekelec", "Tekelec", "Tekelec", "Blueslice Networks", "Nortel", "Teleglobe", "Microcell", "TechnoMontral", "Startup Weekend", "WearHacks", "Fondation Montral inc.", "Academos", "Founder Institute", "C100", "CABA", "Gartner", "ABI Research", "Price Waterhouse Coopers", "Deloitte", "Canadian Innovation Exchange", "Ernst & Young", "C100", "Branham300", "Bronfman Family Foundation", "Light Reading", "IIoT Symposium", "C2 MTL 2016 & Montreal Chamber of Commerce", "Canadian Venture Capital Association conference 2016", "Continental Automated Buildings Association - 2016 forum", "Ecole Polytechnique de Montreal / HEC", "IoT World Forum - Dubai", "TechnoMontral - l'Internet des Objets", "The Founder Institute", "Europe EP2130324", "B.Eng", ""], "SigurdSpieckermann": ["Siemens AG, Corporate Technology", "Siemens AG, Corporate Technology", "MAN Diesel & Turbo SE", "Hamburg University of Technology", "Kurschat GmbH Messtechnik + Automation", "Eisenfhr, Speiser & Partner Patentanwlte Rechtsanwlte", "Kurschat GmbH Messtechnik + Automation", "Eisenfhr, Speiser & Partner Patentanwlte Rechtsanwlte", "Channel Business Services GmbH / TuTech Innovation GmbH", "United States", "Neurocomputing (Special Issue ESANN 2014)", "Advances in Neural Information Processing Systems (NIPS), Second Workshop on Transfer and Multi-Task Learning: Theory meets Practice", "Proceedings of the European Conference on Machine Learning (ECML), Workshop on Generalization and Reuse of Machine Learning Models over Multiple Contexts", "Proceedings of the 24th International Conference on Artificial Neural Networks (ICANN)", "Proceedings of the 22nd European Symposium on Artificial Neural Networks, Computational Intelligence and Machine Learning (ESANN)", "Dr. rer. nat., Computer Science", "Master of Science (M.S.), Computational & Mathematical Engineering, GPA 3.65 (=A-)", "Bachelor of Science (B.Sc.), Computer Science and Engineering, 2.1 (German grading system)", "Abitur, 1.7 (German grading system)", "", ""], "JasonCannavale": ["Rackspace, the #1 managed cloud company", "", ""], "RobertDiPietro": ["Johns Hopkins University", "MIT Lincoln Laboratory", "Northeastern University", "Master of Science (MS), Electrical Engineering", "Bachelor of Science (BS), Applied Physics and Engineering"], "NguyenHungPhuong": ["Fujitsu Viet Nam", "FPT Software", "Bachelor's degree, Law", "IBM, License None", "No"], "ChristofAngermueller": ["Molecular Systems Biology", "http://biorxiv.org/content/early/2016/05/27/055715", "Nature Methods", "Nature Methods", "Diabetologia", "BioMed Research International", "Bioinformatics", "Cell"], "ThomasLeaman": ["Landstar - Ranger", "Arrow trucking", "GE Transportation", "Associate's degree, Logistics, Materials, and Supply Chain Management", "Associate's degree, Business/Commerce, General"], "YuwenYan": ["Shanghai Haizhi Intelligent Technology Co.", "Microsoft", "WI Input Method Team of HIT", "M.S., Computer science", "B.S., Computer science", "", ""], "IgorMacedoQuintanilha": ["Laboratrio de Sinais, Multimdia e Telecomunicaes - UFRJ", "Letsevo, Designoteca", "GTA - Grupo de Teleinformtica e Automao", "M.Sc., Electrical Engineering", "B.Sc., Electronics Engineering", "Coursera Course Certificates, License NXJPL29XL556"], "JoshuaV.Dillon": ["Google", "Georgia Institute of Technology", "Microsoft Research", "Purdue University", "Purdue University", "Purdue University", "Lawrence Livermore Nat. Lab", "IBM", "ThermoAnalytics Inc", "IBM", "IBM", "Michigan Department of Transportation", "Ph.D, Computational Science & Engineering, 4.0", "MS, Electrical & Computer Engineering", "B.S, Computer Engineering & Electrical Engineering"], "SteveMartinelli": ["OpenStack", "OpenStack", "IBM Canada", "IBM Canada", "IBM Canada", "IBM Canada Ltd.", "York University", "IBM", "IBM", "O'Reilly", "OpenStack Vancouver Summit", "OpenStack Vancouver Summit", "OpenStack Vancouver Summit", "OpenStack Summit Presentation November 2014", "Youtube", "IBM DeveloperWorks", "Thoughts on Cloud", "OpenStack Summit Presentation May 2014", "OpenStack", "Stackalytics", "IBM", "B. ASc, Computer Engineering"], "KuiShi": ["Huawei Technologies", "OpenStack Project", "Polycom", "EMC", "Wind River", "Institute of Software China Academy of Sciences", "Bachelor's degree, Computer Science & Technology"], "BriannaPoulos": ["Johns Hopkins University Applied Physics Laboratory", "Extreme Networks", "GlaxoSmithKline", "NC State Undergraduate Tutorial Center", "Cisco Systems", "NC State University Housing", "Bachelor of Science, Computer Engineering"], "ToanNguyen": ["Hetrick-Martin Institute", "Bachelor of Arts (B.A.), Chemistry, concentration: Biochemistry", "Biological Sciences", ""], "AmitAgarwal": ["Microsoft", "Microsoft", "Microsoft", "Microsoft", "Mentor Graphics India Pvt. Ltd.", "Microsoft", "UCLA VLSI CAD LAB", "Mentor Graphics India", "ICCAD 2008", "Journal - ACM Transactions on Design Automation of Electronic Systems (TODAES)", "United States 12/971,943", "United States 12/413,780", "United States 13/158,966", "United States PCT/US2012/039884", "United States 20120324430", "United States 8677322", "United States", "MS, Computer Science (Programming Languages and Systems)", "BTech, Computer Science and Engineering"], "KevinJamesMatzen": ["Cornell University", "Cornell University", "Microsoft", "University of Michigan", "National Instruments", "Ph.D., Computer Science", "BSE, Computer Engineering, Computer Science Engineering", "ICCV 2013", "ECCV 2014"], "XingdongZuo": ["Bachelor of Science (B.S.), Applied Mathematics"], "JosephTurian": ["Company in Stealth Mode", "MetaOptimize LLC", "GigaOM", "Universit de Montral", "MIT AI Lab", "Ph.D., Computer Science", "AB, Computer Science"], "JustinShepherd": ["Eastdil Secured", "CBRE", "Jones Lang LaSalle", "Master of Business Administration (MBA), Investments", "Bachelor of Arts (B.A.), Political Science and Government"], "LinkerLin": ["Dianping", "Alibaba", "Master of Computer Applications (M.C.A.), Recommendation System", "Bachelor of CS, Computer Software Engineering"], "AaronRosen": ["PDT Partners", "AppNexus", "AppNexus", "Facebook", "Google", "Addison Search", "Medialets", "Eliassen Group", "Apex Systems", "Apex Systems", "Hawk Ridge Systems", "B.A."], "SeanDague": ["Hewlett-Packard", "Mid Hudson Valley Linux and Open Source Users Group", "OpenStack Summit Spring 2013", "Poughkeepsie Farm Project", "MS, Computer Science", "Bachelors, Physics", ""], "Pamela-RoseVirtucio": ["Bachelor of Science (B.S.), Computer Science"], "frankseide": ["Microsoft", "Microsoft", "Microsoft", "Microsoft", "Microsoft", "Microsoft", "Philips Research, Taipei", "Philips Research", "Dipl.-Ing., EE, CS"], "fvsin": ["Montreal Institute for Learning Algorithms (MILA)"], "RobertLi": ["Brookfield Property Partners", "Tishman Speyer", "Grosvenor", "Shui On Land", "MSRED, Real Estate Finance and Investment", "Bachelor's degree, Econometrics"], "Caglar": ["Proceedings of the 15th ACM on International conference on multimodal interaction"], "StanLagun": ["Mirantis", "Mirantis", "Mirantis Inc."], "RussellSim": ["Pulcinella Toronto", "Culinary Management"], "GijsvanTulder": ["Biomedical Imaging Group Rotterdam, Erasmus MC"], "yifeif": ["Yifei liked", "Google", "Microsoft", "Olin College of Engineering", "Microsoft", "IEEE Xplore", "Master of Science (M.S.), Electrical Engineering", "Bachelor of Science (B.S.), Electrical and Computer Engineering"], "GeorgOstrovski": ["Google DeepMind", "DeepMind", "Sunrise Setting Ltd", "University of Warwick", "ISD Software und Systeme GmbH", "Coursera", "Coursera", "Coursera", "Coursera", "Coursera", "Journal of Dynamics and Games", "Physica D: Nonlinear Phenomena", "Topology and its Applications", "Regular and Chaotic Dynamics", "Doctor of Philosophy (PhD), Mathematics", "MSc in Mathematics, with distinction", "Visiting student", "Pre-diploma (Vordiplom), Mathematics, 1.1"], "JesseLivezey": ["UC Berkeley", "Audience, Inc.", "Cornell University", "Weill Cornell Medical College in Qatar", "Cornell University", "Facilitator, Teacher, Mentor", "Physics, Biophysics, Theoretical Neuroscience, Machine Learning", "B.A., Physics, Mathematics"], "QinZhao": ["Ingredion Incorporated", "Oceans Omega / Mycell Technologies LLC", "Rutgers University", "International Flavors & Fragrances Inc.", "Lifeflo Inc.", "Promotion In Motion Inc.", "Doctor of Philosophy (Ph.D.), Food Science, 3.9/4.0", "Bachelor of Science (BS), Biotechnology, 3.5/4.0", "Journal of Agricultural and Food Chemistry", "Carbohydrate Polymers", "Journal of Agricultural and Food Chemistry", "Journal of Agricultural and Food Chemistry", "Food Chemistry", "", "", "", ""], "yzhang87": ["GoDaddy", "EMC", "Pivotal Software, Inc.", "Amazon", "Beijing Topsec Network Security Technology", "Huawei", "MediaTek", "Lytran", "Master's degree, Information Technology, Mobility", "Bachelor's degree, automation"], "cai-lw": ["Wei LI gefllt Folgendes:", "Bachelor's Degree, Computer Science", "Master of Philosophy (M.Phil.), Electrical and Electronics Engineering", "Google", "Kaggle", "NetEase Youdao"], "DaveMcNally": ["Surgical Tables Inc", "BenchMark Rehab Partners", "Allen Medical Systems Inc", "Maverick Orthopedics Inc"], "SuneelMarthi": ["The Apache Software Foundation", "Red Hat", "Washington DC Apache Flink Meetup", "Intel Corporation", "VeriSign", "Lockheed Martin", "Plateau Systems", "AT&T Government Solutions", "Siemens Energy Management Systems", "Harris Corporation"], "KashifRasul": ["Samson Properties", "Cricket Communications", "PCC Wireless", "InTouch Wireless", "K S Wireless", "Northern Virginia Association of Realtors", "Bachelor of Science, Finance"], "delallea": ["Ubisoft", "Ubisoft", "ApSTAT Technologies", "Universit de Montral", "ApSTAT Technologies", "Universit de Montral", "Universit de Montral", "Doctor of Philosophy (Ph.D.), Machine Learning", "DEA (<=> Master's Degree), Artificial Intelligence", "Ingnieur, Computer Science", "Ingnieur"], "DerekHiggins": ["FEI Company"], "hunkim": ["Hong Kong University of Science and Technology", "Microsoft", "MIT", "UC Santa Cruz"], "JackRae": ["Google", "Quora", "Heswall Disabled Children's Holiday Fund", "Master of Science (M.S.), Statistics, 4.1 / 4.3", "Master of Science (M.Sc.), Mathematics and Computer Science, 1st Class Honors"], "YaguangTang": ["MANDOO GROUP PTY LTD"], "AlaRezmerita": ["Cloudwatt", "PROLOGUE", "INRIA", "Universit Paris-Sud 11", "Universit Paris-Sud 11", "Euro-Par 2006", "Euro-Par 2006", "MPRI, Informatique", "DESS, Informatique", "Matrise, Informatique"], "WilliRichert": ["Microsoft (Bing)", "packt", "packt", "PhD Thesis, C-LAB Publication / University of Paderborn"], "DjangoPeng": ["2012 Labs, Huawei Technologies", "University of California, San Diego", "Witspring Inc", "Zhejiang University", "Visiting Scholar, Bioinformatics", "Bachelor of Engineering (B.Eng.)(Top 5%), Computer Science", "Zhejiang University", "Zhejiang University", "Zhejiang University", "", "Zhejiang University", "COMAP(the Consortium for Mathematics and Its Applications)", "Huawei Technologies Co., Ltd", "Huawei Technologies Co., Ltd", "DataCamp, License 0a39a85efc0d93aab822ba10eb5830a6c5d2ae23", "DataCamp, License 16186fa5294a7bbfb80460da954b74cfdd94ea5e"], "AndreyBrindeyev": ["IBM Redbooks"], "TakaoNakaguchi": ["", "NTT-AT", ", "], "DavidG.Andersen": ["Carnegie Mellon Department of Computer Science", "MIT - Laboratory for Computer Science (LCS/CSAIL)", "Compaq SRC", "University of Utah", "ArosNet, Inc.", "Multi-State Lottery Association, Intel, Banner & Witcoff, LLC, IJNT, Inc., Ascensus, others"], "MattRiedemann": ["IBM", "IBM", "IBM", "IBM", "Daktronics", "Bachelor of Science, Computer Science"], "JakubRuzicka": ["EZ, a.s.", "EZ, a.s.", "EZ, a.s.", "HayGroup", "Appian Group", "Deloitte", "Master of Business Administration (MBA), Business Administration and Management, General", "Mgr, Economics", ""], "KaseyAlusi": ["Workday", "Workday", "Threadix", "Workday", "Boeing", "Boeing", "Bayer HealthCare", "Bayer HealthCare", "Bayer HealthCare", "Bachelors, Informatics"], "Graham Hayes": ["HubSpot", "HubSpot", "HubSpot", "HubSpot", "HubSpot", "HubSpot", "Salem Five", "Bachelor, Business Administration; Marketing"], "SamAbrahams": ["Sam liked", "Sam liked", "Memdump LLC", "Illumination Entertainment", "Technology Learning Center", "Roadmap to Success Program, University of Richmond", "Arlington Public Schools", "Bachelor of Science (B.S.), Mathematical Economics, cum laude", "International Space Apps Challenge - Pasadena", "Arlington Food Assistance Center", "Bleeding Edge Press"], "GrahamTaylor": ["School of Engineering, University of Guelph", "Investment Industry Regulatory Organization of Canada (IIROC)", "OANDA", "Courant Institute of Mathematical Sciences, New York University", "Mixamo", "Speech Technology Group, Microsoft Research", "INSA de Lyon Technical and Scientific University"], "DelipRao": ["Joostware", "Amazon", "Glassdoor", "Twitter", "Human Language Technology Center of Excellence", "Google", "Google Inc., CA", "Indian Institute of Technology Madras", "IBM India Research Labs, New Delhi", "PhD, Machine Learning, Natural Language Processing", "MS, Computer Science", "MS, Computer Science", "BE, Computer Science"], "FarukAhmed": ["Universit de Montral"], "AlexanderMatyasko": ["Doctor of Philosophy (PhD), Computer Science", "MS, Computer Science", "Engineer's degree, Computer Science", "Scand", "Coursera", "edX, License CaltechX/CS1156x/Fall2013", "Coursera", "Coursera", "Coursera", "edX, License RiceX/ELEC301x/Spring2014", "Coursera", "edX, License HarvardX/MCB80.1x", "Santa Fe Institute"], "AmjadAlmahairi": ["Maluuba", "Montreal Institute for Learning Algorithms (MILA), Universit de Montral", "Nuance Communications", "McGill University", "McGill University", "McGill University", "Doctor of Philosophy (PhD), Machine Learning", "MSc., Computer Science", "BEng., Informatics, Artificial Intelligence"], "OllieLeahy": ["Glanmire Gas Heating & Plumbing", "Mechanical and building services", "Duggan Engineering"], "MarkMcLoughlin": ["VWR International, LLC", "VWR International, LLC", "VWR International", "Cardinal Health", "Cardinal Health", "IBA", "Mallinckrodt", "BA"], "MikeTurvey": ["The David J. Joseph Company", "Sogeti", "David J. Joeseph", "MSIS, Information Systems", "Information Systems"], "MarkHillebrand": ["Microsoft", "Microsoft", "German Research Center for Artificial Intelligence, DFKI", ""], "ZhouhanLIN": ["Montreal Institute for Learning Algorithms (MILA)"], "SuneelMarthi_": ["Suneel liked", "Suneel liked", "Suneel liked", "Suneel liked", "Suneel liked", "Coursera", "Coursera", "Coursera", "Coursera"], "SeanOwen": ["Cloudera", "Myrrix Ltd", "Pentech Ventures LLP", "Google", "MBA", "BA, Computer Science", "Manning"], "dima": ["Karmasoft - CTO", "Jiber Media, CTO", "Freelance Ruby on Rails + iOS Developer", "Ruboss, CTO", "SAP, Senior Developer", "Master of Software Systems, University of British Columbia"], "IgorBabuschkin": ["DeepMind", "CERN", "Masters Degree, Physics"], "ZhongyueLuo": ["Intel Corporation", "Intel Corporation", "Sina.com", "Enswers Inc"], "RajeshTailor": ["Telstra SNP Monitoring", "Bsmart Management", "UTC Building & Industrial Systems", "Chubb Fire & Security", "Media Review International", "Warner Home Video", "International Masters Publishers", "International Masters Publishers", "International Masters Publishers", "International Masters Publishers", "Murphy Oil", "Murphy Oil"], "MatthewKoichiGrimes": ["University of Cambridge - Computer Vision & Robotics Group Machine Intelligence Lab"], "VictorMelo": ["Bomboniere Ponto Doce"], "WenjianHuang": ["", "The 19th Annual International Conference on Mobile Computing and Networking, ACM MobiCom 2013, Chair Sumi Helal", "Alibaba Group", "The Asia-Pacific Robot Contest, Asia-Pacific Broadcasting Union", "The Young Entrepreneurs Development Council Limited (YDC), Hong Kong", "GS1 Hong Kong", "GS1 Taiwan, GS1 Hong Kong", " US 20130301870 A1", " CN 103383738 A", " No. 61/964,794", "MiningLamp", "Alibaba Group", "Master's Degree, Electrical, Electronics and Communications Engineering", "Bachelor's Degree, Electrical, Electronics and Communications Engineering"], "RickHarris": ["Devonshires Solicitors", "UC Hastings College of the Law", "CASIS MEDIA LIMITED", "The University of Law", "Howard Kennedy LLP", "The City Law School, City University London", "National Centre of Domestic Violence", "Mishcon de Reya", "Michael Simon (Barrister)", "Argent Chambers", "PURE Public Relations", "Foxtons", "Chesterton Humberts", "Hersh & Hersh Attorneys at Law", "Chesterton Humberts", "Cameron Mackintosh Ltd", "BDO LLP", "BDO LLP", "Masters Degree - Virginia Leary Merit Scholarship Recipient, American/U.S. Law/Legal Studies/Jurisprudence and Health Law & Policy, Overall Average of A-", "Post Graduate Diploma in Legal Practice (LPC), Law", "Graduate Diploma in Law, Law", "Bachelor of Arts (BA), Theatre and Performance, 2:1 HONS", "A Levels, 3 A Levels, 9 GCSE's", "Jewish Care", "Jewish Care", "National Centre of Domestic Violence", "University of California, Hastings College of the Law", "Francis Holland School", "Francis Holland School", "Francis Holland School", "The Duke of Edinburghs Award", "The Duke of Edinburghs Award"], "vesis84": ["Karel dal(a) lb se", "Karel dal(a) lb se", "Brno University of Technology", "IBM"], "RadhikaG": ["Mozilla Foundation", "GVC Systems", "Bachelor of Technology (B.Tech.), Computer Science and Engineering", "High School", "Indian Association for Research in Computer Science (IARCS)", "Auro-Mira Service Society"], "GuillaumeAlain": ["University of Montreal", "University of Montreal", "Solace Systems", "Communications Research Centre", "International Conference on Machine Learning 2014", "M.Sc, Computer Science", "Master's, Mathematics (Number Theory)", "Bachelor's, Sciences (Mathematics)"], "DerekMiller": ["Interactive Intelligence", "Project Lead The Way", "Timmy Global Health", "Ball State University", "Ball State University", "Master of Science, Computer Science", "Bachelor of Arts (BA), Telecommunications, Graduated"], "CraigCitro": ["Google", "University of Washington", "Doctor of Philosophy (PhD), Mathematics", "Bachelor of Science (BS), Mathematics and Computer Science", "Bachelor of Science (BS), Mathematics and Computer Science"], "LyubovKolesnikova": [" \" \"", " \" \"", " ", " ", " ", ", , ", " , : 77004482"], "GiulioFidente": ["Red Hat, Licenza 804006254022826", "Red Hat, Licenza 804006254022826", "Red Hat", "Red Hat", "Red Hat", "dotMobi", "IBM", "Babel - a business unit of Par-Tec S.p.A.", "ATS", "Contributor", "Contributor", "Electronic and Automation", "Computer Engineering"], "VladimirNazarenko": ["Lanit-Tercom", "Master's degree, Mathematics and Computer Science", "Bachelor's degree, Mathematics and Computer Science"], "ReyhaneAskari": ["University of Montreal - MISA", "GMA Solar Inc.", "National Research Council Canada"], "NumanSiddique": ["Red Hat", "eNovance", "Cisco Systems", "NDS services Pay TV Technology", "NDS services Pay TV Technology", "VeriFone", "S/W Engineer from Tata elxsi at Schneider Electric", "Tata Elxsi", "Coursera Verified Certificates, License 574G6YVWNZ", "B.E, I.S & E", "Pre University, Science"], "JiaDong": ["Marcetable", "The Walt Disney Company", "The Walt Disney Company", "Amgen", "Advantech", "Marvell Semiconductor", "Master of Business Administration (M.B.A.)", "Bachelor of Science (B.S.)"], "KelvinXu": ["Montreal Institute for Learning Algorithms (MILA)", "Google Research - Brain Residency Program", "Courant Institute at NYU - machine learning group"], "BrantKnudson": ["IBM", "Unisys", "BS, Computer Science, 4.0", "IBM", "IBM"], "carriepl": ["Montreal Institute for Learning Algorithms (MILA)"], "AymanElkfrawy": ["Aurea Software", "Al-Azhar University", "NARSS", "Freelancer", "Leapforce", "Horizonssoftware", "IEEE 2010 Computer Society Students Competition", "IEEE Computer Society", "Bachelor's degree, Computer Engineering"], "ClementFarabet": ["Clment liked", "Clment liked", "Clment liked", "Clment liked", "Twitter", "MADBITS", "New York University"], "JeffDonahue": ["Ph.D., Computer Science", "B.S., Turing Scholars Honors Computer Science", "Pinterest", "UC Berkeley", "Pinterest", "Google", "Google", "Google", "Applied Research Labs", "National Instruments", "National Instruments"], "GauvainPocentek": ["Objectif Libre", "Ulteo", "Linutop"], "Taesup(TS)Kim": ["Universit de Montral", "Microsoft", "Solidware", "Intel Corporation", "LG Electronics", "Microsoft Research Cambridge", "Lam Research Korea", "Korea Univ.-Samsung Techwin Research Center", "168th Medical Battalion", "Doctor of Philosophy (Ph.D.), ", "M.S, Electrical Engineering", "B.E, Electrical Eng."], "VincentMichalski": ["Twenty Billion Neurons GmbH", "Goethe-Universitt Frankfurt a. Mainbersetzung anzeigen\nWie finden Sie diese bersetzung?GutFehlerhaft", "Universit de Montral, Montreal Institute for Learning Algorithms", "Goethe-Universitt Frankfurt a. Main, Bernstein Focus Neurotechnology", "Universit de Montral, Montreal Institute for Learning Algorithms", "Frankfurt Institute for Advanced Studies, Bernstein Focus Neurotechnology", "Goethe-Universitt Frankfurt a. Main, Institute for Sinology", "Goethe-Universitt Frankfurt a. Main, Frankfurt Institute for Advanced Studies", "Goethe-Universitt Frankfurt a. Main, Institute for Sinology", "Doctor of Philosophy (Ph.D.), Computer Sciencebersetzung anzeigen\nWie finden Sie diese bersetzung?GutFehlerhaft", "Master's degree, Computer Sciencebersetzung anzeigen\nWie finden Sie diese bersetzung?GutFehlerhaft"], "ManjunathKudlur": ["Google", "NVIDIA", "University of Michigan", "IBM TJ Watson Research Center", "Synfora Inc.", "Hewlett Packard", "Zaplet"], "ClarkBoylan": ["OpenStack Foundation", "Hewlett-Packard", "Intel Corporation", "Garmin International", "Portland State University", "Intel Corporation", "BS, Computer Science"], "HemanthMakkapati": ["Sun Microsystems", "Openstack Foundation, License COA-1600-0248-0100", "13th IEEE/ACM International Symposium on Cluster, Cloud and Grid Computing", "8th IEEE International Conference on E-Science (e-Science), 2012", "India Workshop on Reverse Engineering (IWRE), 2012", "India Workshop on Reverse Engineering, IWRE 2011", "North Texas Food Bank", "Blacksburg Middle School", "Virginia Tech Indian Students Association", "Virginia Tech Indian Students Association", "Department of Computer Science at Virginia Tech", "Tata Research Development & Design Center", "Tata Research Development & Design Center", "Tata Research Development & Design Center"], "MariusKillinger": ["Google", "Max Planck Institute for Medical Research", "Bosch Singapore", "Bosch", "Masters Degree, Physics", "Bachelors Degree, Physics, 1.4"], "DamienMartin-Guillerez": ["Damien Martin-Guillerez gefllt Folgendes:", "Damien Martin-Guillerez gefllt Folgendes:", "Damien Martin-Guillerez gefllt Folgendes:", "Damien Martin-Guillerez gefllt Folgendes:", "Google", "INRIA", "iQSpot", "LAAS-CNRS"], "RainyaMosher": ["Cisco", "Jamberry Nails", "Rackspace, the #1 managed cloud company", "Rackspace, the #1 managed cloud company", "SA OpenStackers Meetup", "Rackspace Hosting", "Chenega Global Services, LLC", "TerraHealth Inc.", "Eclipsys Corporation", "Dell Computer Corporation", "Pratt & Whitney Avionics", "RFS Design", "Scrum Alliance", "Project Management Institute, License 1385732", "Scrum Alliance", "Family Justice Center of Bexar County", "Masters of Science, Technology Commercialization, 3.7", "Bachelor of Business, Information Systems, Cum Laude / 4.0 major / 3.6 cumulative", ""], "AnandChakravarty": ["Google", "Google", "Microsoft", "Microsoft", "Microsoft Corporation", "Microsoft Corporation", "Microsoft Corporation", "Microsoft", "United States", "Master of Science (M.S.), Computer Science"], "ZimingDong": ["LinkedIn", "Masters Degree, Computer Science", "Bachelors Degree, Computer Science", "Sohu, Inc.", "Association of Computing Machinery", "Coursera Course Certificates, : KAJYKT42GPNV", "ACM International Collegiate Programming Contest"], "RebeccaFinn": ["We Are Social", "Mom Central Consulting", "StudentUniverse.com", "Situation Interactive", "Be the Change Abroad", "J.Crew", "Boston Life", "Marketing", ""], "BorisPavlovic": ["DocuSign", "Early Stage Startup", "Microsoft", "Microsoft", "Microsoft", "Microsoft", "Fairmont Hotels and Resorts", "Fairmont Hotels and Resorts", "Four Seasons Hotels and Resorts", "HOTEL EDOUARD 7", "InterContinental Hotels Group", "Master of Business Administration (MBA)", "Bachelor of Science, International Hospitality Management", "International Sommelier Guild", "Board Member", "President", "Director At Large", "President", "Summit Assistance Dogs", "Microsoft Executive Briefing Center", "Microsoft Advertising", "Microsoft Advertising"], "WlodzimierzBorkowski": ["Intel Corporation", "ADVA Optical Networking", "ADVA Optical Networking", "MongoDB", "Udacity", "The Linux Foundation", "DataCamp, Licencja 2a1199d6a7d190d6625774ba4f3be6542f74d54c", "Big Data University, Licencja BD0111EN", "Big Data University, Licencja BD0115EN", "postgraduate, Software engineering in practice", "postgraduate, Projecting and programming desktop applications", "Master of Engineering (M.Eng.), electronic and telecommunication"], "nyghtowl": ["Skymind.io - Deep learning for Industry"], "terrytangyuan": ["Uptake", "RStudio, Inc.", "DataNovo, Inc.", "Analytical Flavor Systems", "Penn State Department of Mathematics and National Science Foundation", "Penn State Department of Statistics", "Schreyer Honors College", "Schreyer Honors College", "Schreyer Honors College", "HackRPI at Rensselaer Polytechnic Institute", "Capital One", "Google", "Bachelor of science, Mathematics and Computer Science", ""], "IharHrachyshka": ["OpenStack", "Red Hat Czech s.r.o", "OpenStack", "OpenStack", "OpenStack", "Red Hat Czech s.r.o", "EPAM Systems", "Infoblox", "EPAM Systems", "Promwad", "Velesys", "Bachalor, Computer Science"], "SollyRoss": ["Red Hat", "Red Hat", "Rothbury Software", "Memolane", "Bachelor of Science (B.S.), Mathematics and Computer Science, Dean's List"], "DeanTroyer": ["Intel Corporation"], "JamesWexler": ["Google", "Amazon", "Microsoft Corporation", "Raytheon Integrated Defense Systems", "Raytheon Integrated Defense Systems", "Mohawk Innovative Technology, Inc", "MS, Computer Science", "BS, Computer Science"], "koraykavukcuoglu": ["Google Deepmind", "Deepmind Technologies", "NEC Laboratories America", "New York University", "Google", "NEC Laboratories America", "NEC Laboratories America", "Siemens Corporate Research", "Roketsan Missiles Inc.", "PhD", "MS", "MS", "BS"], "AlexeySurkov": ["Google", "ABBYY", "Master's degree, computer science, mathematics", "Goethe Institut"], "StephanHoyer": ["Google", "The Climate Corporation", "University of California, Berkeley", "The Climate Corporation", "Theory of Algorithms Course, UC Berkeley", "US Department of Energy", "", "The Climate Corporation", "The Climate Corporation", "PhD, Theoretical Physics", "BA, Physics, with High Honors and Phi Beta Kappa", ""], "QiweiYe": ["Microsoft", "Microsoft", "Microsoft", "Microsoft", "Computer"], "AdamGandelman": ["IBM", "Akanda inc", "HP Cloud Services", "Canonical Ltd.", "Janrain, Inc.", "LINBIT USA", "ICONN.NET, LLC"], "JonasDegrave": ["Ghent University", "Picanol Group", "Melexis", "Colruyt", "Covameat", "Coursera", "Rode Kruis-Vlaanderen", "Pirate Party Belgium", "Pirate Party Belgium", "SIAM, Society for Industrial and Applied Mathematics", "Master of Science, Electrical Engineering: ICT", "MOSIG: Graphics, Visuals and Robotics", "ASO, Wetenschappen-Wiskunde 8 uur"], "JoostvanDoorn": ["Master of Science (MSc), Artificial Intelligence", "Bachelor of Science (BSc), Computer Science, Cum laude", "VWO, Nature and Technology", "Centrum Wiskunde & Informatica", "University of Twente", "I.C.T.S.V. Inter-Actief", "I.C.T.S.V. Inter-Actief", "Nedforce", "Bestuur 2012-2013, Symposium 2012"], "RobinNabel": ["Google", "Google", "Democratic National Committee", "University of St Andrews", "J.P. Morgan", "Tilde, Ltd", "Masters Degree, Computer Science", "Nanodegree, Self-Driving Car Engineering", "EAP - full year exchange program, Computer Science, GPA 3.95/4.0", "High School", "University of St. Andrews Student's Association", "Athletic Union, University of St. Andrews", "Andrew Melville Hall", "University of St. Andrews, University of California at Davis", "School of Computer Science, University of St Andrews", "Worcester Sixth Form College"], "AttilaFazekas": ["ExxonMobil", "ExxonMobil", "ExxonMobil", "KFKI Ltd.", "Master of Science (MSc), Information Technology", "Exchange semester, Information Technology, MSc", "High School/Secondary Diplomas and Certificates", "High school, Mathematics", "Bachelor of Business Administration (BBA), Business Administration and Management, General"], "JohnLenihan": ["InfoSpace, Inc.", "Bachelor's Degree, Business Administration"], "Raingo": ["Yuncheng liked", "Yuncheng liked", "University of Rochester", "Snapchat, Inc.", "Yahoo", "Microsoft", "Microsoft Research Asia", "University of Science and Technology of China", "Doctor of Philosophy (PhD), Computer Science", "Bachelor of Engineering (BE), Electrical and Electronics Engineering"], "XiYang": ["Capco", "Capco", "LaunchHouse", "KeyBank", "Case Western Reserve University", "Jiangxi Special Type Vehicle Company, Ltd., Jiangxi, China.", "China Minsheng Banking Corporation, Ltd., Beijing, China.", "Capco", "Central Conservatory of music, China", "Capco", "The George Washington University", "Toastmasters International", "New York Cares", "Global Business Accelerator", "Cleveland Foundation Foundry Project", "Score: 740", "Score: 112", "Master of Business Administration (M.B.A.)", "Master, Finance", "Bachelors Degree, International Finance"], "ThomasGeorge": ["Eco Adapt", "iDMOG", "Egos Ventures Inc.", "Snecma", "", "Master of Science (M.Sc.), Artificial intelligence", "Master of science and executive engineering, Data Science", "Erasmus exchange program for my third year of bsc, Mathematics", "Licence, Mathmatiques, Physique, Mcanique, Informatique"], "BenjaminScellier": ["Arxiv", "Knowesis Pte Ltd", "University of Oxford", "Prescient Limited", "Lyce Louis-le-Grand", "French Army", "Academy of Sciences, Institut de France", "International Mathematical Olympiad", "German Mathematical Olympiad", "Ministry of National Education (France)", "International Mathematical Olympiad", "French Mathematical Olympiad", "Doctor of Philosophy (Ph.D.), Deep Learning (Artificial Intelligence)", "Masters Degree, Statistics", "Masters Degree, Applied Mathematics", "Mathematics, Physics and Computer Science"], "GabrielHurley": ["Oracle", "Nebula, Inc.", "NASA", "Strike Awe", "Zero Coordinate Inc", "UC Berkeley", "BA, Social Welfare"], "Kaixhin": ["Twitter", "Kaixhin", "inensu", "Wellframe", "Mobile Sanctuary", "Wellcome Trust", "St. George's University of London", "Doctor of Philosophy (Ph.D.), Bioengineering", "Master of Science (MSc), Biomedical Engineering, Merit", "Bachelor of Arts (BA), Computer Science, II.1", "Department of Bioengineering, Imperial College London", "Credit Suisse", ""], "JoseCastroLeon": ["CERN", "CERN", "CERN", "Aplicaciones Tecnologicas de Domotica", "Master Degree, Computer Engineering (Ingenieria Informatica)", "Bachelor degree, Computer Engineering (Ingenieria Tecnica Informatica, especialidad de Sistemas)"], "NicholasKuechler": ["OpenStack, License COA-1600-0135-0100", "Red Hat, License 120-044-649"], "NathanHowell": ["GoDaddy", "Alpha Heavy Industries", "eBay", "Positronic", "Microsoft", "United States 7,219,148", "United States 7,610,344", "United States 7,272,853", "United States 7,543,076", "United States 8,214,438", "United States 8,533,270", "United States"], "EdwardHopeMorley": ["Canonical UK", "Hewlett-Packard", "Hewlett-Packard", "2:1, MEng Computer Systems Engineering"], "XavierGlorot": ["Google DeepMind", "Microsoft", "UPMC - Sorbonne Universities", "Universit de Montral", "Universit de Montral", "Polytechnique Montral", "Hilti", "Doctor of Philosophy (Ph.D.), Computer Science", "Engineers Degree, Electronics, Computer Science and Communications Engineering", "Electrical and Computer Engineering"], "ke-kuroki": ["Community Lead", "Restaurant Brands International", "Andela", "Google", "iHub Nairobi", "VituMob", "Fitimage Studios LLC", "Cybercasia", "Score: 8/10", "Score: 7/10", "Score: 7/10", "Score: 7/10", "Score: 6/10", "Won't stop learning anytime soon, Computer Software Engineering (Web platform)", ""], "JanPrach": ["Chartboost", "Identified", "VigLink", "AVAST Software", "Sun Microsystems", "mgm technology partners GmbH", "Engineer (MSc), Computer Science, Software Engineering, Computer Vision"], "A.RosenbergJohansen": ["Salesforce", "DTU - Technical University of Denmark", "Master of Science (M.Sc.), Mathematics and Computer Science, 11.4 of 12.0", "Master of Science (M.Sc.), Computervidenskab", "Bachelor of Science (B.Sc.), Management Information Systems, General, 10.7 of 12.0", "Bachelor of Science (B.Sc.), Computervidenskab", "TensorFlow", "Deep Learning Research, In", "NIPS recurrent neural network Symposium, 2016", "International conference on acoustics speech and signal processing, 2016"], "IsakuYamahata": ["Intel", "VA Linux Systems Japan", "FUJITSU SOFTWARE TECHNOLOGIES LIMITED", "Softbank creative", "Nikkei BP"], "jyt109": ["Twitter", "Galvanize Inc", "Skymind.io - Deep learning for Industry", "IBM", "Integrative Genomics and Medicine - Medical Research Council"], "NicolasBallas": ["Universit de Montral", "CEA and Mines ParisTech", "Carnegie Mellon University", "LTU Technologies", "Siemens", "EPITA Research and Development Laboratory", "EPITA", "24/7 Real Media", "IBM", "Fulbright Program", "PhD, Applied Mathematics, Computer Science", "Master, Machine learning and Computer vision", "Master, Computer Science"], "lamblin": ["Montreal Institute for Learning Algorithms (MILA)"], "OleksiiChuprykov": ["Mirantis", "OpenStack", "Mirantis", "Mirantis", ""], "qipeng": ["Stanford University", "Stanford University", "Stanford University", "Stanford University", "Soulgame", "Stanford University", "Tsinghua University", "PhD, Computer Science", "MS, Computer Science", "BE, Computer Software", "Neural Computation", "ICONIP 2013", "", "", "Vice President"], "turambar": ["XPRIZE", "University of Southern California", "Podimetrics", "Alfred E. Mann Institute", "University of Southern California", "Stanford University", "Phi Beta Kappa, Beta of California, Stanford University", "Stanford University", "Project Management Committee for OODT Project", "Co-organizer", "United States 7933900", "1st Workshop on Data Mining for Medical Informatics (DMMI): Electronic Phenotyping", "Proceedings of the IEEE 14th International Conference on Data Mining (ICDM)", "Proceedings of the IEEE International Conference on Data Mining 2013", "AAAI 2013 Fall Symposium Series Discovery Informatics Workshop", "Proceedings of ACM International Health Informatics Conference 2012", "OReilly Open Source Convention: Special Session on Healthcare Technology", "9th International Conference on Complexity in Acute Illness", "SPIE Electronic Imaging: Human vision and electronic imaging XIV", "Journal of Community Health", "ICML 2015", "SIGKDD 2015", "Doctor of Philosophy (Ph.D.), Computer Science", "Deep Learning"], "HuiXiang": ["Allergan plc", "Nitto Denko Corporation", "Allergan, Inc", "DuPont Pharmaceuticals/Bristol-Myers Squibb", "DSM Biologics", "National Research Council Canada - Biotechnology Research Institute"], "AbhijeetMalawade": ["NTT DATA Americas", "Covelix", "Synnove Systems Pvt. Ltd", "Divinet Access Technology", "B.E.(I.T.), Information Technology", "", ""], "MartinThoma": ["Karlsruhe Institute of Technology (KIT)", "Karlsruhe Institute of Technology (KIT) / University of Karlsruhe (TH)", "Coursera", "Coursera", "Duolingo", "Bundeswettbewerb Informatik", "Masters Degree", "Computer Science", "Bachelors Degree, Computer Science", "Abitur"], "FangweiLi": ["Google", "Google", "Google", "Microsoft", "PhD candidate, Computer Science", "BEng, Computer Science"], "TimSalimans": ["OpenAI", "Aidence", "Aidence", "Algoritmica", "Erasmus University Rotterdam", "Microsoft Research", "Independent trader on the Betfair markets", "International Society for Bayesian Analysis", "Kaggle.com", "Erasmus School of Economics", "Bayesian Analysis", "PhD Dissertation", "PhD, Econometrics", "MPhil / MSc, Economics, Major in Econometrics", "BSc (Hons), Liberal Arts and Sciences (Magna Cum Laude) Major in Mathematics & Physics", "Exchange Semester in Australia, Science"], "ThiloWill": ["Microsoft", "Linguatec GmbH", "Sail-Labs GmbH", "IXEC GmbH", "debis Systemhaus GmbH", "Institute of Parallel and Distributed Computing, University of Stuttgart", "Doctor of Philosophy (PhD), Theoretical and Mathematical Physics", "Diplom (Master of Sc.), Physics, passed with excellence"], "BertrandLallau": ["Thales Services", "Alcatel-Lucent", "Nextenso"], "MoslemKazemi": ["Uber", "Brain Corporation", "Brain Corporation", "Carnegie Mellon University", "Carnegie Mellon University", "Simon Fraser University", "Simon Fraser University", "Simon Fraser University", "University of Regina", "Postdoctoral Fellow", "Doctor of Philosophy", "Master of Applied Science", "Bachelor of Applied Science"], "VijayVasudevan": ["Google", "Carnegie Mellon University", "Ph.D, Computer Science", "B.S., Electrical Engineering and Computer Science"], "PhilippeHamel": ["Google Research - Information Retrieval and the Web, Machine Intelligence"], "DanielKrook": ["IBM", "", "", "", "", "", "", "", "", "", "", "IBM developerWorks", "IBM developerWorks", "IBM developerWorks", "IBM developerWorks", "IBM developerWorks", "IBM Redbooks", "IBM developerWorks", "IBM WebSphere Developer Technical Journal", "United States 9,413,833", "United States 9,413,818", "United States 9,361,455", "United States 9,323,572", "United States 9,246,920", "United States 9,229,784", "United States 9,215,153", "United States 9,147,181", "United States 9,122,696", "United States 9,003,480", "United States 8,881,136", "United States 8,880,841", "United States 8,856,664", "United States 8,843,621", "United States 8,494,143", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "IBM", "IBM", "IBM", "IBM", "IBM", "IBM", "IBM", "IBM"], "PatrickMezard": ["Clustree", "MASA Group", "Mercurial", "BadTech SAS", "BadTech SAS", "FactSet Research Systems", "Mappy", ""], "MikeSeltzer": ["Michael liked", "Microsoft", "Microsoft", "Teradyne", "Doctor of Philosophy (PhD), Electrical and Computer Engineering", "Master of Science (MS), Electrical and Computer Engineering"], "MehdiMirza": ["DeepMind", "Universit de Montral", "Google DeepMind", "Flickr", "Atlas Wearables", "Idiap Research Institute", "MIT", "Doctor of Philosophy (Ph.D.), Computer Science", "MSc, Artificial Intelligence", "BSc, Physics"], "ChenFan": ["Amazon", "Star Valley Tech Inc.", "Doctor of Philosophy (PhD), Multimedia communication", "Bachelor of Science (BS), Information communication"], "DirkMueller": ["Coherent Inc.", "Coherent Inc.", "LUMERA LASER GmbH", "Kapteyn-Murnane Laboratories (KMLabs) Inc.", "Corning Incorporated", "Ph.D., Physics", "Vordiplom, Physics"], "GeorgyOkrokvertskhov": ["Mirantis", "Mirantis", "Mirantis", "Mirantis", "Cisco", "Mirantis", "PhD, Physics, Non-linear Dynamics", "Master of Science (MS), Physics, Biophysics"], "JingtianPeng": ["2012 Labs, Huawei Technologies", "University of California, San Diego", "Witspring Inc", "Zhejiang University", "Visiting Scholar, Bioinformatics", "Bachelor of Engineering (B.Eng.)(Top 5%), Computer Science", "Zhejiang University", "Zhejiang University", "Zhejiang University", "", "Zhejiang University", "COMAP(the Consortium for Mathematics and Its Applications)", "Huawei Technologies Co., Ltd", "Huawei Technologies Co., Ltd", "DataCamp, License 0a39a85efc0d93aab822ba10eb5830a6c5d2ae23", "DataCamp, License 16186fa5294a7bbfb80460da954b74cfdd94ea5e"], "DumitruErhan": ["Google Brain", "Google", "Yahoo!", "Google", "Microsoft Research", "Max-Planck Institute for Biological Cybernetics", "Helsinki University of Technology", "PhD, Computer Science", "MSc, Computer Science", "BSc, Electrical Engineering and Computer Science"], "FeiLongWang": ["Catalyst IT Limited", "IBM", "IBM", "IBM", "DCHanson", "IBM China Research Lab", "China's Ministry of Industry and Information Technology, License 08202110005", "IBM", "IBM", "IBM", "Master of Computer Applications (MCA)", "Bachelor's degree, Computer/Information Technology Administration and Management"], "MalcolmSlaney": ["Google", "Stanford University", "Department of Electrical Engineering - University of Washington", "Microsoft", "Yahoo!", "IBM", "Interval Research", "Apple Inc.", "Schlumberger Palo Alto Research", "Bell Laboratories", "PhD, Electrical Enginering", "BSEE with Honors, MSEE, PhD, Electrical Engineering"], "Bart": ["Twitter", "Facebook", "Self-Employed", "TEDxWarwick", "AIESEC", "GroeneKruis Domicura", "Paris International Model United Nations (PIMUN)", "European Commission", "SOS Children's Villages", "Doctor of Philosophy (Ph.D.), Machine learning, A", "Master of Science (MSc), Complex Systems Science (Erasmus Mundus), A", "Master of Science (MSc), Complex Systems Science (Erasmus Mundus), GPA 3.9/4.0", "Bachelor of Science (BSc), Mathematics and Business Studies, First Class Honours", "Business, Israeli politics, Middle Eastern history, Ethics, A (93%)"], "EricBrown": ["MediaWallah", "nToggle, Inc", "Nomi (acquired by Brickstream)", "Media Armor, Inc (acquired by Nomi)", "Jumptap (acquired by Millennial Media)", "Jumptap (acquired by Millennial Media)", "Jumptap (acquired by Millennial Media)", "Dotomi (acquired by ValueClick Media, now Conversant)", "Hyperknowledge", "Parametric Technology Corporation", "Knowledge Management Software", "Compaq", "AdExchanger", "AdMonsters", "AdMonsters", "Diploma", "BS", "High School", "National Restaurant Association Educational Foundation (NRAEF)", "Massachusetts Restaurant Association"], "DanijarHafner": ["B.S. IT Systems Engineering, Computer Science, GPA 3.8/4.0", "", "Google Inc.", "Information Systems Group, Hasso Plattner Institute", "Google Inc.", "Human Computer Interaction Group, Hasso Plattner Institute", "Bleeding Edge Press", "24th European Symposium on Algorithms (ESA)", "SAP, Fujitsu, Dell, HP", "Hasso Plattner Institute", "International Air Transport Association", "Cisco Systems, Inc.", "Google Inc."], "SabariKumarMurugesan": ["VMware", "VMware", "VMware", "Citrix Online", "Columbia Law School", "Oracle", "Oracle", "Master of Science (MS), Electrical, Computer Networks", "Bachelor of Engineering (B.E.), Electronics, Instrumentation"], "UnmeshGurjar": ["Airtel Business", "Airtel Business", "Airtel Business", "Reliance Communications", "Hughes Communications India Limited", "Hughes Communications India Limited", "Onward Technologies Ltd", "The Art of Living", "Bharti Airtel", "Dale Carnegie Training India"], "JamieLennox": ["Cleaver-Brooks Sales and Service, Inc."], "SukritiRamesh": ["Google", "ETH Zurich", "IBM Research", "L3S Research Center", "Hewlett-Packard"], "KirillZaitsev": ["Howden", "Ingersoll Rand", "Camozzi Pneumatics Ltd", "Master of Business Administration (M.B.A.), Strategic Business Administration", "Executive Coaching, Managing the Company", "Master's degree, Mechatronics and International Engineering", "Bachelor's degree, Mechatronics and International Engineering"], "ArnaudLegendre": ["Apple", "VMware", "Google Summer of Code", "Adobe", "Insight Centre for Data Analytics", "VMware", "EPFL (cole polytechnique fdrale de Lausanne)", "Accenture", "Master of Science (MS) Exchange, Computer Science", "Master of Science (MS), Computer Science", "UC Berkeley Extension, License In progress", "Coursera Course Certificates, License QFRARJY6TQEB", "Coursera Course Certificates, License 96AVAT45K99V"], "AlexGaynor": ["Freelance Filmmaker"], "ArturSvechnikov": ["Actimind", "Freelance Software Development", "BoonEx", "Meridis", "Coursera", "Coursera", "Coursera", "Software Engineering"], "MichaelKrotscheck": ["VMware", "OpenStack Foundation", "HP Cloud Services", "Rosetta Stone", "Livemocha", "The Active Network", "Adobe Systems", "Resource Interactive", "Elliance", "Abreon", "NDCHealth", "Master of Business Administration", "BArch"], "JohnDewey": ["JANUS Research Group, Inc.", "JANUS Research Group Inc.", "JANUS Research Group, Inc.", "US Army", "Masters in Strategic Studies, Strategic Studies", "MSEE, Electrical Engineering", "BS in Engineering, Electrical Engineering"], "AdrienVerg\u00e9": [], "ebrevdo": ["SVBio", "The Climate Corporation", "Princeton University - Department of Electrical Engineering", "Siemens Corporate Research", "Google - Computer Vision for OCR", "Air Force Research Laboratories, Maui Optical and Supercomputing Site, Kihei, HI", "Rensselaer Polytechnic Institute - Electrical Impedance Tomography (EIT) Research Group", "Factset Research Systems"], "DaneFichter": ["trichome health consualtants"], "TomHancock": ["Agence France-Presse", "Chinese", "MPhil, Philosophy", "BA (Hons), Philosophy"], "VitaliyKolosov": ["OMK-IT", "IBS Holding", "Razvitie Plus", "", "", "specialist, computer scince, maths, economics, phisics"], "JonShlens": ["Google", "Howard Hughes Medical Institute", "UC Berkeley", "Salk Institute for Biological Studies", "Pixar Animation Studios", "Doctor of Philosophy (Ph.D.), Computational Neuroscience", "Bachelor of Arts (B.A.), Physics and Computer Science"], "SorenHansen": ["BSBA, Finance; Economics & Strategy", "", "Capital One", "Capital One", "Northern Trust Corporation", "Olin Business School", "UTC Aerospace Systems", "Cultivation Capital", "TAYLOR COMMUNITY CONSULTING PROJECT", "Goodwill-Easter Seals of MN", "Thomson Reuters", "Lunds and Byerly's", "Partner", "Co-President", "Industrials Portfolio Manager", "State President (October 2011-October 2012)"], "GustavLarsson": ["University of Chicago", "Tricycle Design HB", "Civis Analytics", "Tobii Technology AB", "Physical Sciences Division, University of Chicago", "Department of Computer Science, University of Chicago", "Doctor of Philosophy (Ph.D.), Computer Science", "Master of Science (M.S.), Engineering Physics"], "AshwiniShukla": ["Member", "ACM+IEEE Joint Conference on Digital Libraries (JCDL) 2002", "Scrum Alliance", "University Learning Institute"], "MichaelStill": ["Rackspace, the #1 managed cloud company", "OpenStack", "OpenStack", "OpenStack", "Rackspace, the Open Cloud Company", "Rackspace, the Open Cloud Company", "linux.conf.au 2013", "Canonical Ltd.", "Google", "The Australian National University", "Google Inc", "Google Inc", "TOWER Software", "AUUG", "Linux.Conf.Au", "Linux Australia", "IPAustralia", "IPAustralia", "National Center for Social and Economic Modelling (NATSEM)", "Australian Catholic University", "Questacon", "Department of Defence", "University of Canberra", "Aspect Computing", "Apress", "Apress", "PhD, Computer Science", "BEng, Computer Engineering", "Former board member, former conference director", "The Scout Association of Australia (Scouts Australia)", "The Scout Association of Australia (Scouts Australia)", "St John Ambulance Australia (ACT) Inc", "The Scout Association of Australia (Scouts Australia)", "The Scout Association of Australia (Scouts Australia)", "OpenStack Foundation, License COA-1600-0181-0100"], "ChihebTrabelsi": ["Polytechnique Montral", "Polytechnique Montral", "Polytechnique Montral", "Master of Science (M.Sc.), Computer Science", "", "Licence Fondamentale, Informatique de Gestion"], "CastuloJMartinez": ["Intel Corporation", "IBM", "Master's degree, Electrical and Electronics Engineering, Master's Degree in Electronics Design", "Bachelor of Engineering (B.E.), Electrical and Electronics Engineering"], "AbhishekKekane": ["NTT DATA Americas", "NTT DATA Americas", "IQSPL", "Masters Degree, Computer Management"], "YanisGuenane": ["eNovance from Red Hat", "eNovance", "Freelance", "MNM Consulting", "TechTel21", "Logica", "Epitech", "Six Flags Great America", "Master Technologies de l'information", "Master, Information Technology", "Red Hat, License 150-132-280", "Red Hat, License 150-132-280"], "JinLi": ["GE Capital", "GE Capital", "Citigroup", "IBM", "CFA Institute", "Chinese Institute of Certified Public Accountants", "Member", "Master of Business Administration (MBA), Master of Accounting"], "PavelKirpichyov": ["SIA DYNINNO", "SIA Ambrella", "Partnership Alliance", "Webmedia", "Secondary education, Computer network administration", "Primary education"], "ZonghengYang": ["Google", "AMPLab, UC Berkeley", "Databricks", "Twitter", "UC Berkeley", "Bachelor of Arts (B.A.), Computer Science (Honors program); Mathematics.", ""], "AndyHsiang": ["H&K International", "Agri Ocean Service", "CEVA Logistics", "Express Line Corporation", "Express Line Corporation", "Sino Pearl"], "XiaoqiangZheng": ["Google", "NVIDIA", "Ph.D, Computer Graphics", "B.S, Computer Science"], "EoghanGlynn": ["Red Hat", "Red Hat", "Amazon Web Services", "Red Hat", "Progress Software", "IONA Technologies", "Institute of Technology Tallaght, Dublin", "ICL Fujitsu", "BSc (Joint Honours), Computer Science & Mathematics"], "JoshBleecherSnyder": ["foggy.co", "Braintree", "card.io (Lumber Labs)", "Treeline Labs", "AdCru", "AdMob, Inc.", "Synthese", "MA Philosophy, ABD", "BA", ""], "orhanf": ["Facebook AI Research, Paris", "IBM T.J. Watson Research Center", "University of Montreal Machinie Learning Lab-LISA", "Middle East Technical University - Department of Computer Engineering", "Military Academy - Department of Industrial and Systems Engineering"], "PeteWarden_": ["Goog", "Jetpac", "O'Reilly Media", "OpenHeatMap", "MoveableCode, inc.", "Mailana", "Apple", "PetesPlugins", "Visual Sciences", "BSc, Computer Science"], "slefrancois": ["Montreal Institute for Learning Algorithms (MILA)"], "JamesMorgan": ["Precision Metrics", "Welsbach Electric Corp.", "J.F. White Contracting Co.", "J.F. White Contracting Co.", "PKF-Mark III, Inc.", "Bucks County (PA) Community College", "Gannett Fleming, Inc."], "FabrizioMilo": ["Fabrizio liked", "Fabrizio liked", "Fabrizio liked", "Fabrizio liked", "Fabrizio liked", "Fabrizio liked"], "DeeptiRamakrishna": ["Intel Corporation", "Intel Corporation", "University of Washington", "MindTree", "Masters Degree, Electrical Engineering, 3.95/4.0", "Bachelors Degree, Electronics and Communications Engineering, 79.43/100", "Open Source Technology Center (OTC) at Intel Corporation", "Open Source Technology Center (OTC) at Intel Corporation", "Open Source Technology Center (OTC) at Intel Corporation", "Open Source Technology Center (OTC) at Intel Corporation", "System Validation Engineering (SVE) at Intel Corporation", "System Validation Engineering (SVE) at Intel Corporation", "System Validation Engineering (SVE) at Intel Corporation", "The National Institute of Engineering, India", "Developer", "Rackspace, the #1 managed cloud company"], "CaoXuanHoang": ["SPECCO"], "VaibhavBhatkar": ["Izel Technologies Pvt. Ltd.", "EMC", "Merce Technologies Private Limited", "B.E, Computer Science"], "yobibyte": ["RWTH Aachen University", "Terminal", "hlpme.ru", "CDC.ru", "Imagespark", "Ernst & Young", "RWTH Aachen University"], "ZachPloskey": ["Ploskey Technical", "University of Washington", "University of Washington", "University of Washington Dept. of Earth & Space Sciences", "University of Washington Dept. of Oceanography", "Pacific Northwest National Laboratory", "BAE Systems", "UW Dept. of Earth & Space Sciences", "UW Dept. of Earth & Space Sciences", "UW Dept. of Earth & Space Sciences", "UW Dept. of Earth & Space Sciences", "UW Dept. of Earth & Space Sciences", "Bachelor's Degree, Earth & Space Sciences", "Bachelor's Degree, Anthropology", "Doctor of Philosophy (Ph.D.), Earth & Space Sciences", "", "Rockin' Out"], "MarkWashenberger": ["Nebula, Inc.", "Rackspace Hosting", "Rackspace Hosting", "Rackspace Hosting", "Bachelor of Science (BS), Computer Science, 3.99", "Bachelor of Science (BS), Physics, 3.99", "Bachelor of Science (BS), Mathematics, 3.99"], "ClayGerrard": ["Swift Stack", "Rackspace", "Rackspace Managed Hosting", "Concept Cellular Int'l Inc", "Bachelor of Applied Science (BASc), Computer Science"], "lewuathe": ["The Apache Software Foundation", "Treasure Data", "Yahoo! JAPAN", "Tateno Dennou,Inc.", "Yahoo! JAPAN", "Coursera", "Coursera", ", Information Science", "Japan", "Wiley", "Willey / Wrox"], "MichaelIMandel": ["Brooklyn College, CUNY - Computer & Information Science", "CUNY Graduate Center", "Jelenik Speech and Language Technologies Workshop", "The Ohio State University - Computer Science & Engineering", "Telecom ParisTech - Signal & Image Processing", "Audience, Inc", "University of Montreal - LISA Lab", "Musically Intelligent Machine LLC", "Columbia University - LabROSA", "Boston University - Shinn-Cunningham Lab", "Google, Inc - Google News", "Owl Multimedia", "Bose Corporation", "MIT - CS/AI Lab and Media Lab"], "EdeMeijer": ["Buybrain", "experty", "SNT", "Coursera Course Certificates, Licentienummer YFVBZ7SFULUA", "Coursera Course Certificates, Licentienummer SGJHMT5UPS45", "Coursera Course Certificates, Licentienummer AVKVGZ5XVQ7C"], "JianminChen": ["Google", "Intel Corporation", "University of Florida", "University of Florida", "Motorola Solutions", "ICCD", "IISWC", "IPDPS", "PhD, Computer Engineering", "Bachelor, Computer Science; Computer Science & Technology"], "OlivierMastropietro": ["Montreal Institute for Learning Algorithms (MILA)"], "IldikoVancsa": ["OpenStack", "Ericsson", "Ericsson", "Ericsson", "Ericsson", "OptXware Ltd", "Active Technical Contributor", "Master's degree, Computer Science"], "IcchaSethi": ["Atlassian", "Rackspace, the #1 managed cloud company", "OpenStack", "Rackspace Hosting", "Let's Code Blacksburg!", "Virginia Bioinformatics Institute", "Siemens Technology India", "Rackspace", "Datastores Practice Area, Rackspace", "Rackspace", "Roanoke Blacksburg Technology Council", "Roanoke Blacksburg Technology Council", "Rackspace Blacksburg Office", "Virginia Bioinformatics Institute, Virginia Tech", "Cranwell International Center, Virginia Tech", "SSN College of Engineering, Anna University", "SSN College of Engineering, Anna University", "", "Computer Society of India, SSN Student Chapter", "Anna University", "Grace Hopper Conference", "Talk on \"Deploying Your Application on Public Cloud\" at GHC 2014", "OpenStack @ OpenSource Day at GHC 2014", "WECode Harvard Conference", "OpenSource Day at Grace Hopper Conference", "GNOME Foundation", "Student Opportunity Lab, Grace Hopper Conference", "The National Center for Women & Information Technology (NCWIT)", "Virginia Bioinfomatics Institute - Kids Tech University", "Grace Hopper Conference", "Committee Lead", "Women in Computing Day Co-chair", "Advertising Chair, First Year Representative"], "JustineTunney": ["Google", "Google", "Google", "Occupy Wall Street"], "DinaBelova": ["Materials Chemistry Section, University of Copenhagen", "University of Copenhagen", "Institute of Geology of KRC, RAS", "Scientific Research Institute of Atomic Reactors", "Institute of Geology of KRC, RAS", "Doctor of Philosophy (Ph.D.), Surface chemistry", "Master, Environmental Geochemistry, Hons", "Bachelor, Gelogy, Hons", "RUSMAM", "Crystal Growth and Design", "Journal of Contaminant Hydrology"], "RafaelRivero": ["Verizon", "Verizon Enterprise Solutions", "Verizon", "Verizon", "Verizon Wireless", "Dieste Harmel and Partners", "Digicel USA", "Verizon", "Verizon", "Global Ingenieria", "Verizon", "Verizon", "Marketing Certificate", "MBA, Finance & Telecom"], "medakk": ["Bachelor of Technology, Computer Science Engineering", "PUC, Electronics", "10th ICSE"], "ChrisN": ["Skymind.io - Deep learning for Industry", "FutureAdvisor", "Bloomberg", "New York Times", "Radio France International - English Service", "International Herald Tribune", "Zink Magazine", "International Political Science Association", "Grameen Bank", "Bloomberg News", "Growth", "Bachelor of Arts (B.A.), Economics, Political Science, Magna Cum Laude", "Moments of calm, Zazen", "Philosophy and Political Science", "High School Diploma"], "AbhishekChanda": ["Dell EMC", "Dell EMC", "EMC", "Cloudscaling (acquired by EMC)", "Huawei", "Rutgers University", "Microsoft India (R&D) Pvt Ltd", "United States US20140173018 A1", "Microsoft IT", "Rutgers University", "IEEE NOMEN", "HotMobile poster session", "FutureNet 2012", "European Wireless", "Hack.in", "Master of Science (MS), Electrical and Computer Engineering", "Bachelor of Engineering (BE), Computer Science", "", "Hurricane Electric"], "ErnoKuvaja": ["Red Hat", "Hewlett-Packard Company", "Hewlett Packard", "2nd", ""], "Yuan(Terry)Tang": ["Uptake", "RStudio, Inc.", "DataNovo, Inc.", "Analytical Flavor Systems", "Penn State Department of Mathematics and National Science Foundation", "Penn State Department of Statistics", "Schreyer Honors College", "Schreyer Honors College", "Schreyer Honors College", "HackRPI at Rensselaer Polytechnic Institute", "Capital One", "Google", "Bachelor of science, Mathematics and Computer Science", ""], "JohnSalvatier": ["AI Impacts", "Amazon", "RPX Research, Inc.", "Boise-Cascade", "Boise Cascade", "Capstone Technology", "Kimberly-Clark", "B.S.Ch.E., B.S., Chemical Engineering, Paper Science and Engineering"], "AdamGibson": ["Galvanize Inc", "Skymind.io Deep Learning support services training via deeplearning4j.org", "Zipfian Academy", "CritSend", "Clever Cloud Computing", "Mashape", "ITOxygen", "ITOxygen", "Coursera", "Coursera", "Dropped out, Computer Science/Data Science MIS, 3"], "MatthewBooth": ["Connectivity, Inc.", "BIA Kelsey", "BIAKelsey", "Done Right (Perform Local, Inc)", "Citysearch"], "MathieuGermain": ["Universit de Montral", "Invup", "SherWeb", "Technische Universitt Darmstadt", "Universit de Sherbrooke", "Nuance Communications", "Canadian Space Agency", "cole Secondaire Champagnat", "Centre Prvention Suicide", "Coursera", "Master of Science (MS), Deep Learning", "Bachelor, Computer Science"], "DavanumSrinivas": ["MBA", "M.Sc. (Tech), Information Systems"], "SaizhengZhang": ["Maluuba", "Microsoft Research Redmond", "Deepglint", "Carnegie Mellon University Silicon Valley", "Doctor of Philosophy (Ph.D.), Computer Science", "Bachelor of Engineering (BEng), Electronic Engineering and Information Science"], "CindyPallares": ["Wells Fargo Financial", ""], "hantek": ["Montreal Institute for Learning Algorithms (MILA)"], "GeoffreyIrving": ["Google Brain", "Eddy Systems", "Otherlab", "Weta Digital", "D. E. Shaw Research", "Pixar Animation Studios", "United States US8290757 B2", "United States", "United States", "Proceeding SIGGRAPH '08 ACM SIGGRAPH 2008 talks"], "AlexeyGalkin": ["IBM", "IBM", "IBM", "IBM", "Bachelor's Degree, Computational and Applied Mathematics"], "DanielRenshaw": ["Master of Philosophy (MPhil), Machine learning (esp. neural networks), speech technologies, and natural language processing", "BSc (honours), Artificial Intelligence & Computer Science, 1st", "IEEE International Conference on Acoustics, Speech, and Signal Processing (ICASSP)", "INTERSPEECH 2015: 16th Annual Conference of the International Speech Communication Association (to appear)"], "JamesBergstra": ["Kindred.ai", "University of Waterloo", "Harvard University", "Universit de Montral", "I-mmersion Studios Inc.", "Ph.D., Computer Science", "M.Sc., Computer Science", "B.Sc., Math, Philosophy, Computer Science", "B.Sc., Math, Philosophy, Comp Sci", "B.Sc., Math, Philosophy, Comp Sci", "", "", ""], "JonathanHseu": ["Google", "Dropbox", "Google"], "JoshPatterson": ["Josh liked", "Josh liked", "Josh liked", "Josh liked", "Josh liked", "Josh shared", "Skymind.io - Deep learning for Industry", "Relish", "Skymind.io - Deep learning for Industry", "O'Reilly Media", "Patterson Consulting of TN", "Continuuity", "Cloudera", "Cloudera", "Cloudera", "Tennessee Valley Authority", "University of Tennessee at Chattanooga", "LEWCON, LLC", "Cerillian", "USXpress", "Realty Center, GMAC", "", "IAAI-09"], "EricWindisch": ["Docker, Inc", "Cloudscaling (acquired by EMC Corp)", "GrokThis.net", "Harris Computer Systems", "Site5 Internet Solutions, Inc.", "BurstNET Technologies, Inc.", "OpenStack Foundation", ""], "RohanJain": ["Google", "Microsoft - Bing, Machine Learning Div", "Tryst - 2008, IIT Delhi's technical festival", "Indian Institue of Technoloy, Delhi", "Network Appliance Inc"], "PatrickNguyen_": [], "LouisTaylor": ["Paulson & Co.", "Deutsche Bank Equity Research", "Prudential Securities", "Real Estate Private Equity", "Board Member", "Member", "Member", "President, Co-Founder, Board Chair", "President, Co-Founder, Board Chair", "President, Board Chair", "Board Member and Coach", "Board member, Treasurer"], "NikhilKomawar": ["IBM", "OpenStack", "OpenStack", "Rackspace", "Rackspace", "Virginia Tech", "Verizon Data Services", "University of Tuebingen", "Head Organizer", "Student Teaching Student", "Masters Degree, Computer Science", "Bachelor of Technology, Computer Science and Engineering", "", "Virginia Tech", "Indian Institute of Technology, Guwahati", "GNOME Foundation", "Score: Top 0.3%", "Score: Top 0.3%"], "PeteWarden": ["Google", "Jetpac", "O'Reilly Media", "OpenHeatMap", "MoveableCode, inc.", "Mailana", "Apple", "PetesPlugins", "Visual Sciences", "BSc, Computer Science"], "DavidWarde-Farley": ["DeepMind", "Universit de Montral", "Google", "Google", "Citizen Lab", "PhD, Computer Science", "M. Sc., Computer Science", "Hon. B. Sc., Computer Science, Statistics", ""], "RomanBogorodskiy": ["Mirantis", "The Apache Software Foundation", "FreeBSD", "Grid Dynamics", "Grid Dynamics Consulting", "Renet Com", "Fannet Telecom", "MSc, Mechanics and Mathematics"], "SamStavinoha": ["The Dow Chemical Company", "Kappa Kappa Gamma", "The Dow Chemical Company", "Kappa Kappa Gamma", "Hearst Magazines", "Bachelor of Science (B.S.), Advertising", "Girls on the Run International", "Reading Is Fundamental"], "DavidKoo": ["Groundworks Office", "David Koo", "UC Berkeley", "Melndrez", "Hogle-Ireland", "City of Ontario", "City of Walnut", "Masters Degree, Landscape Architecture", "Bachelors Degree, Educational; Urban & Regional Planning"], "BartvanMerrienboer": ["Twitter", "Facebook", "Self-Employed", "TEDxWarwick", "AIESEC", "GroeneKruis Domicura", "Paris International Model United Nations (PIMUN)", "European Commission", "SOS Children's Villages", "Doctor of Philosophy (Ph.D.), Machine learning, A", "Master of Science (MSc), Complex Systems Science (Erasmus Mundus), A", "Master of Science (MSc), Complex Systems Science (Erasmus Mundus), GPA 3.9/4.0", "Bachelor of Science (BSc), Mathematics and Business Studies, First Class Honours", "Business, Israeli politics, Middle Eastern history, Ethics, A (93%)"], "CyprienNoel": ["Flickr (Yahoo)", "Stanford University & NVIDIA Tech Talks", "NVIDIA GTC 2015", "H2O.ai (0xData)", "ObjectFabric", "Strange Loop 2011", "Self", "JavaOne 2010", "C3S2E10", "SmartTrade Technologies USA", "SmartTrade Technologies", "LORIA - Lorraine laboratory of computer science - Cortex Team", "ACM", "Masters, Engineering & Computer Science"], "SamMorrison": ["TBWA\\Media Arts Lab", "Laundry Service", "Kaltura", "Alphaserve Technologies", "Bachelor of Science (B.S.), Information Management and Technology, GPA 3.7 Within Major", "Continuing Education, Advertising", "Enitiative", "CenterState CEO", "Communications Officer"], "GuillaumeDesjardins": ["Google DeepMind", "DeepMind Technologies", "Doctor of Philosophy (Ph.D.), Computer Science (in progress)", "Master's degree, Computer Science", "Bachelor of Engineering (B.Eng.), Computer Engineering"], "PaulChristiano": ["Theory of Computing Group - UC Berkeley"], "JasonKoelker": ["WELBRO Building Corporation"], "FlavioPercoco": ["Red Hat", "OpenStack", "OpenStack", "OpenStack", "Red Hat", "Red Hat", "The Net Planet Europe", "Reitek S.p.A.", "Humanitarian FOSS Project", "DST PDVSA", "Fundacite"], "lukeiwanski": ["Codeplay Software Ltd", "Codeplay Software Ltd", "Codeplay Software Ltd", "Heehaw Digital", "Games Development"], "VadimMazalov": ["Microsoft", "Amazon", "Microsoft", "Western University", "Quantica Trading (formerly Embium)", "Western University", "Microsoft", "Peter-Service", "Ziiva Information Technology", "Oracle", "Oracle", "Oracle", "Project Euler"], "VishvanandaIshaya": ["Oracle", "OpenStack", "Datera", "Nebula, Inc.", "OpenStack", "Nebula, Inc.", "OpenStack", "Rackspace Hosting", "NASA Ames Research Center"], "AndrewHarp": ["Google", "Google", "Midway Games", "IBM", "IBM", "MS, Computer Science", "Bachelor of Science, Computer Science"], "Chmouel_Boudjnah": ["Red Hat", "Duolingo"], "FanZiye(t13m)": ["Theano Development Community", "Great Wall Computer Software And Systems Inc., Ltd.", "Master's degree, Machine Intelligence (School of EECS)", "Bachelor's degree, EE (School of EECS)"], "raver119": ["Skymind.io"] } From 3c2dfd1ffc20413e9f0abf2c7703fbce87962c99 Mon Sep 17 00:00:00 2001 From: kuannie1 Date: Wed, 10 May 2017 01:53:57 -0400 Subject: [PATCH 3/3] finished affiliation --- .../Untitled-checkpoint.ipynb | 89 ------- .../CNTK_frequentcommitters.json | 1 - .../Theano_frequentcommitters.json | 1 - company-affiliation/Untitled.ipynb | 89 ------- .../affiliation_calculation.py | 249 ++++++++++++++++++ .../affiliation_helperfunctions.py | 210 --------------- .../caffe_frequentcommitters.json | 1 - company-affiliation/committer_linkedin.py | 44 ---- company-affiliation/companyaffiliation.json | 2 +- .../deeplearning4j_frequentcommitters.json | 1 - company-affiliation/geckodriver.log | 185 +++++++++++++ company-affiliation/readme.md | 26 +- company-affiliation/removing_duplicates.py | 65 ----- .../tensorflow_frequentcommitters.json | 1 - 14 files changed, 451 insertions(+), 513 deletions(-) delete mode 100644 company-affiliation/.ipynb_checkpoints/Untitled-checkpoint.ipynb delete mode 100644 company-affiliation/CNTK_frequentcommitters.json delete mode 100644 company-affiliation/Theano_frequentcommitters.json delete mode 100644 company-affiliation/Untitled.ipynb create mode 100644 company-affiliation/affiliation_calculation.py delete mode 100644 company-affiliation/affiliation_helperfunctions.py delete mode 100644 company-affiliation/caffe_frequentcommitters.json delete mode 100644 company-affiliation/committer_linkedin.py delete mode 100644 company-affiliation/deeplearning4j_frequentcommitters.json create mode 100644 company-affiliation/geckodriver.log delete mode 100644 company-affiliation/removing_duplicates.py delete mode 100644 company-affiliation/tensorflow_frequentcommitters.json diff --git a/company-affiliation/.ipynb_checkpoints/Untitled-checkpoint.ipynb b/company-affiliation/.ipynb_checkpoints/Untitled-checkpoint.ipynb deleted file mode 100644 index 5cfc9a8..0000000 --- a/company-affiliation/.ipynb_checkpoints/Untitled-checkpoint.ipynb +++ /dev/null @@ -1,89 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 2, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [ - "import json\n", - "def findHistory(name):\n", - "\tpersonalHistory = []\n", - "\treadablename = name.split(\" \")\n", - "\t# print readablename\n", - "\ttry:\n", - "\t\tname_key = \"\"\n", - "\t\tif len(readablename) == 3:\n", - "\t\t\tname_key += '{}{}{}'.format(readablename[0], readablename[1], readablename[2])\n", - "\t\telif len(readablename) == 2:\n", - "\t\t\tname_key += '{}{}'.format(readablename[0], readablename[1])\n", - "\t\telif len(readablename) == 1:\n", - "\t\t\tname_key += '{}'.format(readablename[0])\n", - "\t\telif len(readablename) == 4:\n", - "\t\t\tname_key += '{}{}{}{}'.format(readablename[0], readablename[1], readablename[2], readablename[3])\n", - "\t\twith open('companyaffiliation.json', 'r') as data_file:\n", - "\t\t\tdata = json.load(data_file)\n", - "\t\t\t# print data_file\n", - "\t\t\ttry:\n", - "\t\t\t\t# print data[name_key]\n", - "\t\t\t\tprint data\n", - "\t\t\t\tprint name_key\n", - "\t\t\t\treturn data[name_key]\n", - "\t\t\texcept KeyError, Argument:\n", - "\t\t\t\tpending.append(name)\n", - "\texcept IOError, Argument:\n", - "\t\tprint \"companyaffiliation.json doesn't exist yet\", Argument\n", - "\texcept UnicodeEncodeError, Argument:\n", - "\t\tpending.append(name)\n", - "\t\tprint \"we can't decode {}\".format(name), Argument" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "metadata": { - "collapsed": false - }, - "outputs": [ - { - "ename": "NameError", - "evalue": "global name 'json' is not defined", - "output_type": "error", - "traceback": [ - "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[1;31mNameError\u001b[0m Traceback (most recent call last)", - "\u001b[1;32m\u001b[0m in \u001b[0;36m\u001b[1;34m()\u001b[0m\n\u001b[1;32m----> 1\u001b[1;33m \u001b[1;32mprint\u001b[0m \u001b[0mfindHistory\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;34m\"Frédéric Bastien\"\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m", - "\u001b[1;32m\u001b[0m in \u001b[0;36mfindHistory\u001b[1;34m(name)\u001b[0m\n\u001b[0;32m 14\u001b[0m \u001b[0mname_key\u001b[0m \u001b[1;33m+=\u001b[0m \u001b[1;34m'{}{}{}{}'\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mformat\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mreadablename\u001b[0m\u001b[1;33m[\u001b[0m\u001b[1;36m0\u001b[0m\u001b[1;33m]\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mreadablename\u001b[0m\u001b[1;33m[\u001b[0m\u001b[1;36m1\u001b[0m\u001b[1;33m]\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mreadablename\u001b[0m\u001b[1;33m[\u001b[0m\u001b[1;36m2\u001b[0m\u001b[1;33m]\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mreadablename\u001b[0m\u001b[1;33m[\u001b[0m\u001b[1;36m3\u001b[0m\u001b[1;33m]\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 15\u001b[0m \u001b[1;32mwith\u001b[0m \u001b[0mopen\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;34m'companyaffiliation.json'\u001b[0m\u001b[1;33m,\u001b[0m \u001b[1;34m'r'\u001b[0m\u001b[1;33m)\u001b[0m \u001b[1;32mas\u001b[0m \u001b[0mdata_file\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m---> 16\u001b[1;33m \u001b[0mdata\u001b[0m \u001b[1;33m=\u001b[0m \u001b[0mjson\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mload\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mdata_file\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m 17\u001b[0m \u001b[1;31m# print data_file\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 18\u001b[0m \u001b[1;32mtry\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n", - "\u001b[1;31mNameError\u001b[0m: global name 'json' is not defined" - ] - } - ], - "source": [ - "print findHistory(\"Frédéric Bastien\")" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 2", - "language": "python", - "name": "python2" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 2 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython2", - "version": "2.7.6" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} diff --git a/company-affiliation/CNTK_frequentcommitters.json b/company-affiliation/CNTK_frequentcommitters.json deleted file mode 100644 index b528603..0000000 --- a/company-affiliation/CNTK_frequentcommitters.json +++ /dev/null @@ -1 +0,0 @@ -{"affiliated": ["Frank Seide", "Willi Richert", "jeanfad", "Amit Agarwal", "Eldar Akchurin", "Mark Hillebrand", "Qiwei Ye", "William Darling", "kaisheny", "Thilo Will", "Alexey Kamenev", "Nikos Karampatziakis", "Zhou Wang", "Clemens Marschner", "Jasha Droppo", "Gaizka Navarro", "frankseide", "Alexey Orlov", "Philipp Kranen"], "overall": ["Frank Seide", "Willi Richert", "jeanfad", "Amit Agarwal", "Eldar Akchurin", "Project Philly", "Mark Hillebrand", "Qiwei Ye", "Dong Yu", "William Darling", "kaisheny", "Thilo Will", "Alexey Kamenev", "Ivan Rodriguez", "Alexey Reznichenko", "Nikos Karampatziakis", "Zhou Wang", "Clemens Marschner", "bmitra", "Yu", "Jasha Droppo", "KeDengMS", "Gaizka Navarro", "frankseide", "thhoens", "Alexey Orlov", "Philipp Kranen", "Chris Basoglu", "Emad Barsoum"]} \ No newline at end of file diff --git a/company-affiliation/Theano_frequentcommitters.json b/company-affiliation/Theano_frequentcommitters.json deleted file mode 100644 index ec44dd3..0000000 --- a/company-affiliation/Theano_frequentcommitters.json +++ /dev/null @@ -1 +0,0 @@ -{"frequent": ["sentient07", "Caglar", "Christof Angermueller", "abalkin", "Dustin Webb", "Eric Larsen", "Hengjean", "Gijs van Tulder", "f0k", "Tanjay94", "Arnaud Bergeron", "Iban Harlouchet", "Pierre Luc Carrier", "Nicolas Ballas", "khaotik", "Yann N. Dauphin", "Matthew Rocklin", "Joseph Turian", "Jeremiah Lowin", "Razvan Pascanu", "desjagui@atchoum.iro.umontreal.ca", "Roy Xue", "Mohammad Pezeshki", "Olivier Breuleux", "amrithasuresh", "notoraptor", "Sina Honari", "Chiheb Trabelsi", "Benjamin Scellier", "David Warde-Farley", "ChienliMa", "Tim Cooijmans", "Ian Goodfellow", "Amjad Almahairi", "Pascal Lamblin", "--global", "slefrancois", "Olivier Delalleau", "James Bergstra", "Fr\u00e9d\u00e9ric Bastien", "Reyhane Askari", "Nicolas Bouchard", "Cesar Laurent"]} \ No newline at end of file diff --git a/company-affiliation/Untitled.ipynb b/company-affiliation/Untitled.ipynb deleted file mode 100644 index 5cfc9a8..0000000 --- a/company-affiliation/Untitled.ipynb +++ /dev/null @@ -1,89 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 2, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [ - "import json\n", - "def findHistory(name):\n", - "\tpersonalHistory = []\n", - "\treadablename = name.split(\" \")\n", - "\t# print readablename\n", - "\ttry:\n", - "\t\tname_key = \"\"\n", - "\t\tif len(readablename) == 3:\n", - "\t\t\tname_key += '{}{}{}'.format(readablename[0], readablename[1], readablename[2])\n", - "\t\telif len(readablename) == 2:\n", - "\t\t\tname_key += '{}{}'.format(readablename[0], readablename[1])\n", - "\t\telif len(readablename) == 1:\n", - "\t\t\tname_key += '{}'.format(readablename[0])\n", - "\t\telif len(readablename) == 4:\n", - "\t\t\tname_key += '{}{}{}{}'.format(readablename[0], readablename[1], readablename[2], readablename[3])\n", - "\t\twith open('companyaffiliation.json', 'r') as data_file:\n", - "\t\t\tdata = json.load(data_file)\n", - "\t\t\t# print data_file\n", - "\t\t\ttry:\n", - "\t\t\t\t# print data[name_key]\n", - "\t\t\t\tprint data\n", - "\t\t\t\tprint name_key\n", - "\t\t\t\treturn data[name_key]\n", - "\t\t\texcept KeyError, Argument:\n", - "\t\t\t\tpending.append(name)\n", - "\texcept IOError, Argument:\n", - "\t\tprint \"companyaffiliation.json doesn't exist yet\", Argument\n", - "\texcept UnicodeEncodeError, Argument:\n", - "\t\tpending.append(name)\n", - "\t\tprint \"we can't decode {}\".format(name), Argument" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "metadata": { - "collapsed": false - }, - "outputs": [ - { - "ename": "NameError", - "evalue": "global name 'json' is not defined", - "output_type": "error", - "traceback": [ - "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[1;31mNameError\u001b[0m Traceback (most recent call last)", - "\u001b[1;32m\u001b[0m in \u001b[0;36m\u001b[1;34m()\u001b[0m\n\u001b[1;32m----> 1\u001b[1;33m \u001b[1;32mprint\u001b[0m \u001b[0mfindHistory\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;34m\"Frédéric Bastien\"\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m", - "\u001b[1;32m\u001b[0m in \u001b[0;36mfindHistory\u001b[1;34m(name)\u001b[0m\n\u001b[0;32m 14\u001b[0m \u001b[0mname_key\u001b[0m \u001b[1;33m+=\u001b[0m \u001b[1;34m'{}{}{}{}'\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mformat\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mreadablename\u001b[0m\u001b[1;33m[\u001b[0m\u001b[1;36m0\u001b[0m\u001b[1;33m]\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mreadablename\u001b[0m\u001b[1;33m[\u001b[0m\u001b[1;36m1\u001b[0m\u001b[1;33m]\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mreadablename\u001b[0m\u001b[1;33m[\u001b[0m\u001b[1;36m2\u001b[0m\u001b[1;33m]\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mreadablename\u001b[0m\u001b[1;33m[\u001b[0m\u001b[1;36m3\u001b[0m\u001b[1;33m]\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 15\u001b[0m \u001b[1;32mwith\u001b[0m \u001b[0mopen\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;34m'companyaffiliation.json'\u001b[0m\u001b[1;33m,\u001b[0m \u001b[1;34m'r'\u001b[0m\u001b[1;33m)\u001b[0m \u001b[1;32mas\u001b[0m \u001b[0mdata_file\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m---> 16\u001b[1;33m \u001b[0mdata\u001b[0m \u001b[1;33m=\u001b[0m \u001b[0mjson\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mload\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mdata_file\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m 17\u001b[0m \u001b[1;31m# print data_file\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 18\u001b[0m \u001b[1;32mtry\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n", - "\u001b[1;31mNameError\u001b[0m: global name 'json' is not defined" - ] - } - ], - "source": [ - "print findHistory(\"Frédéric Bastien\")" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 2", - "language": "python", - "name": "python2" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 2 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython2", - "version": "2.7.6" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} diff --git a/company-affiliation/affiliation_calculation.py b/company-affiliation/affiliation_calculation.py new file mode 100644 index 0000000..78bd782 --- /dev/null +++ b/company-affiliation/affiliation_calculation.py @@ -0,0 +1,249 @@ +# This Python file uses the following encoding: utf-8 +#-*- coding: utf-8 -*- +import os, sys +from selenium.webdriver.common.desired_capabilities import DesiredCapabilities +firefox_capabilities = DesiredCapabilities.FIREFOX +firefox_capabilities['marionette'] = True +firefox_capabilities['binary'] = '/usr/bin/firefox' +from selenium import webdriver +from selenium.common.exceptions import NoSuchElementException +from selenium.webdriver.common.keys import Keys +from datetime import datetime, time +from pattern.web import * +from pattern.web import URL, extension, download +from sets import Set +import json +import re +import csv +import unicodedata + +stack_committercount_dict = {"cinder": "cinder-openstack-dict.csv", "glance": "glance-openstack-dict.csv", "horizon": "horizon-openstack-dict.csv","keystone": "keystone-openstack-dict.csv", "neutron": "neutron-openstack-dict.csv", "nova": "nova-openstack-dict.csv", "swift": "swift-openstack-dict.csv", "cloudstack": "cloudstack-apache-dict.csv"} +ml_committercount_dict = {"Theano": "Theano-Theano-dict.csv", "CNTK": "CNTK-Microsoft-dict.csv", "caffe": "caffe-BVLC-dict.csv", "deeplearning4j": "deeplearning4j-deeplearning4j-dict.csv", "tensorflow": "tensorflow-tensorflow-dict.csv"} + + +""" +Opens the csv file specified and loads the result into a dictionary + +input: a filename +output: a python dictionary with names as keys and commit counts as values +""" +def obtainCommittersandCount(repocommitfile): + filepath = "/home/anne/github-research/committer_csvs" + name_commits_dict = {} + for root, _, files in os.walk(filepath): + for f in files: + fullpath = os.path.join(root, f) + if (f == repocommitfile): + try: + with open(fullpath, "rt") as f_obj: + reader = csv.reader(f_obj) + for row in reader: + name = row[0].decode('utf-8') + commitcount = int(row[1]) + name_commits_dict[name] = commitcount + except ValueError: + print fullpath, " has this error: ", ValueError + except TypeError: + print fullpath, " has this error: ", TypeError + return name_commits_dict + +""" +Calculates what 10% of the # of committers for a repo is + +input: a filename (string), a percentage (int or float, like 10 or 10.0 for 10%) +output: 10% of the # of committers +""" +def num_of_percent(repocommitfile, percent): + name_commits_dict = obtainCommittersandCount(repocommitfile) + if (percent > 100) or ((type(percent) != int) and (type(percent) != float)): + print "\ninvalid percentage. Try again\n" + return 0 + return int(len(name_commits_dict)*(percent*.01)) + +""" +Gets the number of commits a person has for this particular project + +input: name of committer (string), the repo's committer count filename (string representing .csv file) +output: number of commits by committer, if any +""" +def findNumCommits(name, repocommitfile): + name_commits_dict = obtainCommittersandCount(repocommitfile) + try: + if (type(name) == str): + return name_commits_dict[name] + elif (type(name) == unicode): + return name_commits_dict[name.decode("utf-8")] + except KeyError, Argument: + return 0 + +""" +Finds the available company affiliation of the committer + +input: committer's name (string) +output: organizations this person worked at (list) +""" +def findHistory(name): + pending = [] + personalHistory = [] + readablename = name.split(" ") + + try: + name_key = "" + if len(readablename) == 3: + name_key += '{}{}{}'.format(readablename[0], readablename[1], readablename[2]) + elif len(readablename) == 2: + name_key += '{}{}'.format(readablename[0], readablename[1]) + elif len(readablename) == 1: + name_key += '{}'.format(readablename[0]) + elif len(readablename) == 4: + name_key += '{}{}{}{}'.format(readablename[0], readablename[1], readablename[2], readablename[3]) + + name_key_unicode = name_key.decode('utf-8') + + with open('companyaffiliation.json', 'r') as data_file: + data = json.load(data_file) + # print data_file + try: + return data[name_key_unicode] + except KeyError, Argument: + return + except IOError, Argument: + print "companyaffiliation.json doesn't exist yet", Argument + except UnicodeEncodeError, Argument: + pending.append(name) + print "we can't decode {}".format(name), Argument + +""" +Gets a list of the most prolific committers in the repo + +input: repocommitfile(string representing name of csv file input), percent(int or float, the top percent of commiters we want) +output: a list of the most prolific committers in top 'percent' percent +""" +def frequentcommitters(repocommitfile, percent): + name_commits_dict = obtainCommittersandCount(repocommitfile) + num_percent = num_of_percent(repocommitfile, percent) + # Loop through name_commits_dict num_percent times. (Inefficient, I know) + committers = [] + count_max = 1 + # get the values (commit count) of the dictionary + commit_number_list = sorted(name_commits_dict.values())[-1*num_percent:] + for name in name_commits_dict: + count = name_commits_dict[name] + if (count in commit_number_list): + committers.append(name) + return committers + +""" +Finds the # of prolific committers affiliated with the repo's organization +(for example, how many of tensorflow's committers are affiliated with Google?) + +input: the repo's committer count filename (string representing .csv file), the repo's name (string), percent (float or int, representing top % of prolificcommitters) +output: the committers who are affiliated with the repo's organization (list) +""" +def findNumEmployees(companyfile, repo, percent): + employeeList = [] + # company is the phrase to look for in the linkedin data or email domain association + association = {"tensorflow":["oogle", "Google"], \ + "CNTK": ["icrosoft", "Microsoft"], \ + "deeplearning4j": ["kymind", "Skymind.io"], \ + "Theano": ["Montr", "Univ. of Montreal"], \ + "caffe": ["erkeley", "Berkeley Vision and Learning Center"], \ + "cinder": ["penstack", "Openstack"], \ + "cloudstack": ["pache", "Apache Foundation"], \ + "glance": ["penstack", "Openstack"], \ + "horizon": ["penstack", "Openstack"], \ + "keystone": ["penstack", "Openstack"], \ + "neutron": ["penstack", "Openstack"], \ + "nova": ["penstack", "Openstack"], \ + "swift": ["penstack", "Openstack"] + } + + company_searchterm = association[repo][0] + company = association[repo][1] + committers_list = frequentcommitters(companyfile, percent) + #looping through frequentcommitters to see if this person has worked at the company + for name_index in range(len(committers_list)): + name = committers_list[name_index] + name_unicode = name.encode("utf-8") + personalHistory = findHistory(name_unicode) #pulls up the personal work history of this person + if personalHistory == None: + continue + else: + for alist_index in range(len(personalHistory)): + currentCompany = personalHistory[alist_index] #a list in the form of [company, dates] + if (company_searchterm in currentCompany): + employeeList.append(name) + # So we don't double count: + break + jsondict = {} + jsondict[percent] = {} + jsondict[percent]["frequent"] = [len(committers_list), committers_list] + jsondict[percent]["affiliated"] = [len(employeeList), employeeList] + try: + affiliated_over_overall = (len(employeeList)*100.0)/len(committers_list) + print "Out of top {} percent of {}'s committers, at least {} percent of them are affiliated with {}".format(percent, repo, affiliated_over_overall, company) + except ZeroDivisionError, Argument: + print "More Commit Data needed for {}'s commits".format(repo) + + return employeeList + +""" +Optional Helper Function +Scrapes the committer's linkedin profile and stores it into the file, companyaffiliation.json + +input: committer's name (string), url of committer's linkedin profilei (string) +output: committer's name and work history (a tuple containing a string and a list) +""" +def getLinkedInInfo(name, url): + driver = webdriver.Firefox(capabilities=firefox_capabilities) + driver.get(url) + time.sleep(2) + title = driver.title + orgs_worklife = driver.find_elements_by_class_name("item-subtitle") + dateranges = driver.find_elements_by_class_name("date-range") + orgsAndCompanies = [] + for i in range(len(dateranges)): + try: + daterange = dateranges[i] + one_daterange = daterange.text.encode('ascii', 'ignore').decode('ascii') + # print i + one_org = orgs_worklife[i].text.encode('ascii', 'ignore').decode('ascii') + # print one_org + orgsAndCompanies.append((one_org, one_daterange)) + except IndexError as e: + break + driver.quit() + readablename = name.encode("utf-8").split(" ") + try: + name_key = "" + if len(readablename) == 3: + name_key += '{}{}{}'.format(readablename[0], readablename[1], readablename[2]) + elif len(readablename) == 2: + name_key += '{}{}'.format(readablename[0], readablename[1]) + elif len(readablename) == 1: + name_key += '{}'.format(readablename[0]) + elif len(readablename) == 4: + name_key += '{}{}{}{}'.format(readablename[0], readablename[1], readablename[2], readablename[3]) + name_key += "\n" + name_key_unicode = name_key.decode('utf-8') + + with open('companyaffiliation.json', 'r') as data_file: + affiliations = json.load(data_file) + affiliations[name_key] = orgsAndCompanies + + with open('companyaffiliation.json', 'w') as data_file: + json.dump(affiliations, data_file) + except IOError, Argument: + print "companyaffiliation.json doesn't exist yet", Argument + except UnicodeEncodeError, Argument: + print "we can't decode {}".format(name), Argument + return name, orgsAndCompanies + +if __name__ == '__main__': + stack_committercount_dict = {"cinder": "cinder-openstack-dict.csv", "glance": "glance-openstack-dict.csv", "horizon": "horizon-openstack-dict.csv","keystone": "keystone-openstack-dict.csv", "neutron": "neutron-openstack-dict.csv", "nova": "nova-openstack-dict.csv", "swift": "swift-openstack-dict.csv", "cloudstack": "cloudstack-apache-dict.csv"} + ml_committercount_dict = {"Theano": "Theano-Theano-dict.csv", "CNTK": "CNTK-Microsoft-dict.csv", "caffe": "caffe-BVLC-dict.csv", "deeplearning4j": "deeplearning4j-deeplearning4j-dict.csv", "tensorflow": "tensorflow-tensorflow-dict.csv"} + percent = 100 + for repo in ml_committercount_dict: + csv_file = ml_committercount_dict[repo] + findNumEmployees(csv_file, repo, percent) + print "\n" \ No newline at end of file diff --git a/company-affiliation/affiliation_helperfunctions.py b/company-affiliation/affiliation_helperfunctions.py deleted file mode 100644 index 7d6f74c..0000000 --- a/company-affiliation/affiliation_helperfunctions.py +++ /dev/null @@ -1,210 +0,0 @@ -# This Python file uses the following encoding: utf-8 -#-*- coding: utf-8 -*- -import os, sys - -from selenium.webdriver.common.desired_capabilities import DesiredCapabilities -firefox_capabilities = DesiredCapabilities.FIREFOX -firefox_capabilities['marionette'] = True -firefox_capabilities['binary'] = '/usr/bin/firefox' -from selenium import webdriver -from selenium.common.exceptions import NoSuchElementException -from selenium.webdriver.common.keys import Keys -from datetime import datetime, time -from pattern.web import * -from pattern.web import URL, extension, download -from sets import Set -import json -import re -import csv -import unicodedata - -# PATHtoLinkedInJSONs = "/home/anne/github-research/company-affiliation/resources/linkedin_info/" - -DEBUG = True -pending = [] - -def obtainCommittersandCount(companyfile): - filepath = "/home/anne/github-research/committer_csvs" - name_commits_dict = {} - for root, _, files in os.walk(filepath): - for f in files: - fullpath = os.path.join(root, f) - if (f == companyfile): - try: - with open(fullpath, "rt") as f_obj: - reader = csv.reader(f_obj) - for row in reader: - name = row[0].decode('utf-8') - commitcount = int(row[1]) - name_commits_dict[name] = commitcount - except ValueError: - print fullpath, " has this error: ", ValueError - except TypeError: - print fullpath, " has this error: ", TypeError - return name_commits_dict - -def num_of_percent(companyfile, percent): - name_commits_dict = obtainCommittersandCount(companyfile) - if (percent > 100): - print "\ninvalid percentage. Try again\n" - return 0 - return int(len(name_commits_dict)*(percent*.01)) - -""" -Gets the number of commits this person has for this particular project -""" -def findNumCommits(name, companyfile): - name_commits_dict = obtainCommittersandCount(companyfile) - return name_commits_dict[name] - -# Find this person's work history if it's saved. If not, save it to a file called "pending" -def findHistory(name): - global pending - personalHistory = [] - readablename = name.split(" ") - # print readablename - try: - name_key = "" - if len(readablename) == 3: - name_key += '{}{}{}'.format(readablename[0], readablename[1], readablename[2]) - elif len(readablename) == 2: - name_key += '{}{}'.format(readablename[0], readablename[1]) - elif len(readablename) == 1: - name_key += '{}'.format(readablename[0]) - elif len(readablename) == 4: - name_key += '{}{}{}{}'.format(readablename[0], readablename[1], readablename[2], readablename[3]) - with open('companyaffiliation.json', 'r') as data_file: - data = json.load(data_file) - # print data_file - try: - # print data[name_key] - print data - print name_key - return data[name_key] - except KeyError, Argument: - pending.append(name) - except IOError, Argument: - print "companyaffiliation.json doesn't exist yet", Argument - except UnicodeEncodeError, Argument: - pending.append(name) - print "we can't decode {}".format(name), Argument - -""" -Helper function: get the top 10% of committers at a company and saves it to a file -""" -def frequentcommitters(companyfile, company, percent): - name_commits_dict = obtainCommittersandCount(companyfile) - num_percent = num_of_percent(companyfile, percent) - # Loop through name_commits_dict num_percent times. (Inefficient, I know) - committers = [] - count_max = 1 - # get the values (commit count) of the dictionary - commit_number_list = sorted(name_commits_dict.values())[-1*num_percent:] - print commit_number_list - for name in name_commits_dict: - count = name_commits_dict[name] - if (count in commit_number_list): - committers.append(name) - jsondict = {"frequent": committers} - with open('{}_frequentcommitters.json'.format(company), 'w') as f: - json.dump(jsondict, f) - return jsondict - -#Emergency linkedin processing. if we ever need this method again -def getLinkedInInfo(name, url): - driver = webdriver.Firefox(capabilities=firefox_capabilities) - if DEBUG: - print driver - driver.get(url) - time.sleep(2) - title = driver.title - orgs_worklife = driver.find_elements_by_class_name("item-subtitle") - dateranges = driver.find_elements_by_class_name("date-range") - orgsAndCompanies = [] - for i in range(len(dateranges)): - try: - daterange = dateranges[i] - one_daterange = daterange.text.encode('ascii', 'ignore').decode('ascii') - # print i - one_org = orgs_worklife[i].text.encode('ascii', 'ignore').decode('ascii') - # print one_org - orgsAndCompanies.append((one_org, one_daterange)) - except IndexError as e: - break - driver.quit() - time.sleep(2) - readablename = name.encode("utf-8").split(" ") - fileOpener = "" - if (len(readablename) == 1): - fileOpener += PATHtoLinkedInJSONs + '{}_linkedin.json'.format(readablename[0]) - elif (len(readablename) == 2): - fileOpener += PATHtoLinkedInJSONs + '{}{}_linkedin.json'.format(readablename[0], readablename[1]) - elif (len(readablename) == 3): - fileOpener += PATHtoLinkedInJSONs + '{}{}{}_linkedin.json'.format(readablename[0], readablename[1], readablename[2]) - elif (len(readablename) == 4): - fileOpener += PATHtoLinkedInJSONs + '{}{}{}_linkedin.json'.format(readablename[0], readablename[1], readablename[2], readablename[3]) - f = open(fileOpener, 'w') - json.dump(orgsAndCompanies, f) - f.close() - return name + str(orgsAndCompanies) - -#Given company & work history, look for the word "Tensorflow", or "Google" for the tensorflow project -#Look for "CNTK" or "Microsoft" for the CNTK project -def findNumEmployees(companyfile, repo, percent): - numEmployees = 0 - employeeList = [] - company = "" - # company is the phrase to look for in the linkedin data or email domain association - if (repo == "tensorflow"): - company += "Google" - elif (repo == "CNTK"): - company += "Microsoft" - elif (repo == "deeplearning4j"): - company += "Skymind" - elif (repo == "Theano"): - company += "Montr" - elif (repo == "caffe"): - company += "Berkeley" - - committers_list = frequentcommitters(companyfile, repo, percent)["frequent"] - #looping through frequentcommitters to see if this person has worked at the company - for name_index in range(len(committers_list)): - name = committers_list[name_index] - try: - # Find this person's linkedin history - personalHistory = findHistory(name) #pulls up the personal work history of this person - if personalHistory == None: - pending.append(name) - else: - for alist_index in range(len(personalHistory)): - currentCompany = personalHistory[alist_index] #a list in the form of [company, dates] - if (company in currentCompany): - employeeList.append(name) - numEmployees += 1 - # So we don't double count: - break - except IOError, Argument: - pending.append(name) - # print "this person's file doesn't exist yet", Argument - except UnicodeEncodeError, Argument: - pending.append(name) - # print "we can't decode this name", Argument - return employeeList, numEmployees - -if __name__ == '__main__': - repo = "Theano" - csv_file = "Theano-Theano-dict.csv" - percent = 10 - - # print obtainCommittersandCount(csv_file) - # print frequentcommitters(csv_file, repo, percent) - - print findNumEmployees(csv_file, repo, percent)[0] - print findHistory("Frédéric Bastien") - # json_file = '{}_frequentcommitters.json'.format(repo) - # with open(json_file, 'r') as data_file: - # jsondict = json.load(json_file) - # committers = jsondict["frequent"] - - # affiliatedcommitters = findNumEmployees(csv_file, repo, percent)[0] - # print "affiliated, ", affiliatedcommitters diff --git a/company-affiliation/caffe_frequentcommitters.json b/company-affiliation/caffe_frequentcommitters.json deleted file mode 100644 index fcb4986..0000000 --- a/company-affiliation/caffe_frequentcommitters.json +++ /dev/null @@ -1 +0,0 @@ -{"affiliated": ["Jeff Donahue", "Sergio Guadarrama", "sguada"], "overall": ["Evan Shelhamer", "Jeff Donahue", "Yangqing Jia", "Jonathan L Long", "Kai Li", "Sergey Karayev", "Ronghang Hu", "Sergio", "Jon Long", "Sergio Guadarrama", "qipeng", "Luke Yeager", "Kevin James Matzen", "Ross Girshick", "Felix Abecassis", "philkr", "Daniel Golden", "Adam Kosiorek", "sguada", "linmin", "Anatoly Baksheev", "Cyprien Noel", "James Thewlis", "Takuya Narihira", "Jason Yosinski", "longjon", "Eric Tzeng", "T.E.A de Souza", "Mohamed Omran", "Rob Hess", "bhack", "Tea", "manuele", "Fisher Yu", "J Yegerlehner", "netheril96", "Karen Simonyan", "Alireza Shafaei", "Kang Kim", "Sean Bell", "max argus", "Tim Meinhardt", "Dmytro Mishkin", "Nick Carlevaris-Bianco", "Chiyuan Zhang", "Tobias Domhan", "Valentin Tolmer", "Achal Dave", "gdh1995", "Gustav Larsson"]} \ No newline at end of file diff --git a/company-affiliation/committer_linkedin.py b/company-affiliation/committer_linkedin.py deleted file mode 100644 index 1d8a48b..0000000 --- a/company-affiliation/committer_linkedin.py +++ /dev/null @@ -1,44 +0,0 @@ -# This Python file uses the following encoding: utf-8 - -# Make one big happy JSON file that has everybody's company list - -import os, sys, os.path -from datetime import datetime, time -from pattern.web import * -from pattern.web import URL, extension, download -from sets import Set -import json -import re -PATHtoLinkedInJSONs = "resources/linkedin_info/" - -def getLinkedInJSON(path): - # readablename = name.encode("utf-8").split(" ") - fileOpener = path - with open(path) as json_data: - d = json.load(json_data) - return d - -def get_committer_workhistory(path): - companies = [] - committer_history = getLinkedInJSON(path) - for item in range(len(committer_history)): - companies.append(committer_history[item][0]) - return companies - -if __name__ == '__main__': - JSONdump = {} - # print get_committer_workhistory("/home/anne/github-research/company-affiliation/resources/linkedin_info/AdamGibson_linkedin.json") - for root, _, files in os.walk("/home/anne/github-research/company-affiliation/resources/linkedin_info"): - for f in files: - fullpath = os.path.join(root, f) - try: - workhistory = get_committer_workhistory(fullpath) - # Get the name of the file & cut out the "_linkedin.json" portion - readablename = fullpath[71:-14] - JSONdump[readablename] = workhistory - except ValueError: - print fullpath, " has this error: ", ValueError - except TypeError: - print fullpath, " has this error: ", TypeError - with open("companyaffiliation.json", 'w') as results: - json.dump(JSONdump, results) diff --git a/company-affiliation/companyaffiliation.json b/company-affiliation/companyaffiliation.json index fb0f1d0..b001ce3 100644 --- a/company-affiliation/companyaffiliation.json +++ b/company-affiliation/companyaffiliation.json @@ -1 +1 @@ -{ "CoryWright": ["iland Cloud", "Rackspace", "Rackspace", "Hush Labs", "Rackspace", "Rackspace", "Chinese Language", "Bachelor of Arts, History", "SaltStack, License 0xFE4C69B1", "Red Hat, License 804005746415516", "Linux Journal", "Linux Journal", "Linux Journal", "Linux Journal", "Linux Journal"], "NanRosemaryKe": ["Montreal Institute for Learning Algorithms (MILA)"], "NicolasPinto": ["Apple", "Perceptio", "MIT", "Harvard University", "Harvard University", "MIT", "MIT", "CERN", "Prof. Oh / CV Lab / CBNU (South Korea)", "", "", "", "MIT BCS", "Python Software Foundation", "Python Software Foundation", "MIT BCS", "Computational and Systems Neuroscience Committee", "Microsoft Research", "Google", "DARPA", "NSF", "NVIDIA", "NSF / NCSA", "Amazon AWS", "Amazon AWS", "Ph.D, Computational Neuroscience / AI", "M.S., AI/Neuroscience", "MS, Information, Systems, Communication", "M.S, Computer Science / Artificial Intelligence", "M.S, Computer Science / Software Engineering", "MS, Computer Science"], "UnderdogGeek": ["Bhaskar Mitra on LinkedIn", "Bhaskar shared", "Microsoft", "Microsoft", "Amazon", "Hewlett-Packard", "Floranta", "Bachelor of Engineering (BE), Computer Science", "BE, Computer Science", "Research Doctorate, Computer Science", "", "Proceedings of the ACM International Conference on Research and Development in Information Retrieval (SIGIR)", "Proceedings of the 23rd ACM International Conference on Information and Knowledge Management (CIKM)", "Proceedings of the 38th international ACM SIGIR conference on Research & development in information retrieval", "Proceedings of the 24th ACM International Conference on Information and Knowledge Management (CIKM)", "WWW'16, WWW World Wide Web Consortium (W3C)", "Arxiv.org"], "sarvesh-ranjan": ["11bilionclub", "Ola (ANI Technologies Pvt Ltd)", "Cisco", "Cisco", "Wipro", "IBM India Research Lab", "Impetus", "Integrated Dual Degree (Bachelors & Masters), Computer Science and Engineering", "High School, Mathematics", "Family Giving Tree", "Second Harvest Food Bank", "International Intern"], "ZhouWang": ["Microsoft", "Fraunhofer-Gesellschaft", "Vereinigte Staaten 8213302"], "MartinEnglund": ["United States 7568092", "", ""], "KentWang": ["Kent Wang", ""], "HirofumiIchihara": ["NTT (Nippon Telegraph and Telephone Corporation)", "NTT (Nippon Telegraph and Telephone Corporation)", "Master's degree, Computer Science"], "DougHellmann": ["Red Hat", "OpenStack", "Python Software Foundation", "O'Reilly & Associates", "Python community", "Addison-Wesley", "MS, Computer Science"], "VincentUntz": ["SUSE", "Association des utilisateurs francophones d'OpenStack", "OpenStack Foundation", "openSUSE Project", "GNOME Foundation", "openSUSE Project", "openSUSE Project", "SUSE", "SUSE / Novell", "GNOME Foundation", "GNOME Foundation", "GNOME Foundation", "Novell", "Institut National Polytechnique de Grenoble / LIG", "Institut National Polytechnique de Grenoble / ENSIMAG", "Institut National Polytechnique de Grenoble / LSR, LIG, ENSIMAG", "Institut National Polytechnique de Grenoble / ESISAR, ENSIMAG", "Institut National Polytechnique de Grenoble / LSR", "Sun Microsystems"], "SinaHonari": ["Universit de Montral", "Nvidia", "Universit de Montral", "Morgan Stanley", "Concordia University", "Researcher", "Researcher", "Researcher on market design techniques", "Universit de Montral", "Concordia University", "Concordia University", "trading agent competition international forum", "Doctor of Philosophy (PhD), Computer Science", "Master of Science (MS), Computer Science, 4.15/4.3"], "PierreLucCarrier": ["Montreal Institute for Learning Algorithms (MILA)"], "shrutiranade38": ["M.S, Quality Management", "B. Pharm Sc, Pharmaceutical Sciences"], "agibsonccc": ["Galvanize Inc", "Skymind.io Deep Learning support services training via deeplearning4j.org", "Zipfian Academy", "CritSend", "Clever Cloud Computing", "Mashape", "ITOxygen", "ITOxygen", "Coursera", "Coursera", "Dropped out, Computer Science/Data Science MIS, 3"], "ArnaudBergeron": ["Montreal Institute for Learning Algorithms (MILA)"], "wangxiyuan": ["MD Anderson Cancer Center", "Texas A&M University", "Chinese Academy of Sciences", "Private Tutor", "Shandong Agricultural University", "Shandong Agricultural Univerity", "Master's degree, Biotechnology, 4/4", "Student researcher, Neuroscience, Graduate Assay and Experience 98/100", "Bachelor of Science (B.S.), Biology/Biological Sciences, 3.55/4", "High School, Science, A", "Shandong Agricultural University", "China", "China", "", "", "", "Vice President", "Captain of Secretary", "Leader in Speech Group", "", "", "", "", "", "", "Score: 527", "Score: 522", "Journal of biomedical engineering"], "ThomasBechtold": ["Verizon- Information Technology", "State of New Jersey", "Master of Science (M.S.), Telecommunications and Computing Management"], "ShuquanHuang": ["Duke University", "University of Virginia", "Ph.D. student, Electrical & Computer Engineering", "BS, EE major, Engineering Business and CS minor", "Ten thousand villages", "Independent Animal Rescue (IAR)"], "KevinKirkpatrick": ["Scentsy, Inc. (Corporate Office)", "Scentsy, Inc.", "Scentsy, Inc.", "Hewlett-Packard", "Hewlett-Packard", "Hewlett-Packard", "Hewlett-Packard", "Boise Hawks Baseball Club", "MBA, Marketing, Finance, Entrepreneurship", "BS, Chemical Engineering"], "SiddharthAgrawal": ["Amazon", "MLPACK", "ICML Workshop on MLOSS 2015", "M.E., Computer Science and Engineering", "B.E.(Hons.), Computer Science and Engineering", "Coursera", "Coursera", "Coursera", "Udacity", "edX"], "JeremyStanley": ["Instacart", "Sailthru", "Sailthru", "Collective", "Collective", "Collective", "Ernst & Young", "Ernst & Young", "Generali USA", "First Round Review", "tech.instacart.com", "Medium", "Diginomica", "First Round Review", "AdExchanger", "AdExchanger", "AdExchanger", "AdExchanger", "MBA", "BS, Mathematics"], "StefT": ["City of Boston Police Department", "City of Boston Police Department", "City of Boston Police Department", "Krav Maga Worldwide, Inc.", "Protective Services Gruppe", "City of Warwick", "Sig Arms Academy", "Rhode Island Municipal Police Academy", "Rhode Island Municipal Police Academy", "Fairfax County Government", "MS, Urban Affairs", "BA, Sociology"], "sentient07": ["Theano", "Enorgo", "Electronics Engineering", ""], "MarkusBeissinger": ["Lobe", "Microsoft", "Osus, Inc.", "Jam4Life", "MSE Computer Science, Artificial Intelligence", "BS in Economics, Operations & Information Management, Marketing, Entrepreneurship", "BSE, Computer Science"], "DavidZ.Chen": ["David Z. liked", "David Z. liked", "David Z. liked", "David Z. liked", "David Z. liked", "David Z. liked", "Google", "LinkedIn", "Microsoft", "Yale University", "PaperG", "Wiley Interdisciplinary Reviews: Computational Molecular Science"], "CaoShuFeng": ["The Chinese Ceramic Society", "Bachelor of Applied Science (B.A.Sc.), Organic Chemistry, A"], "LorinHochstein": ["Netflix", "SendGrid", "Nimbis Services, Inc.", "Information Sciences Institute", "University of Nebraska-Lincoln", "University of Maryland, College Park", "Boston University", "Xiphos Technologies", "Matrox", "27th IEEE International Symposium on Software Reliability Engineering (ISSRE '16)", "IEEE Software", "O'Reilly Media", "OpenStack Foundation", "Workshop on Parallel Programming on Accelerator Clusters", "NASA Journal of Innovations in Systems and Software Engineering", "Journal of Systems and Software", "ACM Symposium on Cloud Computing", "PhD, Computer Science", "MS, Electrical Engineering", "BEng, Computer Engineering", "DEC, Pure & Applied Science"], "DolphMathews": ["Rackspace Hosting", "Akimeka", "Laszlo Rain", "Freelance Web Design & Development", "QikCom, Inc.", "Bachelor of Science, Electrical & Computer Engineering", "United States US20120233668 A1"], "AbhinavUpadhyay": ["NetBSD", "Pramati Technologies", "NetBSD", "Ubuntu", "Hover Technologies Pvt. Ltd", "Packt Publishing", "Coursera", "Coursera", "Coursera", "Coursera", "Udacity", "Coursera Course Certificates, License RBS7D7S6C6AQ", "Coursera Course Certificates, License GDZRVJHA4HK7", "AsiaBSDCon 2012, Tokyo", "EuroBSDCon 2016, Belgrade", "Score: 107", "Score: 323/340", "B.Tech, Information Technology", "", "Pramati Technologies Pvt. Ltd.", "", "Developer"], "ChristosTsirigotis": ["Dipl. Eng., Electrical and Computer Engineering", "High School"], "ThomasMesnard": ["EPFL (cole polytechnique fdrale de Lausanne)", "Montreal Institute of Learning Algorithm, Universit de Montral", "Institut Curie", "Master of Science (M.Sc.), Mathematics, Machine Learning and Vision", "Computer Science, Mathematics and Neuroscience", "CPGE, Mathematics and Physics", "Neural Computation", "ICML 2015 Deep Learning Workshop", "NIPS 2016. Computing with Spikes Workshop.", "Arxiv", "Arxiv", "cole normale suprieure", "Lyce Saint Louis", "cole normale suprieure"], "MattGraham": ["Doctor of Philosophy (PhD), Probabilistic Machine Learning", "Master of Science (by Research), Neuroinformatics and Computational Neuroscience, Distinction", "Master of Engineering (MEng), Information and Computer Engineering, First-Class Honours (Part IIA) / Distinction (Part IIB)", "University of Edinburgh", "University of Cambridge", "Granta Design", "Nrich", "Mott MacDonald", "Proceedings of the 19th International Conference on Artificial Intelligence and Statistics", "STEMNET"], "Marc-AlexandreCote": ["Maluuba", "Nuance Communications", "Nuance Communications", "Doctor of Philosophy (PhD), Computer Science", "Master's degree, Computer Science", "Bachelor's degree, Computer Science"], "thuyenvn": ["UC Santa Barbara", "Magic Leap", "Doctor of Philosophy (PhD), Electrical and Computer Engineering", "Master of Science (M.S.), Electrical and Computer Engineering", "Bachelor of Engineering (BEng), Electrical Engineering"], "DavidRipton": ["Marsh", "Marsh", "Willis"], "LuisAGarcia": ["IBM", "IBM", "IBM", "IBM", "The University of Texas at El Paso", "IBM", "IBM", "The University of Texas at El Paso", "United States US20110267422", "United States US8621462", "IBM", "IBM", "High Assurance Systems Engineering Symposium,10th IEEE", "Software Engineering and Knowledge Engineering", "Master of Science, Computer Science", "Bachelor of Science, Computer Science, cum laude"], "BrianElliott": ["Google", "Google", "Google", "Monsoon Commerce", "Alibris, Inc.", "Alibris, Inc.", "Alibris, Inc.", "Boston Consulting Group (BCG)", "Boston Consulting Group (BCG)", "San Francisco Friends School", "Internet Retailer", "The Oregonian"], "eraly": ["Susan Eraly on LinkedIn", "Susan shared", "Skymind.io - Deep learning for Industry", "Galvanize Inc", "Galvanize Inc", "NVIDIA", "ARM", "HP", "Bachelor of Engineering (BE), Electrical Engineering", "Coursera Verified Certificates, License 4AVGRBDHQR", "Coursera Verified Certificates, License 4J8FJ44NAN", "Coursera Verified Certificates, License DSPJEVKA3D", "Coursera Verified Certificates, License L9GA6Z48JA", "Coursera Verified Certificates, License UVJ27G3B2P", "Coursera Verified Certificates, License P9PRV2G2C6", "Coursera Verified Certificates, License TUULKP9KDJ", "Coursera Verified Certificates, License 5CDTJDWUTT"], "AndrewSelle": ["Google", "Walt Disney Animation Studios", "Walt Disney Animation Studios", "Industrial Light + Magic", "PhD, Computer Science", "MS, Computer Science", "BS, Computer Science, Mathematics"], "CesarLaurent": ["Montreal Institute for Learning Algorithms (MILA)"], "PhilippKranen": ["Microsoft", "Microsoft", "Microsoft Research", "RWTH Aachen University", "Siemens Corporate Research, Princeton NJ, USA", "Grnderkolleg Aachen", "Dr. rer. nat., Informatik", "Diplom, Informatik", "", ""], "nicholas-leonard": ["Twitter", "Element Inc.", "Universit de Montral", "Canadian Forces", "Canadian Forces", "Canadian Space Agency", "Canadian Forces", "ADIROUM", "Queen of Canada", "Master's Degree, Computer Science (Deep Learning)", "Bachelor's Degree, Computer Science", "High School"], "JulienDemouth": ["NVIDIA", "NVIDIA", "Ubisoft", "Pohang University of Science and Technology", "INRIA", "Coursera", "GPU Technology Conference (GTC) 2012", "Different editors", "Ph.D, Computer Science (Computational Geometry)"], "SanderDieleman": ["DeepMind", "got-djent.com", "Ghent University", "Spotify", "VTK Gent", "Think Wize", "Digital Effects", "IEEE International Conference on Acoustics, Speech, and Signal Processing (ICASSP 2014)", "Advances in Neural Information Processing Systems", "Proceedings of the 14th International Society for Music Information Retrieval Conference (ISMIR 2013)", "Proceedings of the 12th International Society for Music Information Retrieval Conference (ISMIR 2011)", "Kaggle, Booz Allen Hamilton", "Kaggle, Galaxy Zoo, Winton Capital", "Master, Engineering, Computer Science, ICT", "Bachelor, Engineering, Computer Science"], "mronian": ["Google Summer of Code", "IBM India Research Labs", "DatabaseUSA", "Tata Consultancy Services", "Bachelor of Technology (B.Tech.), Master of Technology (M.Tech), Computer Science", "", "", "Score: 275/408", "Score: 91,50%", "Score: 93.80%", "Governor"], "ChinnadhuraiSankar": ["Universit de Montral", "Twitter", "Qualcomm", "Qualcomm", "The University of British Columbia", "ICLR 2016 workshop, May 2-4, Puerto Rico", "Information Theory Workshop (ITW), 2011 IEEE", "Bachelor of Technology, Electrical Engineering", "Master of Science, Computer Engineering", "Doctor of Philosophy (PhD), Deep learning", "", "MITACS ,Canada", "CBSE India"], "MustafaIspir": ["Google", "Synopsis", "Synplicity", "Aselsan A.S.", "MilSOFT"], "AndreasJaeger": ["Watts Water Technologies", "Watts Water Technologies", "Watts Water Technologies", "Bobcat Company", "Bobcat Company", "Ingersoll Rand", "Thermo King", "MBA, Finance", "MIM, Masters International Management", "BS in Business Administration, European Business (Dipl.-Kfm.EBS), Finance, Accounting, Taxes (BIFIST)", "EBS, European Business School"], "e-lin": ["YI-JHEN", "YI-JHEN", "YI-JHEN", "YI-JHEN", "YI-JHEN", "YI-JHEN", "Groovenauts", "Garmin International", "Compal", "Compal", "Coursera Course Certificates, : X3DECA33SJBZ", "Japan Foundation and Japan Educational Exchanges and Services", "Japan Foundation and Japan Educational Exchanges and Services", "Japan Foundation and Japan Educational Exchanges and Services", "Taiwan"], "KumarKrishnaAgrawal": ["Montreal Institute for Learning Algorithms (MILA)"], "BartvanMerri\\xebnboer": ["Twitter", "Facebook", "Self-Employed", "TEDxWarwick", "AIESEC", "GroeneKruis Domicura", "Paris International Model United Nations (PIMUN)", "European Commission", "SOS Children's Villages", "Doctor of Philosophy (Ph.D.), Machine learning, A", "Master of Science (MSc), Complex Systems Science (Erasmus Mundus), A", "Master of Science (MSc), Complex Systems Science (Erasmus Mundus), GPA 3.9/4.0", "Bachelor of Science (BSc), Mathematics and Business Studies, First Class Honours", "Business, Israeli politics, Middle Eastern history, Ethics, A (93%)"], "SimonDENEL": ["Certifup", "Institut Langevin", "Thales Research & Technology", "CNS Conseil", "Thales Research & Technology", "A.L.S.E", "Coursera Course Certificates, Lizenz PG3P3H257TUK", "Coursera Course Certificates, Lizenz 4K2FT4P3W6B2", "Stanford University", "Coursera Course Certificates, Lizenz R5V2Z9T96UEK", "Frankreich FR3014221", "Master's degree, Embedded Computing Systems, With highest honors", "Classe prparatoire PT, Sciences industrielles", "", "Internat d'Excellence de Cachan"], "RussellBryant": ["Red Hat", "http://www.astricon.net", "O'Reilly Media, Inc.", "O'Reilly Media", "O'Reilly Media", "United States 9026864"], "Alex Meade": ["Lexmark", "Alex Meade Bikeworks, LLC", "Lexmark International", "Lexmark", "Lexmark", "MS, Mechanical Engineering", "BS, Mechanical Engineering", "BA, Liberal Arts"], "YifeiFeng": ["Yifei liked", "Google", "Microsoft", "Olin College of Engineering", "Microsoft", "IEEE Xplore", "Master of Science (M.S.), Electrical Engineering", "Bachelor of Science (B.S.), Electrical and Computer Engineering"], "RenatoUtsch": ["Google", "DCC UFMG", "CTWEB", "Bachelor of Computer Science"], "LiLao": ["Google"], "IbanHarlouchet": ["Statistique Canada", "Laboratoire MILA, Dpartement d'informatique et de Recherche Oprationnelle, Universit de Montral", "Odotech", "Ministre de lAlimentation, de lAgriculture et de la Pche", "Semestre d'hiver au Baccalaurat en informatique", "Matrise, Statistiques", "Matrise, Statistiques et conomtrie"], "Saxenauts": ["FireEye, Inc.", "Glassbeam, Inc", "Lifograph", "Cybage", "Master's of Science, Computer Software Engineering, 3.40", "P.G. Diploma in Advance Computing, Advance Computing, 3.5 CGPA", "Bachelor of Technology (BTech), Computer Science, 3.6 CGPA"], "PhilStahlfeld": ["Google", "Bucknell University", "Northrop Grumman Corporation", "Geisinger Medical Center", "President", "Federal Aviation Administration, License 3539082", "Bachelor of Science (B.S.), Computer Engineering", "", "Journal of Biomolecular NMR"], "kvmanohar22": ["Kharagpur RoboSoccer Students' Group", ""], "ChrisBasoglu": ["United States 7,272,670", "United States 7,103,102", "United States 7,095,785", "United States 7,051,123", "United States 6,434,649", "United States 6,347,344", "United States 5,910,117", "United States 5,528,302", "United States 5,492,125", "EE Times", "IEEE Transactions on Circuits and Systems for Video Technology", "Proceedings of SPIE Media Processors 2002", "Proceedings of SPIE Media Processors 2002", "IEEE Micro", "Real-Time Imaging", "Proceedings of SPIE Media Processors 2000", "Proceedings of SPIE Media Processors 2000", "Proceedings of SPIE Image and Video Communications and Processing 2000", "International Journal of Imaging Systems and Technology", "Parallel Computing", "International Journal of Imaging Systems", "IEEE Transactions on Education", "Proceedings of SPIE Medical Imaging 1996: Image Display", "Proceedings of SPIE Medical Imaging 1998: Image Display", "Proceedings of SPIE Medical Imaging 1998: Image Display", "Proceedings of SPIE Medical Imaging 1998: Image Display", "IEEE Transactions on Information Technology and Biomedicine", "Real-Time Imaging", "Proceedings of SPIE Medical Imaging 1997: Image Display", "Proceedings of SPIE Medical Imaging 1997: Image Display", "Proceedings of SPIE Medical Imaging 1997: Image Display", "Ultrasonic Imaging"], "kairat_kushaev": ["Mirantis", "Opensoft", "NetCracker", ", Computer Engineering, 4.95"], "SamiraShabanian": ["Universit de Montral", "Computer Science, Machine Learning", "Doctor of Philosophy (Ph.D.), Mathematics", "The First Workshop in \"Fixed Point Theory and Application\"", "The Second Workshop in \"Fixed Point Theory and Application\""], "RohanKanade": ["Red Hat", "Izel Technologies Pvt. Ltd.", "NTT DATA Americas", "Self-Employed", "Prolinkd", "Nextech Solutions", "Nextech Solutions", "OpenStack Foundation", "Sun Microsystems", "Sun Microsystems", "Bachelor of Science, Computer Science, Distinction ( 79.97 %)"], "YufangZhang": ["Pharmanet-i3"], "GerardoPorras": ["Timac AGRO Espaa", "Behr Iberia", "Asaja Crdoba"], "gdesjardins": ["Google DeepMind", "DeepMind Technologies", "Doctor of Philosophy (Ph.D.), Computer Science (in progress)", "Master's degree, Computer Science", "Bachelor of Engineering (B.Eng.), Computer Engineering"], "LukeIwanski": ["Codeplay Software Ltd", "Codeplay Software Ltd", "Codeplay Software Ltd", "Heehaw Digital", "Games Development"], "YongqiangWang": ["Microsoft", "University of Cambridge", "Microsoft Research, Redmond", "The University of Hong Kong", "Microsoft", "Microsoft Research Asia, Beijing, P.R.China", "United States US8369611", "United States US20100246941", "United States US20100239168"], "DarrenGarvey": ["YouView TV Limited", "Evi Technologies (formerly True Knowledge)", "360 Systems Ltd", "Bachelor of Science (BSc), Physics"], "ravikumar-venkatesan": ["Hewlett-Packard Enterprise", "Cisco", "HP", "Walmart.com", "Federal Reserve Bank of San Francisco", "Kana", "NetApp", "Oracle", "Offshore Digital Services/Sonata Software", "TeachTheFutureFoundation INC", "Master's, Business Administration and Management, General"], "YusukeIde": ["Rocknel Fastener", "", ""], "houmingwang": ["Charles River Laboratories", "MIT", "Purdue University", "China Agricultural University", "Purdue University", "Purdue University", "AAI, seatle", "Purdue University", "Chinese Government", "The Journal of Experimental Medicine", "PLoS ONE", "BMC Immunology", "The Journal of Experimental Medicine", "The Journal of Immunology", "Gastroenterology", "Mucosal Immunology", "Doctor of Philosophy (PhD), Immunology", "Master of Science (MS), Veterinary Medicine", "AVMA"], "IlliaPolosukhin": ["Illia shared", "Illia liked", "Illia liked", "Google Research", "Salford Systems", "Udacity", "Master's degree, Applied Math (and Computer Science)", ""], "AdrianSmith": ["Tha Alumni Music Group"], "AnandShanmugam": ["HCL Technologies", "CSC", "HCL Technologies", "Alcatel-Lucent", "BE, Electronics and Communication", "Mirantis, License 100-273"], "FrancescoVisin": ["Montreal Institute for Learning Algorithms (MILA)"], "GrantMurphy": ["Merck", "Princeton University", "Princeton University", "Princeton University", "Doctor of Philosophy (Ph.D.), Chemistry (Biochemistry/Biophysics)", "Bachelors Degree, Chemistry with Honors, Biology with Honors"], "FabienBoucher": ["Chauvin Arnoux", "Pyrocontrole", "Technique de commercialisation, Commerce international / commerce", "Licence, Ingnierie mcatronique, robotique et automatisation, Licence professionnelle", "BTS M.A.I, Mcanique des Automatismes Industriels", "BEP et BAC PRO MSMA, Maintenance des systmes mcaniques automatiss"], "AdriaPuigdomenech": ["Google DeepMind", "Microsoft", "TU Mnchen", "Intel Corporation", "TU Mnchen", "Fundaci puntCAT", "Universitat Autnoma de Barcelona", "Universitat Autnoma de Barcelona (Computer engineering)", "Master of Science (MSc), Informatics", "Computer engineering, Engineering", "Mathemathics degree, Maths"], "LudwigSchmidt-Hackenberg": ["EyeEm", "Techn. University of Kaiserslautern / TU", "Telefnica Digital", "Fraunhofer Institute for Digital Media Technology", "Fraunhofer Institute for Digital Media Technology", "Accenture", "BMW", "Diplomingenieur, Medientechnologie", "Study Abroad"], "KentonLee": ["University of Washington", "Doctor of Philosophy (PhD), Computer Science", "Bachelor of Science in Engineering, Computer Science", ""], "lucasb-eyer": ["RWTH Aachen University", "Kindred.ai", "Google", "Mint Medical", "Digatron Industrie Elektronik GmbH", "Dipl. Ing., Computational Engineering Science"], "WayneXiong": ["Wayne liked", "Wayne liked", "Wayne liked", "Wayne liked", "Wayne liked", "Wayne liked", "Microsoft", "Microsoft", "Microsoft"], "BrynKeller": ["Intel Labs", "Intel Corporation", "Intel Labs", "Jenkon", "Jenkon", "Jenkon", "Occupational Health Research", "US Army", "Coursera", "Bachelor of Science (BS), Mathematics", ""], "caisq": ["Google", "The MathWorks", "The MathWorks", "Boston University", "Boston University", "MIT", "Northeastern University", "Boston University", "Johns Hopkins University", "Vision Research", "Proceedings of the 27th Annual Intl. Conf. IEEE-EMBS,", "Journal of the Association for Research In Otolaryngology", "Journal of Tsinghua University (Sci. & Tech.)", "Proceedings of the 8th Intl. Seminar on Speech Production", "Journal of the Acoustical Society of America", "Journal of the Acoustical Society of America", "Journal of Neuroscience", "PLoS ONE", "Proc. 14th Annual Conference of the International Speech Communication Association (InterSpeech 2013)", "Brain and Langauge", "Frontiers in Human Neuroscience", "PhD, Health Science and Technology", "Master of Science, Electrical Engineering and Computer Science", "Master of Science in Engineering, Biomedical Engineering, 4.0 / 4.0", "Bachelor of Engineering, Biomedical Engineering", "", ""], "PaulDubs": ["ICTJOB Deutschland GmbH", "Paul Dubs IT Consulting", "Happy Systems GmbH", "shork GmbH", "Benjamin Lochmann New Media GmbH", "ADMS 2013", "Master of Science (MSc), Informatik"], "JamesEBlair": ["Hewlett-Packard", "OpenStack", "Rackspace Hosting", "UC Berkeley", "Free Software Foundation"], "NikolajStarodubtsev": ["Qiwi", "SmartLabs", "ARQA Technologies", "ARQA Technologies", "Novosoft LLC", "Specialist Computer Training Center", "ICAgile", "", ""], "AlexanderTivelkov": ["Mirantis", "Mirantis", "Argussoft Company", "Anton Malevsky Memorial World Cup", "Master of Science (MS), Applied Mathematics", ""], "crockpotveggies": ["New York Times", "Bernie A.I.", "3 Tier Logic", "Earhart DNA Project", "3 Tier Logic", "Alloy Technologies, Inc.", "Rubik", "ACG Corp.", "Snow4Innocents", "Holy Innocents Children's Hospital", "PlanSea Entertainment", "Bachelors, Business, Health Sciences", "Honours Secondary Diploma"], "Ewan Mellor": ["Freelancing", "BA (Hons), MA (Cantab)"], "AndreHolzner": ["Andre Holzner gefllt Folgendes:", "University of California at San Diego", "CERN", "EU Project", "ETH Zurich", "Kaggle"], "JaredCulp": ["Phunware, Inc.", "Intentional Futures", "NBBJ Design", "Hollwich Kushner LLC", "Master's degree, Advanced Architectural Design", "Bachelor of Architecture (BArch), Architecture"], "VinuRajashekhar": ["Google", "Microsoft", "RTEMS Project", "EPFL", "IIT Kharagpur", "National Council of Educational Research and Training (NCERT)", "Dual Degree (M.Tech and B.Tech), Computer Science"], "MohammadPezeshki": ["Laboratory for Intelligent Multimedia Processing (IMP) - Amirkabir University of Technology (Tehran Polytechnic)", "Laboratory of Human Language Technology and Machine Learning - Amirkabir University of Technology (Tehran Polytechnic)"], "TillHoffmann": ["Sonalytic", "A commodities trading advisor", "A commodities trading advisor", "Self employed", "UNamur", "University of Oxford", "University of Oxford", "Carl Zeiss Group", "Physical Review E", "Physical Review E", "Temporal Networks. Springer", "Doctor of Philosophy (PhD), Applied Mathematics", "Master of Physics, Theoretical physics and astrophysics"], "R\u00e9myL\u00e9one": ["Inria", "Tlcom ParisTech | Thales Communications & Security (CIFRE)", "IEEE Internet of Things Journal (Volume:1 , Issue: 5 )", "ICC 2015", "Sensornets 2013", "EWSN 2015", "Algotel 2013", "Master's degree (Research branch), Computer Networking and Telecommunications", "Master's degree, Computer Engineering - Applied Mathematics", "Classe prparatoires (MPSI - MP-Info), Mathematics, Physics and Computer Science", "Bac S - SI, Mention Bien", "Paris Montagne"], "LaurentMazare": ["Jane Street Capital", "Goldman Sachs", "LexiFi", "Amadeus", "ENC Cachan - LSV", "Verimag Lab", "INPG, ENSIMAG"], "LukeIwanski_": [], "ZakariaHaque": ["Google", "UC San Diego", "Qualcomm", "Ph.D. student (on leave), Computer Science", "Bachelor's degree, Computer Science, Magna Cum Laude"], "DanielMan\u00e9": ["Google", "Palantir Technologies", "University of Chicago", "University of Chicago", "Phoenix Capital Partners", "The Pritzker Organization", "Moodys Corporation", "Smith Barney", "Techforge LLC", "BA, Philosophy & Computer Science", ""], "marianitadn": ["Adobe", "Kalon Global Group, Inc.", "Kalon Global Group, Inc.", "Red Hat", "uberVU", "Foreman", "Faculty of Mathematics and Computer Science - University of Bucharest", "Cronian Labs", "Mathematics and Computer Science Students Union", "Children's University - eucenet Romania", "Faculty of Mathematics and Computer Science, University of Bucharest", "ROSEdu", "ROSEdu", "Master", "BS", "High School"], "GabrielWainer": ["Carleton University", "Over 300 publications available in this link", "Proceedings of the 2012 Winter Simulation Conference. Berlin, Germany. IEEE"], "SergeyNikitin": ["Salym Petroleum Development", "Salym Petroleum Development", "Salym Petroleum Development", "ZAO \"Ermakovskoe PRS\"", "ZAO \"Ermakovskoe PRS\"", "Round II, Completion and Well Intervention", "Round I, Completion and Well Intervention", "Master's degree, Development and exploitation of oil and gas fields, 4", "Gubkin Russian State University of Oil and Gas", "Shell", "Shell"], "RohanJain_": ["edX"], "Radu": ["Fyusion, Inc", "Open Perception, Inc.", "Willow Garage", "Stanford University", "Technische Universitt Mnchen", "Stanford Research Institute", "Technical University of Cluj-Napoca", "Advisory Board", "Senior Member", "Technical Committee on Service Robotics Chair", "Technical Committee on Computer & Robot Vision Chair", "IEEE Robotics and Automation Society", "International Conference on Advanced Robotics (ICAR)", "Open Source Software (OSS) World Challenge", "Robotics Science and Systems (RSS)", "EURON (European Robotics Network)", "PhD (Dr. Rer. Nat.), Computer Science"], "JulienRebetez": ["MindMaze", "HEIG-VD", "Ecole Polytechnique Fdrale de Lausanne (EPFL)", "IICT at HEIG-VD", "Google", "Iomedia Communication S.A", "CIAT", "Iomedia Communication S.A", "Google Summer of Code 2006", "Rpublique et Canton du Jura", "European Symposium on Artificial Neural Networks, Computational Intelligence and Machine Learning", "International Conference on Pattern Recognition (ICPR)", "International Symposium on Wearable Computers (ISWC)", "IWANN", "ICPRAM", "Master, Information Technology", "Bachelor of Science HES-SO, Informatique", "BS, Information Technology", ""], "BrianRosmaita": ["Rackspace, the #1 managed cloud company", "Rackspace, the #1 managed cloud company", "Rackspace, the #1 managed cloud company", "Rackspace", "Rackspace", "Rackspace", "VTLS", "VTLS", "VTLS", "Hamilton College", "SUNY Cortland", "Kent State University", "Andersen Consulting", "Texas Instruments", "Burroughs Corporation", "PhD, Philosophy", "M.S., Computer Science", "B.A., Philosophy"], "GunhanGulsoy": ["Google", "Google", "University of Florida", "University of Florida", "University of Washington", "University of Florida", "Bioinformatics (2011) 27(13): i149-i158 doi:10.1093/bioinformatics/btr203", "ACM Conference on Bioinformatics, Computational Biology and Biomedicine 2011", "GENSIPS 2010", "Journal of Bioinformatics and Computational Biology (JBCB)", "PhD, Computer Science", "Master of Science (M.Sc.), Computer Science, 3.64", "B.Sc, Computer Engineering", "Erasmus Exchange Student, Mathematics, Computer Science"], "joncrall": ["Kitware Inc.", "BS, Computer Science"], "MatthewWillson": ["Deepmind", "Microsoft", "SwiftKey", "Media Service Provider Ltd", "Playlouder", "BubbleLabs Inc, Toronto", "DrownedinSound.com"], "OlivierBreuleux": ["LISA Lab - University of Montreal, Theano"], "CoryBenfield": ["U.S. Navy", "vaw-126"], "MartinKletzander": ["Red Hat", "IBM Global Services Delivery Center", "Globus R, k.s.", "Masters Degree, Computer Software Engineering", "Unfinished Master's in IT Security", "Bachelor's degree, Information Technology"], "ManjunathKudlur_": [], "GabeSchwartz": ["Drexel University - Department of Computer Science"], "AdrianoCarmezim": ["Bachelor of Science (B.S.) Master of Science (M.S.), Computer Science", "Bachelor of Science (B.S.), Computer Science", "Volunteering", "Celia Soutto Mayor", "Leitura"], "ChuckShort": ["CTS Business Solutions", "CTS Business Solutions", "Master of Business Administration (M.B.A.), Finance and Financial Management Services", "Bachelor of Arts (B.A.), Economics"], "JuergHaefliger": ["Hewlett Packard Enterprise", "Hewlett-Packard", "Hewlett-Packard", "Hewlett-Packard", "Hewlett-Packard", "Silicon Graphics", "Vereinigte Staaten 7516358", "Society of Photographic Instrumentation Engineers (SPIE)", "Society of Photographic Instrumentation Engineers (SPIE)", "Society of Photographic Instrumentation Engineers (SPIE)", "Society of Photographic Instrumentation Engineers (SPIE)", "Society of Photographic Instrumentation Engineers (SPIE)", "Society of Photographic Instrumentation Engineers (SPIE)", "IEEE Journal of Solid-State Circuits", "Certificate, Embedded Systems Engineering", "PhD, Electrical Engineering", "MS, Electrical Engineering"], "PeteZaitcev": ["Red Hat, Inc."], "EronWright": ["EMC", "Microsoft", "Point2 Technologies", "United States 6721802", "United States 20130298210", "United States 20130297921", "Bachelor of Science, Computer Science", "Microsoft, License 6605540", "Coursera", "Coursera", "Coursera"], "DarcyLiu": ["Tencent", "Tencent", "Alibaba.com", "Hangzhou Normal University", "Tencent", "Masters Degree, Computer Science", "Bachelor, Computer Science and Technology"], "RohitKarajgi": ["Teradata", "Jio", "NTT Data Corporation", "Pace (formerly 2Wire)", "Symphony Teleca", "Symantec India (formerly Veritas Software India)"], "NikhilThorat": ["Google", "DuPont Pioneer", "Schedr", "CampusLIVE Inc", "Bachelor of Science (BS), Computer Science, Math"], "ReyhaneAskari_": [], "BrianCline": ["salesforce.com", "Concentric Cloud Solutions", "Level 3 Communications", "FedEx Services", "National Biostudios"], "DiZeng": ["DeepMap Inc.", "Transcend Robotics", "University of Maryland", "Masters Degree, Robotics, 3.97/4", "Bachelor of Science (BS), Mechanical Engineering, 3.7/4.0"], "BoWang": ["Google", "Microsoft Bing", "Microsoft Research Asia", "Baidu.com", "M.D., 3"], "DanBecker": ["Dan liked", "Dan shared", "Dan liked", "DataRobot", "Galvanize Inc", "Kaggle", "EXL Analytics", "Federal Trade Commission", "Johns Hopkins University, Department of Applied Economics", "PhD, Economics", "BA, Computer Science"], "WangYang": ["Facebook", "AI Frontiers Conference", "CBS Interactive", "OmniClaim, Inc.", "Department of Computer Science,Tufts University", "University of Science and Technology of China", "Master of Science, Computer Science", "Bachelor of Science, Physics", "Journal of Applied Physics", "China Education"], "TatyanaLeontovich": ["Mirantis"], "VenkateshSampath": ["Ericsson", "Huawei", "Ericsson", "Bachelor of Engineering (BE),MBA, Electrical, Electronics and Communications Engineering", "Ericsson Global services India Pvt Ltd", "Huawei Telecommunication India Pvt Ltd", "Huawei Telecommunication"], "f0k": ["Austrian Research Institute for Artificial Intelligence (OFAI) of the Austrian Society for Cybernetic Studies (OSGK)- Intelligent Music Processing and Machine Learning Group"], "chenguoguo": ["KITT.AI", "Johns Hopkins University", "Google", "Google", "Doctor of Philosophy (Ph.D.), Speech Recognition", "Bachelor's degree, Electronic Engineering"], "Fr\\ufffd\\ufffdd\\ufffd\\ufffdricBastien": ["mnubo", "Briowireless Inc.", "Synergie Pilates", "Tekelec", "Tekelec", "Tekelec", "Blueslice Networks", "Nortel", "Teleglobe", "Microcell", "TechnoMontral", "Startup Weekend", "WearHacks", "Fondation Montral inc.", "Academos", "Founder Institute", "C100", "CABA", "Gartner", "ABI Research", "Price Waterhouse Coopers", "Deloitte", "Canadian Innovation Exchange", "Ernst & Young", "C100", "Branham300", "Bronfman Family Foundation", "Light Reading", "IIoT Symposium", "C2 MTL 2016 & Montreal Chamber of Commerce", "Canadian Venture Capital Association conference 2016", "Continental Automated Buildings Association - 2016 forum", "Ecole Polytechnique de Montreal / HEC", "IoT World Forum - Dubai", "TechnoMontral - l'Internet des Objets", "The Founder Institute", "Europe EP2130324", "B.Eng", ""], "CassandraXia": ["Google", "World Bank", "MIT Media Lab", "B.S., Computer Science", "Master's degree, Media Arts and Sciences"], "iccha.sethi": ["Atlassian", "Rackspace, the #1 managed cloud company", "OpenStack", "Rackspace Hosting", "Let's Code Blacksburg!", "Virginia Bioinformatics Institute", "Siemens Technology India", "Rackspace", "Datastores Practice Area, Rackspace", "Rackspace", "Roanoke Blacksburg Technology Council", "Roanoke Blacksburg Technology Council", "Rackspace Blacksburg Office", "Virginia Bioinformatics Institute, Virginia Tech", "Cranwell International Center, Virginia Tech", "SSN College of Engineering, Anna University", "SSN College of Engineering, Anna University", "", "Computer Society of India, SSN Student Chapter", "Anna University", "Grace Hopper Conference", "Talk on \"Deploying Your Application on Public Cloud\" at GHC 2014", "OpenStack @ OpenSource Day at GHC 2014", "WECode Harvard Conference", "OpenSource Day at Grace Hopper Conference", "GNOME Foundation", "Student Opportunity Lab, Grace Hopper Conference", "The National Center for Women & Information Technology (NCWIT)", "Virginia Bioinfomatics Institute - Kids Tech University", "Grace Hopper Conference", "Committee Lead", "Women in Computing Day Co-chair", "Advertising Chair, First Year Representative"], "NiallBunting": ["Hewlett-Packard", "Bachelor of Science (BSc)", "", "Ofcom"], "AlessandroPilotti": ["Sheraton Grand Hotel & Spa Edinburgh", "One Aldwych", "Rocco Forte Hotels Brown's Hotel", "Rocco Forte Hotels Abu Dhabi", "Rocco Forte Hotels Hotel de Russie", "Rocco Forte Hotels Hotel de Russie", "Rocco Forte Hotels Hotel de Russie"], "KenPepple": ["Solinea", "Cloud Technology Partners", "Internap", "Oracle", "Sun Microsystems", "Sun Microsystems", "Sun Microsystems", "Sun Microsystems, Inc.", "Sun Microsystems, Inc.", "Paranet", "Prentice Hall", "Prentice Hall PTR", "O'Reilly", "ITIL / OGC"], "ChristianJauvin": ["Aviva Canada", "Independent Consultant - Freelancer", "McGill Surveillance Lab", "Coursera", "Coursera", "Coursera", "Coursera", "M.Sc., Computer Science"], "AlexandredeBrebisson": ["", "MRes in Statistics / Machine Learning, Statistics / Machine Learning, Distinction 88/100", "Msc in in Advanced Computing, Artificial intelligence, Machine Learning, Distinction 82/100, \"Distinguished Project\", winner of the Winton Capital Prize", "French engineering diploma, Applied Mathematics, Computer Science, Physics, Economics and other information sciences", "\"classes prepa\", Mathematics - Physics", "HyperCube Research (BearingPoint)", "FactSet Research Systems", "UK Ministry of Defence"], "ElenaEzhova": ["Shop"], "YaroslavBulatov_": [], "AshishJain": ["VMware", "VMware", "PayPal", "Symantec", "Ping Identity Corporation", "BEA Systems", "EEE"], "GorkaEguileor": ["JustYoyo", "FOSS Comunity", "NEXTFOR", "NET-TEL Ibrica", "Z-World", "Tecnologa de Informtica y Comunicaciones", "Bachelor's degree, Computer Science, Artificial Intelligence Specialty", "Mongo NoSQL database", "Computerized Accounting", "Chiromasseur, Chiromassage", "Typewriting", "C.O.U., Hard Sciences"], "AlfredoMoralejo": ["Red Hat", "Red Hat", "Red Hat", "Red Hat", "Roche Pharmaceuticals", "Roche Pharmaceuticals", "Hewlett-Packard", "Hewlett Packard", "Tackling the Challenges of Big Data", "Software Enginnering for Software as a Service", "Master Degree, Free and Open Source Software Technology", "RHS333 Red Hat Enterprise Security: Network Services", "RH318 Red Hat Virtualization Administration", "RH442 Enterprise System Monitoring and Performance Tunning", "RH423 Red Hat Enterprise Directory Services and Authentication", "RH436 Enterprise Clustering and Storage Management", "RH401 Red Hat Enterprise Deployment, Virtualization, and Systems Management", "VMware Infrastructure 3: Install and Configure V3.0", "ITIL V2 Foundation", "SAP: ADM200 SAP Web AS Java Administration", "Project Management", "Oracle 9i: SQL and PL/SQL", "Engineer, Chemical Engineering", "Red Hat, Nmero de la licencia: 110-652-021", "Red Hat, Nmero de la licencia: 110-652-021", "Red Hat, Nmero de la licencia: 110-652-021", "Red Hat, Nmero de la licencia: 110-652-021", "HP Education", "edX", "Member", "Member"], "NoahFiedel": ["Google", "Color", "Google", "Boeing/Jeppesen", "gt nexus", "medicalogic", "webtv", "jeppesen", "dorado", "Zefer"], "ChrisAllnutt": ["Outlawz"], "ColinRaffel": ["Doctor of Philosophy (Ph.D.), Electrical and Electronics Engineering", "Master's degree, Music, Science and Technology", "Bachelor of Arts, Mathematics, Physics", "Columbia University in the City of New York", "Experimentalists Anonymous", "The Way of H, Inc.", "Imagine Research", "Zoimp!", "SacredAgent", "WOBC"], "VuPham": ["SAP", "Arimo, Inc.", "Singapore University of Technology and Design (SUTD)", "A2iA", "Ecole polytechnique Universit de Nantes, Polytech Nantes", "Ho Chi Minh University of Science", "Scopic software", "VNG", "FPT Visky", "Coursera", "Coursera", "Microsoft", "IEEE-RIVF 2010 International Conference on Computing and Telecommunication Technologies, Vietnam National University", "he Third International Conference on Knowledge and Systems Engineering (KSE 2011). Hanoi, Vietnam.", "16th Panhellenic Conference on Informatics with International Participation (PCI 2012). Piraeus, Greece", "ICFHR 2014", "Spark summit San Francisco", "Arimo Inc. blog", "Computer Science", "Master of Science, Data Mining and Knowledge Management", "Computer Science", "Bachelor's degree, Computer Science"], "JoshKearney": ["Planet.", "Free & Accepted Masons of Wisconsin", "Village of Hazel Green, WI"], "AndyHill": ["Atlis", "Stand4", "Office Depot", "Oppenheimer & Co.", "Florida Atlantic University", "National Collegiate Volleyball Federation", "ABC", "MBA, Finance"], "AlexeyKamenev": ["Alexey liked", "Alexey liked", "NVIDIA", "Uber", "Microsoft", "Exigen", "Intel", "Mercury Development, LLC", "Coursera", "Coursera"], "NicholasLeonard": ["Twitter", "Element Inc.", "Universit de Montral", "Canadian Forces", "Canadian Forces", "Canadian Space Agency", "Canadian Forces", "ADIROUM", "Queen of Canada", "Master's Degree, Computer Science (Deep Learning)", "Bachelor's Degree, Computer Science", "High School"], "MatthewWillson_": [], "PankajMishra": ["FactorDaily", "The Economic Times", "TechCrunch", "Mint-The Wall Street Journal Newspaper", "The Economic Times", "IDG Media", "Mint-The Wall Street Journal Newspaper", "The CTO Forum", "Asia Computer Weekly", "Indian Express Newspapers Bombay Ltd", "B.Com", "+2"], "HaiweiXu": [""], "KaiLi": ["Kai liked", "Facebook", "Hewlett Packard Enterprise", "Institute for Pattern Recognition and Artificial Intelligence, Huazhong University of Sci & Tec.", "National Lab of Pattern Recognition, Chinese Academy of Sciences", "Doctor of Philosophy (PhD), Computer Science, 4.0/4.0", "Bachelor of Engineering (B.Eng.), Automatic Control, 3.81/4.0", "IEEE Transactions on Pattern Analysis and Machine Intelligence", "IEEE International Conference on Multimedia and Expo (ICME)", "Proceedings of ACM Multimedia Conference", "IEEE International Symposium on Multimedia (IEEE ISM)", "ACM International Conference on Multimedia Retrieval (ICMR) 2015", "Proceedings of IEEE Global Communications Conference (IEEE GLOBECOM)", "Proc. of 9th ACM International Conference on Distributed Even-based Systems", "Proceedings of 5th International Conference on Multimedia Communications, Services and Security (MCSS)", "IEEE INFOCOM 2012", "National Science Foundation", "HP Vertica", "University of Central Florida", "University of Central Florida", "Huazhong University of Sci. & Tec.", "Huazhong University of Sci. & Tec.", "Huazhong University of Sci. & Tec.", "Huazhong University of Sci. & Tec."], "jeanfad": ["SAP", "Microsoft", "OwiTech", "Lille University", "INRIA", "Xerox", "Xerox Research Centre Europe", "elixir", "Coursera", "ECML-PKDD'12", "ICMLA'10", "PhD, Computer Science", "Master, Computer Science", "Engineer, Computer Science"], "SamuelAudet": ["Skymind.io - Deep learning for Industry", "Fixstars Corporation", "Fixstars Corporation", "Fixstars Corporation", "Google Japan", "Doctor of Engineering, Mechanical and Control Engineering", "Master of Engineering, Computer Engineering"], "jsalvatier": ["AI Impacts", "Amazon", "RPX Research, Inc.", "Boise-Cascade", "Boise Cascade", "Capstone Technology", "Kimberly-Clark", "B.S.Ch.E., B.S., Chemical Engineering, Paper Science and Engineering"], "ZhiQiangFan": ["Lenovo Brasil"], "ThierryCarrez": ["OpenStack Foundation", "OpenStack", "OpenStack", "Thyone consulting", "OpenStack", "Canonical Ltd.", "Goodyear", "SCORT", "Personal blog", "SecurityFocus", "Gentoo Linux", "Ubuntu", "Engineer, Mechanical Systems engineering"], "Preetika": ["EY", "Collaborative Consulting", "Boston University Residence Life", "Rolls-Royce", "Boston University Optical Characterization and Nanophotonics Laboratory", "Master of Business Administration (M.B.A.)", "BS, Mechanical Engineering", "Study Abroad, Mechanical Engineering", "CBSE, High School", "Engineers Without Borders - Boston Professionals", "Engineers Without Borders - Boston University", "Boston University"], "AlexLamb": ["Universit de Montral", "Amazon", "JHU Human Language Technology Center of Excellence", "Johns Hopkins University", "Johns Hopkins University Applied Physics Laboratory", "North American Chapter of the Association for Computational Linguistics: Human Language Technologies (NAACL-HLT)", "Association for the Advancement of Artificial Intelligence", "Doctor of Philosophy (Ph.D.), Computer Science", "Bachelor of Science, Applied Mathematics and Computer Science"], "b0noI": ["Google", "Hexlet.org", "Amazon", "DIO-soft", "Samsung R&D", "Rodovid Bank", "Institute of geochemical", "Oracle", "Oracle", "10gen", "Bionic University", "Coursera Verified Certificates, License ABW3MZXEYW", "Coursera Verified Certificates, License MZQSKZCUKZ", "Coursera Verified Certificates, License V7PREBM886", "Coursera Verified Certificates, License HY9V4GHVYJ", "Coursera Verified Certificates, License MLKKP9JTFY", "Coursera Course Certificates, License JZDYKBQFFAXY", "Coursera Course Certificates, License N8C2VV2ND4XU", "Doctor of Philosophy (Ph.D.), Natural Language Processing", "\"MS\", information security"], "XavierBouthillier": ["Nuance Communications", "Universit de Montral", "Universit de Montral", "Proceedings of the 15th ACM on International conference on multimodal interaction", "Doctor of Philosophy (Ph.D.), Computer Science", "Master's Degree, Computer Science", "Exchange student, Computer science", "Bachelor's degree, Computer Science"], "JeremiahLowin": ["Jeremiah liked", "Kokino LLC", "Compass Coffee", "The Apache Software Foundation", "Lowin Data Company", "King Street Capital Management", "A.M., Statistics", "A.B., Economics"], "MikeC.Fletcher": ["Python Software Foundation", "VRPlumber Consulting Inc.", "PyOpenGL", "Jazinga Inc.", "Aurora Cable Internet", "Rogers Communications", "VexTech Inc.", "Cinemon Inc.", "VRTelecom Inc", "BIS, Design Epistemology, Virtual Reality"], "HughPerkins": ["ASAPP", "Standard Chartered", "Morgan Stanley", "Lehman Brothers", "Socit Gnrale Corporate and Investment Banking", "SecondLife", "UFlexData (a Mandragore Division)", "CS Communication & Systmes", "Masters Degree, Computer Science, GPA 97.5", "Chinese (Mandarin), HSK 5", "Bachelors Degree, Natural Sciences, Class II.1", "University of Oxford"], "Nouiz": ["mnubo", "Briowireless Inc.", "Synergie Pilates", "Tekelec", "Tekelec", "Tekelec", "Blueslice Networks", "Nortel", "Teleglobe", "Microcell", "TechnoMontral", "Startup Weekend", "WearHacks", "Fondation Montral inc.", "Academos", "Founder Institute", "C100", "CABA", "Gartner", "ABI Research", "Price Waterhouse Coopers", "Deloitte", "Canadian Innovation Exchange", "Ernst & Young", "C100", "Branham300", "Bronfman Family Foundation", "Light Reading", "", "IIoT Symposium", "C2 MTL 2016 & Montreal Chamber of Commerce", "Canadian Venture Capital Association conference 2016", "Continental Automated Buildings Association - 2016 forum", "Ecole Polytechnique de Montreal / HEC", "IoT World Forum - Dubai", "TechnoMontral - l'Internet des Objets", "The Founder Institute", "Europe EP2130324", "B.Eng", ""], "goodfeli": ["OpenAI", "Google", "Google", "Google", "Willow Garage", "PhD, Machine Learning", "Bachelor of Science, Master of Science, Computer Science", "Proc. AAAI 2014, pp. 1199-1205", "NIPS 2014", "ICLR 2014"], "MelanieDucoffe": ["Inria", "Universit de Rennes 1", "diplme ENS", "Master's degree (research), computer vision, data mining, signal processing, virtual reality", "Diplme d'ingnieur, sciences informatiques, Vision Image et Multimdia", "Attestation CPGE ( classes prparatoires), Mathmatiques et Physiques ( MPSI, MP*)"], "DanielSmilkov": ["Google", "MIT", "Macedonian Academy for Sciences and Arts", "IBM", "Netcetera", "Master of Science (M.Sc.), MIT Media Lab", "M.Sc., Networks - Topology, Evolution, Dynamics, GPA: 9.89/10", "Bachelor, Computer Science", "Physical Review E 84 (4), 046102"], "HenriqueTruta": ["Distributed Systems Laboratory - UFCG", "Accenture", "Master of Science (MSc), Cloud Computing", "Bachelor's degree, Computer Science"], "NolwennCauchois": ["Cloudwatt", "Cloudwatt", "Master, Mathmatiques et informatique appliqu la cryptologie", "Licence, Mathmatiques et informatique"], "IgorKorsunov": [], "ChrisBamford": ["Import.io", "Bam4d Systems", "TouchGo Technology", "TouchGo Technology", "Bam4d Systems", "Cybernetic Intelligent Systems, 2010 CIS 2010. 9th IEEE International Conference", "Paladyn. Journal of Behavioral Robotics.", "Applied Masters, Cybernetics, First Class Honours", ""], "TomLeaman": ["Michael Page", "Argyll Scott", "Michael Page", "Michael Page", "Michael Page", "Michael Page UK", "Royal Navy"], "JohnWarren": ["Energy Alloys, LLC"], "SherryMoore": ["Google", "Sun Microsystems", "Intel"], "VivekKulkarni": ["Vivek liked", "Vivek liked", "BHI, 2013 Maebashi , Japan", "Complenet 2014 (Accepted)", "National Institute of Technology Karnataka"], "MarkoRadmilac": ["Microsoft", "None (PhD), Computer Science", "Bachelors, Computer Science, Applied Math"], "IanGoodfellow": ["OpenAI", "Google", "Google", "Google", "Willow Garage", "PhD, Machine Learning", "Bachelor of Science, Master of Science, Computer Science", "Proc. AAAI 2014, pp. 1199-1205", "NIPS 2014", "ICLR 2014"], "KiallMacInnes": ["Hewlett-Packard", "Hewlett-Packard", "OpenStack", "Managed I.T.", "Style Design Systems Ltd", "Bacheors of Science, Computer Science"], "HarshShah": ["Socotra", "Africa", "World Health Partners", "Lazy Bear", "Google", "AdMob", "Global Pediatric Alliance", "Hercules Capital, Inc.", "Houlihan Lokey", "BA, Major: Communication Studies // Minor: Accounting", "Fall Semester Exchange Student", "Executive Marketing Academy"], "ValentinBisson": ["valentin liked", "valentin liked", "Squarepoint Capital", "master's", "Bachelor (last year, exchange)", "Bachelor", "Licence (French Bachelor equivalent)"], "PascalLamblin": ["Montreal Institute for Learning Algorithms (MILA)"], "JamesPage": ["Wishbone Energy Partners LLC", "BlackCrest Capital LLC", "National Petroleum Company", "Khalda Petroleum Company", "Qarun Petroleum Company", "Price Waterhouse", "BBA, Accounting & Finance, Investment and Banking"], "WilliamDarling": ["Microsoft", "Xerox Research Centre Europe", "University of Guelph", "Space Security Index", "Entertainment Software Association of Canada", "Gowling Lafleur Henderson LLP", "Paradynamics, Inc.", "Ginkgo Boutique Apple", "Coursera", "Coursera", "Coursera", "Intellectual Property Journal", "Proceedings of the 49th Annual Meeting of the Association for Computational Linguistics: Human Language Technologies: short papers", "Physics Department", "", "Ph.D., Computer Science (Machine Learning and Natural Language Processing)", "LL.B., B.C.L. (Common Law and Civil Law), Law", "B.Sc. (exchange year), Physics, Computer Science", "B.Sc. (Hons.), Physics, Computer Science"], "SamiraEbrahimiKahou": ["Samira liked", "Samira liked", "Samira liked", "Samira liked", "Samira liked", "Samira liked", "Twenty Billion Neurons GmbH", "Microsoft", "Netsis Software Inc."], "KyunghyunCho": ["New York University", "Universit de Montral", "Aalto University", "Universit de Montral", "ZenRobotics Ltd.", "Interactivy", "Corecess", "President", "Doctor of Philosophy (Ph.D.)", "Master of Science (M.Sc.)", "Bachelor of Science (B.Sc.)"], "IanLangmore": ["Google", "Johnson Research Labs", "Columbia University", "Opera Solutions", "Columbia University", "University of Washington", "Columbia University", "University of California", "University of California", "Qualcomm Inc", "KDD", "PhD, Mathematics 2008", "Master of Science, Electrical Engineering 2004", "Bachelor of Science, Electrical Engineering 2002"], "TobiasUrdin": ["Crystone AB / Crystone LLC", "Datorgruppen", "Crystone Sverige AB", "Fujitsu IsoWorks, SEB", "Fujitsu IsoWorks, SEB", "Board Member", "Cisco Systems Inc, Licensnummer 640-822", "High school graduation, System, Networking, Windows Server, Cisco, CCNA, LAN/WAN"], "ClintByrum": ["IBM", "Hewlett Packard", "Canonical Ltd.", "Adicio, Inc.", "Anonymizer, Inc.", "XNtech", "ERP.COM", "CR Computing Solutions"], "JamesCarey": ["EMC", "EMC", "EMC", "EMC", "Fidelity National Information Services", "Cingular", "Alltel Information Services", "BBA, Accounting"], "DavidSoergel": ["Google", "University of Massachusetts Amherst", "UC Berkeley", "Molecular Sciences Institute", "Asha Technologies", "Little Engine, Inc.", "Stanford University", "Ph.D., Computational Biology", "B.S., Symbolic Systems", "Computation and Neural Systems"], "RoyXue": ["Carnegie Mellon University", "Rakuten", "Tesla Motors", "University of Washington", "Theano Open Source Dev Community", "HackNTU", "INTERFIRM", "iFanr", "Carnegie Mellon University", "HackShanghai", "Google", "HappyChick Foundation", "AIESEC", "Master's degree, Software Engineering", "Master's degree, Computer Science and Systems, GPA 3.70", "Bachelor of Science (BS), Electrical and Electronics Engineering, GPA 3.5", "Deep Learning", "Coursera", "Coursera", "Coursera", "Coursera", "Coursera", "Coursera", "Canton Fair (China Import and Export Fair)", "Guangzhou International Documentary Film Festival", "Chinese Conference on Cloud Computing(CCCC 2013)", "PACKT Publishing", "", "", "", "", ""], "ClemensMarschner": ["Clemens Marschner gefllt Folgendes:", "Clemens Marschner gefllt Folgendes:", "Clemens Marschner gefllt Folgendes:", "Clemens Marschner gefllt Folgendes:", "Microsoft", "Microsoft", "Microsoft", "FAST, a Microsoft Subsidiary", "Fast Search & Transfer", "Computational Linguistics Department, Univ. Munich", "PhD Thesis, Centrum fr Informations- und Sprachverarbeitung, Munich, Germany", "Springer"], "RasmusLarsen": ["Rasmus liked", "Google", "L-3 Communications", "Stanford University", "Pulsent", "Stanford University", "post doc, Computer Science / Solar physics"], "NikosKarampatziakis": ["Microsoft", "Microsoft", "Doctor of Philosophy (Ph.D.), Computer Science, 4"], "AntonKhodakivskiy": ["Menta Capital LLC", "AppDirect", "Nemaris, LLC", "LiveTechnology Holdings, Inc.", "IMT", "Master's degree, Physics"], "MatthewEdmonds": ["The Tire Rack", "Church Growth Services Inc", "Bachelor of Architecture (BArch), Architecture"], "CiyongChen": ["Intel Corporation", "Cisco Systems", "Huawei Technologies", "Master's degree, Embedded Software Engineering", "Bachelor's degree, Electronic Information Science and Technology"], "RasmusMunkLarsen": ["Rasmus liked", "Google", "L-3 Communications", "Stanford University", "Pulsent", "Stanford University", "post doc, Computer Science / Solar physics"], "AliElqursh": ["Google", "Qualcomm", "Rutgers University", "Google", "Technicolor", "Bibliotheca Alexandrina", "PhD, Computer Science", "B.Sc, Computer Science"], "SamGross": ["Facebook AI Research", "Jam Labs, Inc.", "Yext", "D. E. Shaw & Co.", "Google (NYC)", "Google (Atlanta)", "Virginia Department of Motor Vehicles", "M.Eng., Electrical Engineering and Computer Science", "B.S., Computer Science"], "abergeron": ["Montreal Institute for Learning Algorithms (MILA)"], "PatrickNguyen": ["Google", "Microsoft", "Metanautix (acquired by Microsoft)", "Google", "Microsoft Research", "Panasonic", "beTrust", "Swisscom"], "KeshavaBharadwaj": ["Cisco", "Hewlett-Packard", "Hewlett-Packard", "Consultant - Corventis", "Hewlett-Packard", "Hewlett-Packard", "B.E, Electronics and communications", "B.E, Electronics and Communication"], "DaveChen": ["Google", "Yahoo!", "Lockheed Martin", "Ecrio Inc", "MS, Computer Science", "BS, Computer Science and Engineering", "High School", "SASE Circle Mentor", "CPP, Inc."], "LukaszKaiser": ["Google", "CNRS", "Google", "RWTH Aachen University", "RWTH Aachen University", "RWTH Aachen University", "RWTH Aachen University", "RWTH Aachen University", "Coursera", "Coursera", "NIPS 2015", "ICLR 2016", "Ph.D, Computer Science", "Master of Science, Computer Science", "Master of Science, Mathematics", ""], "YaroslavNechaev": ["Fondazione Bruno Kessler (FBK-irst)", "VIZERRA", "Total Digital Solutions", "RUSNANO", "Total Digital Solutions", "Intellectual business boutique", "SMS Siemag AG", "Novaya perevozochnaya kompaniya", "Specialist, Computer Science, Mathematics, Physics", ""], "VictorRodionov": ["Taylor | Australia", "peckvonhartel", "Architecture BVN", "Guida Mosley Brown Architects", "Bachelor of Architecture (B.Arch.), Architecture", "Bachelor of Applied Science (B.A.Sc.)"], "LiangChen": ["Amazon", "Microsoft Corporation", "Microsoft Corporation", "Microsoft Corporation", "LS Telcom AG, Germany", "Shanghai Nan Yang Info And Control Ltd., China", "BS, Computer Science"], "YutakaLeon": ["Google", "NICT", "ATR International"], "JamesPolley": ["U.S. Department of State", "U.S. Department of State", "U.S. Department of State"], "AlexRothberg": ["4Catalyzer", "Getco LLC", "D.E. Shaw & Co", "WebNotes (now: Crocodoc)", "Bridgewater Associates", "Bachelor's Degree, Computer Science, Economics", "High School"], "PawelKoniszewski": ["Pawe liked", "Pawe liked", "Intel Corporation", "Intel Corporation", "OpenStack Foundation", "Intel", "OpenStack Foundation", "Cisco", "OpenStack Foundation", "Geek Girls Carrots"], "BenNemec": ["Red Hat", "Red Hat", "None", "IBM", "IBM", "Luther College", "Boscobel Swimming Pool", "University of Minnesota - Rochester", "Rochester Active Sports Club", "RACE Jaguars", "BA, Computer Science"], "AnatolyBelikov": ["Research Institute of Precision Instruments", "Acronis", "Coursera", "Coursera", "Coursera Verified Certificates, : ESBPJCPDHX", "Udacity", "Doctor of Philosophy (Ph.D.), Information Technology", "Master's Degree, Computer Science", "Engineer's Degree, Computer Engineering"], "FrankSeide": ["Microsoft", "Microsoft", "Microsoft", "Microsoft", "Microsoft", "Microsoft", "Philips Research, Taipei", "Philips Research", "Dipl.-Ing., EE, CS"], "WeiHo": ["Google", "Microsoft", "USC Information Sciences Institute", "Princeton University", "B.S.E., Computer Science"], "JamesLi": ["Meltwater", "NextGen Angels", "Encore Alert (acquired by Meltwater)", "RE:action Strategy Group", "The White House", "Compass Partners", "Touchstone Consulting Group", "Cybis Communications", "GameDay Sports Marketing", "Future Business Leaders of America", "ZenithOptimedia", "Georgetown University", "TechCocktail", "Georgetown Startup Hoya Challenge", "Startup Weekend", "Georgetown University", "Oxford Academy", "FBLA", "FBLA", "GMS", "CGIU", "BS, Marketing, Management, Magna Cum Laude", ""], "AlbertoPlanas": ["Elettronica Santerno Espaa su"], "MatthewTreinish": ["United Security Investors, LLC", "Lore Group LLC", "Buckeye Consulting LLC", "Siren Digital, LLC", "Inspire Studios LLC", "Strategic Film Partners", "Malibu Film Festival", "Young and Rubicam", "BS, Sociology/Criminology", "High School", "California Bureau of Real Estate"], "AlexeiKornienko": ["Mirantis", "Ciklum", "Gameloft", "Gameloft", "Gameloft", "Gameloft", "10gen, The MongoDB Company", "10gen, The MongoDB Company", "Software engineering"], "ZiyeFan": ["Theano Development Community", "Great Wall Computer Software And Systems Inc., Ltd.", "Master's degree, Machine Intelligence (School of EECS)", "Bachelor's degree, EE (School of EECS)"], "EdgarMagana": ["Edgar Magana on LinkedIn", "Edgar shared", "Edgar shared", "Edgar shared", "Workday", "OpenStack", "Contrail Systems", "OpenStack", "Cisco", "PLUMgrid", "Cisco Systems", "Universitat Politecnica de Catalunya", "Deloitte Consulting", "2009 IEEE", "2009 IEEE", "OpenStack Docs"], "NoahFiedel_": [], "ry": ["s", "P"], "TakeakiMatsumoto": ["NTT Communications"], "EldarAkchurin": ["Microsoft", "Hewlett-Packard", "Kaspersky Lab", "Deutsche Bank", "Diploma, Applied Mathematics and Computer Science", "Master of Science, Software Systems Engineering"], "FlorentFlament": ["Burger King Corporation", "McDonald's", "Licence (2 annes valides) , Biologie des organismes et des populations", "Greenpeace"], "ShaneWang": ["T.R. ENGEL Group, LLC", "Morgans Hotel Group", "Rosewood London", "China Construction Bank", "Bachelors Degree, Mathematics and Computer Science, Summa Cum Laude", "Bachelors Degree, Hospitality Administration/Management, Summa Cum Laude", "Boston Athletic Association", "Be The Match operated by National Marrow Donor Program", ""], "NassimBabaci": ["Cloudreach", "Cloudwatt", "Wallix", "SunGard Financial Systems", "EMC", "AWS, License AWS-ASA-5424", "AWS, License AWS-ASOA-1284", "AWS, License AWS-ADEV-1433", "AWS, License AWS-PSA-2220", "Masters degree, Distributed Systems", "Software Engineer, Computer Systems Networking and Telecommunications"], "KirilGorovoy": ["Google", "Facebook", "University of Waterloo- AI Group", "Intel FPGA", "Google", "IBM"], "TimCooijmans": ["Universit de Montral", "Google", "Universit de Montral", "CERN", "Ideaspool", "Mapscape", "Compram", "Master of Science (M.Sc.), Operations Research", "Bachelor of Science (B.Sc.), Knowledge Engineering, 8.06 out of 10"], "NikhilMishra": ["Robot Learning Lab, UC Berkeley", "Trooly", "Beckman Laser Institute", "Bachelor's Degree, Electrical Engineering and Computer Science", "International Conference on Robotics and Automation", "Journal of Biomedical Optics"], "AlexanderMaretskiy": ["Mirantis"], "SaschaPeilicke": ["HERE", "HOTEL DE GmbH", "SUSE Linux Products GmbH", "openSUSE Project", "SUSE Linux Products GmbH", "KDE", "Google Summer of Code 2011", "Google Summer of Code 2010", "Institut fr Automation und Kommunikation (ifak e.V.)", "Google Summer of Code 2009", "SUBMIT e.V.", "Nokia Qt Software", "Language Center - University of Magdeburg", "Institute for Knowledge & Language Processing, University of Magdeburg", "Ubuntu", "Linux Professional Institute, Lizenz LPI000220879", "Novell Certification", "Linux Professional Institute, Lizenz License LPI000220879", "Diplom (German)", "", "openSUSE Project", "OpenStack", "KDE", ""], "JoeGordon": ["Pinterest", "Hewlett-Packard", "Cloudscaling", "Fujitsu", "University of Maryland Institute for Advanced Computer Studies", "United States 8,505,103", "United States 8,745,747", "United States"], "AswadRangnekar": ["NTT DATA Americas", "HappyChickoo", "eClerx", "", "Master of Engineering (MEng), Computer Engineering"], "YannN.Dauphin": ["Facebook", "Universit de Montral", "Microsoft", "Google", "GNU CLisp", "Ericsson", "Lambda Tree", "Verkkostadi", "Advances in Neural Information Processing System", "Doctor of Philosophy (Ph.D.), Computer Science"], "BrianBowen": ["FirstFuel Software", "Solstice Initiative", "ecovent Systems", "Ceres, Inc.", "EnerNOC", "Yale University Press", "Midwest Energy News", "Robert and Patricia Switzer Foundation", "Master in City Planning (MCP), Environmental Policy and Planning", "BA, Literature", "Green Business Certification, Inc.", "NCSL Energy Supply Task Force", "Department of Energy"], "ChienliMa": ["Intuit", "Google Summer of Code 2015", "eLong, Inc", "Master's degree, Computer Science, 4.0/4.0", "Bachelor's degree, Information Engineering"], "RonaldBradford": ["RB42", "Effective MySQL", "Oracle ACE Program", "Oracle Press", "Oracle Press", "Oracle Press", "Wrox", "MySQL Certification", "Master of Information Technology coursework", "Bachelor of Applied Science", "International Space Apps Challenge", "MySQL Community", "Oracle Corporation", "MySQL Inc"], "DannyGoodman": ["Danny Goodman on LinkedIn", "Danny liked", "(Gestating)", "Software and data consulting", "MetaMind", "MetroMile", "Stanford Pride", "Outright", "Chai Labs", "Numenta", "TMS, Inc.", "Tropos Networks", "Ellington Management Group", "Sun Microsystems", "MS, Computer Science, 4.1/4"], "ChrisFattarsi": ["Inventorum GmbH", "Piston Cloud", "Piston Cloud Computing, Inc.", "NASA Ames Research Center", "Novacoast", "Advanced Dental Imaging", "BS, Computer Engineering"], "WenChengMa": ["IBM"], "StuartMcLaren": ["S Mclaren Builders"], "PavanKumarSunkara": ["Apiary", "Dual (M.Tech & B.Tech), Computer Science"], "NicolasBouchard": ["Montreal Institute for Learning Algorithms (MILA)"], "RishabhJain": ["LiveRamp, An Acxiom Company", "OpenLab app", "Flagship Ventures", "Invisergy", "Morgan Stanley", "Doctor of Philosophy (PhD), Materials Science, NSF & NDSEG Fellow", "M.Sc., Optics and Photonics, The Thouron Award", "Bachelor of Science (B.Sc.), Finance, Summa Cum Laude", "B.S.E., Materials Science and Engineering"], "AndrewTranquada": ["Rackspace, the Open Cloud Company", "nTelos Inc.", "Nauticom Internet Services", "Redhat, License 111-056-511"], "AndreasScheuring": ["Jugendherberge Berlin Ostkreuz"], "AnitaKuno": ["I really dislike forms forcing me to enter values."], "RonanCollobert": ["Facebook", "Idiap Research Institute", "NEC Laboratories America", "Idiap Research Institute", "Universit de Montral"], "RickClark": ["Mastercard", "aaSemble", "Reliance Jio Infocomm", "Cisco", "Rackspace Hosting", "Canonical Ltd.", "Etrade Financial", "McKesson", "BB&T", "LearningSoft Corporation"], "YuxinWu": ["Facebook AI Research", "Facebook Oculus VR", "Megvii Technology (aka Face++)", "UC Berkeley", "Google", "Hulu", "HPC Advisory Council", "Asia Supercomputer Community", "ACM SIGMOD", "Trend Micro Inc.", "ACM SIGKDD", "China Computer Federation", "Tsinghua University", "", "ACM SIGGRAPH Asia", "Arxiv Preprint", "arxiv preprint", ""], "MelanieWarrick": ["Skymind.io - Deep learning for Industry"], "SteveKowalik": ["Sodexo", "Service America GroupLLC", "All seasons services Inc.", "A&W Resturant"], "MattFischer": ["Apple", "Apple", "Napster", "myplay", "N2K/CDNOW", "University of Virginia Club of New York", "IMG", "BA with Distinction, Political and Social Thought Distinguished Majors Program", "", "United States 11/082,207", "", "Business Insider"], "JashaDroppo": ["Microsoft Research", "IEEE (SPS) Speech and Language Technical Committee (SLTC)", "Microsoft Corporation", "Microsoft", "Combustion Specialists Inc", "Doctor of Philosophy (Ph.D.), Electrical Engineering", "BSEE, Electrical Engineering, Honors Program"], "steven-pigeon": ["UQAR", "Universit de Montral", "cole de technologie suprieure (TS)", "Vantrix", "Comact", "Ph. D., Data Compression"], "AuktavianGarrett": ["Cisco Systems", "Clarkston Consulting", "Cisco Systems", "Nortel Networks", "Acuity Healthcare Management LLP", "", "BS, Computer Engineer"], "IulianVladSerban": ["Blue Analysis", "DigiCorpus Aps", "Financys Aps", "Project Osiris", "Operation Dagsvrk", "Operation Dagsvrk", "Doctor of Philosophy (PhD), Machine Learning", "Master of Science, Machine Learning, Distinction", "", "Bachelor, Mathematics and Statistics", "Mathematics, Physics, Chemistry and Development of Technology"], "VladimirIvanov": ["Google", "Ukraine 10225", "United States"], "AsimShankar": ["Google", "Veritas Software (would later merge with symantec"], "PranaliDeore": ["Red Hat", "NTT Data Americas", "Sureline Systems, Inc.", "MSc(Comp.Sci), Computer Science"], "BartoszFic": ["Update Digital", "Intel Corporation", "Online Venture", "Master of Science in Engineering, Informatics", "Engineer's degree, Informatics"], "JonasRauber": ["University of Tubingen - Bethge Lab", "Karlsruhe Institute of Technology (KIT)"], "KunHuang": ["Facebook", "Google", "Sunny Arts Performing Group", "Macy's", "Norfolk Southern", "North Carolina State University", "Boeing Commercial Airplanes", "Cisco", "Ph.D., Industrial and Systems Enginnering", "Master, Industrial and Systems Enginnering", "Bachelor of Science, Mathematics", ""], "SergioCazzolato": ["Intel Agile Conference", "Conferencia giles 2012", "Intel Agile Conference 2012"], "Pierre-AntoineManzagol": ["Google", "Siemens", "Montreal Institute for Learning Algorithms (MILA)"], "LiuYuan": ["AWR-APLAC Corporatiosn", "IBM T. J. Watson Research Center", "Coursera", "Coursera", "Coursera", "Coursera", "Coursera", "Doctor of Philosophy (PhD)", "MS", "BSEE"], "JeffreyTang": ["Twitter", "Galvanize Inc", "Skymind.io - Deep learning for Industry", "IBM", "Integrative Genomics and Medicine - Medical Research Council"], "SimonLemieux": ["mldb.ai", "Datacratic", "Collge lionel-groulx"], "ItishaDewan": ["IIIT Hyderabad", "IIIT Hyderabad", "OpenStack", "Cykul", "Score: 334", "Score: 118", "Score: 2390", "Score: 2080", "Bachelor's Degree, Computer Science", "High School"], "AndrewHutchings": ["Utrip, Inc.", "Summer Program", "Coursera", "Coursera", "Coursera", "Coursera", "Coursera", "Master of Science (M.S.), Operations Research", "Bachelor of Science (B.S.), Mathematics"], "nanhailiao": ["Tianjin Kylin Information Ltd.co"], "JakubSygnowski": ["Google Research", "Google", "TouK", "", "", "Master's Degree, Computer Science", "Master's Degree, Computer Science"], "Fr\\xe9d\\xe9ricBastien": ["mnubo", "Briowireless Inc.", "Synergie Pilates", "Tekelec", "Tekelec", "Tekelec", "Blueslice Networks", "Nortel", "Teleglobe", "Microcell", "TechnoMontral", "Startup Weekend", "WearHacks", "Fondation Montral inc.", "Academos", "Founder Institute", "C100", "CABA", "Gartner", "ABI Research", "Price Waterhouse Coopers", "Deloitte", "Canadian Innovation Exchange", "Ernst & Young", "C100", "Branham300", "Bronfman Family Foundation", "Light Reading", "IIoT Symposium", "C2 MTL 2016 & Montreal Chamber of Commerce", "Canadian Venture Capital Association conference 2016", "Continental Automated Buildings Association - 2016 forum", "Ecole Polytechnique de Montreal / HEC", "IoT World Forum - Dubai", "TechnoMontral - l'Internet des Objets", "The Founder Institute", "Europe EP2130324", "B.Eng", ""], "JustinBayer": ["Volkswagen AG", "van der Smagt & Bayer GbR", "TU Munich", "IDSIA", "Dr., Machine Learning", ""], "EugeneBrevdo": ["SVBio", "The Climate Corporation", "Princeton University - Department of Electrical Engineering", "Siemens Corporate Research", "Google - Computer Vision for OCR", "Air Force Research Laboratories, Maui Optical and Supercomputing Site, Kihei, HI", "Rensselaer Polytechnic Institute - Electrical Impedance Tomography (EIT) Research Group", "Factset Research Systems"], "JulienDanjou": ["Red Hat", "OpenStack", "freedesktop.org", "Debian", "Debian France", "Julien Danjou", "eNovance", "eNovance", "Easter-eggs", "TuxFamily", "IELO", "Mandriva", "Frag Arena", "", "Rsultat : 935", "Master, Computer Science", "DUT, Computer Science", "Coursera"], "FrankChu": ["Shanghaitech University - School of Information Science and Technology"], "AndyMcCrae": ["Rackspace, the #1 managed cloud company", "Rackspace, the #1 managed cloud company", "Rackspace, the #1 managed cloud company", "Master of Engineering (MEng), Computer Science", "Software Developer", "805009233444167"], "YaroslavBulatov": ["OpenAI", "Google", "Strands", "ViewPlus Technologies", "Information Extraction and Transport", "Oregon State University"], "AndrewClayShafer": ["Pivotal", "Parvus Captus", "Rackspace", "Cloudscaling", "Agile Roots", "Ignite Salt Lake", "Cloudscaling", "Reductive Labs Inc.", "Reductive Labs", "Infopia", "Infopia", "Infopia", "Realm Systems Inc", "Driversoft", "O'Reilly Media", "MS, Scientific Computation", "BS, Mathematics", ""], "HaomaiWang": ["XSKY Data Technology", "UnitedStack", "Intel", ""], "Fabrizio(Misto)Milo": ["Fabrizio liked", "Fabrizio liked", "Fabrizio liked", "Fabrizio liked", "Fabrizio liked", "Fabrizio liked"], "vdumoulin": ["Montreal Institute for Learning Algorithms (MILA)"], "DhariniChandrasekar": ["Intel Corporation", "University of Cincinnati", "Interactive Intelligence", "Cloud Kinetics", "Master of Science (MS), Computer Science, 3.68/4.0", "Bachelor of Engineering (BE), Computer Science, CGPA : 8.1/10", "Higher Secondary Education, 94.4%", "Senior Secondary Education, 460/500 (92%)", "Bloomsbury Honors Society, USA", "University of Cincinnati", "Volunteer", "Internation Reseach Network, UARJ."], "LiYao": ["Montreal Institute for Learning Algorithms (MILA)"], "BillOwen": ["JDA Software", "JDA Software Group, Inc", "JDA Software", "JDA Software", "Expanets", "Viasoft"], "VincentDumoulin": ["LISA, University of Montreal", "Universit de Montral", "Ski Mont Saint Bruno", "arXiv", "Proc. AAAI 2014, pp. 1199-1205", "Doctor of Philosophy (Ph.D.), Computer Science", "B.Sc., Physics and Computer Science"], "skaae": ["University of Copenhagen", "MSc student, Systems Biology", "Bachelor of Science (BSc), Bioengineering and Biomedical Engineering"], "LaurentDinh": ["arXiV"], "HuazuoGao": ["Physics", ""], "jiakai": ["CILVR Lab at New York University", "NVIDIA", "Movement Lab at New York University", "Honda Research Institute USA, Inc.", "NVIDIA", "New York University", "3D Computer Game Engine Design, New York University", "The Center for Public Safety, Tsinghua University", "Robot Car Program, Tsinghua University", "Computer Organization Laboratory, Tsinghua University", "PhD Candidate, Computer Science", "Master, Computer Science, 3.75", "Bachelor, Engineering Physics, 3.7", "Bachelor, Electrical and Computer Engineering"], "MikKocikowski": ["Peak Unicorn Consulting", "Target", "Quid", "Various", "Hitachi Data Systems", "", "Ansible Fest 2016"], "DuncanMcGreggor": ["Element 84", "Open Source Community", "Multiple Organizations", "AdRoll", "Rackspace, the Open Cloud Company", "Multiple Organizations", "Canonical Ltd.", "Canonical Ltd.", "Divmod, Inc.", "AdytumSolutions, Inc.", "Public Broadcasting Service", "General Physics", "USinternetworking", "University of Maryland", "Face-Pressed Web Design", "US Army"], "AvinashPrasad": ["ISACA"], "AlexeyOrlov": ["Microsoft", "Microsoft", "Intel Corporation", "Intel Corporation", "Intel Corporation", "Scrum Alliance", "Scrum Trek", "Game Developers Conference, Moscow", "Master of Business Informatics, Business analyst", "Master of Science (M.S.), Mathematician, system programmer"], "DavidPeraza": ["Persistent Systems Inc.", "IBM", "IBM", "IBM", "Oceanwide usa", "IBM", "IBM", "IBM System Magazine", "IBM", "Persistent System Inc.", "Master of Science, Computer Science", "Bachelor's degree, Computer Engineering", "United States US8627274", "United States 8543687 B2"], "YoshuaBengio": ["Universit de Montral", "AT&T Labs, Inc.", "MIT", "McGill University", "PhD, Computer Science", "MSc, Computer Science", "B.Eng., Computer Engineering", ""], "SunYeopLee": ["IoTcubeCon", "KITRI", "Bachelor of Engineering (B.E.), Computer Science and Engineering", "Student in top 30, Product security", " ", "", "KT", "", "", " ", "", "", "", "", ""], "AndreasEberle": ["arconsis IT-Solutions GmbH", "arconsis IT-Solutions GmbH", "1&1 Internet AG", "1&1 Internet AG", "LuK GmbH & Co. KG", "Master of Science (M.Sc.), Computer Science", "Bachelor of Science (B.Sc.), Computer Science"], "EldarNugaev": ["Coursera", "edX", "Coursera", "edX, License 830298d563104f099bd7bf42f3273b8c", "Microsoft", "Hewlett-Packard", "Trafigura", "Digital Society Laboratory", "utinet.ru", "buzzoola.com", "Grid Dynamics", "Mirantis", "Score: http://rosalind.info"], "BinZhou": ["FM Global", "Pratt & Whitney", "Pratt & Whitney", "GE Power & Water", "GE Global Research", "University of Michigan", "PhD, Mechanical Engineering", "MBA", "GE"], "JakubKolodziejczyk": ["Jakub", "Lexues", "Personal projects", "Okinawa Institute of Science and Technology", "Nanyang Technological University", "Osaka University", "Master of Engineering (M.Eng.), Computer Aided Mechanical Engineering, First Class Honours"], "MitsuhiroTanino": ["Hitachi Data Systems", "OpenStack", "Hitachi", "Master of Engineering (M.Eng.), Department of Computer Science and Engineering"], "GeetikaBatra": ["OpenStack", "Lyxel Labs Private Limited", "OpenStack", "OpenStack", "Outreachy Intern at OpenStack", "Learn IT Girl, License 10060142", "Accredible, License Accredible-10222048", "Bachelor of Technology (B.Tech.), Electronics and Communication", "87.2%", ""], "FrédéricBastien": ["mnubo", "Briowireless Inc.", "Synergie Pilates", "Tekelec", "Tekelec", "Tekelec", "Blueslice Networks", "Nortel", "Teleglobe", "Microcell", "TechnoMontral", "Startup Weekend", "WearHacks", "Fondation Montral inc.", "Academos", "Founder Institute", "C100", "CABA", "Gartner", "ABI Research", "Price Waterhouse Coopers", "Deloitte", "Canadian Innovation Exchange", "Ernst & Young", "C100", "Branham300", "Bronfman Family Foundation", "Light Reading", "IIoT Symposium", "C2 MTL 2016 & Montreal Chamber of Commerce", "Canadian Venture Capital Association conference 2016", "Continental Automated Buildings Association - 2016 forum", "Ecole Polytechnique de Montreal / HEC", "IoT World Forum - Dubai", "TechnoMontral - l'Internet des Objets", "The Founder Institute", "Europe EP2130324", "B.Eng", ""], "TakuFukushima": ["Midokura"], "LuisdeBethencourt": ["Samsung Electronics", "Samsung Electronics", "GNOME Foundation", "Collabora Ltd", "Collabora Multimedia", "Oracle", "Sun Microsystems", "Imagen en Accin", "Bachelor of Science (BS), Computer Science", "1st year, Computer Science", "High School, Science"], "MartinWicke": ["Google", "eddy systems", "otherlab", "HighlightCam", "UC Berkeley", "Stanford University", "Max Planck Center for Visual Computing and Communication", "Dr. Sc. ETH, Computer Graphics", "Diplom, Informatik, \"mit Auszeichnung\" (summa cum laude)", "United States 8,995,823", "United States", "United States", "United States", "Computer Graphics Forum", "Computer Graphics Forum", "Transactions on Graphics", "Computer Graphics Forum", "Computer Graphics Forum", "Transactions on Graphics", "Information Processing in Sensor Networks", "Computer Graphics Forum", "Computer Graphics Forum", "Symposium on Point-Based Graphics", "Information Processing in Sensor Networks", "ACM Workshop on Mobile Entity Localization and Tracking in GPS-less Environments", "Transactions on Graphics", "Pacific Graphics", "Eurographics", "Symposium on Point-based Graphics", "Vision, Modeling, and Visualization", "Transactions on Graphics", "Computer Graphics Forum", "Sensor, Mesh and Ad Hoc Communications and Networks"], "KirillBobyrev": ["Google", "Google", "Subterranean Games", "Bachelors Degree, Applied Mathematics and Physics", "Specialist, Mathematics", "High School, Applied Mathematics", "High School", "Coursera Course Certificates, License 34DQUYZBJ22R", "Coursera Course Certificates, License T8TACVE4YV7N", "Coursera Course Certificates, License NDEJXRK5UBAG"], "CyrilRoelandt": ["INRIA", "Universit de Bordeaux", "INRIA", "ReactivOn", "Master's degree, Computer Science", "Master's degree, Computer Science"], "MajorHayden": ["Rackspace, the #1 managed cloud company", "GIAC", "Fedora Project", "Rackspace, the Open Cloud Company", "Rackspace, the Open Cloud Company", "SecureTrust, Inc", "MHTX Enterprises", "American Medical Response", "Red Hat, License 805010118556202", "MySQL AB", "Red Hat, License 805010118556202", "Red Hat, License 805010118556202", "Red Hat, License 805010118556202", "Red Hat, License 805010118556202", "Red Hat, License 805010118556202", "Red Hat, License 805010118556202", "Red Hat, License 805010118556202", "GIAC", "GIAC", "BS, Biological Sciences", "Cellular And Molecular Biology", "", "Member", "Member", "Life Member", "", "UT EMS"], "AndrewMelton": ["Schafer Corporation", "Atlantic Seaboard Wine Association", "Strategic Planning & Operations Research Executives in the Washington D.C. Metro Area", "Melton Consulting Services, LLC", "System Planning Corporation", "Barrel Oak Winery, LLC", "Paradise Springs Winery", "Decision Technologies Inc.", "TASC, Inc.", "Dynamis, Inc.", "CSCI", "BDM", "US Navy", "", "", "Professional Membership", "Certified Tourism Ambassador", "MS, Operations Research", "BS, Biology"], "CoryStone": ["UMB Bank", "UMB Bank", "Commerce Bank", "Commerce Bank", "Commerce Bank", "Business Management", ""], "MasashiOzawa": ["WDB"], "YinggongZHAO": ["Microsoft", "Nanjing University", "Microsoft Research Asia", "Doctor of Engineering, Computer Science and Technology"], "YuZhang": ["Google", "Microsoft", "UCLA", "IBM T.J Watson Research Center", "Tsinghua University", "Dow Chemical", "Dimitris N. Chorafas Foundation", "University of California, Los Angeles", "University of California, Los Angeles", "University of California Los Angeles", "University of California Los Angeles", "ACM Transactions on Economics and Computation", "IEEE Transactions on Signal Processing", "IEEE Journal on Selected Areas in Communications", "IEEE Journal on Selected Areas in Communications", "IEEE Journal on Selected Topics in Signal Processing", "IEEE Journal on Selected Areas in Communications", "Elsevier Journal on Signal Processing", "IEEE Transactions on Signal Processing", "IEEE INFOCOM", "IEEE Allerton Conference", "IEEE Conference on Decision and Control", "ACM SIGMETRICS Big Data Analytics Workshop", "IEEE INFOCOM 2014", "Doctor of Philosophy (Ph.D.), Electrical and Electronics Engineering", "Master's degree, Electrical and Electronics Engineering"], "KenThomas": ["Envisor Consulting", "The 410 Bridge", "ValleyCrest Companies", "Scapes LLC", "BS, Biology"], "HuanXie": ["Texas Southern University", "University of Houston", "Texas Southern University", "Texas Southern University", "Nanospectra Biosciences", "Ph.D., Chemistry", "B.S., Chemistry"], "ScottCyphers": ["Intel"], "YingZhang": ["cole Polytechnique de Montral", "Institut de recherhe de moteur Shanghai", "Master's degree, nformatique", "Ph.D, Mcanique", "D.E.A., Dynamique des structures", "Bachelor's degree, Mcanique, spcialit en moteur automobile"], "BhuvanArumugam": ["Apple", "Apple", "GoGrid", "IBM DemandTec Solutions", "OpenStack", "CollabNet, Inc.", "The Apache Software Foundation", "Ubuntu", "bk Systems P Ltd.", "Linux for You", "Linux for You magazine"], "MaciekChociej": ["Google", "Google", "Jagiellonian University", "Buzzword Junkie", "Madwands", "Jagiellonian University", "DRAGO Entertainment Sp. z o.o.", "Phiscape AG", "INTERIA.PL", "Storm Educational Software", "R-Data", "Jagiellonian University", "Computerland S.A.", "Proceedings of the International Conference on Computer Vision Theory and Applications Vol. 2, Rome, Italy, 24-26 Feb, 2012, 303-310", "United States", "Finished PhD programme, in hiatus, no dissertation, Theoretical Computer Science", "MSc, Grid Computing"], "DiogoMoitinhode": ["Enlitic", "Stuph.co", "Amazon.com", "Rensselaer Center for Open Source", "Kaggle.com", "COMAP, the Consortium for Mathematics and Its Applications", "", "GPU Technology Conference", "GOTO Conference Copenhagen 2016", "O'Reilly Artificial Intelligence Conference", "Re-work Deep Learning in Healthcare Summit", "ICML 2016", "ICLR 2016 Workshop Track", "ICLR 2016 Workshop Track", "Master's Degree, Computer Science / Machine Learning", "Bachelor's Degree, Computer Science and Mathematics, Magna Cum Laude"], "AlexBlack": ["Skymind.io"], "GaizkaNavarro": ["Microsoft"], "MichalDulko": ["Wockhardt UK", "Wockhardt UK", "Wockhardt UK", "ALcontrol Laboratories", "ALcontrol Laboratories (WSP Environmental Services)", "Minerva Scientific LTD", "MEng, Chemical Technology, Specialisation: Technical and Industrial Analytical Chemistry"], "YaoZhang": ["Intel Corporation", "University of Oxford", "EASA", "The University of Nottingham", "University of Nottingham", "Master of Science (MSc), Computer Science, 3.7 / 4.0 with Distinction Dissertation", "Bachelor's degree, Computer Science, Computer Science, 3.9 / 4.0, First Class, ranking top 5%", "Computer Science Department", "Department of Computer Science", "Xiaoma Primary School in Yulin, Guangxi Province, China", "Young Volunteer Association", "International Tennis Competition at Yinzhou District Gymnasium", "The University of Nottingham", "The University of Nottingham"], "GeorgePeristerakis": ["Polytechnique Montral", "Red Hat", "EVOLIO.ca", "LeSite", "Phoenix Technology Games", "20-20 Technologies", "TISEC Inc", "Montreal Python", "MSR 2012 - 9th IEEE Working Conference on Mining Software Repositories", "Masters Degree, Computer Science", "Bachelor, Computer Science (Software Systems)"], "AjayaAgrawal": ["Qubole", "OpenStack", "Morgan Stanley", "DrizzleDB Project", "Microsoft", "B. Tech, Computer Science", "Cloud Computing Concepts, Course and Programming mastery badge, 89%", "Mining Massive Datasets, 94.9% with Distinction", "Cloud Computing Concepts: Part 2, Course and Programming mastery badge, 99%", "Cloud Networking, Course and Programming mastery badge, 98%"], "SergioGuadarrama": ["Sergio shared", "Google", "UC Berkeley", "UC Berkeley", "European Centre for Soft Computing", "Universidad Politcnica de Madrid", "Universidad Rey Juan Carlos", "UC Berkeley", "Universidad Politcnica de Madrid", "IIIA - CSIC", "Proceedings of the 27th AAAI Conference on Artificial Intelligence (AAAI-2013), July 2013", "Int. Conference IPMU 2008", "Ph.D., Artificial Intelligence"], "ChristopherMacGown": ["Cisco", "Solidify Security", "Piston Cloud Computing, Inc.", "Piston Cloud Computing, Inc.", "OpenStack Foundation", "Piston Cloud Computing, Inc.", "Global Earthquake Model Foundation", "Rackspace Managed Hosting", "Soft Surroundings", "Design Works for Business", "Home Decorators Collection"], "MatthewRocklin": ["Continuum Analytics, Inc.", "Sandia National Laboratories", "University of Chicago", "Sandia National Laboratories", "Argonne National Laboratory", "University of California, Berkeley", "National Solar Observatory", "4d Imaging", "Doctor of Philosophy (PhD), Computer Science", "BA, Physics, Mathematics, Astronomy"], "haosdent": ["The Apache Software Foundation", "Shopee", "Alibaba Group", "EMC", "Bachelor of Science (BS), Network engineering, Four", "Asian Games Organizing Committee", "Adobe and W3C", "CSDN", "China Electronic Commerce Association", "Oracle", "Coder", "volunteer"], "SungKim": ["Hong Kong University of Science and Technology", "Microsoft", "MIT", "UC Santa Cruz"], "LiWei": ["CITIC Securities", "Deutsche Bank", "Citi", "NYSE", "Iowa State University", "University of Utah", "Doctor of Philosophy (Ph.D.), Finance and Financial Management Services", "Bachelor of Science (BS), Management Information Systems, General"], "NeilJerram": ["OpenStack", "Tigera", "Metaswitch Networks", "Project Calico", "QtMoko project", "GNU Project", "PhD, Fluid Mechanics", "BA, Engineering", ""], "YasuakiNagata": ["Mitsui OSK Lines", "Mizuho Financial Group", "Bachelor's degree, Mechanical Engineering"], "kaisheny": ["Ant Financial ", "A Startup Trading Company", "Microsoft Research", "Microsoft Research", "Microsoft", "Texas Instruments", "University of California at San Diego", "Advanced Telecommunications Research, Japan", "Deep Learning Workshop @ NIPS 2013", "Interspeech", "Computer, Speech, and Language", "NIPS", "ICASSP", "The 15th Annual Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies (NAACL 2016)", "Ph.D., Communication and Information Systems", "R. A., Electric Engineering", "M.E, Communications and Electronic Systems", "B. E., Radio Engineering", ""], "delallea@valhalla.apstat.com": ["Ubisoft", "Ubisoft", "ApSTAT Technologies", "Universit de Montral", "ApSTAT Technologies", "Universit de Montral", "Universit de Montral", "Doctor of Philosophy (Ph.D.), Machine Learning", "DEA (<=> Master's Degree), Artificial Intelligence", "Ingnieur, Computer Science", "Ingnieur"], "SergeyVilgelm": ["Mirantis", "REGGI Business", "Aspan Telecom", "Arna (BeTop, Ducat)", "Electronic Archive Corp", "Skif Trade", "Stanford University", "VDJK", "Engineers Degree, Electronic systems and technologies", ""], "JohnBresnahan": ["Robert Half Finance & Accounting", "Robert Half International", "Robert Half International", "Robert Half Management Resources", "Robert Half Finance & Accounting", "Katharine Gibbs School - Boston", "Kingston-Dwight Associates", "BS, Finance degree; Management degree"], "MartinTsvetanov": ["Hewlett Packard Enterprise", "EURODESIGN BG Ltd.", "Bachelor of Science (BSc), Computer Science", "Professional Degree, Computer Hardware and Technology", "Aberystwyth University"], "SamuelMerritt": ["Office of the Circuit Public Defender", "Boys & Girls Club of Sumter Co.", "Georgia Association of Circuit Public Defenders", "Boys & Girls Club of Sumter Co.", "Samuel G. Merritt", "Office of the District Attorney", "Doctor of Law (JD)", ""], "JoshuaHarlow": ["GoDaddy", "Yahoo!", "Rochester Institute of Technology", "Intel", "IBM", "SUNY Research Foundation", "Harlow Inc", "OpenStack", "Yahoo!", "Yahoo!", "Yahoo!", "International Journal of Advanced Intelligence Paradigms", "Master's degree", "Bachelor's degree", ""], "DanielWMane": ["Google", "Palantir Technologies", "University of Chicago", "University of Chicago", "Phoenix Capital Partners", "The Pritzker Organization", "Moodys Corporation", "Smith Barney", "Techforge LLC", "BA, Philosophy & Computer Science", ""], "ShanqingCai": ["Google", "The MathWorks", "The MathWorks", "Boston University", "Boston University", "MIT", "Northeastern University", "Boston University", "Johns Hopkins University", "Vision Research", "Proceedings of the 27th Annual Intl. Conf. IEEE-EMBS,", "Journal of the Association for Research In Otolaryngology", "Journal of Tsinghua University (Sci. & Tech.)", "Proceedings of the 8th Intl. Seminar on Speech Production", "Journal of the Acoustical Society of America", "Journal of the Acoustical Society of America", "Journal of Neuroscience", "PLoS ONE", "Proc. 14th Annual Conference of the International Speech Communication Association (InterSpeech 2013)", "Brain and Langauge", "Frontiers in Human Neuroscience", "PhD, Health Science and Technology", "Master of Science, Electrical Engineering and Computer Science", "Master of Science in Engineering, Biomedical Engineering, 4.0 / 4.0", "Bachelor of Engineering, Biomedical Engineering", "", ""], "PaulTucker": ["Google"], "RamiAl-Rfou": ["Google", "Stony Brook University", "Microsoft", "Google", "Google", "Stony Brook University", "METU", "IEEE", "Jovision", "IEEE", "We are All Jordan Youth Commission", "Member", "Member", "ACM SIGKDD", "Proceedings of the Seventeenth Conference on Computational Natural Language Learning", "24th International Conference on Computational Linguistics (Coling)", "ICML 2013 workshop on Deep Learning for Audio, Speech and Language Processing", "Complenet 2104", "Middle East Technical University", "Technical Report", "Technical Report", "15th SIAM International Conference on Data Mining (SDM 2015)", "Doctor of Philosophy (Ph.D.), Computer Science, 3.98", "Bachelor, Computer, Engineering, 3.79", "General Secondary Certificate, Scientific stream"], "VictorSergeyev": [""], "ArjunJain": ["IIT Bombay", "Perceptive Code LLC", "Apple", "NYU", "Media Integration and Communication Center (MICC), University of Florence", "Yahoo", "Pi Corporation", "United States", "Doctor of Philosophy (PhD), Computer Science", "Bachelor of Engineering (BE), Computer Science and Engineering"], "RJRyan": ["Google", "Mixxx", "Moca Mobile", "Google, Inc.", "NVIDIA", "Interactive Intelligence, Inc.", "MEng, Computer Science", "SB, Computer Science"], "DoronChen": ["United States 8072704", "European Journal of Operational Research 225, 36-43 (2013)", "Mass Storage Systems and Technologies (MSST), 2010 IEEE 26th Symposium: Research Track", "Operations Research Letters 38, 215-217 (2010)", "SIAM Journal on Matrix Analysis and Applications", "Computers and Operations Research 36: 1646-1655 (2009)", "ACM Transactions on Graphics 24(4): 1259-1282 (2005)", "Electronic Transactions on Numerical Analysis 21: 28-46 (2005)", "Linear Algebra and its Applications 405: 239-248 (2005)", "Linear Algebra and its Applications 392: 71-90 (2004)", "Numerical Linear Algebra with Applications 11: 695-721 (2004)", "Electronic Transactions on Numerical Analysis 16: 30-49 (2003)", "ACM SIGMETRICS Performance Evaluation Review", "ERCIM News"], "ColleenMurphy": ["Bloomberg BNA", "The GW Hatchet", "The Chronicle of Higher Education", "The GW Hatchet", "Minneapolis/St. Paul Business Journal", "Pohlad Family Companies", "Bachelor of Arts (B.A.), Political Communication, Spanish", "High school", "The School of Media and Public Affairs", "", "Society of Professional Journalists", "School of Media and Public Affairs", "The American News Women's Club", "The School of Media and Public Affairs", "President"], "JayPipes": ["Mirantis", "Apress"], "KamilRykowski": ["PuppyBox", "Intel Corporation", "Blue Services Sp. z o.o.", "Blue Services Sp. z o.o.", "e-InPost Sp. z o.o.", "Pnyks Sp. z o.o.", "MongoDB, Inc.", "Bachelor of Science (BSc), Applied Informatics"], "LiangliangHe": ["Xiaomi Technology", "Microsoft", "EMC", "VMware", "EMC", "Inria", "M.S.", "B.S."], "BenRoble": ["J.P. Morgan", "J.P. Morgan", "Export-Import Bank of the United States", "Taylor Companies", "Citi", "MBA, Finance and strategy", "BSLA, French and Business", "High School, High School"], "JasonYosinski": ["Geometric Intelligence", "Cornell University", "Google DeepMind", "Grey Garage", "Eliot Middle School", "Mink Labs", "Numerica", "DARPA Grand Challenge Team Caltech", "Proceedings of the 13th International Conference on the Synthesis and Simulation of Living Systems", "Proceedings of the 13th International Conference on the Synthesis and Simulation of Living Systems", "Ph.D.", "study abroad", "B.S.", "HS"], "KentaroTakeda": ["Portola Pharmaceuticals", "Genentech", "Journal of Molecular Biology, 2014, ISSN: 0022-2836", "Journal of Neuroscience", "Journal of Molecular Biology", "Bachelor's degree, Biochemistry and Molecular Biology"], "SvetlanaShturm": ["Mirantis", "Mirantis", "Mirantis", "Renet COM", "Applied Informatics in Economics, 5"], "boulanni": ["Google", "Adobe", "Microsoft", "Google", "Doctor of Philosophy (PhD), Computer Science", "Master of Applied Science (MASc), Engineering Physics", "Bachelor of Engineering (BEng), Engineering Physics"], "PatrickSkjennum": ["Mito.ai", "NTNU", "Abakus", "Romerike Markiseservice AS", "Knowit Objectnet", "Telenor Digital", "Rayon Visual Concepts", "Master of Technology (M.Tech.), Computer Science", "Media & Communication"], "MikeFedosin": ["Mirantis", "OpenStack", "ISPRAS", "Doctor of Philosophy (PhD), ", ", "], "DonalLafferty": ["Coursera Course Certificates, License B6KB3NSJ8V8R"], "SukritiRamesh_": [], "SakshamVarma": ["Amazon Web Services", "Cisco Systems", "University of Massachusetts Amherst", "Cisco Systems", "Yahoo!", "Design Innova", "Master's Degree, Computer Science, 3.80/4.0", "Bachelor of Technology (B.Tech.), Information Technology, 9.21/10", "SPSM '14 Proceedings of the 4th ACM Workshop on Security and Privacy in Smartphones & Mobile Devices", "Proceedings of the International Conference on Advancements in Information Technology Chennai: ICAIT 2011", "Proceedings of the National Level Conference on Information Processing and Computing, Coimbatore"], "GaryKotton": ["VMware", "Red Hat", "Radware", "Radware", "Algorithmic Research"], "KevinLMitchell": ["Master of Business Administration (MBA), Marketing/Marketing Management, General", "BSBA, Business Administration"], "ChrisBehrens": ["YA | Engage", "Superior Recreational Products", "Brand Activation Association (BAA)", "Minneapolis Downtown Council", "Institute for Research in Marketing, Carlson School of Management, University of Minnesota", "Minneapolis Club", "Circle Urban Ministries", "YA | Engage", "Baird Capital Partners", "SourceLink", "SourceLink", "SourceLink", "SourceLink", "ETrac Corporation", "ETrac Corporation", "GE Financial Assurance, Partnership Marketing Group (formerly The Signature Group)", "Official Airline Guides", "Official Airline Guides", "Bachelor of Science, Marketing", "Member"], "StephenGordon": ["salesforce.com", "VMware", "Microsoft Corporation", "Microsoft Corporation", "Microsoft Corporation", "Microsoft Corporation", "Microsoft", "Humanitarian Technology 2016 Science, Systems & Global Impact", "PENCIL, Inc.", "Carbon War Room", "MIT College of Engineering", "Carbon War Room", "Harvard University", "Microsoft", "United States Department of Defense", "Microsoft", "VMware", "MIT Sloan School of Management", "Salesforce Trailhead", "American Red Cross"], "HarmdeVries": ["Montreal Institute for Learning Algorithms (MILA)"], "SimonLefrancois": ["Montreal Institute for Learning Algorithms (MILA)"], "RobertMcGibbon": ["D. E. Shaw Research", "Stanford University", "Ph.D., Theoretical Chemistry", "A.B. Summa Cum Laude, Chemistry & Computer Science", ""], "MikhailKorobov": ["Scrapinghub"], "ChmouelBoudjnah": ["Red Hat", "Duolingo"], "SimonPasquier": ["State of Fribourg / SITel", "EMF", "SBB", "sunrise", "sunrise", "diAx", "Energie Ouest Suisse", "University of Geneva", "Doctor of Philosophy (Ph.D.), Theoretical and Mathematical Physics", "Master's degree, Physics"], "DerekMurray": ["Proceedings of OSDI 2016", "Proceedings of SOSP 2013", "Proceedings of NSDI 2011", "Proceedings of CIDR 2013", "Google", "PhD", "MSc", "BSc (Hons)"], "MattDietz": ["Rackspace, the #1 managed cloud company", "Rackspace, the Open Cloud Company", "Rackspace Hosting", "Rackspace Hosting", "XPEL Technologies", "ENSCO Inc", "Bachelors of Science, Computer Science", "", "United States", "United States"], "CharlesNicholson": ["Google", "Square", "Sony Computer Entertainment America", "Power of Two Games", "Sony Computer Entertainment America", "High Moon Studios", "High Moon Studios", "Liquidnet", "Disney", "Vicarious Visions", "United States 8375295", "United States", "United States", "United States"], "JustinLong": ["New York Times", "Bernie A.I.", "3 Tier Logic", "Earhart DNA Project", "3 Tier Logic", "Alloy Technologies, Inc.", "Rubik", "ACG Corp.", "Snow4Innocents", "Holy Innocents Children's Hospital", "PlanSea Entertainment", "Bachelors, Business, Health Sciences", "Honours Secondary Diploma"], "RazvanPascanu": ["Google DeepMind", "Universit de Montral", "Universite de Montreal", "Master, Smart Systems", "Bachelor of Science, Electrical Engineering and Computer Science"], "AntonArefiev": ["Chrysler Rus", "MAN Financial Services LLC", "De Lage Landen LLC", "Volvo Financial Services LLC", "Promsvyazbank CJSC", "Bachelor of Science, Asian Studies, Economics", "Bachelor's degree, Chinese language"], "BenoitSteiner": ["Google", "Coverity", "Tabula, Inc.", "Magma Design Automation", "Monterey Design Systems", "Ensim", "Mycom International", "Peregrine Systems", "Master's degree", "Master's degree", ""], "AlexanderGordeev": ["Atlas Copco", ", "], "LuongAnhTuan": ["Xuan Mai Investment and Construction Corporation"], "DanSmilkov": ["Google", "MIT", "Macedonian Academy for Sciences and Arts", "IBM", "Netcetera", "Master of Science (M.Sc.), MIT Media Lab", "M.Sc., Networks - Topology, Evolution, Dynamics, GPA: 9.89/10", "Bachelor, Computer Science", "Physical Review E 84 (4), 046102"], "sonaliii": ["Independent Contractor", "BCG Digital Ventures", "Skymind.ai - Deep learning for the JVM", "Contractor", "Cpmc Research Institute", "Statistics", "Computer Software Engineering", "Data Science", "Bachelor of Science (B.S.), Biochemistry, 3.87", "British Journal of Pharmacology"], "LijunXue": ["Carnegie Mellon University", "Rakuten", "Tesla Motors", "University of Washington", "Theano Open Source Dev Community", "HackNTU", "INTERFIRM", "iFanr", "Carnegie Mellon University", "HackShanghai", "Google", "HappyChick Foundation", "AIESEC", "Master's degree, Software Engineering", "Master's degree, Computer Science and Systems, GPA 3.70", "Bachelor of Science (BS), Electrical and Electronics Engineering, GPA 3.5", "Deep Learning", "Coursera", "Coursera", "Coursera", "Coursera", "Coursera", "Coursera", "Canton Fair (China Import and Export Fair)", "Guangzhou International Documentary Film Festival", "Chinese Conference on Cloud Computing(CCCC 2013)", "PACKT Publishing", "", "", "", "", ""], "JonasMeinertzHansen": ["FindZebra"], "BrianLamar": ["EMI - Research Solutions", "MMR, Marketing Research", "BBA Marketing, Marketing"], "JeyKottalam": ["Berkeley Institute for Data Science, UC Berkeley", "AMPLab, Computer Science Division, UC Berkeley", "Adjective Noun", "meetyou", "Coral8", "Google & The Mono Project", "UC Davis Department of Computer Science", "UC Davis DARPA Grand Challenge Team"], "Geetika_Batra": ["OpenStack", "Lyxel Labs Private Limited", "OpenStack", "OpenStack", "Outreachy Intern at OpenStack", "Learn IT Girl, License 10060142", "Accredible, License Accredible-10222048", "Bachelor of Technology (B.Tech.), Electronics and Communication", "87.2%", ""], "KyungHyunCho": ["University of Montreal - Postdoctoral Researcher", "Aalto University School of Science, Finland, Ph.D and M.Sc.", "Zen Robotics Inc., Finland", "Interactivy, Korea", "Korea Advanced Institute of Science and Technology - Undergraduate Researcher", "Korea Advanced Institute of Science and Technology - Undergraduate Researcher"], "SachiKing": ["Hewlett Packard Enterprise", "Anchor Systems", "Anchor Systems", "Atipa Technologies", "Atipa Technologies", "Zen Zero"], "SeongJaePark": ["SeongJae .", "Distributed Computing System Lab, Seoul National University", "Korea Open Source Software Lab", "Korea Open Source Software Lab", "n/a", "Samsung Electronics", "Suwon Samsung Software Membership", "Doctor of Philosophy (Ph.D.), Computer Science and Engineering", "Bachelor of Science (BS), Information Computer Engineering", "Bachelor of Science (BS), Electronics Engineering", "Google Developer Groups Korea Union", "Google Korea", "Google Developer Groups Suwon"], "AlexanderRosenbergJohansen": ["Salesforce", "DTU - Technical University of Denmark", "Master of Science (M.Sc.), Mathematics and Computer Science, 11.4 of 12.0", "Master of Science (M.Sc.), Computervidenskab", "Bachelor of Science (B.Sc.), Management Information Systems, General, 10.7 of 12.0", "Bachelor of Science (B.Sc.), Computervidenskab", "TensorFlow", "Deep Learning Research, In", "NIPS recurrent neural network Symposium, 2016", "International conference on acoustics speech and signal processing, 2016"], "DarrenWhite": ["dhs"], "MatthiasSchmitz": ["Unternehmensberatung Matthias Schmitz"], "AlanWu": ["Microsoft", "Qualcomm", "Holland Bloorview Kids Rehabilitation Hospital", "University of Toronto", "Master of Science (M.Sc.), Computer Science", "Bachelor of Applied Science (B.A.Sc.) in Engineering Science, Engineering Science", "Toronto Rehabilitation Institute", "China ZL 2008 2 0022119.9"], "SuharshSivakumar": ["Google", "University of Illinois at Urbana-Champaign", "Google", "University of Illinois at Urbana-Champaign -- Student Sustainability Committee", "Bazaarvoice", "City of Moline", "Bachelor of Science (BS), Computer Science"], "VincentVanhoucke": ["Vincent shared"], "YosefBerman": ["Doctor of Medicine (MD), Medicine", "Master of Business Administration (MBA), Finance, 3.67", "B.A., US History, Pre-Medical Sciences, 3.8", "MedStar Georgetown University Hospital", "Rutgers - Robert Wood Johnson Medical School", "Robert Wood Johnson Medical School", "Kaplan Test Prep and Admissions", "Summit Oaks Hospital", "University of Maryland"], "OlivierDelalleau": ["Ubisoft", "Ubisoft", "ApSTAT Technologies", "Universit de Montral", "ApSTAT Technologies", "Universit de Montral", "Universit de Montral", "Doctor of Philosophy (Ph.D.), Machine Learning", "DEA (<=> Master's Degree), Artificial Intelligence", "Ingnieur, Computer Science", "Ingnieur"], "DustinWebb": ["Webb Tech, LLC", "Omniture", "Strategix Performance", "Clear Channel Broadcasting of Salt Lake City", "Crossland Mortgage", "Teleperformance USA", "International Conference on Robotics and Automation 2013", "Ph.D, Artificial Intelligence and Robotics", "Bachelors of Science, Computer Science with emphasis in the application of AI to robotics", "AS, Computer Science", ""], "PawelSkowron": ["Intel Corporation", "Master of Business Administration (M.B.A.)", "BS", "Masters Degree", "Red Hat, Inc., Licencja 120-188-719", "Licencja scrum.org", "Oracle", "International Project Management Association, Licencja 80/2010"], "GokulaKrishnan": ["Gokula Krishnan auf LinkedIn", "Gokula Krishnan gefllt Folgendes:", "Gokula Krishnan hat Folgendes mitgeteilt:", "Gokula Krishnan gefllt Folgendes:", "ETH Zurich", "MIT Media Lab and Srujana Innovation Center, LV Prasad Eye Hospital", "BITS Pilani", "Wearable and Pervasive Computing and Networking Lab (WPN lab), BITS Pilani", "SDET Lab, BITS Pilani", "Georgia Institute of Technology", "BITS Pilani", "BITS firefox community", "Indian Institue of Remote Sensing", "Kanini Computers", "Department of Science and Technology, Government of India", "Homi Bhabha Centre for Science Education", "BITS Pilani", "IBM", "Microsoft", "Government of India", "Masters Degree, Computer Science", "Bachelor of Engineering (Honours), Computer Science, 9.18/10", "High school graduation, 474/500", "Till 10th", "Prfungsergebnis: 329/340", "Prfungsergebnis: 113/120", "Coursera Course Certificates, Lizenz XE6ZUFATXPNK", "Coursera Course Certificates, Lizenz TFQEUB686R7A", "Coursera Course Certificates, Lizenz RGATA6S756C5", "Coursera Course Certificates, Lizenz 6WQKBBW3MDEZ", "Duolingo", "edX"], "AndrewDai": ["Ph.D.", "BA"], "sguada": ["Sergio shared", "Google", "UC Berkeley", "UC Berkeley", "European Centre for Soft Computing", "Universidad Politcnica de Madrid", "Universidad Rey Juan Carlos", "UC Berkeley", "Universidad Politcnica de Madrid", "IIIA - CSIC", "Proceedings of the 27th AAAI Conference on Artificial Intelligence (AAAI-2013), July 2013", "Int. Conference IPMU 2008", "Ph.D., Artificial Intelligence"], "AnthonyYoung": ["GASY INVESTMENT Co", "GASY Investment Co.", "GASY INVESTMENT COMPANY", "KMY HOLDINGS, INC", "KMY HOLDINGS, INC", "SALOMON SMITH BARNEY", "PHILADELPHIA & AMERICAN STOCK EXCHANGE", "U.S. Marine Corp", "Economics, Economics, Mathematics"], "BartvanMerri\u00ebnboer": ["Twitter", "Facebook", "Self-Employed", "TEDxWarwick", "AIESEC", "GroeneKruis Domicura", "Paris International Model United Nations (PIMUN)", "European Commission", "SOS Children's Villages", "Doctor of Philosophy (Ph.D.), Machine learning, A", "Master of Science (MSc), Complex Systems Science (Erasmus Mundus), A", "Master of Science (MSc), Complex Systems Science (Erasmus Mundus), GPA 3.9/4.0", "Bachelor of Science (BSc), Mathematics and Business Studies, First Class Honours", "Business, Israeli politics, Middle Eastern history, Ethics, A (93%)"], "YinggongZHAO_": ["Microsoft", "Nanjing University", "Microsoft Research Asia", "Doctor of Engineering, Computer Science and Technology"], "LinYang": ["LinkedIn", "Max Talents", "Microsoft", "Prediction Systems Inc", "Bookman, Ltd", "Prediction Systems Inc"], "OliviaNordquist": ["Google", "HookLogic, Inc.", "University of Michigan", "Mary Markley Dining Services", "Bachelors Degree, Computer Science", "French Language and Literature", "Clarkston United Methodist Church", "Alternative Spring Break"], "JonBernard": ["CrossChx", "Bernard Interactive", "Victoria's Secret", "Victoria's Secret", "The Columbus Dispatch", "The Columbus Dispatch", "West Virginia Media Holdings, LLC", "Cox Enterprises, Inc. - WTOV-TV9", "B.A., Communication"], "MattJoyce": ["Center for Employment Opportunities", "GreenLight Fund", "William Penn Foundation", "Harvard University", "Harvard University", "Philly Fellows", "Philadelphia Committee to End Homelessness", "MPP", "BA, History", "Broad Street Ministry", "Philly Fellows", "Haverford College", "Leadership Philadelphia"], "YuefengZhou": ["Google", "Conviva", "Carnegie Mellon University", "Morgan Stanley", "Master's Degree, Information Networking, 3.77/4.0", "Bachelor's degree, Computer Science, 87/100", "Exchange Student, Computer Science", "Information Networking Institute, Carnegie Mellon University", "Chun-Tsung Endowment Fund"], "MarcAbramowitz": ["Marc liked", "SurveyMonkey", "SurveyMonkey", "pymssql open source project", "Chegg", "BlueKai", "Yahoo!, Flex Force (Tiger Team)", "Yahoo!, Yahoo! Personals Engineering Team", "Fireclick", "Digidesign", "Stanford University", "Lawrence Livermore National Laboratory", "Northeast Parallel Architectures Center", "MS", "BS", "Linux.com", "https://www.linux.com/news/installing-linux-vserver", "Linux.com", "Linux.com", "Linux.com", "Antic Magazine", "Antic Magazine"], "JoshLevenberg": ["Google Research"], "ChrisBuccella": ["Intralinks", "BA", "BS", "United States US8271501", "United States US8041555", "United States US7836348", "Kiva.org", "AARP TaxAide"], "SherryMoore_": ["Google", "Sun Microsystems", "Intel"], "DongjoonHyun": ["Hortonworks", "The Apache Software Foundation", "SK Telecom", "Samsung Electronics", "Data Mining and Knowledge Discovery", "ACM SIGKDD", "Distributed and Parallel Databases", "United States US8732759 B2", "United States US8661041 B2", "United States US8457472 B2", "United States US8352985 B2", "United States", "United States", "Korea 1015228710000", "Korea 1015400190000", "Korea 1012569400000", "Korea", "Korea", "Korea"], "nouiz": ["mnubo", "Briowireless Inc.", "Synergie Pilates", "Tekelec", "Tekelec", "Tekelec", "Blueslice Networks", "Nortel", "Teleglobe", "Microcell", "TechnoMontral", "Startup Weekend", "WearHacks", "Fondation Montral inc.", "Academos", "Founder Institute", "C100", "CABA", "Gartner", "ABI Research", "Price Waterhouse Coopers", "Deloitte", "Canadian Innovation Exchange", "Ernst & Young", "C100", "Branham300", "Bronfman Family Foundation", "Light Reading", "IIoT Symposium", "C2 MTL 2016 & Montreal Chamber of Commerce", "Canadian Venture Capital Association conference 2016", "Continental Automated Buildings Association - 2016 forum", "Ecole Polytechnique de Montreal / HEC", "IoT World Forum - Dubai", "TechnoMontral - l'Internet des Objets", "The Founder Institute", "Europe EP2130324", "B.Eng", ""], "SigurdSpieckermann": ["Siemens AG, Corporate Technology", "Siemens AG, Corporate Technology", "MAN Diesel & Turbo SE", "Hamburg University of Technology", "Kurschat GmbH Messtechnik + Automation", "Eisenfhr, Speiser & Partner Patentanwlte Rechtsanwlte", "Kurschat GmbH Messtechnik + Automation", "Eisenfhr, Speiser & Partner Patentanwlte Rechtsanwlte", "Channel Business Services GmbH / TuTech Innovation GmbH", "United States", "Neurocomputing (Special Issue ESANN 2014)", "Advances in Neural Information Processing Systems (NIPS), Second Workshop on Transfer and Multi-Task Learning: Theory meets Practice", "Proceedings of the European Conference on Machine Learning (ECML), Workshop on Generalization and Reuse of Machine Learning Models over Multiple Contexts", "Proceedings of the 24th International Conference on Artificial Neural Networks (ICANN)", "Proceedings of the 22nd European Symposium on Artificial Neural Networks, Computational Intelligence and Machine Learning (ESANN)", "Dr. rer. nat., Computer Science", "Master of Science (M.S.), Computational & Mathematical Engineering, GPA 3.65 (=A-)", "Bachelor of Science (B.Sc.), Computer Science and Engineering, 2.1 (German grading system)", "Abitur, 1.7 (German grading system)", "", ""], "JasonCannavale": ["Rackspace, the #1 managed cloud company", "", ""], "RobertDiPietro": ["Johns Hopkins University", "MIT Lincoln Laboratory", "Northeastern University", "Master of Science (MS), Electrical Engineering", "Bachelor of Science (BS), Applied Physics and Engineering"], "NguyenHungPhuong": ["Fujitsu Viet Nam", "FPT Software", "Bachelor's degree, Law", "IBM, License None", "No"], "ChristofAngermueller": ["Molecular Systems Biology", "http://biorxiv.org/content/early/2016/05/27/055715", "Nature Methods", "Nature Methods", "Diabetologia", "BioMed Research International", "Bioinformatics", "Cell"], "ThomasLeaman": ["Landstar - Ranger", "Arrow trucking", "GE Transportation", "Associate's degree, Logistics, Materials, and Supply Chain Management", "Associate's degree, Business/Commerce, General"], "YuwenYan": ["Shanghai Haizhi Intelligent Technology Co.", "Microsoft", "WI Input Method Team of HIT", "M.S., Computer science", "B.S., Computer science", "", ""], "IgorMacedoQuintanilha": ["Laboratrio de Sinais, Multimdia e Telecomunicaes - UFRJ", "Letsevo, Designoteca", "GTA - Grupo de Teleinformtica e Automao", "M.Sc., Electrical Engineering", "B.Sc., Electronics Engineering", "Coursera Course Certificates, License NXJPL29XL556"], "JoshuaV.Dillon": ["Google", "Georgia Institute of Technology", "Microsoft Research", "Purdue University", "Purdue University", "Purdue University", "Lawrence Livermore Nat. Lab", "IBM", "ThermoAnalytics Inc", "IBM", "IBM", "Michigan Department of Transportation", "Ph.D, Computational Science & Engineering, 4.0", "MS, Electrical & Computer Engineering", "B.S, Computer Engineering & Electrical Engineering"], "SteveMartinelli": ["OpenStack", "OpenStack", "IBM Canada", "IBM Canada", "IBM Canada", "IBM Canada Ltd.", "York University", "IBM", "IBM", "O'Reilly", "OpenStack Vancouver Summit", "OpenStack Vancouver Summit", "OpenStack Vancouver Summit", "OpenStack Summit Presentation November 2014", "Youtube", "IBM DeveloperWorks", "Thoughts on Cloud", "OpenStack Summit Presentation May 2014", "OpenStack", "Stackalytics", "IBM", "B. ASc, Computer Engineering"], "KuiShi": ["Huawei Technologies", "OpenStack Project", "Polycom", "EMC", "Wind River", "Institute of Software China Academy of Sciences", "Bachelor's degree, Computer Science & Technology"], "BriannaPoulos": ["Johns Hopkins University Applied Physics Laboratory", "Extreme Networks", "GlaxoSmithKline", "NC State Undergraduate Tutorial Center", "Cisco Systems", "NC State University Housing", "Bachelor of Science, Computer Engineering"], "ToanNguyen": ["Hetrick-Martin Institute", "Bachelor of Arts (B.A.), Chemistry, concentration: Biochemistry", "Biological Sciences", ""], "AmitAgarwal": ["Microsoft", "Microsoft", "Microsoft", "Microsoft", "Mentor Graphics India Pvt. Ltd.", "Microsoft", "UCLA VLSI CAD LAB", "Mentor Graphics India", "ICCAD 2008", "Journal - ACM Transactions on Design Automation of Electronic Systems (TODAES)", "United States 12/971,943", "United States 12/413,780", "United States 13/158,966", "United States PCT/US2012/039884", "United States 20120324430", "United States 8677322", "United States", "MS, Computer Science (Programming Languages and Systems)", "BTech, Computer Science and Engineering"], "KevinJamesMatzen": ["Cornell University", "Cornell University", "Microsoft", "University of Michigan", "National Instruments", "Ph.D., Computer Science", "BSE, Computer Engineering, Computer Science Engineering", "ICCV 2013", "ECCV 2014"], "XingdongZuo": ["Bachelor of Science (B.S.), Applied Mathematics"], "JosephTurian": ["Company in Stealth Mode", "MetaOptimize LLC", "GigaOM", "Universit de Montral", "MIT AI Lab", "Ph.D., Computer Science", "AB, Computer Science"], "JustinShepherd": ["Eastdil Secured", "CBRE", "Jones Lang LaSalle", "Master of Business Administration (MBA), Investments", "Bachelor of Arts (B.A.), Political Science and Government"], "LinkerLin": ["Dianping", "Alibaba", "Master of Computer Applications (M.C.A.), Recommendation System", "Bachelor of CS, Computer Software Engineering"], "AaronRosen": ["PDT Partners", "AppNexus", "AppNexus", "Facebook", "Google", "Addison Search", "Medialets", "Eliassen Group", "Apex Systems", "Apex Systems", "Hawk Ridge Systems", "B.A."], "SeanDague": ["Hewlett-Packard", "Mid Hudson Valley Linux and Open Source Users Group", "OpenStack Summit Spring 2013", "Poughkeepsie Farm Project", "MS, Computer Science", "Bachelors, Physics", ""], "Pamela-RoseVirtucio": ["Bachelor of Science (B.S.), Computer Science"], "frankseide": ["Microsoft", "Microsoft", "Microsoft", "Microsoft", "Microsoft", "Microsoft", "Philips Research, Taipei", "Philips Research", "Dipl.-Ing., EE, CS"], "fvsin": ["Montreal Institute for Learning Algorithms (MILA)"], "RobertLi": ["Brookfield Property Partners", "Tishman Speyer", "Grosvenor", "Shui On Land", "MSRED, Real Estate Finance and Investment", "Bachelor's degree, Econometrics"], "Caglar": ["Proceedings of the 15th ACM on International conference on multimodal interaction"], "StanLagun": ["Mirantis", "Mirantis", "Mirantis Inc."], "RussellSim": ["Pulcinella Toronto", "Culinary Management"], "GijsvanTulder": ["Biomedical Imaging Group Rotterdam, Erasmus MC"], "yifeif": ["Yifei liked", "Google", "Microsoft", "Olin College of Engineering", "Microsoft", "IEEE Xplore", "Master of Science (M.S.), Electrical Engineering", "Bachelor of Science (B.S.), Electrical and Computer Engineering"], "GeorgOstrovski": ["Google DeepMind", "DeepMind", "Sunrise Setting Ltd", "University of Warwick", "ISD Software und Systeme GmbH", "Coursera", "Coursera", "Coursera", "Coursera", "Coursera", "Journal of Dynamics and Games", "Physica D: Nonlinear Phenomena", "Topology and its Applications", "Regular and Chaotic Dynamics", "Doctor of Philosophy (PhD), Mathematics", "MSc in Mathematics, with distinction", "Visiting student", "Pre-diploma (Vordiplom), Mathematics, 1.1"], "JesseLivezey": ["UC Berkeley", "Audience, Inc.", "Cornell University", "Weill Cornell Medical College in Qatar", "Cornell University", "Facilitator, Teacher, Mentor", "Physics, Biophysics, Theoretical Neuroscience, Machine Learning", "B.A., Physics, Mathematics"], "QinZhao": ["Ingredion Incorporated", "Oceans Omega / Mycell Technologies LLC", "Rutgers University", "International Flavors & Fragrances Inc.", "Lifeflo Inc.", "Promotion In Motion Inc.", "Doctor of Philosophy (Ph.D.), Food Science, 3.9/4.0", "Bachelor of Science (BS), Biotechnology, 3.5/4.0", "Journal of Agricultural and Food Chemistry", "Carbohydrate Polymers", "Journal of Agricultural and Food Chemistry", "Journal of Agricultural and Food Chemistry", "Food Chemistry", "", "", "", ""], "yzhang87": ["GoDaddy", "EMC", "Pivotal Software, Inc.", "Amazon", "Beijing Topsec Network Security Technology", "Huawei", "MediaTek", "Lytran", "Master's degree, Information Technology, Mobility", "Bachelor's degree, automation"], "cai-lw": ["Wei LI gefllt Folgendes:", "Bachelor's Degree, Computer Science", "Master of Philosophy (M.Phil.), Electrical and Electronics Engineering", "Google", "Kaggle", "NetEase Youdao"], "DaveMcNally": ["Surgical Tables Inc", "BenchMark Rehab Partners", "Allen Medical Systems Inc", "Maverick Orthopedics Inc"], "SuneelMarthi": ["The Apache Software Foundation", "Red Hat", "Washington DC Apache Flink Meetup", "Intel Corporation", "VeriSign", "Lockheed Martin", "Plateau Systems", "AT&T Government Solutions", "Siemens Energy Management Systems", "Harris Corporation"], "KashifRasul": ["Samson Properties", "Cricket Communications", "PCC Wireless", "InTouch Wireless", "K S Wireless", "Northern Virginia Association of Realtors", "Bachelor of Science, Finance"], "delallea": ["Ubisoft", "Ubisoft", "ApSTAT Technologies", "Universit de Montral", "ApSTAT Technologies", "Universit de Montral", "Universit de Montral", "Doctor of Philosophy (Ph.D.), Machine Learning", "DEA (<=> Master's Degree), Artificial Intelligence", "Ingnieur, Computer Science", "Ingnieur"], "DerekHiggins": ["FEI Company"], "hunkim": ["Hong Kong University of Science and Technology", "Microsoft", "MIT", "UC Santa Cruz"], "JackRae": ["Google", "Quora", "Heswall Disabled Children's Holiday Fund", "Master of Science (M.S.), Statistics, 4.1 / 4.3", "Master of Science (M.Sc.), Mathematics and Computer Science, 1st Class Honors"], "YaguangTang": ["MANDOO GROUP PTY LTD"], "AlaRezmerita": ["Cloudwatt", "PROLOGUE", "INRIA", "Universit Paris-Sud 11", "Universit Paris-Sud 11", "Euro-Par 2006", "Euro-Par 2006", "MPRI, Informatique", "DESS, Informatique", "Matrise, Informatique"], "WilliRichert": ["Microsoft (Bing)", "packt", "packt", "PhD Thesis, C-LAB Publication / University of Paderborn"], "DjangoPeng": ["2012 Labs, Huawei Technologies", "University of California, San Diego", "Witspring Inc", "Zhejiang University", "Visiting Scholar, Bioinformatics", "Bachelor of Engineering (B.Eng.)(Top 5%), Computer Science", "Zhejiang University", "Zhejiang University", "Zhejiang University", "", "Zhejiang University", "COMAP(the Consortium for Mathematics and Its Applications)", "Huawei Technologies Co., Ltd", "Huawei Technologies Co., Ltd", "DataCamp, License 0a39a85efc0d93aab822ba10eb5830a6c5d2ae23", "DataCamp, License 16186fa5294a7bbfb80460da954b74cfdd94ea5e"], "AndreyBrindeyev": ["IBM Redbooks"], "TakaoNakaguchi": ["", "NTT-AT", ", "], "DavidG.Andersen": ["Carnegie Mellon Department of Computer Science", "MIT - Laboratory for Computer Science (LCS/CSAIL)", "Compaq SRC", "University of Utah", "ArosNet, Inc.", "Multi-State Lottery Association, Intel, Banner & Witcoff, LLC, IJNT, Inc., Ascensus, others"], "MattRiedemann": ["IBM", "IBM", "IBM", "IBM", "Daktronics", "Bachelor of Science, Computer Science"], "JakubRuzicka": ["EZ, a.s.", "EZ, a.s.", "EZ, a.s.", "HayGroup", "Appian Group", "Deloitte", "Master of Business Administration (MBA), Business Administration and Management, General", "Mgr, Economics", ""], "KaseyAlusi": ["Workday", "Workday", "Threadix", "Workday", "Boeing", "Boeing", "Bayer HealthCare", "Bayer HealthCare", "Bayer HealthCare", "Bachelors, Informatics"], "Graham Hayes": ["HubSpot", "HubSpot", "HubSpot", "HubSpot", "HubSpot", "HubSpot", "Salem Five", "Bachelor, Business Administration; Marketing"], "SamAbrahams": ["Sam liked", "Sam liked", "Memdump LLC", "Illumination Entertainment", "Technology Learning Center", "Roadmap to Success Program, University of Richmond", "Arlington Public Schools", "Bachelor of Science (B.S.), Mathematical Economics, cum laude", "International Space Apps Challenge - Pasadena", "Arlington Food Assistance Center", "Bleeding Edge Press"], "GrahamTaylor": ["School of Engineering, University of Guelph", "Investment Industry Regulatory Organization of Canada (IIROC)", "OANDA", "Courant Institute of Mathematical Sciences, New York University", "Mixamo", "Speech Technology Group, Microsoft Research", "INSA de Lyon Technical and Scientific University"], "DelipRao": ["Joostware", "Amazon", "Glassdoor", "Twitter", "Human Language Technology Center of Excellence", "Google", "Google Inc., CA", "Indian Institute of Technology Madras", "IBM India Research Labs, New Delhi", "PhD, Machine Learning, Natural Language Processing", "MS, Computer Science", "MS, Computer Science", "BE, Computer Science"], "FarukAhmed": ["Universit de Montral"], "AlexanderMatyasko": ["Doctor of Philosophy (PhD), Computer Science", "MS, Computer Science", "Engineer's degree, Computer Science", "Scand", "Coursera", "edX, License CaltechX/CS1156x/Fall2013", "Coursera", "Coursera", "Coursera", "edX, License RiceX/ELEC301x/Spring2014", "Coursera", "edX, License HarvardX/MCB80.1x", "Santa Fe Institute"], "AmjadAlmahairi": ["Maluuba", "Montreal Institute for Learning Algorithms (MILA), Universit de Montral", "Nuance Communications", "McGill University", "McGill University", "McGill University", "Doctor of Philosophy (PhD), Machine Learning", "MSc., Computer Science", "BEng., Informatics, Artificial Intelligence"], "OllieLeahy": ["Glanmire Gas Heating & Plumbing", "Mechanical and building services", "Duggan Engineering"], "MarkMcLoughlin": ["VWR International, LLC", "VWR International, LLC", "VWR International", "Cardinal Health", "Cardinal Health", "IBA", "Mallinckrodt", "BA"], "MikeTurvey": ["The David J. Joseph Company", "Sogeti", "David J. Joeseph", "MSIS, Information Systems", "Information Systems"], "MarkHillebrand": ["Microsoft", "Microsoft", "German Research Center for Artificial Intelligence, DFKI", ""], "ZhouhanLIN": ["Montreal Institute for Learning Algorithms (MILA)"], "SuneelMarthi_": ["Suneel liked", "Suneel liked", "Suneel liked", "Suneel liked", "Suneel liked", "Coursera", "Coursera", "Coursera", "Coursera"], "SeanOwen": ["Cloudera", "Myrrix Ltd", "Pentech Ventures LLP", "Google", "MBA", "BA, Computer Science", "Manning"], "dima": ["Karmasoft - CTO", "Jiber Media, CTO", "Freelance Ruby on Rails + iOS Developer", "Ruboss, CTO", "SAP, Senior Developer", "Master of Software Systems, University of British Columbia"], "IgorBabuschkin": ["DeepMind", "CERN", "Masters Degree, Physics"], "ZhongyueLuo": ["Intel Corporation", "Intel Corporation", "Sina.com", "Enswers Inc"], "RajeshTailor": ["Telstra SNP Monitoring", "Bsmart Management", "UTC Building & Industrial Systems", "Chubb Fire & Security", "Media Review International", "Warner Home Video", "International Masters Publishers", "International Masters Publishers", "International Masters Publishers", "International Masters Publishers", "Murphy Oil", "Murphy Oil"], "MatthewKoichiGrimes": ["University of Cambridge - Computer Vision & Robotics Group Machine Intelligence Lab"], "VictorMelo": ["Bomboniere Ponto Doce"], "WenjianHuang": ["", "The 19th Annual International Conference on Mobile Computing and Networking, ACM MobiCom 2013, Chair Sumi Helal", "Alibaba Group", "The Asia-Pacific Robot Contest, Asia-Pacific Broadcasting Union", "The Young Entrepreneurs Development Council Limited (YDC), Hong Kong", "GS1 Hong Kong", "GS1 Taiwan, GS1 Hong Kong", " US 20130301870 A1", " CN 103383738 A", " No. 61/964,794", "MiningLamp", "Alibaba Group", "Master's Degree, Electrical, Electronics and Communications Engineering", "Bachelor's Degree, Electrical, Electronics and Communications Engineering"], "RickHarris": ["Devonshires Solicitors", "UC Hastings College of the Law", "CASIS MEDIA LIMITED", "The University of Law", "Howard Kennedy LLP", "The City Law School, City University London", "National Centre of Domestic Violence", "Mishcon de Reya", "Michael Simon (Barrister)", "Argent Chambers", "PURE Public Relations", "Foxtons", "Chesterton Humberts", "Hersh & Hersh Attorneys at Law", "Chesterton Humberts", "Cameron Mackintosh Ltd", "BDO LLP", "BDO LLP", "Masters Degree - Virginia Leary Merit Scholarship Recipient, American/U.S. Law/Legal Studies/Jurisprudence and Health Law & Policy, Overall Average of A-", "Post Graduate Diploma in Legal Practice (LPC), Law", "Graduate Diploma in Law, Law", "Bachelor of Arts (BA), Theatre and Performance, 2:1 HONS", "A Levels, 3 A Levels, 9 GCSE's", "Jewish Care", "Jewish Care", "National Centre of Domestic Violence", "University of California, Hastings College of the Law", "Francis Holland School", "Francis Holland School", "Francis Holland School", "The Duke of Edinburghs Award", "The Duke of Edinburghs Award"], "vesis84": ["Karel dal(a) lb se", "Karel dal(a) lb se", "Brno University of Technology", "IBM"], "RadhikaG": ["Mozilla Foundation", "GVC Systems", "Bachelor of Technology (B.Tech.), Computer Science and Engineering", "High School", "Indian Association for Research in Computer Science (IARCS)", "Auro-Mira Service Society"], "GuillaumeAlain": ["University of Montreal", "University of Montreal", "Solace Systems", "Communications Research Centre", "International Conference on Machine Learning 2014", "M.Sc, Computer Science", "Master's, Mathematics (Number Theory)", "Bachelor's, Sciences (Mathematics)"], "DerekMiller": ["Interactive Intelligence", "Project Lead The Way", "Timmy Global Health", "Ball State University", "Ball State University", "Master of Science, Computer Science", "Bachelor of Arts (BA), Telecommunications, Graduated"], "CraigCitro": ["Google", "University of Washington", "Doctor of Philosophy (PhD), Mathematics", "Bachelor of Science (BS), Mathematics and Computer Science", "Bachelor of Science (BS), Mathematics and Computer Science"], "LyubovKolesnikova": [" \" \"", " \" \"", " ", " ", " ", ", , ", " , : 77004482"], "GiulioFidente": ["Red Hat, Licenza 804006254022826", "Red Hat, Licenza 804006254022826", "Red Hat", "Red Hat", "Red Hat", "dotMobi", "IBM", "Babel - a business unit of Par-Tec S.p.A.", "ATS", "Contributor", "Contributor", "Electronic and Automation", "Computer Engineering"], "VladimirNazarenko": ["Lanit-Tercom", "Master's degree, Mathematics and Computer Science", "Bachelor's degree, Mathematics and Computer Science"], "ReyhaneAskari": ["University of Montreal - MISA", "GMA Solar Inc.", "National Research Council Canada"], "NumanSiddique": ["Red Hat", "eNovance", "Cisco Systems", "NDS services Pay TV Technology", "NDS services Pay TV Technology", "VeriFone", "S/W Engineer from Tata elxsi at Schneider Electric", "Tata Elxsi", "Coursera Verified Certificates, License 574G6YVWNZ", "B.E, I.S & E", "Pre University, Science"], "JiaDong": ["Marcetable", "The Walt Disney Company", "The Walt Disney Company", "Amgen", "Advantech", "Marvell Semiconductor", "Master of Business Administration (M.B.A.)", "Bachelor of Science (B.S.)"], "KelvinXu": ["Montreal Institute for Learning Algorithms (MILA)", "Google Research - Brain Residency Program", "Courant Institute at NYU - machine learning group"], "BrantKnudson": ["IBM", "Unisys", "BS, Computer Science, 4.0", "IBM", "IBM"], "carriepl": ["Montreal Institute for Learning Algorithms (MILA)"], "AymanElkfrawy": ["Aurea Software", "Al-Azhar University", "NARSS", "Freelancer", "Leapforce", "Horizonssoftware", "IEEE 2010 Computer Society Students Competition", "IEEE Computer Society", "Bachelor's degree, Computer Engineering"], "ClementFarabet": ["Clment liked", "Clment liked", "Clment liked", "Clment liked", "Twitter", "MADBITS", "New York University"], "JeffDonahue": ["Ph.D., Computer Science", "B.S., Turing Scholars Honors Computer Science", "Pinterest", "UC Berkeley", "Pinterest", "Google", "Google", "Google", "Applied Research Labs", "National Instruments", "National Instruments"], "GauvainPocentek": ["Objectif Libre", "Ulteo", "Linutop"], "Taesup(TS)Kim": ["Universit de Montral", "Microsoft", "Solidware", "Intel Corporation", "LG Electronics", "Microsoft Research Cambridge", "Lam Research Korea", "Korea Univ.-Samsung Techwin Research Center", "168th Medical Battalion", "Doctor of Philosophy (Ph.D.), ", "M.S, Electrical Engineering", "B.E, Electrical Eng."], "VincentMichalski": ["Twenty Billion Neurons GmbH", "Goethe-Universitt Frankfurt a. Mainbersetzung anzeigen\nWie finden Sie diese bersetzung?GutFehlerhaft", "Universit de Montral, Montreal Institute for Learning Algorithms", "Goethe-Universitt Frankfurt a. Main, Bernstein Focus Neurotechnology", "Universit de Montral, Montreal Institute for Learning Algorithms", "Frankfurt Institute for Advanced Studies, Bernstein Focus Neurotechnology", "Goethe-Universitt Frankfurt a. Main, Institute for Sinology", "Goethe-Universitt Frankfurt a. Main, Frankfurt Institute for Advanced Studies", "Goethe-Universitt Frankfurt a. Main, Institute for Sinology", "Doctor of Philosophy (Ph.D.), Computer Sciencebersetzung anzeigen\nWie finden Sie diese bersetzung?GutFehlerhaft", "Master's degree, Computer Sciencebersetzung anzeigen\nWie finden Sie diese bersetzung?GutFehlerhaft"], "ManjunathKudlur": ["Google", "NVIDIA", "University of Michigan", "IBM TJ Watson Research Center", "Synfora Inc.", "Hewlett Packard", "Zaplet"], "ClarkBoylan": ["OpenStack Foundation", "Hewlett-Packard", "Intel Corporation", "Garmin International", "Portland State University", "Intel Corporation", "BS, Computer Science"], "HemanthMakkapati": ["Sun Microsystems", "Openstack Foundation, License COA-1600-0248-0100", "13th IEEE/ACM International Symposium on Cluster, Cloud and Grid Computing", "8th IEEE International Conference on E-Science (e-Science), 2012", "India Workshop on Reverse Engineering (IWRE), 2012", "India Workshop on Reverse Engineering, IWRE 2011", "North Texas Food Bank", "Blacksburg Middle School", "Virginia Tech Indian Students Association", "Virginia Tech Indian Students Association", "Department of Computer Science at Virginia Tech", "Tata Research Development & Design Center", "Tata Research Development & Design Center", "Tata Research Development & Design Center"], "MariusKillinger": ["Google", "Max Planck Institute for Medical Research", "Bosch Singapore", "Bosch", "Masters Degree, Physics", "Bachelors Degree, Physics, 1.4"], "DamienMartin-Guillerez": ["Damien Martin-Guillerez gefllt Folgendes:", "Damien Martin-Guillerez gefllt Folgendes:", "Damien Martin-Guillerez gefllt Folgendes:", "Damien Martin-Guillerez gefllt Folgendes:", "Google", "INRIA", "iQSpot", "LAAS-CNRS"], "RainyaMosher": ["Cisco", "Jamberry Nails", "Rackspace, the #1 managed cloud company", "Rackspace, the #1 managed cloud company", "SA OpenStackers Meetup", "Rackspace Hosting", "Chenega Global Services, LLC", "TerraHealth Inc.", "Eclipsys Corporation", "Dell Computer Corporation", "Pratt & Whitney Avionics", "RFS Design", "Scrum Alliance", "Project Management Institute, License 1385732", "Scrum Alliance", "Family Justice Center of Bexar County", "Masters of Science, Technology Commercialization, 3.7", "Bachelor of Business, Information Systems, Cum Laude / 4.0 major / 3.6 cumulative", ""], "AnandChakravarty": ["Google", "Google", "Microsoft", "Microsoft", "Microsoft Corporation", "Microsoft Corporation", "Microsoft Corporation", "Microsoft", "United States", "Master of Science (M.S.), Computer Science"], "ZimingDong": ["LinkedIn", "Masters Degree, Computer Science", "Bachelors Degree, Computer Science", "Sohu, Inc.", "Association of Computing Machinery", "Coursera Course Certificates, : KAJYKT42GPNV", "ACM International Collegiate Programming Contest"], "RebeccaFinn": ["We Are Social", "Mom Central Consulting", "StudentUniverse.com", "Situation Interactive", "Be the Change Abroad", "J.Crew", "Boston Life", "Marketing", ""], "BorisPavlovic": ["DocuSign", "Early Stage Startup", "Microsoft", "Microsoft", "Microsoft", "Microsoft", "Fairmont Hotels and Resorts", "Fairmont Hotels and Resorts", "Four Seasons Hotels and Resorts", "HOTEL EDOUARD 7", "InterContinental Hotels Group", "Master of Business Administration (MBA)", "Bachelor of Science, International Hospitality Management", "International Sommelier Guild", "Board Member", "President", "Director At Large", "President", "Summit Assistance Dogs", "Microsoft Executive Briefing Center", "Microsoft Advertising", "Microsoft Advertising"], "WlodzimierzBorkowski": ["Intel Corporation", "ADVA Optical Networking", "ADVA Optical Networking", "MongoDB", "Udacity", "The Linux Foundation", "DataCamp, Licencja 2a1199d6a7d190d6625774ba4f3be6542f74d54c", "Big Data University, Licencja BD0111EN", "Big Data University, Licencja BD0115EN", "postgraduate, Software engineering in practice", "postgraduate, Projecting and programming desktop applications", "Master of Engineering (M.Eng.), electronic and telecommunication"], "nyghtowl": ["Skymind.io - Deep learning for Industry"], "terrytangyuan": ["Uptake", "RStudio, Inc.", "DataNovo, Inc.", "Analytical Flavor Systems", "Penn State Department of Mathematics and National Science Foundation", "Penn State Department of Statistics", "Schreyer Honors College", "Schreyer Honors College", "Schreyer Honors College", "HackRPI at Rensselaer Polytechnic Institute", "Capital One", "Google", "Bachelor of science, Mathematics and Computer Science", ""], "IharHrachyshka": ["OpenStack", "Red Hat Czech s.r.o", "OpenStack", "OpenStack", "OpenStack", "Red Hat Czech s.r.o", "EPAM Systems", "Infoblox", "EPAM Systems", "Promwad", "Velesys", "Bachalor, Computer Science"], "SollyRoss": ["Red Hat", "Red Hat", "Rothbury Software", "Memolane", "Bachelor of Science (B.S.), Mathematics and Computer Science, Dean's List"], "DeanTroyer": ["Intel Corporation"], "JamesWexler": ["Google", "Amazon", "Microsoft Corporation", "Raytheon Integrated Defense Systems", "Raytheon Integrated Defense Systems", "Mohawk Innovative Technology, Inc", "MS, Computer Science", "BS, Computer Science"], "koraykavukcuoglu": ["Google Deepmind", "Deepmind Technologies", "NEC Laboratories America", "New York University", "Google", "NEC Laboratories America", "NEC Laboratories America", "Siemens Corporate Research", "Roketsan Missiles Inc.", "PhD", "MS", "MS", "BS"], "AlexeySurkov": ["Google", "ABBYY", "Master's degree, computer science, mathematics", "Goethe Institut"], "StephanHoyer": ["Google", "The Climate Corporation", "University of California, Berkeley", "The Climate Corporation", "Theory of Algorithms Course, UC Berkeley", "US Department of Energy", "", "The Climate Corporation", "The Climate Corporation", "PhD, Theoretical Physics", "BA, Physics, with High Honors and Phi Beta Kappa", ""], "QiweiYe": ["Microsoft", "Microsoft", "Microsoft", "Microsoft", "Computer"], "AdamGandelman": ["IBM", "Akanda inc", "HP Cloud Services", "Canonical Ltd.", "Janrain, Inc.", "LINBIT USA", "ICONN.NET, LLC"], "JonasDegrave": ["Ghent University", "Picanol Group", "Melexis", "Colruyt", "Covameat", "Coursera", "Rode Kruis-Vlaanderen", "Pirate Party Belgium", "Pirate Party Belgium", "SIAM, Society for Industrial and Applied Mathematics", "Master of Science, Electrical Engineering: ICT", "MOSIG: Graphics, Visuals and Robotics", "ASO, Wetenschappen-Wiskunde 8 uur"], "JoostvanDoorn": ["Master of Science (MSc), Artificial Intelligence", "Bachelor of Science (BSc), Computer Science, Cum laude", "VWO, Nature and Technology", "Centrum Wiskunde & Informatica", "University of Twente", "I.C.T.S.V. Inter-Actief", "I.C.T.S.V. Inter-Actief", "Nedforce", "Bestuur 2012-2013, Symposium 2012"], "RobinNabel": ["Google", "Google", "Democratic National Committee", "University of St Andrews", "J.P. Morgan", "Tilde, Ltd", "Masters Degree, Computer Science", "Nanodegree, Self-Driving Car Engineering", "EAP - full year exchange program, Computer Science, GPA 3.95/4.0", "High School", "University of St. Andrews Student's Association", "Athletic Union, University of St. Andrews", "Andrew Melville Hall", "University of St. Andrews, University of California at Davis", "School of Computer Science, University of St Andrews", "Worcester Sixth Form College"], "AttilaFazekas": ["ExxonMobil", "ExxonMobil", "ExxonMobil", "KFKI Ltd.", "Master of Science (MSc), Information Technology", "Exchange semester, Information Technology, MSc", "High School/Secondary Diplomas and Certificates", "High school, Mathematics", "Bachelor of Business Administration (BBA), Business Administration and Management, General"], "JohnLenihan": ["InfoSpace, Inc.", "Bachelor's Degree, Business Administration"], "Raingo": ["Yuncheng liked", "Yuncheng liked", "University of Rochester", "Snapchat, Inc.", "Yahoo", "Microsoft", "Microsoft Research Asia", "University of Science and Technology of China", "Doctor of Philosophy (PhD), Computer Science", "Bachelor of Engineering (BE), Electrical and Electronics Engineering"], "XiYang": ["Capco", "Capco", "LaunchHouse", "KeyBank", "Case Western Reserve University", "Jiangxi Special Type Vehicle Company, Ltd., Jiangxi, China.", "China Minsheng Banking Corporation, Ltd., Beijing, China.", "Capco", "Central Conservatory of music, China", "Capco", "The George Washington University", "Toastmasters International", "New York Cares", "Global Business Accelerator", "Cleveland Foundation Foundry Project", "Score: 740", "Score: 112", "Master of Business Administration (M.B.A.)", "Master, Finance", "Bachelors Degree, International Finance"], "ThomasGeorge": ["Eco Adapt", "iDMOG", "Egos Ventures Inc.", "Snecma", "", "Master of Science (M.Sc.), Artificial intelligence", "Master of science and executive engineering, Data Science", "Erasmus exchange program for my third year of bsc, Mathematics", "Licence, Mathmatiques, Physique, Mcanique, Informatique"], "BenjaminScellier": ["Arxiv", "Knowesis Pte Ltd", "University of Oxford", "Prescient Limited", "Lyce Louis-le-Grand", "French Army", "Academy of Sciences, Institut de France", "International Mathematical Olympiad", "German Mathematical Olympiad", "Ministry of National Education (France)", "International Mathematical Olympiad", "French Mathematical Olympiad", "Doctor of Philosophy (Ph.D.), Deep Learning (Artificial Intelligence)", "Masters Degree, Statistics", "Masters Degree, Applied Mathematics", "Mathematics, Physics and Computer Science"], "GabrielHurley": ["Oracle", "Nebula, Inc.", "NASA", "Strike Awe", "Zero Coordinate Inc", "UC Berkeley", "BA, Social Welfare"], "Kaixhin": ["Twitter", "Kaixhin", "inensu", "Wellframe", "Mobile Sanctuary", "Wellcome Trust", "St. George's University of London", "Doctor of Philosophy (Ph.D.), Bioengineering", "Master of Science (MSc), Biomedical Engineering, Merit", "Bachelor of Arts (BA), Computer Science, II.1", "Department of Bioengineering, Imperial College London", "Credit Suisse", ""], "JoseCastroLeon": ["CERN", "CERN", "CERN", "Aplicaciones Tecnologicas de Domotica", "Master Degree, Computer Engineering (Ingenieria Informatica)", "Bachelor degree, Computer Engineering (Ingenieria Tecnica Informatica, especialidad de Sistemas)"], "NicholasKuechler": ["OpenStack, License COA-1600-0135-0100", "Red Hat, License 120-044-649"], "NathanHowell": ["GoDaddy", "Alpha Heavy Industries", "eBay", "Positronic", "Microsoft", "United States 7,219,148", "United States 7,610,344", "United States 7,272,853", "United States 7,543,076", "United States 8,214,438", "United States 8,533,270", "United States"], "EdwardHopeMorley": ["Canonical UK", "Hewlett-Packard", "Hewlett-Packard", "2:1, MEng Computer Systems Engineering"], "XavierGlorot": ["Google DeepMind", "Microsoft", "UPMC - Sorbonne Universities", "Universit de Montral", "Universit de Montral", "Polytechnique Montral", "Hilti", "Doctor of Philosophy (Ph.D.), Computer Science", "Engineers Degree, Electronics, Computer Science and Communications Engineering", "Electrical and Computer Engineering"], "ke-kuroki": ["Community Lead", "Restaurant Brands International", "Andela", "Google", "iHub Nairobi", "VituMob", "Fitimage Studios LLC", "Cybercasia", "Score: 8/10", "Score: 7/10", "Score: 7/10", "Score: 7/10", "Score: 6/10", "Won't stop learning anytime soon, Computer Software Engineering (Web platform)", ""], "JanPrach": ["Chartboost", "Identified", "VigLink", "AVAST Software", "Sun Microsystems", "mgm technology partners GmbH", "Engineer (MSc), Computer Science, Software Engineering, Computer Vision"], "A.RosenbergJohansen": ["Salesforce", "DTU - Technical University of Denmark", "Master of Science (M.Sc.), Mathematics and Computer Science, 11.4 of 12.0", "Master of Science (M.Sc.), Computervidenskab", "Bachelor of Science (B.Sc.), Management Information Systems, General, 10.7 of 12.0", "Bachelor of Science (B.Sc.), Computervidenskab", "TensorFlow", "Deep Learning Research, In", "NIPS recurrent neural network Symposium, 2016", "International conference on acoustics speech and signal processing, 2016"], "IsakuYamahata": ["Intel", "VA Linux Systems Japan", "FUJITSU SOFTWARE TECHNOLOGIES LIMITED", "Softbank creative", "Nikkei BP"], "jyt109": ["Twitter", "Galvanize Inc", "Skymind.io - Deep learning for Industry", "IBM", "Integrative Genomics and Medicine - Medical Research Council"], "NicolasBallas": ["Universit de Montral", "CEA and Mines ParisTech", "Carnegie Mellon University", "LTU Technologies", "Siemens", "EPITA Research and Development Laboratory", "EPITA", "24/7 Real Media", "IBM", "Fulbright Program", "PhD, Applied Mathematics, Computer Science", "Master, Machine learning and Computer vision", "Master, Computer Science"], "lamblin": ["Montreal Institute for Learning Algorithms (MILA)"], "OleksiiChuprykov": ["Mirantis", "OpenStack", "Mirantis", "Mirantis", ""], "qipeng": ["Stanford University", "Stanford University", "Stanford University", "Stanford University", "Soulgame", "Stanford University", "Tsinghua University", "PhD, Computer Science", "MS, Computer Science", "BE, Computer Software", "Neural Computation", "ICONIP 2013", "", "", "Vice President"], "turambar": ["XPRIZE", "University of Southern California", "Podimetrics", "Alfred E. Mann Institute", "University of Southern California", "Stanford University", "Phi Beta Kappa, Beta of California, Stanford University", "Stanford University", "Project Management Committee for OODT Project", "Co-organizer", "United States 7933900", "1st Workshop on Data Mining for Medical Informatics (DMMI): Electronic Phenotyping", "Proceedings of the IEEE 14th International Conference on Data Mining (ICDM)", "Proceedings of the IEEE International Conference on Data Mining 2013", "AAAI 2013 Fall Symposium Series Discovery Informatics Workshop", "Proceedings of ACM International Health Informatics Conference 2012", "OReilly Open Source Convention: Special Session on Healthcare Technology", "9th International Conference on Complexity in Acute Illness", "SPIE Electronic Imaging: Human vision and electronic imaging XIV", "Journal of Community Health", "ICML 2015", "SIGKDD 2015", "Doctor of Philosophy (Ph.D.), Computer Science", "Deep Learning"], "HuiXiang": ["Allergan plc", "Nitto Denko Corporation", "Allergan, Inc", "DuPont Pharmaceuticals/Bristol-Myers Squibb", "DSM Biologics", "National Research Council Canada - Biotechnology Research Institute"], "AbhijeetMalawade": ["NTT DATA Americas", "Covelix", "Synnove Systems Pvt. Ltd", "Divinet Access Technology", "B.E.(I.T.), Information Technology", "", ""], "MartinThoma": ["Karlsruhe Institute of Technology (KIT)", "Karlsruhe Institute of Technology (KIT) / University of Karlsruhe (TH)", "Coursera", "Coursera", "Duolingo", "Bundeswettbewerb Informatik", "Masters Degree", "Computer Science", "Bachelors Degree, Computer Science", "Abitur"], "FangweiLi": ["Google", "Google", "Google", "Microsoft", "PhD candidate, Computer Science", "BEng, Computer Science"], "TimSalimans": ["OpenAI", "Aidence", "Aidence", "Algoritmica", "Erasmus University Rotterdam", "Microsoft Research", "Independent trader on the Betfair markets", "International Society for Bayesian Analysis", "Kaggle.com", "Erasmus School of Economics", "Bayesian Analysis", "PhD Dissertation", "PhD, Econometrics", "MPhil / MSc, Economics, Major in Econometrics", "BSc (Hons), Liberal Arts and Sciences (Magna Cum Laude) Major in Mathematics & Physics", "Exchange Semester in Australia, Science"], "ThiloWill": ["Microsoft", "Linguatec GmbH", "Sail-Labs GmbH", "IXEC GmbH", "debis Systemhaus GmbH", "Institute of Parallel and Distributed Computing, University of Stuttgart", "Doctor of Philosophy (PhD), Theoretical and Mathematical Physics", "Diplom (Master of Sc.), Physics, passed with excellence"], "BertrandLallau": ["Thales Services", "Alcatel-Lucent", "Nextenso"], "MoslemKazemi": ["Uber", "Brain Corporation", "Brain Corporation", "Carnegie Mellon University", "Carnegie Mellon University", "Simon Fraser University", "Simon Fraser University", "Simon Fraser University", "University of Regina", "Postdoctoral Fellow", "Doctor of Philosophy", "Master of Applied Science", "Bachelor of Applied Science"], "VijayVasudevan": ["Google", "Carnegie Mellon University", "Ph.D, Computer Science", "B.S., Electrical Engineering and Computer Science"], "PhilippeHamel": ["Google Research - Information Retrieval and the Web, Machine Intelligence"], "DanielKrook": ["IBM", "", "", "", "", "", "", "", "", "", "", "IBM developerWorks", "IBM developerWorks", "IBM developerWorks", "IBM developerWorks", "IBM developerWorks", "IBM Redbooks", "IBM developerWorks", "IBM WebSphere Developer Technical Journal", "United States 9,413,833", "United States 9,413,818", "United States 9,361,455", "United States 9,323,572", "United States 9,246,920", "United States 9,229,784", "United States 9,215,153", "United States 9,147,181", "United States 9,122,696", "United States 9,003,480", "United States 8,881,136", "United States 8,880,841", "United States 8,856,664", "United States 8,843,621", "United States 8,494,143", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "IBM", "IBM", "IBM", "IBM", "IBM", "IBM", "IBM", "IBM"], "PatrickMezard": ["Clustree", "MASA Group", "Mercurial", "BadTech SAS", "BadTech SAS", "FactSet Research Systems", "Mappy", ""], "MikeSeltzer": ["Michael liked", "Microsoft", "Microsoft", "Teradyne", "Doctor of Philosophy (PhD), Electrical and Computer Engineering", "Master of Science (MS), Electrical and Computer Engineering"], "MehdiMirza": ["DeepMind", "Universit de Montral", "Google DeepMind", "Flickr", "Atlas Wearables", "Idiap Research Institute", "MIT", "Doctor of Philosophy (Ph.D.), Computer Science", "MSc, Artificial Intelligence", "BSc, Physics"], "ChenFan": ["Amazon", "Star Valley Tech Inc.", "Doctor of Philosophy (PhD), Multimedia communication", "Bachelor of Science (BS), Information communication"], "DirkMueller": ["Coherent Inc.", "Coherent Inc.", "LUMERA LASER GmbH", "Kapteyn-Murnane Laboratories (KMLabs) Inc.", "Corning Incorporated", "Ph.D., Physics", "Vordiplom, Physics"], "GeorgyOkrokvertskhov": ["Mirantis", "Mirantis", "Mirantis", "Mirantis", "Cisco", "Mirantis", "PhD, Physics, Non-linear Dynamics", "Master of Science (MS), Physics, Biophysics"], "JingtianPeng": ["2012 Labs, Huawei Technologies", "University of California, San Diego", "Witspring Inc", "Zhejiang University", "Visiting Scholar, Bioinformatics", "Bachelor of Engineering (B.Eng.)(Top 5%), Computer Science", "Zhejiang University", "Zhejiang University", "Zhejiang University", "", "Zhejiang University", "COMAP(the Consortium for Mathematics and Its Applications)", "Huawei Technologies Co., Ltd", "Huawei Technologies Co., Ltd", "DataCamp, License 0a39a85efc0d93aab822ba10eb5830a6c5d2ae23", "DataCamp, License 16186fa5294a7bbfb80460da954b74cfdd94ea5e"], "DumitruErhan": ["Google Brain", "Google", "Yahoo!", "Google", "Microsoft Research", "Max-Planck Institute for Biological Cybernetics", "Helsinki University of Technology", "PhD, Computer Science", "MSc, Computer Science", "BSc, Electrical Engineering and Computer Science"], "FeiLongWang": ["Catalyst IT Limited", "IBM", "IBM", "IBM", "DCHanson", "IBM China Research Lab", "China's Ministry of Industry and Information Technology, License 08202110005", "IBM", "IBM", "IBM", "Master of Computer Applications (MCA)", "Bachelor's degree, Computer/Information Technology Administration and Management"], "MalcolmSlaney": ["Google", "Stanford University", "Department of Electrical Engineering - University of Washington", "Microsoft", "Yahoo!", "IBM", "Interval Research", "Apple Inc.", "Schlumberger Palo Alto Research", "Bell Laboratories", "PhD, Electrical Enginering", "BSEE with Honors, MSEE, PhD, Electrical Engineering"], "Bart": ["Twitter", "Facebook", "Self-Employed", "TEDxWarwick", "AIESEC", "GroeneKruis Domicura", "Paris International Model United Nations (PIMUN)", "European Commission", "SOS Children's Villages", "Doctor of Philosophy (Ph.D.), Machine learning, A", "Master of Science (MSc), Complex Systems Science (Erasmus Mundus), A", "Master of Science (MSc), Complex Systems Science (Erasmus Mundus), GPA 3.9/4.0", "Bachelor of Science (BSc), Mathematics and Business Studies, First Class Honours", "Business, Israeli politics, Middle Eastern history, Ethics, A (93%)"], "EricBrown": ["MediaWallah", "nToggle, Inc", "Nomi (acquired by Brickstream)", "Media Armor, Inc (acquired by Nomi)", "Jumptap (acquired by Millennial Media)", "Jumptap (acquired by Millennial Media)", "Jumptap (acquired by Millennial Media)", "Dotomi (acquired by ValueClick Media, now Conversant)", "Hyperknowledge", "Parametric Technology Corporation", "Knowledge Management Software", "Compaq", "AdExchanger", "AdMonsters", "AdMonsters", "Diploma", "BS", "High School", "National Restaurant Association Educational Foundation (NRAEF)", "Massachusetts Restaurant Association"], "DanijarHafner": ["B.S. IT Systems Engineering, Computer Science, GPA 3.8/4.0", "", "Google Inc.", "Information Systems Group, Hasso Plattner Institute", "Google Inc.", "Human Computer Interaction Group, Hasso Plattner Institute", "Bleeding Edge Press", "24th European Symposium on Algorithms (ESA)", "SAP, Fujitsu, Dell, HP", "Hasso Plattner Institute", "International Air Transport Association", "Cisco Systems, Inc.", "Google Inc."], "SabariKumarMurugesan": ["VMware", "VMware", "VMware", "Citrix Online", "Columbia Law School", "Oracle", "Oracle", "Master of Science (MS), Electrical, Computer Networks", "Bachelor of Engineering (B.E.), Electronics, Instrumentation"], "UnmeshGurjar": ["Airtel Business", "Airtel Business", "Airtel Business", "Reliance Communications", "Hughes Communications India Limited", "Hughes Communications India Limited", "Onward Technologies Ltd", "The Art of Living", "Bharti Airtel", "Dale Carnegie Training India"], "JamieLennox": ["Cleaver-Brooks Sales and Service, Inc."], "SukritiRamesh": ["Google", "ETH Zurich", "IBM Research", "L3S Research Center", "Hewlett-Packard"], "KirillZaitsev": ["Howden", "Ingersoll Rand", "Camozzi Pneumatics Ltd", "Master of Business Administration (M.B.A.), Strategic Business Administration", "Executive Coaching, Managing the Company", "Master's degree, Mechatronics and International Engineering", "Bachelor's degree, Mechatronics and International Engineering"], "ArnaudLegendre": ["Apple", "VMware", "Google Summer of Code", "Adobe", "Insight Centre for Data Analytics", "VMware", "EPFL (cole polytechnique fdrale de Lausanne)", "Accenture", "Master of Science (MS) Exchange, Computer Science", "Master of Science (MS), Computer Science", "UC Berkeley Extension, License In progress", "Coursera Course Certificates, License QFRARJY6TQEB", "Coursera Course Certificates, License 96AVAT45K99V"], "AlexGaynor": ["Freelance Filmmaker"], "ArturSvechnikov": ["Actimind", "Freelance Software Development", "BoonEx", "Meridis", "Coursera", "Coursera", "Coursera", "Software Engineering"], "MichaelKrotscheck": ["VMware", "OpenStack Foundation", "HP Cloud Services", "Rosetta Stone", "Livemocha", "The Active Network", "Adobe Systems", "Resource Interactive", "Elliance", "Abreon", "NDCHealth", "Master of Business Administration", "BArch"], "JohnDewey": ["JANUS Research Group, Inc.", "JANUS Research Group Inc.", "JANUS Research Group, Inc.", "US Army", "Masters in Strategic Studies, Strategic Studies", "MSEE, Electrical Engineering", "BS in Engineering, Electrical Engineering"], "AdrienVerg\u00e9": [], "ebrevdo": ["SVBio", "The Climate Corporation", "Princeton University - Department of Electrical Engineering", "Siemens Corporate Research", "Google - Computer Vision for OCR", "Air Force Research Laboratories, Maui Optical and Supercomputing Site, Kihei, HI", "Rensselaer Polytechnic Institute - Electrical Impedance Tomography (EIT) Research Group", "Factset Research Systems"], "DaneFichter": ["trichome health consualtants"], "TomHancock": ["Agence France-Presse", "Chinese", "MPhil, Philosophy", "BA (Hons), Philosophy"], "VitaliyKolosov": ["OMK-IT", "IBS Holding", "Razvitie Plus", "", "", "specialist, computer scince, maths, economics, phisics"], "JonShlens": ["Google", "Howard Hughes Medical Institute", "UC Berkeley", "Salk Institute for Biological Studies", "Pixar Animation Studios", "Doctor of Philosophy (Ph.D.), Computational Neuroscience", "Bachelor of Arts (B.A.), Physics and Computer Science"], "SorenHansen": ["BSBA, Finance; Economics & Strategy", "", "Capital One", "Capital One", "Northern Trust Corporation", "Olin Business School", "UTC Aerospace Systems", "Cultivation Capital", "TAYLOR COMMUNITY CONSULTING PROJECT", "Goodwill-Easter Seals of MN", "Thomson Reuters", "Lunds and Byerly's", "Partner", "Co-President", "Industrials Portfolio Manager", "State President (October 2011-October 2012)"], "GustavLarsson": ["University of Chicago", "Tricycle Design HB", "Civis Analytics", "Tobii Technology AB", "Physical Sciences Division, University of Chicago", "Department of Computer Science, University of Chicago", "Doctor of Philosophy (Ph.D.), Computer Science", "Master of Science (M.S.), Engineering Physics"], "AshwiniShukla": ["Member", "ACM+IEEE Joint Conference on Digital Libraries (JCDL) 2002", "Scrum Alliance", "University Learning Institute"], "MichaelStill": ["Rackspace, the #1 managed cloud company", "OpenStack", "OpenStack", "OpenStack", "Rackspace, the Open Cloud Company", "Rackspace, the Open Cloud Company", "linux.conf.au 2013", "Canonical Ltd.", "Google", "The Australian National University", "Google Inc", "Google Inc", "TOWER Software", "AUUG", "Linux.Conf.Au", "Linux Australia", "IPAustralia", "IPAustralia", "National Center for Social and Economic Modelling (NATSEM)", "Australian Catholic University", "Questacon", "Department of Defence", "University of Canberra", "Aspect Computing", "Apress", "Apress", "PhD, Computer Science", "BEng, Computer Engineering", "Former board member, former conference director", "The Scout Association of Australia (Scouts Australia)", "The Scout Association of Australia (Scouts Australia)", "St John Ambulance Australia (ACT) Inc", "The Scout Association of Australia (Scouts Australia)", "The Scout Association of Australia (Scouts Australia)", "OpenStack Foundation, License COA-1600-0181-0100"], "ChihebTrabelsi": ["Polytechnique Montral", "Polytechnique Montral", "Polytechnique Montral", "Master of Science (M.Sc.), Computer Science", "", "Licence Fondamentale, Informatique de Gestion"], "CastuloJMartinez": ["Intel Corporation", "IBM", "Master's degree, Electrical and Electronics Engineering, Master's Degree in Electronics Design", "Bachelor of Engineering (B.E.), Electrical and Electronics Engineering"], "AbhishekKekane": ["NTT DATA Americas", "NTT DATA Americas", "IQSPL", "Masters Degree, Computer Management"], "YanisGuenane": ["eNovance from Red Hat", "eNovance", "Freelance", "MNM Consulting", "TechTel21", "Logica", "Epitech", "Six Flags Great America", "Master Technologies de l'information", "Master, Information Technology", "Red Hat, License 150-132-280", "Red Hat, License 150-132-280"], "JinLi": ["GE Capital", "GE Capital", "Citigroup", "IBM", "CFA Institute", "Chinese Institute of Certified Public Accountants", "Member", "Master of Business Administration (MBA), Master of Accounting"], "PavelKirpichyov": ["SIA DYNINNO", "SIA Ambrella", "Partnership Alliance", "Webmedia", "Secondary education, Computer network administration", "Primary education"], "ZonghengYang": ["Google", "AMPLab, UC Berkeley", "Databricks", "Twitter", "UC Berkeley", "Bachelor of Arts (B.A.), Computer Science (Honors program); Mathematics.", ""], "AndyHsiang": ["H&K International", "Agri Ocean Service", "CEVA Logistics", "Express Line Corporation", "Express Line Corporation", "Sino Pearl"], "XiaoqiangZheng": ["Google", "NVIDIA", "Ph.D, Computer Graphics", "B.S, Computer Science"], "EoghanGlynn": ["Red Hat", "Red Hat", "Amazon Web Services", "Red Hat", "Progress Software", "IONA Technologies", "Institute of Technology Tallaght, Dublin", "ICL Fujitsu", "BSc (Joint Honours), Computer Science & Mathematics"], "JoshBleecherSnyder": ["foggy.co", "Braintree", "card.io (Lumber Labs)", "Treeline Labs", "AdCru", "AdMob, Inc.", "Synthese", "MA Philosophy, ABD", "BA", ""], "orhanf": ["Facebook AI Research, Paris", "IBM T.J. Watson Research Center", "University of Montreal Machinie Learning Lab-LISA", "Middle East Technical University - Department of Computer Engineering", "Military Academy - Department of Industrial and Systems Engineering"], "PeteWarden_": ["Goog", "Jetpac", "O'Reilly Media", "OpenHeatMap", "MoveableCode, inc.", "Mailana", "Apple", "PetesPlugins", "Visual Sciences", "BSc, Computer Science"], "slefrancois": ["Montreal Institute for Learning Algorithms (MILA)"], "JamesMorgan": ["Precision Metrics", "Welsbach Electric Corp.", "J.F. White Contracting Co.", "J.F. White Contracting Co.", "PKF-Mark III, Inc.", "Bucks County (PA) Community College", "Gannett Fleming, Inc."], "FabrizioMilo": ["Fabrizio liked", "Fabrizio liked", "Fabrizio liked", "Fabrizio liked", "Fabrizio liked", "Fabrizio liked"], "DeeptiRamakrishna": ["Intel Corporation", "Intel Corporation", "University of Washington", "MindTree", "Masters Degree, Electrical Engineering, 3.95/4.0", "Bachelors Degree, Electronics and Communications Engineering, 79.43/100", "Open Source Technology Center (OTC) at Intel Corporation", "Open Source Technology Center (OTC) at Intel Corporation", "Open Source Technology Center (OTC) at Intel Corporation", "Open Source Technology Center (OTC) at Intel Corporation", "System Validation Engineering (SVE) at Intel Corporation", "System Validation Engineering (SVE) at Intel Corporation", "System Validation Engineering (SVE) at Intel Corporation", "The National Institute of Engineering, India", "Developer", "Rackspace, the #1 managed cloud company"], "CaoXuanHoang": ["SPECCO"], "VaibhavBhatkar": ["Izel Technologies Pvt. Ltd.", "EMC", "Merce Technologies Private Limited", "B.E, Computer Science"], "yobibyte": ["RWTH Aachen University", "Terminal", "hlpme.ru", "CDC.ru", "Imagespark", "Ernst & Young", "RWTH Aachen University"], "ZachPloskey": ["Ploskey Technical", "University of Washington", "University of Washington", "University of Washington Dept. of Earth & Space Sciences", "University of Washington Dept. of Oceanography", "Pacific Northwest National Laboratory", "BAE Systems", "UW Dept. of Earth & Space Sciences", "UW Dept. of Earth & Space Sciences", "UW Dept. of Earth & Space Sciences", "UW Dept. of Earth & Space Sciences", "UW Dept. of Earth & Space Sciences", "Bachelor's Degree, Earth & Space Sciences", "Bachelor's Degree, Anthropology", "Doctor of Philosophy (Ph.D.), Earth & Space Sciences", "", "Rockin' Out"], "MarkWashenberger": ["Nebula, Inc.", "Rackspace Hosting", "Rackspace Hosting", "Rackspace Hosting", "Bachelor of Science (BS), Computer Science, 3.99", "Bachelor of Science (BS), Physics, 3.99", "Bachelor of Science (BS), Mathematics, 3.99"], "ClayGerrard": ["Swift Stack", "Rackspace", "Rackspace Managed Hosting", "Concept Cellular Int'l Inc", "Bachelor of Applied Science (BASc), Computer Science"], "lewuathe": ["The Apache Software Foundation", "Treasure Data", "Yahoo! JAPAN", "Tateno Dennou,Inc.", "Yahoo! JAPAN", "Coursera", "Coursera", ", Information Science", "Japan", "Wiley", "Willey / Wrox"], "MichaelIMandel": ["Brooklyn College, CUNY - Computer & Information Science", "CUNY Graduate Center", "Jelenik Speech and Language Technologies Workshop", "The Ohio State University - Computer Science & Engineering", "Telecom ParisTech - Signal & Image Processing", "Audience, Inc", "University of Montreal - LISA Lab", "Musically Intelligent Machine LLC", "Columbia University - LabROSA", "Boston University - Shinn-Cunningham Lab", "Google, Inc - Google News", "Owl Multimedia", "Bose Corporation", "MIT - CS/AI Lab and Media Lab"], "EdeMeijer": ["Buybrain", "experty", "SNT", "Coursera Course Certificates, Licentienummer YFVBZ7SFULUA", "Coursera Course Certificates, Licentienummer SGJHMT5UPS45", "Coursera Course Certificates, Licentienummer AVKVGZ5XVQ7C"], "JianminChen": ["Google", "Intel Corporation", "University of Florida", "University of Florida", "Motorola Solutions", "ICCD", "IISWC", "IPDPS", "PhD, Computer Engineering", "Bachelor, Computer Science; Computer Science & Technology"], "OlivierMastropietro": ["Montreal Institute for Learning Algorithms (MILA)"], "IldikoVancsa": ["OpenStack", "Ericsson", "Ericsson", "Ericsson", "Ericsson", "OptXware Ltd", "Active Technical Contributor", "Master's degree, Computer Science"], "IcchaSethi": ["Atlassian", "Rackspace, the #1 managed cloud company", "OpenStack", "Rackspace Hosting", "Let's Code Blacksburg!", "Virginia Bioinformatics Institute", "Siemens Technology India", "Rackspace", "Datastores Practice Area, Rackspace", "Rackspace", "Roanoke Blacksburg Technology Council", "Roanoke Blacksburg Technology Council", "Rackspace Blacksburg Office", "Virginia Bioinformatics Institute, Virginia Tech", "Cranwell International Center, Virginia Tech", "SSN College of Engineering, Anna University", "SSN College of Engineering, Anna University", "", "Computer Society of India, SSN Student Chapter", "Anna University", "Grace Hopper Conference", "Talk on \"Deploying Your Application on Public Cloud\" at GHC 2014", "OpenStack @ OpenSource Day at GHC 2014", "WECode Harvard Conference", "OpenSource Day at Grace Hopper Conference", "GNOME Foundation", "Student Opportunity Lab, Grace Hopper Conference", "The National Center for Women & Information Technology (NCWIT)", "Virginia Bioinfomatics Institute - Kids Tech University", "Grace Hopper Conference", "Committee Lead", "Women in Computing Day Co-chair", "Advertising Chair, First Year Representative"], "JustineTunney": ["Google", "Google", "Google", "Occupy Wall Street"], "DinaBelova": ["Materials Chemistry Section, University of Copenhagen", "University of Copenhagen", "Institute of Geology of KRC, RAS", "Scientific Research Institute of Atomic Reactors", "Institute of Geology of KRC, RAS", "Doctor of Philosophy (Ph.D.), Surface chemistry", "Master, Environmental Geochemistry, Hons", "Bachelor, Gelogy, Hons", "RUSMAM", "Crystal Growth and Design", "Journal of Contaminant Hydrology"], "RafaelRivero": ["Verizon", "Verizon Enterprise Solutions", "Verizon", "Verizon", "Verizon Wireless", "Dieste Harmel and Partners", "Digicel USA", "Verizon", "Verizon", "Global Ingenieria", "Verizon", "Verizon", "Marketing Certificate", "MBA, Finance & Telecom"], "medakk": ["Bachelor of Technology, Computer Science Engineering", "PUC, Electronics", "10th ICSE"], "ChrisN": ["Skymind.io - Deep learning for Industry", "FutureAdvisor", "Bloomberg", "New York Times", "Radio France International - English Service", "International Herald Tribune", "Zink Magazine", "International Political Science Association", "Grameen Bank", "Bloomberg News", "Growth", "Bachelor of Arts (B.A.), Economics, Political Science, Magna Cum Laude", "Moments of calm, Zazen", "Philosophy and Political Science", "High School Diploma"], "AbhishekChanda": ["Dell EMC", "Dell EMC", "EMC", "Cloudscaling (acquired by EMC)", "Huawei", "Rutgers University", "Microsoft India (R&D) Pvt Ltd", "United States US20140173018 A1", "Microsoft IT", "Rutgers University", "IEEE NOMEN", "HotMobile poster session", "FutureNet 2012", "European Wireless", "Hack.in", "Master of Science (MS), Electrical and Computer Engineering", "Bachelor of Engineering (BE), Computer Science", "", "Hurricane Electric"], "ErnoKuvaja": ["Red Hat", "Hewlett-Packard Company", "Hewlett Packard", "2nd", ""], "Yuan(Terry)Tang": ["Uptake", "RStudio, Inc.", "DataNovo, Inc.", "Analytical Flavor Systems", "Penn State Department of Mathematics and National Science Foundation", "Penn State Department of Statistics", "Schreyer Honors College", "Schreyer Honors College", "Schreyer Honors College", "HackRPI at Rensselaer Polytechnic Institute", "Capital One", "Google", "Bachelor of science, Mathematics and Computer Science", ""], "JohnSalvatier": ["AI Impacts", "Amazon", "RPX Research, Inc.", "Boise-Cascade", "Boise Cascade", "Capstone Technology", "Kimberly-Clark", "B.S.Ch.E., B.S., Chemical Engineering, Paper Science and Engineering"], "AdamGibson": ["Galvanize Inc", "Skymind.io Deep Learning support services training via deeplearning4j.org", "Zipfian Academy", "CritSend", "Clever Cloud Computing", "Mashape", "ITOxygen", "ITOxygen", "Coursera", "Coursera", "Dropped out, Computer Science/Data Science MIS, 3"], "MatthewBooth": ["Connectivity, Inc.", "BIA Kelsey", "BIAKelsey", "Done Right (Perform Local, Inc)", "Citysearch"], "MathieuGermain": ["Universit de Montral", "Invup", "SherWeb", "Technische Universitt Darmstadt", "Universit de Sherbrooke", "Nuance Communications", "Canadian Space Agency", "cole Secondaire Champagnat", "Centre Prvention Suicide", "Coursera", "Master of Science (MS), Deep Learning", "Bachelor, Computer Science"], "DavanumSrinivas": ["MBA", "M.Sc. (Tech), Information Systems"], "SaizhengZhang": ["Maluuba", "Microsoft Research Redmond", "Deepglint", "Carnegie Mellon University Silicon Valley", "Doctor of Philosophy (Ph.D.), Computer Science", "Bachelor of Engineering (BEng), Electronic Engineering and Information Science"], "CindyPallares": ["Wells Fargo Financial", ""], "hantek": ["Montreal Institute for Learning Algorithms (MILA)"], "GeoffreyIrving": ["Google Brain", "Eddy Systems", "Otherlab", "Weta Digital", "D. E. Shaw Research", "Pixar Animation Studios", "United States US8290757 B2", "United States", "United States", "Proceeding SIGGRAPH '08 ACM SIGGRAPH 2008 talks"], "AlexeyGalkin": ["IBM", "IBM", "IBM", "IBM", "Bachelor's Degree, Computational and Applied Mathematics"], "DanielRenshaw": ["Master of Philosophy (MPhil), Machine learning (esp. neural networks), speech technologies, and natural language processing", "BSc (honours), Artificial Intelligence & Computer Science, 1st", "IEEE International Conference on Acoustics, Speech, and Signal Processing (ICASSP)", "INTERSPEECH 2015: 16th Annual Conference of the International Speech Communication Association (to appear)"], "JamesBergstra": ["Kindred.ai", "University of Waterloo", "Harvard University", "Universit de Montral", "I-mmersion Studios Inc.", "Ph.D., Computer Science", "M.Sc., Computer Science", "B.Sc., Math, Philosophy, Computer Science", "B.Sc., Math, Philosophy, Comp Sci", "B.Sc., Math, Philosophy, Comp Sci", "", "", ""], "JonathanHseu": ["Google", "Dropbox", "Google"], "JoshPatterson": ["Josh liked", "Josh liked", "Josh liked", "Josh liked", "Josh liked", "Josh shared", "Skymind.io - Deep learning for Industry", "Relish", "Skymind.io - Deep learning for Industry", "O'Reilly Media", "Patterson Consulting of TN", "Continuuity", "Cloudera", "Cloudera", "Cloudera", "Tennessee Valley Authority", "University of Tennessee at Chattanooga", "LEWCON, LLC", "Cerillian", "USXpress", "Realty Center, GMAC", "", "IAAI-09"], "EricWindisch": ["Docker, Inc", "Cloudscaling (acquired by EMC Corp)", "GrokThis.net", "Harris Computer Systems", "Site5 Internet Solutions, Inc.", "BurstNET Technologies, Inc.", "OpenStack Foundation", ""], "RohanJain": ["Google", "Microsoft - Bing, Machine Learning Div", "Tryst - 2008, IIT Delhi's technical festival", "Indian Institue of Technoloy, Delhi", "Network Appliance Inc"], "PatrickNguyen_": [], "LouisTaylor": ["Paulson & Co.", "Deutsche Bank Equity Research", "Prudential Securities", "Real Estate Private Equity", "Board Member", "Member", "Member", "President, Co-Founder, Board Chair", "President, Co-Founder, Board Chair", "President, Board Chair", "Board Member and Coach", "Board member, Treasurer"], "NikhilKomawar": ["IBM", "OpenStack", "OpenStack", "Rackspace", "Rackspace", "Virginia Tech", "Verizon Data Services", "University of Tuebingen", "Head Organizer", "Student Teaching Student", "Masters Degree, Computer Science", "Bachelor of Technology, Computer Science and Engineering", "", "Virginia Tech", "Indian Institute of Technology, Guwahati", "GNOME Foundation", "Score: Top 0.3%", "Score: Top 0.3%"], "PeteWarden": ["Google", "Jetpac", "O'Reilly Media", "OpenHeatMap", "MoveableCode, inc.", "Mailana", "Apple", "PetesPlugins", "Visual Sciences", "BSc, Computer Science"], "DavidWarde-Farley": ["DeepMind", "Universit de Montral", "Google", "Google", "Citizen Lab", "PhD, Computer Science", "M. Sc., Computer Science", "Hon. B. Sc., Computer Science, Statistics", ""], "RomanBogorodskiy": ["Mirantis", "The Apache Software Foundation", "FreeBSD", "Grid Dynamics", "Grid Dynamics Consulting", "Renet Com", "Fannet Telecom", "MSc, Mechanics and Mathematics"], "SamStavinoha": ["The Dow Chemical Company", "Kappa Kappa Gamma", "The Dow Chemical Company", "Kappa Kappa Gamma", "Hearst Magazines", "Bachelor of Science (B.S.), Advertising", "Girls on the Run International", "Reading Is Fundamental"], "DavidKoo": ["Groundworks Office", "David Koo", "UC Berkeley", "Melndrez", "Hogle-Ireland", "City of Ontario", "City of Walnut", "Masters Degree, Landscape Architecture", "Bachelors Degree, Educational; Urban & Regional Planning"], "BartvanMerrienboer": ["Twitter", "Facebook", "Self-Employed", "TEDxWarwick", "AIESEC", "GroeneKruis Domicura", "Paris International Model United Nations (PIMUN)", "European Commission", "SOS Children's Villages", "Doctor of Philosophy (Ph.D.), Machine learning, A", "Master of Science (MSc), Complex Systems Science (Erasmus Mundus), A", "Master of Science (MSc), Complex Systems Science (Erasmus Mundus), GPA 3.9/4.0", "Bachelor of Science (BSc), Mathematics and Business Studies, First Class Honours", "Business, Israeli politics, Middle Eastern history, Ethics, A (93%)"], "CyprienNoel": ["Flickr (Yahoo)", "Stanford University & NVIDIA Tech Talks", "NVIDIA GTC 2015", "H2O.ai (0xData)", "ObjectFabric", "Strange Loop 2011", "Self", "JavaOne 2010", "C3S2E10", "SmartTrade Technologies USA", "SmartTrade Technologies", "LORIA - Lorraine laboratory of computer science - Cortex Team", "ACM", "Masters, Engineering & Computer Science"], "SamMorrison": ["TBWA\\Media Arts Lab", "Laundry Service", "Kaltura", "Alphaserve Technologies", "Bachelor of Science (B.S.), Information Management and Technology, GPA 3.7 Within Major", "Continuing Education, Advertising", "Enitiative", "CenterState CEO", "Communications Officer"], "GuillaumeDesjardins": ["Google DeepMind", "DeepMind Technologies", "Doctor of Philosophy (Ph.D.), Computer Science (in progress)", "Master's degree, Computer Science", "Bachelor of Engineering (B.Eng.), Computer Engineering"], "PaulChristiano": ["Theory of Computing Group - UC Berkeley"], "JasonKoelker": ["WELBRO Building Corporation"], "FlavioPercoco": ["Red Hat", "OpenStack", "OpenStack", "OpenStack", "Red Hat", "Red Hat", "The Net Planet Europe", "Reitek S.p.A.", "Humanitarian FOSS Project", "DST PDVSA", "Fundacite"], "lukeiwanski": ["Codeplay Software Ltd", "Codeplay Software Ltd", "Codeplay Software Ltd", "Heehaw Digital", "Games Development"], "VadimMazalov": ["Microsoft", "Amazon", "Microsoft", "Western University", "Quantica Trading (formerly Embium)", "Western University", "Microsoft", "Peter-Service", "Ziiva Information Technology", "Oracle", "Oracle", "Oracle", "Project Euler"], "VishvanandaIshaya": ["Oracle", "OpenStack", "Datera", "Nebula, Inc.", "OpenStack", "Nebula, Inc.", "OpenStack", "Rackspace Hosting", "NASA Ames Research Center"], "AndrewHarp": ["Google", "Google", "Midway Games", "IBM", "IBM", "MS, Computer Science", "Bachelor of Science, Computer Science"], "Chmouel_Boudjnah": ["Red Hat", "Duolingo"], "FanZiye(t13m)": ["Theano Development Community", "Great Wall Computer Software And Systems Inc., Ltd.", "Master's degree, Machine Intelligence (School of EECS)", "Bachelor's degree, EE (School of EECS)"], "raver119": ["Skymind.io"] } +{"CoryWright": ["iland Cloud", "Rackspace", "Rackspace", "Hush Labs", "Rackspace", "Rackspace", "Chinese Language", "Bachelor of Arts, History", "SaltStack, License 0xFE4C69B1", "Red Hat, License 804005746415516", "Linux Journal", "Linux Journal", "Linux Journal", "Linux Journal", "Linux Journal"], "NanRosemaryKe": ["Montreal Institute for Learning Algorithms (MILA)"], "NicolasPinto": ["Apple", "Perceptio", "MIT", "Harvard University", "Harvard University", "MIT", "MIT", "CERN", "Prof. Oh / CV Lab / CBNU (South Korea)", "", "", "", "MIT BCS", "Python Software Foundation", "Python Software Foundation", "MIT BCS", "Computational and Systems Neuroscience Committee", "Microsoft Research", "Google", "DARPA", "NSF", "NVIDIA", "NSF / NCSA", "Amazon AWS", "Amazon AWS", "Ph.D, Computational Neuroscience / AI", "M.S., AI/Neuroscience", "MS, Information, Systems, Communication", "M.S, Computer Science / Artificial Intelligence", "M.S, Computer Science / Software Engineering", "MS, Computer Science"], "UnderdogGeek": ["Bhaskar Mitra on LinkedIn", "Bhaskar shared", "Microsoft", "Microsoft", "Amazon", "Hewlett-Packard", "Floranta", "Bachelor of Engineering (BE), Computer Science", "BE, Computer Science", "Research Doctorate, Computer Science", "", "Proceedings of the ACM International Conference on Research and Development in Information Retrieval (SIGIR)", "Proceedings of the 23rd ACM International Conference on Information and Knowledge Management (CIKM)", "Proceedings of the 38th international ACM SIGIR conference on Research & development in information retrieval", "Proceedings of the 24th ACM International Conference on Information and Knowledge Management (CIKM)", "WWW'16, WWW World Wide Web Consortium (W3C)", "Arxiv.org"], "sarvesh-ranjan": ["11bilionclub", "Ola (ANI Technologies Pvt Ltd)", "Cisco", "Cisco", "Wipro", "IBM India Research Lab", "Impetus", "Integrated Dual Degree (Bachelors & Masters), Computer Science and Engineering", "High School, Mathematics", "Family Giving Tree", "Second Harvest Food Bank", "International Intern"], "ZhouWang": ["Microsoft", "Fraunhofer-Gesellschaft", "Vereinigte Staaten 8213302"], "MartinEnglund": ["United States 7568092", "", ""], "KentWang": ["Kent Wang", ""], "HirofumiIchihara": ["NTT (Nippon Telegraph and Telephone Corporation)", "NTT (Nippon Telegraph and Telephone Corporation)", "Master's degree, Computer Science"], "DougHellmann": ["Red Hat", "OpenStack", "Python Software Foundation", "O'Reilly & Associates", "Python community", "Addison-Wesley", "MS, Computer Science"], "VincentUntz": ["SUSE", "Association des utilisateurs francophones d'OpenStack", "OpenStack Foundation", "openSUSE Project", "GNOME Foundation", "openSUSE Project", "openSUSE Project", "SUSE", "SUSE / Novell", "GNOME Foundation", "GNOME Foundation", "GNOME Foundation", "Novell", "Institut National Polytechnique de Grenoble / LIG", "Institut National Polytechnique de Grenoble / ENSIMAG", "Institut National Polytechnique de Grenoble / LSR, LIG, ENSIMAG", "Institut National Polytechnique de Grenoble / ESISAR, ENSIMAG", "Institut National Polytechnique de Grenoble / LSR", "Sun Microsystems"], "SinaHonari": ["Universit de Montral", "Nvidia", "Universit de Montral", "Morgan Stanley", "Concordia University", "Researcher", "Researcher", "Researcher on market design techniques", "Universit de Montral", "Concordia University", "Concordia University", "trading agent competition international forum", "Doctor of Philosophy (PhD), Computer Science", "Master of Science (MS), Computer Science, 4.15/4.3"], "PierreLucCarrier": ["Montreal Institute for Learning Algorithms (MILA)"], "shrutiranade38": ["M.S, Quality Management", "B. Pharm Sc, Pharmaceutical Sciences"], "agibsonccc": ["Galvanize Inc", "Skymind.io Deep Learning support services training via deeplearning4j.org", "Zipfian Academy", "CritSend", "Clever Cloud Computing", "Mashape", "ITOxygen", "ITOxygen", "Coursera", "Coursera", "Dropped out, Computer Science/Data Science MIS, 3"], "ArnaudBergeron": ["Montreal Institute for Learning Algorithms (MILA)"], "wangxiyuan": ["MD Anderson Cancer Center", "Texas A&M University", "Chinese Academy of Sciences", "Private Tutor", "Shandong Agricultural University", "Shandong Agricultural Univerity", "Master's degree, Biotechnology, 4/4", "Student researcher, Neuroscience, Graduate Assay and Experience 98/100", "Bachelor of Science (B.S.), Biology/Biological Sciences, 3.55/4", "High School, Science, A", "Shandong Agricultural University", "China", "China", "", "", "", "Vice President", "Captain of Secretary", "Leader in Speech Group", "", "", "", "", "", "", "Score: 527", "Score: 522", "Journal of biomedical engineering"], "ThomasBechtold": ["Verizon- Information Technology", "State of New Jersey", "Master of Science (M.S.), Telecommunications and Computing Management"], "ShuquanHuang": ["Duke University", "University of Virginia", "Ph.D. student, Electrical & Computer Engineering", "BS, EE major, Engineering Business and CS minor", "Ten thousand villages", "Independent Animal Rescue (IAR)"], "KevinKirkpatrick": ["Scentsy, Inc. (Corporate Office)", "Scentsy, Inc.", "Scentsy, Inc.", "Hewlett-Packard", "Hewlett-Packard", "Hewlett-Packard", "Hewlett-Packard", "Boise Hawks Baseball Club", "MBA, Marketing, Finance, Entrepreneurship", "BS, Chemical Engineering"], "SiddharthAgrawal": ["Amazon", "MLPACK", "ICML Workshop on MLOSS 2015", "M.E., Computer Science and Engineering", "B.E.(Hons.), Computer Science and Engineering", "Coursera", "Coursera", "Coursera", "Udacity", "edX"], "JeremyStanley": ["Instacart", "Sailthru", "Sailthru", "Collective", "Collective", "Collective", "Ernst & Young", "Ernst & Young", "Generali USA", "First Round Review", "tech.instacart.com", "Medium", "Diginomica", "First Round Review", "AdExchanger", "AdExchanger", "AdExchanger", "AdExchanger", "MBA", "BS, Mathematics"], "StefT": ["City of Boston Police Department", "City of Boston Police Department", "City of Boston Police Department", "Krav Maga Worldwide, Inc.", "Protective Services Gruppe", "City of Warwick", "Sig Arms Academy", "Rhode Island Municipal Police Academy", "Rhode Island Municipal Police Academy", "Fairfax County Government", "MS, Urban Affairs", "BA, Sociology"], "sentient07": ["Theano", "Enorgo", "Electronics Engineering", ""], "MarkusBeissinger": ["Lobe", "Microsoft", "Osus, Inc.", "Jam4Life", "MSE Computer Science, Artificial Intelligence", "BS in Economics, Operations & Information Management, Marketing, Entrepreneurship", "BSE, Computer Science"], "DavidZ.Chen": ["David Z. liked", "David Z. liked", "David Z. liked", "David Z. liked", "David Z. liked", "David Z. liked", "Google", "LinkedIn", "Microsoft", "Yale University", "PaperG", "Wiley Interdisciplinary Reviews: Computational Molecular Science"], "CaoShuFeng": ["The Chinese Ceramic Society", "Bachelor of Applied Science (B.A.Sc.), Organic Chemistry, A"], "LorinHochstein": ["Netflix", "SendGrid", "Nimbis Services, Inc.", "Information Sciences Institute", "University of Nebraska-Lincoln", "University of Maryland, College Park", "Boston University", "Xiphos Technologies", "Matrox", "27th IEEE International Symposium on Software Reliability Engineering (ISSRE '16)", "IEEE Software", "O'Reilly Media", "OpenStack Foundation", "Workshop on Parallel Programming on Accelerator Clusters", "NASA Journal of Innovations in Systems and Software Engineering", "Journal of Systems and Software", "ACM Symposium on Cloud Computing", "PhD, Computer Science", "MS, Electrical Engineering", "BEng, Computer Engineering", "DEC, Pure & Applied Science"], "DolphMathews": ["Rackspace Hosting", "Akimeka", "Laszlo Rain", "Freelance Web Design & Development", "QikCom, Inc.", "Bachelor of Science, Electrical & Computer Engineering", "United States US20120233668 A1"], "AbhinavUpadhyay": ["NetBSD", "Pramati Technologies", "NetBSD", "Ubuntu", "Hover Technologies Pvt. Ltd", "Packt Publishing", "Coursera", "Coursera", "Coursera", "Coursera", "Udacity", "Coursera Course Certificates, License RBS7D7S6C6AQ", "Coursera Course Certificates, License GDZRVJHA4HK7", "AsiaBSDCon 2012, Tokyo", "EuroBSDCon 2016, Belgrade", "Score: 107", "Score: 323/340", "B.Tech, Information Technology", "", "Pramati Technologies Pvt. Ltd.", "", "Developer"], "ChristosTsirigotis": ["Dipl. Eng., Electrical and Computer Engineering", "High School"], "ThomasMesnard": ["EPFL (cole polytechnique fdrale de Lausanne)", "Montreal Institute of Learning Algorithm, Universit de Montral", "Institut Curie", "Master of Science (M.Sc.), Mathematics, Machine Learning and Vision", "Computer Science, Mathematics and Neuroscience", "CPGE, Mathematics and Physics", "Neural Computation", "ICML 2015 Deep Learning Workshop", "NIPS 2016. Computing with Spikes Workshop.", "Arxiv", "Arxiv", "cole normale suprieure", "Lyce Saint Louis", "cole normale suprieure"], "MattGraham": ["Doctor of Philosophy (PhD), Probabilistic Machine Learning", "Master of Science (by Research), Neuroinformatics and Computational Neuroscience, Distinction", "Master of Engineering (MEng), Information and Computer Engineering, First-Class Honours (Part IIA) / Distinction (Part IIB)", "University of Edinburgh", "University of Cambridge", "Granta Design", "Nrich", "Mott MacDonald", "Proceedings of the 19th International Conference on Artificial Intelligence and Statistics", "STEMNET"], "Marc-AlexandreCote": ["Maluuba", "Nuance Communications", "Nuance Communications", "Doctor of Philosophy (PhD), Computer Science", "Master's degree, Computer Science", "Bachelor's degree, Computer Science"], "thuyenvn": ["UC Santa Barbara", "Magic Leap", "Doctor of Philosophy (PhD), Electrical and Computer Engineering", "Master of Science (M.S.), Electrical and Computer Engineering", "Bachelor of Engineering (BEng), Electrical Engineering"], "DavidRipton": ["Marsh", "Marsh", "Willis"], "LuisAGarcia": ["IBM", "IBM", "IBM", "IBM", "The University of Texas at El Paso", "IBM", "IBM", "The University of Texas at El Paso", "United States US20110267422", "United States US8621462", "IBM", "IBM", "High Assurance Systems Engineering Symposium,10th IEEE", "Software Engineering and Knowledge Engineering", "Master of Science, Computer Science", "Bachelor of Science, Computer Science, cum laude"], "BrianElliott": ["Google", "Google", "Google", "Monsoon Commerce", "Alibris, Inc.", "Alibris, Inc.", "Alibris, Inc.", "Boston Consulting Group (BCG)", "Boston Consulting Group (BCG)", "San Francisco Friends School", "Internet Retailer", "The Oregonian"], "eraly": ["Susan Eraly on LinkedIn", "Susan shared", "Skymind.io - Deep learning for Industry", "Galvanize Inc", "Galvanize Inc", "NVIDIA", "ARM", "HP", "Bachelor of Engineering (BE), Electrical Engineering", "Coursera Verified Certificates, License 4AVGRBDHQR", "Coursera Verified Certificates, License 4J8FJ44NAN", "Coursera Verified Certificates, License DSPJEVKA3D", "Coursera Verified Certificates, License L9GA6Z48JA", "Coursera Verified Certificates, License UVJ27G3B2P", "Coursera Verified Certificates, License P9PRV2G2C6", "Coursera Verified Certificates, License TUULKP9KDJ", "Coursera Verified Certificates, License 5CDTJDWUTT"], "AndrewSelle": ["Google", "Walt Disney Animation Studios", "Walt Disney Animation Studios", "Industrial Light + Magic", "PhD, Computer Science", "MS, Computer Science", "BS, Computer Science, Mathematics"], "CesarLaurent": ["Montreal Institute for Learning Algorithms (MILA)"], "PhilippKranen": ["Microsoft", "Microsoft", "Microsoft Research", "RWTH Aachen University", "Siemens Corporate Research, Princeton NJ, USA", "Grnderkolleg Aachen", "Dr. rer. nat., Informatik", "Diplom, Informatik", "", ""], "nicholas-leonard": ["Twitter", "Element Inc.", "Universit de Montral", "Canadian Forces", "Canadian Forces", "Canadian Space Agency", "Canadian Forces", "ADIROUM", "Queen of Canada", "Master's Degree, Computer Science (Deep Learning)", "Bachelor's Degree, Computer Science", "High School"], "JulienDemouth": ["NVIDIA", "NVIDIA", "Ubisoft", "Pohang University of Science and Technology", "INRIA", "Coursera", "GPU Technology Conference (GTC) 2012", "Different editors", "Ph.D, Computer Science (Computational Geometry)"], "SanderDieleman": ["DeepMind", "got-djent.com", "Ghent University", "Spotify", "VTK Gent", "Think Wize", "Digital Effects", "IEEE International Conference on Acoustics, Speech, and Signal Processing (ICASSP 2014)", "Advances in Neural Information Processing Systems", "Proceedings of the 14th International Society for Music Information Retrieval Conference (ISMIR 2013)", "Proceedings of the 12th International Society for Music Information Retrieval Conference (ISMIR 2011)", "Kaggle, Booz Allen Hamilton", "Kaggle, Galaxy Zoo, Winton Capital", "Master, Engineering, Computer Science, ICT", "Bachelor, Engineering, Computer Science"], "mronian": ["Google Summer of Code", "IBM India Research Labs", "DatabaseUSA", "Tata Consultancy Services", "Bachelor of Technology (B.Tech.), Master of Technology (M.Tech), Computer Science", "", "", "Score: 275/408", "Score: 91,50%", "Score: 93.80%", "Governor"], "ChinnadhuraiSankar": ["Universit de Montral", "Twitter", "Qualcomm", "Qualcomm", "The University of British Columbia", "ICLR 2016 workshop, May 2-4, Puerto Rico", "Information Theory Workshop (ITW), 2011 IEEE", "Bachelor of Technology, Electrical Engineering", "Master of Science, Computer Engineering", "Doctor of Philosophy (PhD), Deep learning", "", "MITACS ,Canada", "CBSE India"], "MustafaIspir": ["Google", "Synopsis", "Synplicity", "Aselsan A.S.", "MilSOFT"], "AndreasJaeger": ["Watts Water Technologies", "Watts Water Technologies", "Watts Water Technologies", "Bobcat Company", "Bobcat Company", "Ingersoll Rand", "Thermo King", "MBA, Finance", "MIM, Masters International Management", "BS in Business Administration, European Business (Dipl.-Kfm.EBS), Finance, Accounting, Taxes (BIFIST)", "EBS, European Business School"], "e-lin": ["YI-JHEN", "YI-JHEN", "YI-JHEN", "YI-JHEN", "YI-JHEN", "YI-JHEN", "Groovenauts", "Garmin International", "Compal", "Compal", "Coursera Course Certificates, : X3DECA33SJBZ", "Japan Foundation and Japan Educational Exchanges and Services", "Japan Foundation and Japan Educational Exchanges and Services", "Japan Foundation and Japan Educational Exchanges and Services", "Taiwan"], "KumarKrishnaAgrawal": ["Montreal Institute for Learning Algorithms (MILA)"], "BartvanMerri\\xebnboer": ["Twitter", "Facebook", "Self-Employed", "TEDxWarwick", "AIESEC", "GroeneKruis Domicura", "Paris International Model United Nations (PIMUN)", "European Commission", "SOS Children's Villages", "Doctor of Philosophy (Ph.D.), Machine learning, A", "Master of Science (MSc), Complex Systems Science (Erasmus Mundus), A", "Master of Science (MSc), Complex Systems Science (Erasmus Mundus), GPA 3.9/4.0", "Bachelor of Science (BSc), Mathematics and Business Studies, First Class Honours", "Business, Israeli politics, Middle Eastern history, Ethics, A (93%)"], "SimonDENEL": ["Certifup", "Institut Langevin", "Thales Research & Technology", "CNS Conseil", "Thales Research & Technology", "A.L.S.E", "Coursera Course Certificates, Lizenz PG3P3H257TUK", "Coursera Course Certificates, Lizenz 4K2FT4P3W6B2", "Stanford University", "Coursera Course Certificates, Lizenz R5V2Z9T96UEK", "Frankreich FR3014221", "Master's degree, Embedded Computing Systems, With highest honors", "Classe prparatoire PT, Sciences industrielles", "", "Internat d'Excellence de Cachan"], "RussellBryant": ["Red Hat", "http://www.astricon.net", "O'Reilly Media, Inc.", "O'Reilly Media", "O'Reilly Media", "United States 9026864"], "Alex Meade": ["Lexmark", "Alex Meade Bikeworks, LLC", "Lexmark International", "Lexmark", "Lexmark", "MS, Mechanical Engineering", "BS, Mechanical Engineering", "BA, Liberal Arts"], "YifeiFeng": ["Yifei liked", "Google", "Microsoft", "Olin College of Engineering", "Microsoft", "IEEE Xplore", "Master of Science (M.S.), Electrical Engineering", "Bachelor of Science (B.S.), Electrical and Computer Engineering"], "RenatoUtsch": ["Google", "DCC UFMG", "CTWEB", "Bachelor of Computer Science"], "LiLao": ["Google"], "IbanHarlouchet": ["Statistique Canada", "Laboratoire MILA, Dpartement d'informatique et de Recherche Oprationnelle, Universit de Montral", "Odotech", "Ministre de lAlimentation, de lAgriculture et de la Pche", "Semestre d'hiver au Baccalaurat en informatique", "Matrise, Statistiques", "Matrise, Statistiques et conomtrie"], "Saxenauts": ["FireEye, Inc.", "Glassbeam, Inc", "Lifograph", "Cybage", "Master's of Science, Computer Software Engineering, 3.40", "P.G. Diploma in Advance Computing, Advance Computing, 3.5 CGPA", "Bachelor of Technology (BTech), Computer Science, 3.6 CGPA"], "PhilStahlfeld": ["Google", "Bucknell University", "Northrop Grumman Corporation", "Geisinger Medical Center", "President", "Federal Aviation Administration, License 3539082", "Bachelor of Science (B.S.), Computer Engineering", "", "Journal of Biomolecular NMR"], "kvmanohar22": ["Kharagpur RoboSoccer Students' Group", ""], "ChrisBasoglu": ["United States 7,272,670", "United States 7,103,102", "United States 7,095,785", "United States 7,051,123", "United States 6,434,649", "United States 6,347,344", "United States 5,910,117", "United States 5,528,302", "United States 5,492,125", "EE Times", "IEEE Transactions on Circuits and Systems for Video Technology", "Proceedings of SPIE Media Processors 2002", "Proceedings of SPIE Media Processors 2002", "IEEE Micro", "Real-Time Imaging", "Proceedings of SPIE Media Processors 2000", "Proceedings of SPIE Media Processors 2000", "Proceedings of SPIE Image and Video Communications and Processing 2000", "International Journal of Imaging Systems and Technology", "Parallel Computing", "International Journal of Imaging Systems", "IEEE Transactions on Education", "Proceedings of SPIE Medical Imaging 1996: Image Display", "Proceedings of SPIE Medical Imaging 1998: Image Display", "Proceedings of SPIE Medical Imaging 1998: Image Display", "Proceedings of SPIE Medical Imaging 1998: Image Display", "IEEE Transactions on Information Technology and Biomedicine", "Real-Time Imaging", "Proceedings of SPIE Medical Imaging 1997: Image Display", "Proceedings of SPIE Medical Imaging 1997: Image Display", "Proceedings of SPIE Medical Imaging 1997: Image Display", "Ultrasonic Imaging"], "jeanfad": ["SAP", "Microsoft", "OwiTech", "Lille University", "INRIA", "Xerox", "Xerox Research Centre Europe", "elixir", "Coursera", "ECML-PKDD'12", "ICMLA'10", "PhD, Computer Science", "Master, Computer Science", "Engineer, Computer Science"], "ChristofAngermueller": ["Molecular Systems Biology", "http://biorxiv.org/content/early/2016/05/27/055715", "Nature Methods", "Nature Methods", "Diabetologia", "BioMed Research International", "Bioinformatics", "Cell"], "PaulTucker": ["Google"], "kairat_kushaev": ["Mirantis", "Opensoft", "NetCracker", ", Computer Engineering, 4.95"], "SamiraShabanian": ["Universit de Montral", "Computer Science, Machine Learning", "Doctor of Philosophy (Ph.D.), Mathematics", "The First Workshop in \"Fixed Point Theory and Application\"", "The Second Workshop in \"Fixed Point Theory and Application\""], "RohanKanade": ["Red Hat", "Izel Technologies Pvt. Ltd.", "NTT DATA Americas", "Self-Employed", "Prolinkd", "Nextech Solutions", "Nextech Solutions", "OpenStack Foundation", "Sun Microsystems", "Sun Microsystems", "Bachelor of Science, Computer Science, Distinction ( 79.97 %)"], "YufangZhang": ["Pharmanet-i3"], "GerardoPorras": ["Timac AGRO Espaa", "Behr Iberia", "Asaja Crdoba"], "gdesjardins": ["Google DeepMind", "DeepMind Technologies", "Doctor of Philosophy (Ph.D.), Computer Science (in progress)", "Master's degree, Computer Science", "Bachelor of Engineering (B.Eng.), Computer Engineering"], "LukeIwanski": ["Codeplay Software Ltd", "Codeplay Software Ltd", "Codeplay Software Ltd", "Heehaw Digital", "Games Development"], "YongqiangWang": ["Microsoft", "University of Cambridge", "Microsoft Research, Redmond", "The University of Hong Kong", "Microsoft", "Microsoft Research Asia, Beijing, P.R.China", "United States US8369611", "United States US20100246941", "United States US20100239168"], "DarrenGarvey": ["YouView TV Limited", "Evi Technologies (formerly True Knowledge)", "360 Systems Ltd", "Bachelor of Science (BSc), Physics"], "AbhijeetMalawade": ["NTT DATA Americas", "Covelix", "Synnove Systems Pvt. Ltd", "Divinet Access Technology", "B.E.(I.T.), Information Technology", "", ""], "ravikumar-venkatesan": ["Hewlett-Packard Enterprise", "Cisco", "HP", "Walmart.com", "Federal Reserve Bank of San Francisco", "Kana", "NetApp", "Oracle", "Offshore Digital Services/Sonata Software", "TeachTheFutureFoundation INC", "Master's, Business Administration and Management, General"], "LiangliangHe": ["Xiaomi Technology", "Microsoft", "EMC", "VMware", "EMC", "Inria", "M.S.", "B.S."], "IlliaPolosukhin": ["Illia shared", "Illia liked", "Illia liked", "Google Research", "Salford Systems", "Udacity", "Master's degree, Applied Math (and Computer Science)", ""], "AdrianSmith": ["Tha Alumni Music Group"], "AnandShanmugam": ["HCL Technologies", "CSC", "HCL Technologies", "Alcatel-Lucent", "BE, Electronics and Communication", "Mirantis, License 100-273"], "FrancescoVisin": ["Montreal Institute for Learning Algorithms (MILA)"], "GrantMurphy": ["Merck", "Princeton University", "Princeton University", "Princeton University", "Doctor of Philosophy (Ph.D.), Chemistry (Biochemistry/Biophysics)", "Bachelors Degree, Chemistry with Honors, Biology with Honors"], "FabienBoucher": ["Chauvin Arnoux", "Pyrocontrole", "Technique de commercialisation, Commerce international / commerce", "Licence, Ingnierie mcatronique, robotique et automatisation, Licence professionnelle", "BTS M.A.I, Mcanique des Automatismes Industriels", "BEP et BAC PRO MSMA, Maintenance des systmes mcaniques automatiss"], "AdriaPuigdomenech": ["Google DeepMind", "Microsoft", "TU Mnchen", "Intel Corporation", "TU Mnchen", "Fundaci puntCAT", "Universitat Autnoma de Barcelona", "Universitat Autnoma de Barcelona (Computer engineering)", "Master of Science (MSc), Informatics", "Computer engineering, Engineering", "Mathemathics degree, Maths"], "LudwigSchmidt-Hackenberg": ["EyeEm", "Techn. University of Kaiserslautern / TU", "Telefnica Digital", "Fraunhofer Institute for Digital Media Technology", "Fraunhofer Institute for Digital Media Technology", "Accenture", "BMW", "Diplomingenieur, Medientechnologie", "Study Abroad"], "KentonLee": ["University of Washington", "Doctor of Philosophy (PhD), Computer Science", "Bachelor of Science in Engineering, Computer Science", ""], "lucasb-eyer": ["RWTH Aachen University", "Kindred.ai", "Google", "Mint Medical", "Digatron Industrie Elektronik GmbH", "Dipl. Ing., Computational Engineering Science"], "WayneXiong": ["Wayne liked", "Wayne liked", "Wayne liked", "Wayne liked", "Wayne liked", "Wayne liked", "Microsoft", "Microsoft", "Microsoft"], "BrynKeller": ["Intel Labs", "Intel Corporation", "Intel Labs", "Jenkon", "Jenkon", "Jenkon", "Occupational Health Research", "US Army", "Coursera", "Bachelor of Science (BS), Mathematics", ""], "caisq": ["Google", "The MathWorks", "The MathWorks", "Boston University", "Boston University", "MIT", "Northeastern University", "Boston University", "Johns Hopkins University", "Vision Research", "Proceedings of the 27th Annual Intl. Conf. IEEE-EMBS,", "Journal of the Association for Research In Otolaryngology", "Journal of Tsinghua University (Sci. & Tech.)", "Proceedings of the 8th Intl. Seminar on Speech Production", "Journal of the Acoustical Society of America", "Journal of the Acoustical Society of America", "Journal of Neuroscience", "PLoS ONE", "Proc. 14th Annual Conference of the International Speech Communication Association (InterSpeech 2013)", "Brain and Langauge", "Frontiers in Human Neuroscience", "PhD, Health Science and Technology", "Master of Science, Electrical Engineering and Computer Science", "Master of Science in Engineering, Biomedical Engineering, 4.0 / 4.0", "Bachelor of Engineering, Biomedical Engineering", "", ""], "PaulDubs": ["ICTJOB Deutschland GmbH", "Paul Dubs IT Consulting", "Happy Systems GmbH", "shork GmbH", "Benjamin Lochmann New Media GmbH", "ADMS 2013", "Master of Science (MSc), Informatik"], "JamesEBlair": ["Hewlett-Packard", "OpenStack", "Rackspace Hosting", "UC Berkeley", "Free Software Foundation"], "NikolajStarodubtsev": ["Qiwi", "SmartLabs", "ARQA Technologies", "ARQA Technologies", "Novosoft LLC", "Specialist Computer Training Center", "ICAgile", "", ""], "AlexanderTivelkov": ["Mirantis", "Mirantis", "Argussoft Company", "Anton Malevsky Memorial World Cup", "Master of Science (MS), Applied Mathematics", ""], "crockpotveggies": ["New York Times", "Bernie A.I.", "3 Tier Logic", "Earhart DNA Project", "3 Tier Logic", "Alloy Technologies, Inc.", "Rubik", "ACG Corp.", "Snow4Innocents", "Holy Innocents Children's Hospital", "PlanSea Entertainment", "Bachelors, Business, Health Sciences", "Honours Secondary Diploma"], "Ewan Mellor": ["Freelancing", "BA (Hons), MA (Cantab)"], "YusukeIde": ["Rocknel Fastener", "", ""], "AndreHolzner": ["Andre Holzner gefllt Folgendes:", "University of California at San Diego", "CERN", "EU Project", "ETH Zurich", "Kaggle"], "JaredCulp": ["Phunware, Inc.", "Intentional Futures", "NBBJ Design", "Hollwich Kushner LLC", "Master's degree, Advanced Architectural Design", "Bachelor of Architecture (BArch), Architecture"], "VinuRajashekhar": ["Google", "Microsoft", "RTEMS Project", "EPFL", "IIT Kharagpur", "National Council of Educational Research and Training (NCERT)", "Dual Degree (M.Tech and B.Tech), Computer Science"], "MohammadPezeshki": ["Laboratory for Intelligent Multimedia Processing (IMP) - Amirkabir University of Technology (Tehran Polytechnic)", "Laboratory of Human Language Technology and Machine Learning - Amirkabir University of Technology (Tehran Polytechnic)"], "TillHoffmann": ["Sonalytic", "A commodities trading advisor", "A commodities trading advisor", "Self employed", "UNamur", "University of Oxford", "University of Oxford", "Carl Zeiss Group", "Physical Review E", "Physical Review E", "Temporal Networks. Springer", "Doctor of Philosophy (PhD), Applied Mathematics", "Master of Physics, Theoretical physics and astrophysics"], "LaurentMazare": ["Jane Street Capital", "Goldman Sachs", "LexiFi", "Amadeus", "ENC Cachan - LSV", "Verimag Lab", "INPG, ENSIMAG"], "LukeIwanski_": [], "ZakariaHaque": ["Google", "UC San Diego", "Qualcomm", "Ph.D. student (on leave), Computer Science", "Bachelor's degree, Computer Science, Magna Cum Laude"], "marianitadn": ["Adobe", "Kalon Global Group, Inc.", "Kalon Global Group, Inc.", "Red Hat", "uberVU", "Foreman", "Faculty of Mathematics and Computer Science - University of Bucharest", "Cronian Labs", "Mathematics and Computer Science Students Union", "Children's University - eucenet Romania", "Faculty of Mathematics and Computer Science, University of Bucharest", "ROSEdu", "ROSEdu", "Master", "BS", "High School"], "GabrielWainer": ["Carleton University", "Over 300 publications available in this link", "Proceedings of the 2012 Winter Simulation Conference. Berlin, Germany. IEEE"], "SergeyNikitin": ["Salym Petroleum Development", "Salym Petroleum Development", "Salym Petroleum Development", "ZAO \"Ermakovskoe PRS\"", "ZAO \"Ermakovskoe PRS\"", "Round II, Completion and Well Intervention", "Round I, Completion and Well Intervention", "Master's degree, Development and exploitation of oil and gas fields, 4", "Gubkin Russian State University of Oil and Gas", "Shell", "Shell"], "RohanJain_": ["edX"], "Radu": ["Fyusion, Inc", "Open Perception, Inc.", "Willow Garage", "Stanford University", "Technische Universitt Mnchen", "Stanford Research Institute", "Technical University of Cluj-Napoca", "Advisory Board", "Senior Member", "Technical Committee on Service Robotics Chair", "Technical Committee on Computer & Robot Vision Chair", "IEEE Robotics and Automation Society", "International Conference on Advanced Robotics (ICAR)", "Open Source Software (OSS) World Challenge", "Robotics Science and Systems (RSS)", "EURON (European Robotics Network)", "PhD (Dr. Rer. Nat.), Computer Science"], "BrianRosmaita": ["Rackspace, the #1 managed cloud company", "Rackspace, the #1 managed cloud company", "Rackspace, the #1 managed cloud company", "Rackspace", "Rackspace", "Rackspace", "VTLS", "VTLS", "VTLS", "Hamilton College", "SUNY Cortland", "Kent State University", "Andersen Consulting", "Texas Instruments", "Burroughs Corporation", "PhD, Philosophy", "M.S., Computer Science", "B.A., Philosophy"], "GunhanGulsoy": ["Google", "Google", "University of Florida", "University of Florida", "University of Washington", "University of Florida", "Bioinformatics (2011) 27(13): i149-i158 doi:10.1093/bioinformatics/btr203", "ACM Conference on Bioinformatics, Computational Biology and Biomedicine 2011", "GENSIPS 2010", "Journal of Bioinformatics and Computational Biology (JBCB)", "PhD, Computer Science", "Master of Science (M.Sc.), Computer Science, 3.64", "B.Sc, Computer Engineering", "Erasmus Exchange Student, Mathematics, Computer Science"], "joncrall": ["Kitware Inc.", "BS, Computer Science"], "MatthewWillson": ["Deepmind", "Microsoft", "SwiftKey", "Media Service Provider Ltd", "Playlouder", "BubbleLabs Inc, Toronto", "DrownedinSound.com"], "OlivierBreuleux": ["LISA Lab - University of Montreal, Theano"], "CoryBenfield": ["U.S. Navy", "vaw-126"], "MartinKletzander": ["Red Hat", "IBM Global Services Delivery Center", "Globus R, k.s.", "Masters Degree, Computer Software Engineering", "Unfinished Master's in IT Security", "Bachelor's degree, Information Technology"], "ManjunathKudlur_": [], "GabeSchwartz": ["Drexel University - Department of Computer Science"], "AdrianoCarmezim": ["Bachelor of Science (B.S.) Master of Science (M.S.), Computer Science", "Bachelor of Science (B.S.), Computer Science", "Volunteering", "Celia Soutto Mayor", "Leitura"], "ChuckShort": ["CTS Business Solutions", "CTS Business Solutions", "Master of Business Administration (M.B.A.), Finance and Financial Management Services", "Bachelor of Arts (B.A.), Economics"], "JuergHaefliger": ["Hewlett Packard Enterprise", "Hewlett-Packard", "Hewlett-Packard", "Hewlett-Packard", "Hewlett-Packard", "Silicon Graphics", "Vereinigte Staaten 7516358", "Society of Photographic Instrumentation Engineers (SPIE)", "Society of Photographic Instrumentation Engineers (SPIE)", "Society of Photographic Instrumentation Engineers (SPIE)", "Society of Photographic Instrumentation Engineers (SPIE)", "Society of Photographic Instrumentation Engineers (SPIE)", "Society of Photographic Instrumentation Engineers (SPIE)", "IEEE Journal of Solid-State Circuits", "Certificate, Embedded Systems Engineering", "PhD, Electrical Engineering", "MS, Electrical Engineering"], "PeteZaitcev": ["Red Hat, Inc."], "EronWright": ["EMC", "Microsoft", "Point2 Technologies", "United States 6721802", "United States 20130298210", "United States 20130297921", "Bachelor of Science, Computer Science", "Microsoft, License 6605540", "Coursera", "Coursera", "Coursera"], "DarcyLiu": ["Tencent", "Tencent", "Alibaba.com", "Hangzhou Normal University", "Tencent", "Masters Degree, Computer Science", "Bachelor, Computer Science and Technology"], "RohitKarajgi": ["Teradata", "Jio", "NTT Data Corporation", "Pace (formerly 2Wire)", "Symphony Teleca", "Symantec India (formerly Veritas Software India)"], "NikhilThorat": ["Google", "DuPont Pioneer", "Schedr", "CampusLIVE Inc", "Bachelor of Science (BS), Computer Science, Math"], "ReyhaneAskari_": [], "BrianCline": ["salesforce.com", "Concentric Cloud Solutions", "Level 3 Communications", "FedEx Services", "National Biostudios"], "DiZeng": ["DeepMap Inc.", "Transcend Robotics", "University of Maryland", "Masters Degree, Robotics, 3.97/4", "Bachelor of Science (BS), Mechanical Engineering, 3.7/4.0"], "BoWang": ["Google", "Microsoft Bing", "Microsoft Research Asia", "Baidu.com", "M.D., 3"], "DanBecker": ["Dan liked", "Dan shared", "Dan liked", "DataRobot", "Galvanize Inc", "Kaggle", "EXL Analytics", "Federal Trade Commission", "Johns Hopkins University, Department of Applied Economics", "PhD, Economics", "BA, Computer Science"], "WangYang": ["Facebook", "AI Frontiers Conference", "CBS Interactive", "OmniClaim, Inc.", "Department of Computer Science,Tufts University", "University of Science and Technology of China", "Master of Science, Computer Science", "Bachelor of Science, Physics", "Journal of Applied Physics", "China Education"], "TatyanaLeontovich": ["Mirantis"], "VenkateshSampath": ["Ericsson", "Huawei", "Ericsson", "Bachelor of Engineering (BE),MBA, Electrical, Electronics and Communications Engineering", "Ericsson Global services India Pvt Ltd", "Huawei Telecommunication India Pvt Ltd", "Huawei Telecommunication"], "f0k": ["Austrian Research Institute for Artificial Intelligence (OFAI) of the Austrian Society for Cybernetic Studies (OSGK)- Intelligent Music Processing and Machine Learning Group"], "chenguoguo": ["KITT.AI", "Johns Hopkins University", "Google", "Google", "Doctor of Philosophy (Ph.D.), Speech Recognition", "Bachelor's degree, Electronic Engineering"], "Fr\\ufffd\\ufffdd\\ufffd\\ufffdricBastien": ["mnubo", "Briowireless Inc.", "Synergie Pilates", "Tekelec", "Tekelec", "Tekelec", "Blueslice Networks", "Nortel", "Teleglobe", "Microcell", "TechnoMontral", "Startup Weekend", "WearHacks", "Fondation Montral inc.", "Academos", "Founder Institute", "C100", "CABA", "Gartner", "ABI Research", "Price Waterhouse Coopers", "Deloitte", "Canadian Innovation Exchange", "Ernst & Young", "C100", "Branham300", "Bronfman Family Foundation", "Light Reading", "IIoT Symposium", "C2 MTL 2016 & Montreal Chamber of Commerce", "Canadian Venture Capital Association conference 2016", "Continental Automated Buildings Association - 2016 forum", "Ecole Polytechnique de Montreal / HEC", "IoT World Forum - Dubai", "TechnoMontral - l'Internet des Objets", "The Founder Institute", "Europe EP2130324", "B.Eng", ""], "CassandraXia": ["Google", "World Bank", "MIT Media Lab", "B.S., Computer Science", "Master's degree, Media Arts and Sciences"], "iccha.sethi": ["Atlassian", "Rackspace, the #1 managed cloud company", "OpenStack", "Rackspace Hosting", "Let's Code Blacksburg!", "Virginia Bioinformatics Institute", "Siemens Technology India", "Rackspace", "Datastores Practice Area, Rackspace", "Rackspace", "Roanoke Blacksburg Technology Council", "Roanoke Blacksburg Technology Council", "Rackspace Blacksburg Office", "Virginia Bioinformatics Institute, Virginia Tech", "Cranwell International Center, Virginia Tech", "SSN College of Engineering, Anna University", "SSN College of Engineering, Anna University", "", "Computer Society of India, SSN Student Chapter", "Anna University", "Grace Hopper Conference", "Talk on \"Deploying Your Application on Public Cloud\" at GHC 2014", "OpenStack @ OpenSource Day at GHC 2014", "WECode Harvard Conference", "OpenSource Day at Grace Hopper Conference", "GNOME Foundation", "Student Opportunity Lab, Grace Hopper Conference", "The National Center for Women & Information Technology (NCWIT)", "Virginia Bioinfomatics Institute - Kids Tech University", "Grace Hopper Conference", "Committee Lead", "Women in Computing Day Co-chair", "Advertising Chair, First Year Representative"], "NiallBunting": ["Hewlett-Packard", "Bachelor of Science (BSc)", "", "Ofcom"], "AlessandroPilotti": ["Sheraton Grand Hotel & Spa Edinburgh", "One Aldwych", "Rocco Forte Hotels Brown's Hotel", "Rocco Forte Hotels Abu Dhabi", "Rocco Forte Hotels Hotel de Russie", "Rocco Forte Hotels Hotel de Russie", "Rocco Forte Hotels Hotel de Russie"], "KenPepple": ["Solinea", "Cloud Technology Partners", "Internap", "Oracle", "Sun Microsystems", "Sun Microsystems", "Sun Microsystems", "Sun Microsystems, Inc.", "Sun Microsystems, Inc.", "Paranet", "Prentice Hall", "Prentice Hall PTR", "O'Reilly", "ITIL / OGC"], "ChristianJauvin": ["Aviva Canada", "Independent Consultant - Freelancer", "McGill Surveillance Lab", "Coursera", "Coursera", "Coursera", "Coursera", "M.Sc., Computer Science"], "AlexandredeBrebisson": ["", "MRes in Statistics / Machine Learning, Statistics / Machine Learning, Distinction 88/100", "Msc in in Advanced Computing, Artificial intelligence, Machine Learning, Distinction 82/100, \"Distinguished Project\", winner of the Winton Capital Prize", "French engineering diploma, Applied Mathematics, Computer Science, Physics, Economics and other information sciences", "\"classes prepa\", Mathematics - Physics", "HyperCube Research (BearingPoint)", "FactSet Research Systems", "UK Ministry of Defence"], "YaroslavBulatov_": [], "AshishJain": ["VMware", "VMware", "PayPal", "Symantec", "Ping Identity Corporation", "BEA Systems", "EEE"], "GorkaEguileor": ["JustYoyo", "FOSS Comunity", "NEXTFOR", "NET-TEL Ibrica", "Z-World", "Tecnologa de Informtica y Comunicaciones", "Bachelor's degree, Computer Science, Artificial Intelligence Specialty", "Mongo NoSQL database", "Computerized Accounting", "Chiromasseur, Chiromassage", "Typewriting", "C.O.U., Hard Sciences"], "AlfredoMoralejo": ["Red Hat", "Red Hat", "Red Hat", "Red Hat", "Roche Pharmaceuticals", "Roche Pharmaceuticals", "Hewlett-Packard", "Hewlett Packard", "Tackling the Challenges of Big Data", "Software Enginnering for Software as a Service", "Master Degree, Free and Open Source Software Technology", "RHS333 Red Hat Enterprise Security: Network Services", "RH318 Red Hat Virtualization Administration", "RH442 Enterprise System Monitoring and Performance Tunning", "RH423 Red Hat Enterprise Directory Services and Authentication", "RH436 Enterprise Clustering and Storage Management", "RH401 Red Hat Enterprise Deployment, Virtualization, and Systems Management", "VMware Infrastructure 3: Install and Configure V3.0", "ITIL V2 Foundation", "SAP: ADM200 SAP Web AS Java Administration", "Project Management", "Oracle 9i: SQL and PL/SQL", "Engineer, Chemical Engineering", "Red Hat, Nmero de la licencia: 110-652-021", "Red Hat, Nmero de la licencia: 110-652-021", "Red Hat, Nmero de la licencia: 110-652-021", "Red Hat, Nmero de la licencia: 110-652-021", "HP Education", "edX", "Member", "Member"], "NoahFiedel": ["Google", "Color", "Google", "Boeing/Jeppesen", "gt nexus", "medicalogic", "webtv", "jeppesen", "dorado", "Zefer"], "ChrisAllnutt": ["Outlawz"], "ColinRaffel": ["Doctor of Philosophy (Ph.D.), Electrical and Electronics Engineering", "Master's degree, Music, Science and Technology", "Bachelor of Arts, Mathematics, Physics", "Columbia University in the City of New York", "Experimentalists Anonymous", "The Way of H, Inc.", "Imagine Research", "Zoimp!", "SacredAgent", "WOBC"], "VuPham": ["SAP", "Arimo, Inc.", "Singapore University of Technology and Design (SUTD)", "A2iA", "Ecole polytechnique Universit de Nantes, Polytech Nantes", "Ho Chi Minh University of Science", "Scopic software", "VNG", "FPT Visky", "Coursera", "Coursera", "Microsoft", "IEEE-RIVF 2010 International Conference on Computing and Telecommunication Technologies, Vietnam National University", "he Third International Conference on Knowledge and Systems Engineering (KSE 2011). Hanoi, Vietnam.", "16th Panhellenic Conference on Informatics with International Participation (PCI 2012). Piraeus, Greece", "ICFHR 2014", "Spark summit San Francisco", "Arimo Inc. blog", "Computer Science", "Master of Science, Data Mining and Knowledge Management", "Computer Science", "Bachelor's degree, Computer Science"], "JoshKearney": ["Planet.", "Free & Accepted Masons of Wisconsin", "Village of Hazel Green, WI"], "AndyHill": ["Atlis", "Stand4", "Office Depot", "Oppenheimer & Co.", "Florida Atlantic University", "National Collegiate Volleyball Federation", "ABC", "MBA, Finance"], "AlexeyKamenev": ["Alexey liked", "Alexey liked", "NVIDIA", "Uber", "Microsoft", "Exigen", "Intel", "Mercury Development, LLC", "Coursera", "Coursera"], "NicholasLeonard": ["Twitter", "Element Inc.", "Universit de Montral", "Canadian Forces", "Canadian Forces", "Canadian Space Agency", "Canadian Forces", "ADIROUM", "Queen of Canada", "Master's Degree, Computer Science (Deep Learning)", "Bachelor's Degree, Computer Science", "High School"], "MatthewWillson_": [], "AbhishekKekane": ["NTT DATA Americas", "NTT DATA Americas", "IQSPL", "Masters Degree, Computer Management"], "PankajMishra": ["FactorDaily", "The Economic Times", "TechCrunch", "Mint-The Wall Street Journal Newspaper", "The Economic Times", "IDG Media", "Mint-The Wall Street Journal Newspaper", "The CTO Forum", "Asia Computer Weekly", "Indian Express Newspapers Bombay Ltd", "B.Com", "+2"], "UnmeshGurjar": ["Airtel Business", "Airtel Business", "Airtel Business", "Reliance Communications", "Hughes Communications India Limited", "Hughes Communications India Limited", "Onward Technologies Ltd", "The Art of Living", "Bharti Airtel", "Dale Carnegie Training India"], "KaiLi": ["Kai liked", "Facebook", "Hewlett Packard Enterprise", "Institute for Pattern Recognition and Artificial Intelligence, Huazhong University of Sci & Tec.", "National Lab of Pattern Recognition, Chinese Academy of Sciences", "Doctor of Philosophy (PhD), Computer Science, 4.0/4.0", "Bachelor of Engineering (B.Eng.), Automatic Control, 3.81/4.0", "IEEE Transactions on Pattern Analysis and Machine Intelligence", "IEEE International Conference on Multimedia and Expo (ICME)", "Proceedings of ACM Multimedia Conference", "IEEE International Symposium on Multimedia (IEEE ISM)", "ACM International Conference on Multimedia Retrieval (ICMR) 2015", "Proceedings of IEEE Global Communications Conference (IEEE GLOBECOM)", "Proc. of 9th ACM International Conference on Distributed Even-based Systems", "Proceedings of 5th International Conference on Multimedia Communications, Services and Security (MCSS)", "IEEE INFOCOM 2012", "National Science Foundation", "HP Vertica", "University of Central Florida", "University of Central Florida", "Huazhong University of Sci. & Tec.", "Huazhong University of Sci. & Tec.", "Huazhong University of Sci. & Tec.", "Huazhong University of Sci. & Tec."], "AnatolyBelikov": ["Research Institute of Precision Instruments", "Acronis", "Coursera", "Coursera", "Coursera Verified Certificates, : ESBPJCPDHX", "Udacity", "Doctor of Philosophy (Ph.D.), Information Technology", "Master's Degree, Computer Science", "Engineer's Degree, Computer Engineering"], "SamuelAudet": ["Skymind.io - Deep learning for Industry", "Fixstars Corporation", "Fixstars Corporation", "Fixstars Corporation", "Google Japan", "Doctor of Engineering, Mechanical and Control Engineering", "Master of Engineering, Computer Engineering"], "jsalvatier": ["AI Impacts", "Amazon", "RPX Research, Inc.", "Boise-Cascade", "Boise Cascade", "Capstone Technology", "Kimberly-Clark", "B.S.Ch.E., B.S., Chemical Engineering, Paper Science and Engineering"], "ZhiQiangFan": ["Lenovo Brasil"], "ThierryCarrez": ["OpenStack Foundation", "OpenStack", "OpenStack", "Thyone consulting", "OpenStack", "Canonical Ltd.", "Goodyear", "SCORT", "Personal blog", "SecurityFocus", "Gentoo Linux", "Ubuntu", "Engineer, Mechanical Systems engineering"], "Preetika": ["EY", "Collaborative Consulting", "Boston University Residence Life", "Rolls-Royce", "Boston University Optical Characterization and Nanophotonics Laboratory", "Master of Business Administration (M.B.A.)", "BS, Mechanical Engineering", "Study Abroad, Mechanical Engineering", "CBSE, High School", "Engineers Without Borders - Boston Professionals", "Engineers Without Borders - Boston University", "Boston University"], "AlexLamb": ["Universit de Montral", "Amazon", "JHU Human Language Technology Center of Excellence", "Johns Hopkins University", "Johns Hopkins University Applied Physics Laboratory", "North American Chapter of the Association for Computational Linguistics: Human Language Technologies (NAACL-HLT)", "Association for the Advancement of Artificial Intelligence", "Doctor of Philosophy (Ph.D.), Computer Science", "Bachelor of Science, Applied Mathematics and Computer Science"], "b0noI": ["Google", "Hexlet.org", "Amazon", "DIO-soft", "Samsung R&D", "Rodovid Bank", "Institute of geochemical", "Oracle", "Oracle", "10gen", "Bionic University", "Coursera Verified Certificates, License ABW3MZXEYW", "Coursera Verified Certificates, License MZQSKZCUKZ", "Coursera Verified Certificates, License V7PREBM886", "Coursera Verified Certificates, License HY9V4GHVYJ", "Coursera Verified Certificates, License MLKKP9JTFY", "Coursera Course Certificates, License JZDYKBQFFAXY", "Coursera Course Certificates, License N8C2VV2ND4XU", "Doctor of Philosophy (Ph.D.), Natural Language Processing", "\"MS\", information security"], "XavierBouthillier": ["Nuance Communications", "Universit de Montral", "Universit de Montral", "Proceedings of the 15th ACM on International conference on multimodal interaction", "Doctor of Philosophy (Ph.D.), Computer Science", "Master's Degree, Computer Science", "Exchange student, Computer science", "Bachelor's degree, Computer Science"], "JeremiahLowin": ["Jeremiah liked", "Kokino LLC", "Compass Coffee", "The Apache Software Foundation", "Lowin Data Company", "King Street Capital Management", "A.M., Statistics", "A.B., Economics"], "MikeC.Fletcher": ["Python Software Foundation", "VRPlumber Consulting Inc.", "PyOpenGL", "Jazinga Inc.", "Aurora Cable Internet", "Rogers Communications", "VexTech Inc.", "Cinemon Inc.", "VRTelecom Inc", "BIS, Design Epistemology, Virtual Reality"], "HughPerkins": ["ASAPP", "Standard Chartered", "Morgan Stanley", "Lehman Brothers", "Socit Gnrale Corporate and Investment Banking", "SecondLife", "UFlexData (a Mandragore Division)", "CS Communication & Systmes", "Masters Degree, Computer Science, GPA 97.5", "Chinese (Mandarin), HSK 5", "Bachelors Degree, Natural Sciences, Class II.1", "University of Oxford"], "Nouiz": ["mnubo", "Briowireless Inc.", "Synergie Pilates", "Tekelec", "Tekelec", "Tekelec", "Blueslice Networks", "Nortel", "Teleglobe", "Microcell", "TechnoMontral", "Startup Weekend", "WearHacks", "Fondation Montral inc.", "Academos", "Founder Institute", "C100", "CABA", "Gartner", "ABI Research", "Price Waterhouse Coopers", "Deloitte", "Canadian Innovation Exchange", "Ernst & Young", "C100", "Branham300", "Bronfman Family Foundation", "Light Reading", "", "IIoT Symposium", "C2 MTL 2016 & Montreal Chamber of Commerce", "Canadian Venture Capital Association conference 2016", "Continental Automated Buildings Association - 2016 forum", "Ecole Polytechnique de Montreal / HEC", "IoT World Forum - Dubai", "TechnoMontral - l'Internet des Objets", "The Founder Institute", "Europe EP2130324", "B.Eng", ""], "goodfeli": ["OpenAI", "Google", "Google", "Google", "Willow Garage", "PhD, Machine Learning", "Bachelor of Science, Master of Science, Computer Science", "Proc. AAAI 2014, pp. 1199-1205", "NIPS 2014", "ICLR 2014"], "MelanieDucoffe": ["Inria", "Universit de Rennes 1", "diplme ENS", "Master's degree (research), computer vision, data mining, signal processing, virtual reality", "Diplme d'ingnieur, sciences informatiques, Vision Image et Multimdia", "Attestation CPGE ( classes prparatoires), Mathmatiques et Physiques ( MPSI, MP*)"], "DanielSmilkov": ["Google", "MIT", "Macedonian Academy for Sciences and Arts", "IBM", "Netcetera", "Master of Science (M.Sc.), MIT Media Lab", "M.Sc., Networks - Topology, Evolution, Dynamics, GPA: 9.89/10", "Bachelor, Computer Science", "Physical Review E 84 (4), 046102"], "MatthewRocklin": ["Continuum Analytics, Inc.", "Sandia National Laboratories", "University of Chicago", "Sandia National Laboratories", "Argonne National Laboratory", "University of California, Berkeley", "National Solar Observatory", "4d Imaging", "Doctor of Philosophy (PhD), Computer Science", "BA, Physics, Mathematics, Astronomy"], "NolwennCauchois": ["Cloudwatt", "Cloudwatt", "Master, Mathmatiques et informatique appliqu la cryptologie", "Licence, Mathmatiques et informatique"], "IgorKorsunov": [], "ChrisBamford": ["Import.io", "Bam4d Systems", "TouchGo Technology", "TouchGo Technology", "Bam4d Systems", "Cybernetic Intelligent Systems, 2010 CIS 2010. 9th IEEE International Conference", "Paladyn. Journal of Behavioral Robotics.", "Applied Masters, Cybernetics, First Class Honours", ""], "TomLeaman": ["Michael Page", "Argyll Scott", "Michael Page", "Michael Page", "Michael Page", "Michael Page UK", "Royal Navy"], "JohnWarren": ["Energy Alloys, LLC"], "JulienRebetez": ["MindMaze", "HEIG-VD", "Ecole Polytechnique Fdrale de Lausanne (EPFL)", "IICT at HEIG-VD", "Google", "Iomedia Communication S.A", "CIAT", "Iomedia Communication S.A", "Google Summer of Code 2006", "Rpublique et Canton du Jura", "European Symposium on Artificial Neural Networks, Computational Intelligence and Machine Learning", "International Conference on Pattern Recognition (ICPR)", "International Symposium on Wearable Computers (ISWC)", "IWANN", "ICPRAM", "Master, Information Technology", "Bachelor of Science HES-SO, Informatique", "BS, Information Technology", ""], "VivekKulkarni": ["Vivek liked", "Vivek liked", "BHI, 2013 Maebashi , Japan", "Complenet 2014 (Accepted)", "National Institute of Technology Karnataka"], "MarkoRadmilac": ["Microsoft", "None (PhD), Computer Science", "Bachelors, Computer Science, Applied Math"], "IanGoodfellow": ["OpenAI", "Google", "Google", "Google", "Willow Garage", "PhD, Machine Learning", "Bachelor of Science, Master of Science, Computer Science", "Proc. AAAI 2014, pp. 1199-1205", "NIPS 2014", "ICLR 2014"], "KiallMacInnes": ["Hewlett-Packard", "Hewlett-Packard", "OpenStack", "Managed I.T.", "Style Design Systems Ltd", "Bacheors of Science, Computer Science"], "HarshShah": ["Socotra", "Africa", "World Health Partners", "Lazy Bear", "Google", "AdMob", "Global Pediatric Alliance", "Hercules Capital, Inc.", "Houlihan Lokey", "BA, Major: Communication Studies // Minor: Accounting", "Fall Semester Exchange Student", "Executive Marketing Academy"], "ValentinBisson": ["valentin liked", "valentin liked", "Squarepoint Capital", "master's", "Bachelor (last year, exchange)", "Bachelor", "Licence (French Bachelor equivalent)"], "PascalLamblin": ["Montreal Institute for Learning Algorithms (MILA)"], "JamesPage": ["Wishbone Energy Partners LLC", "BlackCrest Capital LLC", "National Petroleum Company", "Khalda Petroleum Company", "Qarun Petroleum Company", "Price Waterhouse", "BBA, Accounting & Finance, Investment and Banking"], "WilliamDarling": ["Microsoft", "Xerox Research Centre Europe", "University of Guelph", "Space Security Index", "Entertainment Software Association of Canada", "Gowling Lafleur Henderson LLP", "Paradynamics, Inc.", "Ginkgo Boutique Apple", "Coursera", "Coursera", "Coursera", "Intellectual Property Journal", "Proceedings of the 49th Annual Meeting of the Association for Computational Linguistics: Human Language Technologies: short papers", "Physics Department", "", "Ph.D., Computer Science (Machine Learning and Natural Language Processing)", "LL.B., B.C.L. (Common Law and Civil Law), Law", "B.Sc. (exchange year), Physics, Computer Science", "B.Sc. (Hons.), Physics, Computer Science"], "SamiraEbrahimiKahou": ["Samira liked", "Samira liked", "Samira liked", "Samira liked", "Samira liked", "Samira liked", "Twenty Billion Neurons GmbH", "Microsoft", "Netsis Software Inc."], "KyunghyunCho": ["New York University", "Universit de Montral", "Aalto University", "Universit de Montral", "ZenRobotics Ltd.", "Interactivy", "Corecess", "President", "Doctor of Philosophy (Ph.D.)", "Master of Science (M.Sc.)", "Bachelor of Science (B.Sc.)"], "IanLangmore": ["Google", "Johnson Research Labs", "Columbia University", "Opera Solutions", "Columbia University", "University of Washington", "Columbia University", "University of California", "University of California", "Qualcomm Inc", "KDD", "PhD, Mathematics 2008", "Master of Science, Electrical Engineering 2004", "Bachelor of Science, Electrical Engineering 2002"], "TobiasUrdin": ["Crystone AB / Crystone LLC", "Datorgruppen", "Crystone Sverige AB", "Fujitsu IsoWorks, SEB", "Fujitsu IsoWorks, SEB", "Board Member", "Cisco Systems Inc, Licensnummer 640-822", "High school graduation, System, Networking, Windows Server, Cisco, CCNA, LAN/WAN"], "ClintByrum": ["IBM", "Hewlett Packard", "Canonical Ltd.", "Adicio, Inc.", "Anonymizer, Inc.", "XNtech", "ERP.COM", "CR Computing Solutions"], "JamesCarey": ["EMC", "EMC", "EMC", "EMC", "Fidelity National Information Services", "Cingular", "Alltel Information Services", "BBA, Accounting"], "DavidSoergel": ["Google", "University of Massachusetts Amherst", "UC Berkeley", "Molecular Sciences Institute", "Asha Technologies", "Little Engine, Inc.", "Stanford University", "Ph.D., Computational Biology", "B.S., Symbolic Systems", "Computation and Neural Systems"], "RoyXue": ["Carnegie Mellon University", "Rakuten", "Tesla Motors", "University of Washington", "Theano Open Source Dev Community", "HackNTU", "INTERFIRM", "iFanr", "Carnegie Mellon University", "HackShanghai", "Google", "HappyChick Foundation", "AIESEC", "Master's degree, Software Engineering", "Master's degree, Computer Science and Systems, GPA 3.70", "Bachelor of Science (BS), Electrical and Electronics Engineering, GPA 3.5", "Deep Learning", "Coursera", "Coursera", "Coursera", "Coursera", "Coursera", "Coursera", "Canton Fair (China Import and Export Fair)", "Guangzhou International Documentary Film Festival", "Chinese Conference on Cloud Computing(CCCC 2013)", "PACKT Publishing", "", "", "", "", ""], "ClemensMarschner": ["Clemens Marschner gefllt Folgendes:", "Clemens Marschner gefllt Folgendes:", "Clemens Marschner gefllt Folgendes:", "Clemens Marschner gefllt Folgendes:", "Microsoft", "Microsoft", "Microsoft", "FAST, a Microsoft Subsidiary", "Fast Search & Transfer", "Computational Linguistics Department, Univ. Munich", "PhD Thesis, Centrum fr Informations- und Sprachverarbeitung, Munich, Germany", "Springer"], "RasmusLarsen": ["Rasmus liked", "Google", "L-3 Communications", "Stanford University", "Pulsent", "Stanford University", "post doc, Computer Science / Solar physics"], "NikosKarampatziakis": ["Microsoft", "Microsoft", "Doctor of Philosophy (Ph.D.), Computer Science, 4"], "ebrevdo": ["SVBio", "The Climate Corporation", "Princeton University - Department of Electrical Engineering", "Siemens Corporate Research", "Google - Computer Vision for OCR", "Air Force Research Laboratories, Maui Optical and Supercomputing Site, Kihei, HI", "Rensselaer Polytechnic Institute - Electrical Impedance Tomography (EIT) Research Group", "Factset Research Systems"], "AntonKhodakivskiy": ["Menta Capital LLC", "AppDirect", "Nemaris, LLC", "LiveTechnology Holdings, Inc.", "IMT", "Master's degree, Physics"], "MatthewEdmonds": ["The Tire Rack", "Church Growth Services Inc", "Bachelor of Architecture (BArch), Architecture"], "CiyongChen": ["Intel Corporation", "Cisco Systems", "Huawei Technologies", "Master's degree, Embedded Software Engineering", "Bachelor's degree, Electronic Information Science and Technology"], "RasmusMunkLarsen": ["Rasmus liked", "Google", "L-3 Communications", "Stanford University", "Pulsent", "Stanford University", "post doc, Computer Science / Solar physics"], "AliElqursh": ["Google", "Qualcomm", "Rutgers University", "Google", "Technicolor", "Bibliotheca Alexandrina", "PhD, Computer Science", "B.Sc, Computer Science"], "SamGross": ["Facebook AI Research", "Jam Labs, Inc.", "Yext", "D. E. Shaw & Co.", "Google (NYC)", "Google (Atlanta)", "Virginia Department of Motor Vehicles", "M.Eng., Electrical Engineering and Computer Science", "B.S., Computer Science"], "abergeron": ["Montreal Institute for Learning Algorithms (MILA)"], "PatrickNguyen": ["Google", "Microsoft", "Metanautix (acquired by Microsoft)", "Google", "Microsoft Research", "Panasonic", "beTrust", "Swisscom"], "KeshavaBharadwaj": ["Cisco", "Hewlett-Packard", "Hewlett-Packard", "Consultant - Corventis", "Hewlett-Packard", "Hewlett-Packard", "B.E, Electronics and communications", "B.E, Electronics and Communication"], "DaveChen": ["Google", "Yahoo!", "Lockheed Martin", "Ecrio Inc", "MS, Computer Science", "BS, Computer Science and Engineering", "High School", "SASE Circle Mentor", "CPP, Inc."], "LukaszKaiser": ["Google", "CNRS", "Google", "RWTH Aachen University", "RWTH Aachen University", "RWTH Aachen University", "RWTH Aachen University", "RWTH Aachen University", "Coursera", "Coursera", "NIPS 2015", "ICLR 2016", "Ph.D, Computer Science", "Master of Science, Computer Science", "Master of Science, Mathematics", ""], "YaroslavNechaev": ["Fondazione Bruno Kessler (FBK-irst)", "VIZERRA", "Total Digital Solutions", "RUSNANO", "Total Digital Solutions", "Intellectual business boutique", "SMS Siemag AG", "Novaya perevozochnaya kompaniya", "Specialist, Computer Science, Mathematics, Physics", ""], "VictorRodionov": ["Taylor | Australia", "peckvonhartel", "Architecture BVN", "Guida Mosley Brown Architects", "Bachelor of Architecture (B.Arch.), Architecture", "Bachelor of Applied Science (B.A.Sc.)"], "LiangChen": ["Amazon", "Microsoft Corporation", "Microsoft Corporation", "Microsoft Corporation", "LS Telcom AG, Germany", "Shanghai Nan Yang Info And Control Ltd., China", "BS, Computer Science"], "YutakaLeon": ["Google", "NICT", "ATR International"], "JamesPolley": ["U.S. Department of State", "U.S. Department of State", "U.S. Department of State"], "AlexRothberg": ["4Catalyzer", "Getco LLC", "D.E. Shaw & Co", "WebNotes (now: Crocodoc)", "Bridgewater Associates", "Bachelor's Degree, Computer Science, Economics", "High School"], "PawelKoniszewski": ["Pawe liked", "Pawe liked", "Intel Corporation", "Intel Corporation", "OpenStack Foundation", "Intel", "OpenStack Foundation", "Cisco", "OpenStack Foundation", "Geek Girls Carrots"], "BenNemec": ["Red Hat", "Red Hat", "None", "IBM", "IBM", "Luther College", "Boscobel Swimming Pool", "University of Minnesota - Rochester", "Rochester Active Sports Club", "RACE Jaguars", "BA, Computer Science"], "FrankSeide": ["Microsoft", "Microsoft", "Microsoft", "Microsoft", "Microsoft", "Microsoft", "Philips Research, Taipei", "Philips Research", "Dipl.-Ing., EE, CS"], "WeiHo": ["Google", "Microsoft", "USC Information Sciences Institute", "Princeton University", "B.S.E., Computer Science"], "JamesLi": ["Meltwater", "NextGen Angels", "Encore Alert (acquired by Meltwater)", "RE:action Strategy Group", "The White House", "Compass Partners", "Touchstone Consulting Group", "Cybis Communications", "GameDay Sports Marketing", "Future Business Leaders of America", "ZenithOptimedia", "Georgetown University", "TechCocktail", "Georgetown Startup Hoya Challenge", "Startup Weekend", "Georgetown University", "Oxford Academy", "FBLA", "FBLA", "GMS", "CGIU", "BS, Marketing, Management, Magna Cum Laude", ""], "AlbertoPlanas": ["Elettronica Santerno Espaa su"], "MatthewTreinish": ["United Security Investors, LLC", "Lore Group LLC", "Buckeye Consulting LLC", "Siren Digital, LLC", "Inspire Studios LLC", "Strategic Film Partners", "Malibu Film Festival", "Young and Rubicam", "BS, Sociology/Criminology", "High School", "California Bureau of Real Estate"], "PatrickNguyen_": [], "ZiyeFan": ["Theano Development Community", "Great Wall Computer Software And Systems Inc., Ltd.", "Master's degree, Machine Intelligence (School of EECS)", "Bachelor's degree, EE (School of EECS)"], "EdgarMagana": ["Edgar Magana on LinkedIn", "Edgar shared", "Edgar shared", "Edgar shared", "Workday", "OpenStack", "Contrail Systems", "OpenStack", "Cisco", "PLUMgrid", "Cisco Systems", "Universitat Politecnica de Catalunya", "Deloitte Consulting", "2009 IEEE", "2009 IEEE", "OpenStack Docs"], "NoahFiedel_": [], "MehdiMirza": ["DeepMind", "Universit de Montral", "Google DeepMind", "Flickr", "Atlas Wearables", "Idiap Research Institute", "MIT", "Doctor of Philosophy (Ph.D.), Computer Science", "MSc, Artificial Intelligence", "BSc, Physics"], "ry": ["s", "P"], "TakeakiMatsumoto": ["NTT Communications"], "EldarAkchurin": ["Microsoft", "Hewlett-Packard", "Kaspersky Lab", "Deutsche Bank", "Diploma, Applied Mathematics and Computer Science", "Master of Science, Software Systems Engineering"], "FlorentFlament": ["Burger King Corporation", "McDonald's", "Licence (2 annes valides) , Biologie des organismes et des populations", "Greenpeace"], "ShaneWang": ["T.R. ENGEL Group, LLC", "Morgans Hotel Group", "Rosewood London", "China Construction Bank", "Bachelors Degree, Mathematics and Computer Science, Summa Cum Laude", "Bachelors Degree, Hospitality Administration/Management, Summa Cum Laude", "Boston Athletic Association", "Be The Match operated by National Marrow Donor Program", ""], "NassimBabaci": ["Cloudreach", "Cloudwatt", "Wallix", "SunGard Financial Systems", "EMC", "AWS, License AWS-ASA-5424", "AWS, License AWS-ASOA-1284", "AWS, License AWS-ADEV-1433", "AWS, License AWS-PSA-2220", "Masters degree, Distributed Systems", "Software Engineer, Computer Systems Networking and Telecommunications"], "KirilGorovoy": ["Google", "Facebook", "University of Waterloo- AI Group", "Intel FPGA", "Google", "IBM"], "NikhilMishra": ["Robot Learning Lab, UC Berkeley", "Trooly", "Beckman Laser Institute", "Bachelor's Degree, Electrical Engineering and Computer Science", "International Conference on Robotics and Automation", "Journal of Biomedical Optics"], "AlexanderMaretskiy": ["Mirantis"], "SaschaPeilicke": ["HERE", "HOTEL DE GmbH", "SUSE Linux Products GmbH", "openSUSE Project", "SUSE Linux Products GmbH", "KDE", "Google Summer of Code 2011", "Google Summer of Code 2010", "Institut fr Automation und Kommunikation (ifak e.V.)", "Google Summer of Code 2009", "SUBMIT e.V.", "Nokia Qt Software", "Language Center - University of Magdeburg", "Institute for Knowledge & Language Processing, University of Magdeburg", "Ubuntu", "Linux Professional Institute, Lizenz LPI000220879", "Novell Certification", "Linux Professional Institute, Lizenz License LPI000220879", "Diplom (German)", "", "openSUSE Project", "OpenStack", "KDE", ""], "JoeGordon": ["Pinterest", "Hewlett-Packard", "Cloudscaling", "Fujitsu", "University of Maryland Institute for Advanced Computer Studies", "United States 8,505,103", "United States 8,745,747", "United States"], "AswadRangnekar": ["NTT DATA Americas", "HappyChickoo", "eClerx", "", "Master of Engineering (MEng), Computer Engineering"], "YannN.Dauphin": ["Facebook", "Universit de Montral", "Microsoft", "Google", "GNU CLisp", "Ericsson", "Lambda Tree", "Verkkostadi", "Advances in Neural Information Processing System", "Doctor of Philosophy (Ph.D.), Computer Science"], "BrianBowen": ["FirstFuel Software", "Solstice Initiative", "ecovent Systems", "Ceres, Inc.", "EnerNOC", "Yale University Press", "Midwest Energy News", "Robert and Patricia Switzer Foundation", "Master in City Planning (MCP), Environmental Policy and Planning", "BA, Literature", "Green Business Certification, Inc.", "NCSL Energy Supply Task Force", "Department of Energy"], "RonaldBradford": ["RB42", "Effective MySQL", "Oracle ACE Program", "Oracle Press", "Oracle Press", "Oracle Press", "Wrox", "MySQL Certification", "Master of Information Technology coursework", "Bachelor of Applied Science", "International Space Apps Challenge", "MySQL Community", "Oracle Corporation", "MySQL Inc"], "DannyGoodman": ["Danny Goodman on LinkedIn", "Danny liked", "(Gestating)", "Software and data consulting", "MetaMind", "MetroMile", "Stanford Pride", "Outright", "Chai Labs", "Numenta", "TMS, Inc.", "Tropos Networks", "Ellington Management Group", "Sun Microsystems", "MS, Computer Science, 4.1/4"], "ChrisFattarsi": ["Inventorum GmbH", "Piston Cloud", "Piston Cloud Computing, Inc.", "NASA Ames Research Center", "Novacoast", "Advanced Dental Imaging", "BS, Computer Engineering"], "WenChengMa": ["IBM"], "StuartMcLaren": ["S Mclaren Builders"], "PavanKumarSunkara": ["Apiary", "Dual (M.Tech & B.Tech), Computer Science"], "NicolasBouchard": ["Montreal Institute for Learning Algorithms (MILA)"], "RishabhJain": ["LiveRamp, An Acxiom Company", "OpenLab app", "Flagship Ventures", "Invisergy", "Morgan Stanley", "Doctor of Philosophy (PhD), Materials Science, NSF & NDSEG Fellow", "M.Sc., Optics and Photonics, The Thouron Award", "Bachelor of Science (B.Sc.), Finance, Summa Cum Laude", "B.S.E., Materials Science and Engineering"], "AndrewTranquada": ["Rackspace, the Open Cloud Company", "nTelos Inc.", "Nauticom Internet Services", "Redhat, License 111-056-511"], "AndreasScheuring": ["Jugendherberge Berlin Ostkreuz"], "AnitaKuno": ["I really dislike forms forcing me to enter values."], "SherryMoore": ["Google", "Sun Microsystems", "Intel"], "RickClark": ["Mastercard", "aaSemble", "Reliance Jio Infocomm", "Cisco", "Rackspace Hosting", "Canonical Ltd.", "Etrade Financial", "McKesson", "BB&T", "LearningSoft Corporation"], "YuxinWu": ["Facebook AI Research", "Facebook Oculus VR", "Megvii Technology (aka Face++)", "UC Berkeley", "Google", "Hulu", "HPC Advisory Council", "Asia Supercomputer Community", "ACM SIGMOD", "Trend Micro Inc.", "ACM SIGKDD", "China Computer Federation", "Tsinghua University", "", "ACM SIGGRAPH Asia", "Arxiv Preprint", "arxiv preprint", ""], "MelanieWarrick": ["Skymind.io - Deep learning for Industry"], "SteveKowalik": ["Sodexo", "Service America GroupLLC", "All seasons services Inc.", "A&W Resturant"], "MattFischer": ["Apple", "Apple", "Napster", "myplay", "N2K/CDNOW", "University of Virginia Club of New York", "IMG", "BA with Distinction, Political and Social Thought Distinguished Majors Program", "", "United States 11/082,207", "", "Business Insider"], "steven-pigeon": ["UQAR", "Universit de Montral", "cole de technologie suprieure (TS)", "Vantrix", "Comact", "Ph. D., Data Compression"], "AuktavianGarrett": ["Cisco Systems", "Clarkston Consulting", "Cisco Systems", "Nortel Networks", "Acuity Healthcare Management LLP", "", "BS, Computer Engineer"], "IulianVladSerban": ["Blue Analysis", "DigiCorpus Aps", "Financys Aps", "Project Osiris", "Operation Dagsvrk", "Operation Dagsvrk", "Doctor of Philosophy (PhD), Machine Learning", "Master of Science, Machine Learning, Distinction", "", "Bachelor, Mathematics and Statistics", "Mathematics, Physics, Chemistry and Development of Technology"], "VladimirIvanov": ["Google", "Ukraine 10225", "United States"], "AsimShankar": ["Google", "Veritas Software (would later merge with symantec"], "PranaliDeore": ["Red Hat", "NTT Data Americas", "Sureline Systems, Inc.", "MSc(Comp.Sci), Computer Science"], "BartoszFic": ["Update Digital", "Intel Corporation", "Online Venture", "Master of Science in Engineering, Informatics", "Engineer's degree, Informatics"], "JonasRauber": ["University of Tubingen - Bethge Lab", "Karlsruhe Institute of Technology (KIT)"], "Pierre-AntoineManzagol": ["Google", "Siemens", "Montreal Institute for Learning Algorithms (MILA)"], "SergioCazzolato": ["Intel Agile Conference", "Conferencia giles 2012", "Intel Agile Conference 2012"], "KunHuang": ["Facebook", "Google", "Sunny Arts Performing Group", "Macy's", "Norfolk Southern", "North Carolina State University", "Boeing Commercial Airplanes", "Cisco", "Ph.D., Industrial and Systems Enginnering", "Master, Industrial and Systems Enginnering", "Bachelor of Science, Mathematics", ""], "LiuYuan": ["AWR-APLAC Corporatiosn", "IBM T. J. Watson Research Center", "Coursera", "Coursera", "Coursera", "Coursera", "Coursera", "Doctor of Philosophy (PhD)", "MS", "BSEE"], "JeffreyTang": ["Twitter", "Galvanize Inc", "Skymind.io - Deep learning for Industry", "IBM", "Integrative Genomics and Medicine - Medical Research Council"], "SimonLemieux": ["mldb.ai", "Datacratic", "Collge lionel-groulx"], "ItishaDewan": ["IIIT Hyderabad", "IIIT Hyderabad", "OpenStack", "Cykul", "Score: 334", "Score: 118", "Score: 2390", "Score: 2080", "Bachelor's Degree, Computer Science", "High School"], "AndrewHutchings": ["Utrip, Inc.", "Summer Program", "Coursera", "Coursera", "Coursera", "Coursera", "Coursera", "Master of Science (M.S.), Operations Research", "Bachelor of Science (B.S.), Mathematics"], "nanhailiao": ["Tianjin Kylin Information Ltd.co"], "JakubSygnowski": ["Google Research", "Google", "TouK", "", "", "Master's Degree, Computer Science", "Master's Degree, Computer Science"], "Fr\\xe9d\\xe9ricBastien": ["mnubo", "Briowireless Inc.", "Synergie Pilates", "Tekelec", "Tekelec", "Tekelec", "Blueslice Networks", "Nortel", "Teleglobe", "Microcell", "TechnoMontral", "Startup Weekend", "WearHacks", "Fondation Montral inc.", "Academos", "Founder Institute", "C100", "CABA", "Gartner", "ABI Research", "Price Waterhouse Coopers", "Deloitte", "Canadian Innovation Exchange", "Ernst & Young", "C100", "Branham300", "Bronfman Family Foundation", "Light Reading", "IIoT Symposium", "C2 MTL 2016 & Montreal Chamber of Commerce", "Canadian Venture Capital Association conference 2016", "Continental Automated Buildings Association - 2016 forum", "Ecole Polytechnique de Montreal / HEC", "IoT World Forum - Dubai", "TechnoMontral - l'Internet des Objets", "The Founder Institute", "Europe EP2130324", "B.Eng", ""], "JustinBayer": ["Volkswagen AG", "van der Smagt & Bayer GbR", "TU Munich", "IDSIA", "Dr., Machine Learning", ""], "EugeneBrevdo": ["SVBio", "The Climate Corporation", "Princeton University - Department of Electrical Engineering", "Siemens Corporate Research", "Google - Computer Vision for OCR", "Air Force Research Laboratories, Maui Optical and Supercomputing Site, Kihei, HI", "Rensselaer Polytechnic Institute - Electrical Impedance Tomography (EIT) Research Group", "Factset Research Systems"], "JulienDanjou": ["Red Hat", "OpenStack", "freedesktop.org", "Debian", "Debian France", "Julien Danjou", "eNovance", "eNovance", "Easter-eggs", "TuxFamily", "IELO", "Mandriva", "Frag Arena", "", "Rsultat : 935", "Master, Computer Science", "DUT, Computer Science", "Coursera"], "FrankChu": ["Shanghaitech University - School of Information Science and Technology"], "AndyMcCrae": ["Rackspace, the #1 managed cloud company", "Rackspace, the #1 managed cloud company", "Rackspace, the #1 managed cloud company", "Master of Engineering (MEng), Computer Science", "Software Developer", "805009233444167"], "YaroslavBulatov": ["OpenAI", "Google", "Strands", "ViewPlus Technologies", "Information Extraction and Transport", "Oregon State University"], "AndrewClayShafer": ["Pivotal", "Parvus Captus", "Rackspace", "Cloudscaling", "Agile Roots", "Ignite Salt Lake", "Cloudscaling", "Reductive Labs Inc.", "Reductive Labs", "Infopia", "Infopia", "Infopia", "Realm Systems Inc", "Driversoft", "O'Reilly Media", "MS, Scientific Computation", "BS, Mathematics", ""], "Fabrizio(Misto)Milo": ["Fabrizio liked", "Fabrizio liked", "Fabrizio liked", "Fabrizio liked", "Fabrizio liked", "Fabrizio liked"], "vdumoulin": ["Montreal Institute for Learning Algorithms (MILA)"], "DhariniChandrasekar": ["Intel Corporation", "University of Cincinnati", "Interactive Intelligence", "Cloud Kinetics", "Master of Science (MS), Computer Science, 3.68/4.0", "Bachelor of Engineering (BE), Computer Science, CGPA : 8.1/10", "Higher Secondary Education, 94.4%", "Senior Secondary Education, 460/500 (92%)", "Bloomsbury Honors Society, USA", "University of Cincinnati", "Volunteer", "Internation Reseach Network, UARJ."], "LiYao": ["Montreal Institute for Learning Algorithms (MILA)"], "BillOwen": ["JDA Software", "JDA Software Group, Inc", "JDA Software", "JDA Software", "Expanets", "Viasoft"], "VincentDumoulin": ["LISA, University of Montreal", "Universit de Montral", "Ski Mont Saint Bruno", "arXiv", "Proc. AAAI 2014, pp. 1199-1205", "Doctor of Philosophy (Ph.D.), Computer Science", "B.Sc., Physics and Computer Science"], "skaae": ["University of Copenhagen", "MSc student, Systems Biology", "Bachelor of Science (BSc), Bioengineering and Biomedical Engineering"], "LaurentDinh": ["arXiV"], "HuazuoGao": ["Physics", ""], "jiakai": ["CILVR Lab at New York University", "NVIDIA", "Movement Lab at New York University", "Honda Research Institute USA, Inc.", "NVIDIA", "New York University", "3D Computer Game Engine Design, New York University", "The Center for Public Safety, Tsinghua University", "Robot Car Program, Tsinghua University", "Computer Organization Laboratory, Tsinghua University", "PhD Candidate, Computer Science", "Master, Computer Science, 3.75", "Bachelor, Engineering Physics, 3.7", "Bachelor, Electrical and Computer Engineering"], "MikKocikowski": ["Peak Unicorn Consulting", "Target", "Quid", "Various", "Hitachi Data Systems", "", "Ansible Fest 2016"], "DuncanMcGreggor": ["Element 84", "Open Source Community", "Multiple Organizations", "AdRoll", "Rackspace, the Open Cloud Company", "Multiple Organizations", "Canonical Ltd.", "Canonical Ltd.", "Divmod, Inc.", "AdytumSolutions, Inc.", "Public Broadcasting Service", "General Physics", "USinternetworking", "University of Maryland", "Face-Pressed Web Design", "US Army"], "AvinashPrasad": ["ISACA"], "AlexeyOrlov": ["Microsoft", "Microsoft", "Intel Corporation", "Intel Corporation", "Intel Corporation", "Scrum Alliance", "Scrum Trek", "Game Developers Conference, Moscow", "Master of Business Informatics, Business analyst", "Master of Science (M.S.), Mathematician, system programmer"], "DavidPeraza": ["Persistent Systems Inc.", "IBM", "IBM", "IBM", "Oceanwide usa", "IBM", "IBM", "IBM System Magazine", "IBM", "Persistent System Inc.", "Master of Science, Computer Science", "Bachelor's degree, Computer Engineering", "United States US8627274", "United States 8543687 B2"], "YoshuaBengio": ["Universit de Montral", "AT&T Labs, Inc.", "MIT", "McGill University", "PhD, Computer Science", "MSc, Computer Science", "B.Eng., Computer Engineering", ""], "SunYeopLee": ["IoTcubeCon", "KITRI", "Bachelor of Engineering (B.E.), Computer Science and Engineering", "Student in top 30, Product security", " ", "", "KT", "", "", " ", "", "", "", "", ""], "HaomaiWang": ["XSKY Data Technology", "UnitedStack", "Intel", ""], "EldarNugaev": ["Coursera", "edX", "Coursera", "edX, License 830298d563104f099bd7bf42f3273b8c", "Microsoft", "Hewlett-Packard", "Trafigura", "Digital Society Laboratory", "utinet.ru", "buzzoola.com", "Grid Dynamics", "Mirantis", "Score: http://rosalind.info"], "BinZhou": ["FM Global", "Pratt & Whitney", "Pratt & Whitney", "GE Power & Water", "GE Global Research", "University of Michigan", "PhD, Mechanical Engineering", "MBA", "GE"], "JakubKolodziejczyk": ["Jakub", "Lexues", "Personal projects", "Okinawa Institute of Science and Technology", "Nanyang Technological University", "Osaka University", "Master of Engineering (M.Eng.), Computer Aided Mechanical Engineering, First Class Honours"], "MitsuhiroTanino": ["Hitachi Data Systems", "OpenStack", "Hitachi", "Master of Engineering (M.Eng.), Department of Computer Science and Engineering"], "GeetikaBatra": ["OpenStack", "Lyxel Labs Private Limited", "OpenStack", "OpenStack", "Outreachy Intern at OpenStack", "Learn IT Girl, License 10060142", "Accredible, License Accredible-10222048", "Bachelor of Technology (B.Tech.), Electronics and Communication", "87.2%", ""], "FredericBastien": ["mnubo", "Briowireless Inc.", "Synergie Pilates", "Tekelec", "Tekelec", "Tekelec", "Blueslice Networks", "Nortel", "Teleglobe", "Microcell", "TechnoMontral", "Startup Weekend", "WearHacks", "Fondation Montral inc.", "Academos", "Founder Institute", "C100", "CABA", "Gartner", "ABI Research", "Price Waterhouse Coopers", "Deloitte", "Canadian Innovation Exchange", "Ernst & Young", "C100", "Branham300", "Bronfman Family Foundation", "Light Reading", "IIoT Symposium", "C2 MTL 2016 & Montreal Chamber of Commerce", "Canadian Venture Capital Association conference 2016", "Continental Automated Buildings Association - 2016 forum", "Ecole Polytechnique de Montreal / HEC", "IoT World Forum - Dubai", "TechnoMontral - l'Internet des Objets", "The Founder Institute", "Europe EP2130324", "B.Eng", ""], "TakuFukushima": ["Midokura"], "LuisdeBethencourt": ["Samsung Electronics", "Samsung Electronics", "GNOME Foundation", "Collabora Ltd", "Collabora Multimedia", "Oracle", "Sun Microsystems", "Imagen en Accin", "Bachelor of Science (BS), Computer Science", "1st year, Computer Science", "High School, Science"], "MartinWicke": ["Google", "eddy systems", "otherlab", "HighlightCam", "UC Berkeley", "Stanford University", "Max Planck Center for Visual Computing and Communication", "Dr. Sc. ETH, Computer Graphics", "Diplom, Informatik, \"mit Auszeichnung\" (summa cum laude)", "United States 8,995,823", "United States", "United States", "United States", "Computer Graphics Forum", "Computer Graphics Forum", "Transactions on Graphics", "Computer Graphics Forum", "Computer Graphics Forum", "Transactions on Graphics", "Information Processing in Sensor Networks", "Computer Graphics Forum", "Computer Graphics Forum", "Symposium on Point-Based Graphics", "Information Processing in Sensor Networks", "ACM Workshop on Mobile Entity Localization and Tracking in GPS-less Environments", "Transactions on Graphics", "Pacific Graphics", "Eurographics", "Symposium on Point-based Graphics", "Vision, Modeling, and Visualization", "Transactions on Graphics", "Computer Graphics Forum", "Sensor, Mesh and Ad Hoc Communications and Networks"], "KirillBobyrev": ["Google", "Google", "Subterranean Games", "Bachelors Degree, Applied Mathematics and Physics", "Specialist, Mathematics", "High School, Applied Mathematics", "High School", "Coursera Course Certificates, License 34DQUYZBJ22R", "Coursera Course Certificates, License T8TACVE4YV7N", "Coursera Course Certificates, License NDEJXRK5UBAG"], "CyrilRoelandt": ["INRIA", "Universit de Bordeaux", "INRIA", "ReactivOn", "Master's degree, Computer Science", "Master's degree, Computer Science"], "MajorHayden": ["Rackspace, the #1 managed cloud company", "GIAC", "Fedora Project", "Rackspace, the Open Cloud Company", "Rackspace, the Open Cloud Company", "SecureTrust, Inc", "MHTX Enterprises", "American Medical Response", "Red Hat, License 805010118556202", "MySQL AB", "Red Hat, License 805010118556202", "Red Hat, License 805010118556202", "Red Hat, License 805010118556202", "Red Hat, License 805010118556202", "Red Hat, License 805010118556202", "Red Hat, License 805010118556202", "Red Hat, License 805010118556202", "GIAC", "GIAC", "BS, Biological Sciences", "Cellular And Molecular Biology", "", "Member", "Member", "Life Member", "", "UT EMS"], "AndrewMelton": ["Schafer Corporation", "Atlantic Seaboard Wine Association", "Strategic Planning & Operations Research Executives in the Washington D.C. Metro Area", "Melton Consulting Services, LLC", "System Planning Corporation", "Barrel Oak Winery, LLC", "Paradise Springs Winery", "Decision Technologies Inc.", "TASC, Inc.", "Dynamis, Inc.", "CSCI", "BDM", "US Navy", "", "", "Professional Membership", "Certified Tourism Ambassador", "MS, Operations Research", "BS, Biology"], "CoryStone": ["UMB Bank", "UMB Bank", "Commerce Bank", "Commerce Bank", "Commerce Bank", "Business Management", ""], "MasashiOzawa": ["WDB"], "YinggongZHAO": ["Microsoft", "Nanjing University", "Microsoft Research Asia", "Doctor of Engineering, Computer Science and Technology"], "YuZhang": ["Google", "Microsoft", "UCLA", "IBM T.J Watson Research Center", "Tsinghua University", "Dow Chemical", "Dimitris N. Chorafas Foundation", "University of California, Los Angeles", "University of California, Los Angeles", "University of California Los Angeles", "University of California Los Angeles", "ACM Transactions on Economics and Computation", "IEEE Transactions on Signal Processing", "IEEE Journal on Selected Areas in Communications", "IEEE Journal on Selected Areas in Communications", "IEEE Journal on Selected Topics in Signal Processing", "IEEE Journal on Selected Areas in Communications", "Elsevier Journal on Signal Processing", "IEEE Transactions on Signal Processing", "IEEE INFOCOM", "IEEE Allerton Conference", "IEEE Conference on Decision and Control", "ACM SIGMETRICS Big Data Analytics Workshop", "IEEE INFOCOM 2014", "Doctor of Philosophy (Ph.D.), Electrical and Electronics Engineering", "Master's degree, Electrical and Electronics Engineering"], "KenThomas": ["Envisor Consulting", "The 410 Bridge", "ValleyCrest Companies", "Scapes LLC", "BS, Biology"], "HuanXie": ["Texas Southern University", "University of Houston", "Texas Southern University", "Texas Southern University", "Nanospectra Biosciences", "Ph.D., Chemistry", "B.S., Chemistry"], "ScottCyphers": ["Intel"], "YingZhang": ["cole Polytechnique de Montral", "Institut de recherhe de moteur Shanghai", "Master's degree, nformatique", "Ph.D, Mcanique", "D.E.A., Dynamique des structures", "Bachelor's degree, Mcanique, spcialit en moteur automobile"], "BhuvanArumugam": ["Apple", "Apple", "GoGrid", "IBM DemandTec Solutions", "OpenStack", "CollabNet, Inc.", "The Apache Software Foundation", "Ubuntu", "bk Systems P Ltd.", "Linux for You", "Linux for You magazine"], "MaciekChociej": ["Google", "Google", "Jagiellonian University", "Buzzword Junkie", "Madwands", "Jagiellonian University", "DRAGO Entertainment Sp. z o.o.", "Phiscape AG", "INTERIA.PL", "Storm Educational Software", "R-Data", "Jagiellonian University", "Computerland S.A.", "Proceedings of the International Conference on Computer Vision Theory and Applications Vol. 2, Rome, Italy, 24-26 Feb, 2012, 303-310", "United States", "Finished PhD programme, in hiatus, no dissertation, Theoretical Computer Science", "MSc, Grid Computing"], "DiogoMoitinhode": ["Enlitic", "Stuph.co", "Amazon.com", "Rensselaer Center for Open Source", "Kaggle.com", "COMAP, the Consortium for Mathematics and Its Applications", "", "GPU Technology Conference", "GOTO Conference Copenhagen 2016", "O'Reilly Artificial Intelligence Conference", "Re-work Deep Learning in Healthcare Summit", "ICML 2016", "ICLR 2016 Workshop Track", "ICLR 2016 Workshop Track", "Master's Degree, Computer Science / Machine Learning", "Bachelor's Degree, Computer Science and Mathematics, Magna Cum Laude"], "AlexBlack": ["Skymind.io"], "GaizkaNavarro": ["Microsoft"], "MichalDulko": ["Wockhardt UK", "Wockhardt UK", "Wockhardt UK", "ALcontrol Laboratories", "ALcontrol Laboratories (WSP Environmental Services)", "Minerva Scientific LTD", "MEng, Chemical Technology, Specialisation: Technical and Industrial Analytical Chemistry"], "YaoZhang": ["Intel Corporation", "University of Oxford", "EASA", "The University of Nottingham", "University of Nottingham", "Master of Science (MSc), Computer Science, 3.7 / 4.0 with Distinction Dissertation", "Bachelor's degree, Computer Science, Computer Science, 3.9 / 4.0, First Class, ranking top 5%", "Computer Science Department", "Department of Computer Science", "Xiaoma Primary School in Yulin, Guangxi Province, China", "Young Volunteer Association", "International Tennis Competition at Yinzhou District Gymnasium", "The University of Nottingham", "The University of Nottingham"], "GeorgePeristerakis": ["Polytechnique Montral", "Red Hat", "EVOLIO.ca", "LeSite", "Phoenix Technology Games", "20-20 Technologies", "TISEC Inc", "Montreal Python", "MSR 2012 - 9th IEEE Working Conference on Mining Software Repositories", "Masters Degree, Computer Science", "Bachelor, Computer Science (Software Systems)"], "AjayaAgrawal": ["Qubole", "OpenStack", "Morgan Stanley", "DrizzleDB Project", "Microsoft", "B. Tech, Computer Science", "Cloud Computing Concepts, Course and Programming mastery badge, 89%", "Mining Massive Datasets, 94.9% with Distinction", "Cloud Computing Concepts: Part 2, Course and Programming mastery badge, 99%", "Cloud Networking, Course and Programming mastery badge, 98%"], "SergioGuadarrama": ["Sergio shared", "Google", "UC Berkeley", "UC Berkeley", "European Centre for Soft Computing", "Universidad Politcnica de Madrid", "Universidad Rey Juan Carlos", "UC Berkeley", "Universidad Politcnica de Madrid", "IIIA - CSIC", "Proceedings of the 27th AAAI Conference on Artificial Intelligence (AAAI-2013), July 2013", "Int. Conference IPMU 2008", "Ph.D., Artificial Intelligence"], "ChristopherMacGown": ["Cisco", "Solidify Security", "Piston Cloud Computing, Inc.", "Piston Cloud Computing, Inc.", "OpenStack Foundation", "Piston Cloud Computing, Inc.", "Global Earthquake Model Foundation", "Rackspace Managed Hosting", "Soft Surroundings", "Design Works for Business", "Home Decorators Collection"], "HenriqueTruta": ["Distributed Systems Laboratory - UFCG", "Accenture", "Master of Science (MSc), Cloud Computing", "Bachelor's degree, Computer Science"], "haosdent": ["The Apache Software Foundation", "Shopee", "Alibaba Group", "EMC", "Bachelor of Science (BS), Network engineering, Four", "Asian Games Organizing Committee", "Adobe and W3C", "CSDN", "China Electronic Commerce Association", "Oracle", "Coder", "volunteer"], "SungKim": ["Hong Kong University of Science and Technology", "Microsoft", "MIT", "UC Santa Cruz"], "LiWei": ["CITIC Securities", "Deutsche Bank", "Citi", "NYSE", "Iowa State University", "University of Utah", "Doctor of Philosophy (Ph.D.), Finance and Financial Management Services", "Bachelor of Science (BS), Management Information Systems, General"], "NeilJerram": ["OpenStack", "Tigera", "Metaswitch Networks", "Project Calico", "QtMoko project", "GNU Project", "PhD, Fluid Mechanics", "BA, Engineering", ""], "YasuakiNagata": ["Mitsui OSK Lines", "Mizuho Financial Group", "Bachelor's degree, Mechanical Engineering"], "R\u00e9myL\u00e9one": ["Inria", "Tlcom ParisTech | Thales Communications & Security (CIFRE)", "IEEE Internet of Things Journal (Volume:1 , Issue: 5 )", "ICC 2015", "Sensornets 2013", "EWSN 2015", "Algotel 2013", "Master's degree (Research branch), Computer Networking and Telecommunications", "Master's degree, Computer Engineering - Applied Mathematics", "Classe prparatoires (MPSI - MP-Info), Mathematics, Physics and Computer Science", "Bac S - SI, Mention Bien", "Paris Montagne"], "kaisheny": ["Ant Financial ", "A Startup Trading Company", "Microsoft Research", "Microsoft Research", "Microsoft", "Texas Instruments", "University of California at San Diego", "Advanced Telecommunications Research, Japan", "Deep Learning Workshop @ NIPS 2013", "Interspeech", "Computer, Speech, and Language", "NIPS", "ICASSP", "The 15th Annual Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies (NAACL 2016)", "Ph.D., Communication and Information Systems", "R. A., Electric Engineering", "M.E, Communications and Electronic Systems", "B. E., Radio Engineering", ""], "delallea@valhalla.apstat.com": ["Ubisoft", "Ubisoft", "ApSTAT Technologies", "Universit de Montral", "ApSTAT Technologies", "Universit de Montral", "Universit de Montral", "Doctor of Philosophy (Ph.D.), Machine Learning", "DEA (<=> Master's Degree), Artificial Intelligence", "Ingnieur, Computer Science", "Ingnieur"], "SergeyVilgelm": ["Mirantis", "REGGI Business", "Aspan Telecom", "Arna (BeTop, Ducat)", "Electronic Archive Corp", "Skif Trade", "Stanford University", "VDJK", "Engineers Degree, Electronic systems and technologies", ""], "JohnBresnahan": ["Robert Half Finance & Accounting", "Robert Half International", "Robert Half International", "Robert Half Management Resources", "Robert Half Finance & Accounting", "Katharine Gibbs School - Boston", "Kingston-Dwight Associates", "BS, Finance degree; Management degree"], "MartinTsvetanov": ["Hewlett Packard Enterprise", "EURODESIGN BG Ltd.", "Bachelor of Science (BSc), Computer Science", "Professional Degree, Computer Hardware and Technology", "Aberystwyth University"], "SamuelMerritt": ["Office of the Circuit Public Defender", "Boys & Girls Club of Sumter Co.", "Georgia Association of Circuit Public Defenders", "Boys & Girls Club of Sumter Co.", "Samuel G. Merritt", "Office of the District Attorney", "Doctor of Law (JD)", ""], "JoshuaHarlow": ["GoDaddy", "Yahoo!", "Rochester Institute of Technology", "Intel", "IBM", "SUNY Research Foundation", "Harlow Inc", "OpenStack", "Yahoo!", "Yahoo!", "Yahoo!", "International Journal of Advanced Intelligence Paradigms", "Master's degree", "Bachelor's degree", ""], "DanielWMane": ["Google", "Palantir Technologies", "University of Chicago", "University of Chicago", "Phoenix Capital Partners", "The Pritzker Organization", "Moodys Corporation", "Smith Barney", "Techforge LLC", "BA, Philosophy & Computer Science", ""], "ShanqingCai": ["Google", "The MathWorks", "The MathWorks", "Boston University", "Boston University", "MIT", "Northeastern University", "Boston University", "Johns Hopkins University", "Vision Research", "Proceedings of the 27th Annual Intl. Conf. IEEE-EMBS,", "Journal of the Association for Research In Otolaryngology", "Journal of Tsinghua University (Sci. & Tech.)", "Proceedings of the 8th Intl. Seminar on Speech Production", "Journal of the Acoustical Society of America", "Journal of the Acoustical Society of America", "Journal of Neuroscience", "PLoS ONE", "Proc. 14th Annual Conference of the International Speech Communication Association (InterSpeech 2013)", "Brain and Langauge", "Frontiers in Human Neuroscience", "PhD, Health Science and Technology", "Master of Science, Electrical Engineering and Computer Science", "Master of Science in Engineering, Biomedical Engineering, 4.0 / 4.0", "Bachelor of Engineering, Biomedical Engineering", "", ""], "RonanCollobert": ["Facebook", "Idiap Research Institute", "NEC Laboratories America", "Idiap Research Institute", "Universit de Montral"], "RamiAl-Rfou": ["Google", "Stony Brook University", "Microsoft", "Google", "Google", "Stony Brook University", "METU", "IEEE", "Jovision", "IEEE", "We are All Jordan Youth Commission", "Member", "Member", "ACM SIGKDD", "Proceedings of the Seventeenth Conference on Computational Natural Language Learning", "24th International Conference on Computational Linguistics (Coling)", "ICML 2013 workshop on Deep Learning for Audio, Speech and Language Processing", "Complenet 2104", "Middle East Technical University", "Technical Report", "Technical Report", "15th SIAM International Conference on Data Mining (SDM 2015)", "Doctor of Philosophy (Ph.D.), Computer Science, 3.98", "Bachelor, Computer, Engineering, 3.79", "General Secondary Certificate, Scientific stream"], "VictorSergeyev": [""], "ArjunJain": ["IIT Bombay", "Perceptive Code LLC", "Apple", "NYU", "Media Integration and Communication Center (MICC), University of Florence", "Yahoo", "Pi Corporation", "United States", "Doctor of Philosophy (PhD), Computer Science", "Bachelor of Engineering (BE), Computer Science and Engineering"], "RJRyan": ["Google", "Mixxx", "Moca Mobile", "Google, Inc.", "NVIDIA", "Interactive Intelligence, Inc.", "MEng, Computer Science", "SB, Computer Science"], "DoronChen": ["United States 8072704", "European Journal of Operational Research 225, 36-43 (2013)", "Mass Storage Systems and Technologies (MSST), 2010 IEEE 26th Symposium: Research Track", "Operations Research Letters 38, 215-217 (2010)", "SIAM Journal on Matrix Analysis and Applications", "Computers and Operations Research 36: 1646-1655 (2009)", "ACM Transactions on Graphics 24(4): 1259-1282 (2005)", "Electronic Transactions on Numerical Analysis 21: 28-46 (2005)", "Linear Algebra and its Applications 405: 239-248 (2005)", "Linear Algebra and its Applications 392: 71-90 (2004)", "Numerical Linear Algebra with Applications 11: 695-721 (2004)", "Electronic Transactions on Numerical Analysis 16: 30-49 (2003)", "ACM SIGMETRICS Performance Evaluation Review", "ERCIM News"], "ColleenMurphy": ["Bloomberg BNA", "The GW Hatchet", "The Chronicle of Higher Education", "The GW Hatchet", "Minneapolis/St. Paul Business Journal", "Pohlad Family Companies", "Bachelor of Arts (B.A.), Political Communication, Spanish", "High school", "The School of Media and Public Affairs", "", "Society of Professional Journalists", "School of Media and Public Affairs", "The American News Women's Club", "The School of Media and Public Affairs", "President"], "JayPipes": ["Mirantis", "Apress"], "KamilRykowski": ["PuppyBox", "Intel Corporation", "Blue Services Sp. z o.o.", "Blue Services Sp. z o.o.", "e-InPost Sp. z o.o.", "Pnyks Sp. z o.o.", "MongoDB, Inc.", "Bachelor of Science (BSc), Applied Informatics"], "BenRoble": ["J.P. Morgan", "J.P. Morgan", "Export-Import Bank of the United States", "Taylor Companies", "Citi", "MBA, Finance and strategy", "BSLA, French and Business", "High School, High School"], "JasonYosinski": ["Geometric Intelligence", "Cornell University", "Google DeepMind", "Grey Garage", "Eliot Middle School", "Mink Labs", "Numerica", "DARPA Grand Challenge Team Caltech", "Proceedings of the 13th International Conference on the Synthesis and Simulation of Living Systems", "Proceedings of the 13th International Conference on the Synthesis and Simulation of Living Systems", "Ph.D.", "study abroad", "B.S.", "HS"], "KentaroTakeda": ["Portola Pharmaceuticals", "Genentech", "Journal of Molecular Biology, 2014, ISSN: 0022-2836", "Journal of Neuroscience", "Journal of Molecular Biology", "Bachelor's degree, Biochemistry and Molecular Biology"], "SvetlanaShturm": ["Mirantis", "Mirantis", "Mirantis", "Renet COM", "Applied Informatics in Economics, 5"], "boulanni": ["Google", "Adobe", "Microsoft", "Google", "Doctor of Philosophy (PhD), Computer Science", "Master of Applied Science (MASc), Engineering Physics", "Bachelor of Engineering (BEng), Engineering Physics"], "DanielMan\u00e9": ["Google", "Palantir Technologies", "University of Chicago", "University of Chicago", "Phoenix Capital Partners", "The Pritzker Organization", "Moodys Corporation", "Smith Barney", "Techforge LLC", "BA, Philosophy & Computer Science", ""], "PatrickSkjennum": ["Mito.ai", "NTNU", "Abakus", "Romerike Markiseservice AS", "Knowit Objectnet", "Telenor Digital", "Rayon Visual Concepts", "Master of Technology (M.Tech.), Computer Science", "Media & Communication"], "MikeFedosin": ["Mirantis", "OpenStack", "ISPRAS", "Doctor of Philosophy (PhD), ", ", "], "DonalLafferty": ["Coursera Course Certificates, License B6KB3NSJ8V8R"], "SukritiRamesh_": [], "SakshamVarma": ["Amazon Web Services", "Cisco Systems", "University of Massachusetts Amherst", "Cisco Systems", "Yahoo!", "Design Innova", "Master's Degree, Computer Science, 3.80/4.0", "Bachelor of Technology (B.Tech.), Information Technology, 9.21/10", "SPSM '14 Proceedings of the 4th ACM Workshop on Security and Privacy in Smartphones & Mobile Devices", "Proceedings of the International Conference on Advancements in Information Technology Chennai: ICAIT 2011", "Proceedings of the National Level Conference on Information Processing and Computing, Coimbatore"], "GaryKotton": ["VMware", "Red Hat", "Radware", "Radware", "Algorithmic Research"], "KevinLMitchell": ["Master of Business Administration (MBA), Marketing/Marketing Management, General", "BSBA, Business Administration"], "ChrisBehrens": ["YA | Engage", "Superior Recreational Products", "Brand Activation Association (BAA)", "Minneapolis Downtown Council", "Institute for Research in Marketing, Carlson School of Management, University of Minnesota", "Minneapolis Club", "Circle Urban Ministries", "YA | Engage", "Baird Capital Partners", "SourceLink", "SourceLink", "SourceLink", "SourceLink", "ETrac Corporation", "ETrac Corporation", "GE Financial Assurance, Partnership Marketing Group (formerly The Signature Group)", "Official Airline Guides", "Official Airline Guides", "Bachelor of Science, Marketing", "Member"], "StephenGordon": ["salesforce.com", "VMware", "Microsoft Corporation", "Microsoft Corporation", "Microsoft Corporation", "Microsoft Corporation", "Microsoft", "Humanitarian Technology 2016 Science, Systems & Global Impact", "PENCIL, Inc.", "Carbon War Room", "MIT College of Engineering", "Carbon War Room", "Harvard University", "Microsoft", "United States Department of Defense", "Microsoft", "VMware", "MIT Sloan School of Management", "Salesforce Trailhead", "American Red Cross"], "HarmdeVries": ["Montreal Institute for Learning Algorithms (MILA)"], "RobertMcGibbon": ["D. E. Shaw Research", "Stanford University", "Ph.D., Theoretical Chemistry", "A.B. Summa Cum Laude, Chemistry & Computer Science", ""], "MikhailKorobov": ["Scrapinghub"], "ChmouelBoudjnah": ["Red Hat", "Duolingo"], "SimonPasquier": ["State of Fribourg / SITel", "EMF", "SBB", "sunrise", "sunrise", "diAx", "Energie Ouest Suisse", "University of Geneva", "Doctor of Philosophy (Ph.D.), Theoretical and Mathematical Physics", "Master's degree, Physics"], "DerekMurray": ["Proceedings of OSDI 2016", "Proceedings of SOSP 2013", "Proceedings of NSDI 2011", "Proceedings of CIDR 2013", "Google", "PhD", "MSc", "BSc (Hons)"], "MattDietz": ["Rackspace, the #1 managed cloud company", "Rackspace, the Open Cloud Company", "Rackspace Hosting", "Rackspace Hosting", "XPEL Technologies", "ENSCO Inc", "Bachelors of Science, Computer Science", "", "United States", "United States"], "CharlesNicholson": ["Google", "Square", "Sony Computer Entertainment America", "Power of Two Games", "Sony Computer Entertainment America", "High Moon Studios", "High Moon Studios", "Liquidnet", "Disney", "Vicarious Visions", "United States 8375295", "United States", "United States", "United States"], "JustinLong": ["New York Times", "Bernie A.I.", "3 Tier Logic", "Earhart DNA Project", "3 Tier Logic", "Alloy Technologies, Inc.", "Rubik", "ACG Corp.", "Snow4Innocents", "Holy Innocents Children's Hospital", "PlanSea Entertainment", "Bachelors, Business, Health Sciences", "Honours Secondary Diploma"], "RazvanPascanu": ["Google DeepMind", "Universit de Montral", "Universite de Montreal", "Master, Smart Systems", "Bachelor of Science, Electrical Engineering and Computer Science"], "AntonArefiev": ["Chrysler Rus", "MAN Financial Services LLC", "De Lage Landen LLC", "Volvo Financial Services LLC", "Promsvyazbank CJSC", "Bachelor of Science, Asian Studies, Economics", "Bachelor's degree, Chinese language"], "BenoitSteiner": ["Google", "Coverity", "Tabula, Inc.", "Magma Design Automation", "Monterey Design Systems", "Ensim", "Mycom International", "Peregrine Systems", "Master's degree", "Master's degree", ""], "AlexanderGordeev": ["Atlas Copco", ", "], "LuongAnhTuan": ["Xuan Mai Investment and Construction Corporation"], "AdrienVerg\u00e9": [], "DanSmilkov": ["Google", "MIT", "Macedonian Academy for Sciences and Arts", "IBM", "Netcetera", "Master of Science (M.Sc.), MIT Media Lab", "M.Sc., Networks - Topology, Evolution, Dynamics, GPA: 9.89/10", "Bachelor, Computer Science", "Physical Review E 84 (4), 046102"], "sonaliii": ["Independent Contractor", "BCG Digital Ventures", "Skymind.ai - Deep learning for the JVM", "Contractor", "Cpmc Research Institute", "Statistics", "Computer Software Engineering", "Data Science", "Bachelor of Science (B.S.), Biochemistry, 3.87", "British Journal of Pharmacology"], "JonasMeinertzHansen": ["FindZebra"], "BrianLamar": ["EMI - Research Solutions", "MMR, Marketing Research", "BBA Marketing, Marketing"], "JeyKottalam": ["Berkeley Institute for Data Science, UC Berkeley", "AMPLab, Computer Science Division, UC Berkeley", "Adjective Noun", "meetyou", "Coral8", "Google & The Mono Project", "UC Davis Department of Computer Science", "UC Davis DARPA Grand Challenge Team"], "Geetika_Batra": ["OpenStack", "Lyxel Labs Private Limited", "OpenStack", "OpenStack", "Outreachy Intern at OpenStack", "Learn IT Girl, License 10060142", "Accredible, License Accredible-10222048", "Bachelor of Technology (B.Tech.), Electronics and Communication", "87.2%", ""], "KyungHyunCho": ["University of Montreal - Postdoctoral Researcher", "Aalto University School of Science, Finland, Ph.D and M.Sc.", "Zen Robotics Inc., Finland", "Interactivy, Korea", "Korea Advanced Institute of Science and Technology - Undergraduate Researcher", "Korea Advanced Institute of Science and Technology - Undergraduate Researcher"], "SachiKing": ["Hewlett Packard Enterprise", "Anchor Systems", "Anchor Systems", "Atipa Technologies", "Atipa Technologies", "Zen Zero"], "SeongJaePark": ["SeongJae .", "Distributed Computing System Lab, Seoul National University", "Korea Open Source Software Lab", "Korea Open Source Software Lab", "n/a", "Samsung Electronics", "Suwon Samsung Software Membership", "Doctor of Philosophy (Ph.D.), Computer Science and Engineering", "Bachelor of Science (BS), Information Computer Engineering", "Bachelor of Science (BS), Electronics Engineering", "Google Developer Groups Korea Union", "Google Korea", "Google Developer Groups Suwon"], "SimonLefrancois": ["Montreal Institute for Learning Algorithms (MILA)"], "DarrenWhite": ["dhs"], "MatthiasSchmitz": ["Unternehmensberatung Matthias Schmitz"], "AlanWu": ["Microsoft", "Qualcomm", "Holland Bloorview Kids Rehabilitation Hospital", "University of Toronto", "Master of Science (M.Sc.), Computer Science", "Bachelor of Applied Science (B.A.Sc.) in Engineering Science, Engineering Science", "Toronto Rehabilitation Institute", "China ZL 2008 2 0022119.9"], "SuharshSivakumar": ["Google", "University of Illinois at Urbana-Champaign", "Google", "University of Illinois at Urbana-Champaign -- Student Sustainability Committee", "Bazaarvoice", "City of Moline", "Bachelor of Science (BS), Computer Science"], "VincentVanhoucke": ["Vincent shared"], "YosefBerman": ["Doctor of Medicine (MD), Medicine", "Master of Business Administration (MBA), Finance, 3.67", "B.A., US History, Pre-Medical Sciences, 3.8", "MedStar Georgetown University Hospital", "Rutgers - Robert Wood Johnson Medical School", "Robert Wood Johnson Medical School", "Kaplan Test Prep and Admissions", "Summit Oaks Hospital", "University of Maryland"], "OlivierDelalleau": ["Ubisoft", "Ubisoft", "ApSTAT Technologies", "Universit de Montral", "ApSTAT Technologies", "Universit de Montral", "Universit de Montral", "Doctor of Philosophy (Ph.D.), Machine Learning", "DEA (<=> Master's Degree), Artificial Intelligence", "Ingnieur, Computer Science", "Ingnieur"], "DustinWebb": ["Webb Tech, LLC", "Omniture", "Strategix Performance", "Clear Channel Broadcasting of Salt Lake City", "Crossland Mortgage", "Teleperformance USA", "International Conference on Robotics and Automation 2013", "Ph.D, Artificial Intelligence and Robotics", "Bachelors of Science, Computer Science with emphasis in the application of AI to robotics", "AS, Computer Science", ""], "PawelSkowron": ["Intel Corporation", "Master of Business Administration (M.B.A.)", "BS", "Masters Degree", "Red Hat, Inc., Licencja 120-188-719", "Licencja scrum.org", "Oracle", "International Project Management Association, Licencja 80/2010"], "GokulaKrishnan": ["Gokula Krishnan auf LinkedIn", "Gokula Krishnan gefllt Folgendes:", "Gokula Krishnan hat Folgendes mitgeteilt:", "Gokula Krishnan gefllt Folgendes:", "ETH Zurich", "MIT Media Lab and Srujana Innovation Center, LV Prasad Eye Hospital", "BITS Pilani", "Wearable and Pervasive Computing and Networking Lab (WPN lab), BITS Pilani", "SDET Lab, BITS Pilani", "Georgia Institute of Technology", "BITS Pilani", "BITS firefox community", "Indian Institue of Remote Sensing", "Kanini Computers", "Department of Science and Technology, Government of India", "Homi Bhabha Centre for Science Education", "BITS Pilani", "IBM", "Microsoft", "Government of India", "Masters Degree, Computer Science", "Bachelor of Engineering (Honours), Computer Science, 9.18/10", "High school graduation, 474/500", "Till 10th", "Prfungsergebnis: 329/340", "Prfungsergebnis: 113/120", "Coursera Course Certificates, Lizenz XE6ZUFATXPNK", "Coursera Course Certificates, Lizenz TFQEUB686R7A", "Coursera Course Certificates, Lizenz RGATA6S756C5", "Coursera Course Certificates, Lizenz 6WQKBBW3MDEZ", "Duolingo", "edX"], "AndrewDai": ["Ph.D.", "BA"], "sguada": ["Sergio shared", "Google", "UC Berkeley", "UC Berkeley", "European Centre for Soft Computing", "Universidad Politcnica de Madrid", "Universidad Rey Juan Carlos", "UC Berkeley", "Universidad Politcnica de Madrid", "IIIA - CSIC", "Proceedings of the 27th AAAI Conference on Artificial Intelligence (AAAI-2013), July 2013", "Int. Conference IPMU 2008", "Ph.D., Artificial Intelligence"], "AnthonyYoung": ["GASY INVESTMENT Co", "GASY Investment Co.", "GASY INVESTMENT COMPANY", "KMY HOLDINGS, INC", "KMY HOLDINGS, INC", "SALOMON SMITH BARNEY", "PHILADELPHIA & AMERICAN STOCK EXCHANGE", "U.S. Marine Corp", "Economics, Economics, Mathematics"], "YinggongZHAO_": ["Microsoft", "Nanjing University", "Microsoft Research Asia", "Doctor of Engineering, Computer Science and Technology"], "LinYang": ["LinkedIn", "Max Talents", "Microsoft", "Prediction Systems Inc", "Bookman, Ltd", "Prediction Systems Inc"], "OliviaNordquist": ["Google", "HookLogic, Inc.", "University of Michigan", "Mary Markley Dining Services", "Bachelors Degree, Computer Science", "French Language and Literature", "Clarkston United Methodist Church", "Alternative Spring Break"], "JonBernard": ["CrossChx", "Bernard Interactive", "Victoria's Secret", "Victoria's Secret", "The Columbus Dispatch", "The Columbus Dispatch", "West Virginia Media Holdings, LLC", "Cox Enterprises, Inc. - WTOV-TV9", "B.A., Communication"], "MattJoyce": ["Center for Employment Opportunities", "GreenLight Fund", "William Penn Foundation", "Harvard University", "Harvard University", "Philly Fellows", "Philadelphia Committee to End Homelessness", "MPP", "BA, History", "Broad Street Ministry", "Philly Fellows", "Haverford College", "Leadership Philadelphia"], "YuefengZhou": ["Google", "Conviva", "Carnegie Mellon University", "Morgan Stanley", "Master's Degree, Information Networking, 3.77/4.0", "Bachelor's degree, Computer Science, 87/100", "Exchange Student, Computer Science", "Information Networking Institute, Carnegie Mellon University", "Chun-Tsung Endowment Fund"], "MarcAbramowitz": ["Marc liked", "SurveyMonkey", "SurveyMonkey", "pymssql open source project", "Chegg", "BlueKai", "Yahoo!, Flex Force (Tiger Team)", "Yahoo!, Yahoo! Personals Engineering Team", "Fireclick", "Digidesign", "Stanford University", "Lawrence Livermore National Laboratory", "Northeast Parallel Architectures Center", "MS", "BS", "Linux.com", "https://www.linux.com/news/installing-linux-vserver", "Linux.com", "Linux.com", "Linux.com", "Antic Magazine", "Antic Magazine"], "JoshLevenberg": ["Google Research"], "TimCooijmans": ["Universit de Montral", "Google", "Universit de Montral", "CERN", "Ideaspool", "Mapscape", "Compram", "Master of Science (M.Sc.), Operations Research", "Bachelor of Science (B.Sc.), Knowledge Engineering, 8.06 out of 10"], "SherryMoore_": ["Google", "Sun Microsystems", "Intel"], "DongjoonHyun": ["Hortonworks", "The Apache Software Foundation", "SK Telecom", "Samsung Electronics", "Data Mining and Knowledge Discovery", "ACM SIGKDD", "Distributed and Parallel Databases", "United States US8732759 B2", "United States US8661041 B2", "United States US8457472 B2", "United States US8352985 B2", "United States", "United States", "Korea 1015228710000", "Korea 1015400190000", "Korea 1012569400000", "Korea", "Korea", "Korea"], "nouiz": ["mnubo", "Briowireless Inc.", "Synergie Pilates", "Tekelec", "Tekelec", "Tekelec", "Blueslice Networks", "Nortel", "Teleglobe", "Microcell", "TechnoMontral", "Startup Weekend", "WearHacks", "Fondation Montral inc.", "Academos", "Founder Institute", "C100", "CABA", "Gartner", "ABI Research", "Price Waterhouse Coopers", "Deloitte", "Canadian Innovation Exchange", "Ernst & Young", "C100", "Branham300", "Bronfman Family Foundation", "Light Reading", "IIoT Symposium", "C2 MTL 2016 & Montreal Chamber of Commerce", "Canadian Venture Capital Association conference 2016", "Continental Automated Buildings Association - 2016 forum", "Ecole Polytechnique de Montreal / HEC", "IoT World Forum - Dubai", "TechnoMontral - l'Internet des Objets", "The Founder Institute", "Europe EP2130324", "B.Eng", ""], "SigurdSpieckermann": ["Siemens AG, Corporate Technology", "Siemens AG, Corporate Technology", "MAN Diesel & Turbo SE", "Hamburg University of Technology", "Kurschat GmbH Messtechnik + Automation", "Eisenfhr, Speiser & Partner Patentanwlte Rechtsanwlte", "Kurschat GmbH Messtechnik + Automation", "Eisenfhr, Speiser & Partner Patentanwlte Rechtsanwlte", "Channel Business Services GmbH / TuTech Innovation GmbH", "United States", "Neurocomputing (Special Issue ESANN 2014)", "Advances in Neural Information Processing Systems (NIPS), Second Workshop on Transfer and Multi-Task Learning: Theory meets Practice", "Proceedings of the European Conference on Machine Learning (ECML), Workshop on Generalization and Reuse of Machine Learning Models over Multiple Contexts", "Proceedings of the 24th International Conference on Artificial Neural Networks (ICANN)", "Proceedings of the 22nd European Symposium on Artificial Neural Networks, Computational Intelligence and Machine Learning (ESANN)", "Dr. rer. nat., Computer Science", "Master of Science (M.S.), Computational & Mathematical Engineering, GPA 3.65 (=A-)", "Bachelor of Science (B.Sc.), Computer Science and Engineering, 2.1 (German grading system)", "Abitur, 1.7 (German grading system)", "", ""], "JasonCannavale": ["Rackspace, the #1 managed cloud company", "", ""], "RobertDiPietro": ["Johns Hopkins University", "MIT Lincoln Laboratory", "Northeastern University", "Master of Science (MS), Electrical Engineering", "Bachelor of Science (BS), Applied Physics and Engineering"], "NguyenHungPhuong": ["Fujitsu Viet Nam", "FPT Software", "Bachelor's degree, Law", "IBM, License None", "No"], "AndreasEberle": ["arconsis IT-Solutions GmbH", "arconsis IT-Solutions GmbH", "1&1 Internet AG", "1&1 Internet AG", "LuK GmbH & Co. KG", "Master of Science (M.Sc.), Computer Science", "Bachelor of Science (B.Sc.), Computer Science"], "ThomasLeaman": ["Landstar - Ranger", "Arrow trucking", "GE Transportation", "Associate's degree, Logistics, Materials, and Supply Chain Management", "Associate's degree, Business/Commerce, General"], "YuwenYan": ["Shanghai Haizhi Intelligent Technology Co.", "Microsoft", "WI Input Method Team of HIT", "M.S., Computer science", "B.S., Computer science", "", ""], "IgorMacedoQuintanilha": ["Laboratrio de Sinais, Multimdia e Telecomunicaes - UFRJ", "Letsevo, Designoteca", "GTA - Grupo de Teleinformtica e Automao", "M.Sc., Electrical Engineering", "B.Sc., Electronics Engineering", "Coursera Course Certificates, License NXJPL29XL556"], "JoshuaV.Dillon": ["Google", "Georgia Institute of Technology", "Microsoft Research", "Purdue University", "Purdue University", "Purdue University", "Lawrence Livermore Nat. Lab", "IBM", "ThermoAnalytics Inc", "IBM", "IBM", "Michigan Department of Transportation", "Ph.D, Computational Science & Engineering, 4.0", "MS, Electrical & Computer Engineering", "B.S, Computer Engineering & Electrical Engineering"], "SteveMartinelli": ["OpenStack", "OpenStack", "IBM Canada", "IBM Canada", "IBM Canada", "IBM Canada Ltd.", "York University", "IBM", "IBM", "O'Reilly", "OpenStack Vancouver Summit", "OpenStack Vancouver Summit", "OpenStack Vancouver Summit", "OpenStack Summit Presentation November 2014", "Youtube", "IBM DeveloperWorks", "Thoughts on Cloud", "OpenStack Summit Presentation May 2014", "OpenStack", "Stackalytics", "IBM", "B. ASc, Computer Engineering"], "KuiShi": ["Huawei Technologies", "OpenStack Project", "Polycom", "EMC", "Wind River", "Institute of Software China Academy of Sciences", "Bachelor's degree, Computer Science & Technology"], "BriannaPoulos": ["Johns Hopkins University Applied Physics Laboratory", "Extreme Networks", "GlaxoSmithKline", "NC State Undergraduate Tutorial Center", "Cisco Systems", "NC State University Housing", "Bachelor of Science, Computer Engineering"], "ToanNguyen": ["Hetrick-Martin Institute", "Bachelor of Arts (B.A.), Chemistry, concentration: Biochemistry", "Biological Sciences", ""], "AmitAgarwal": ["Microsoft", "Microsoft", "Microsoft", "Microsoft", "Mentor Graphics India Pvt. Ltd.", "Microsoft", "UCLA VLSI CAD LAB", "Mentor Graphics India", "ICCAD 2008", "Journal - ACM Transactions on Design Automation of Electronic Systems (TODAES)", "United States 12/971,943", "United States 12/413,780", "United States 13/158,966", "United States PCT/US2012/039884", "United States 20120324430", "United States 8677322", "United States", "MS, Computer Science (Programming Languages and Systems)", "BTech, Computer Science and Engineering"], "KevinJamesMatzen": ["Cornell University", "Cornell University", "Microsoft", "University of Michigan", "National Instruments", "Ph.D., Computer Science", "BSE, Computer Engineering, Computer Science Engineering", "ICCV 2013", "ECCV 2014"], "JamesMorgan": ["Precision Metrics", "Welsbach Electric Corp.", "J.F. White Contracting Co.", "J.F. White Contracting Co.", "PKF-Mark III, Inc.", "Bucks County (PA) Community College", "Gannett Fleming, Inc."], "JosephTurian": ["Company in Stealth Mode", "MetaOptimize LLC", "GigaOM", "Universit de Montral", "MIT AI Lab", "Ph.D., Computer Science", "AB, Computer Science"], "JustinShepherd": ["Eastdil Secured", "CBRE", "Jones Lang LaSalle", "Master of Business Administration (MBA), Investments", "Bachelor of Arts (B.A.), Political Science and Government"], "LinkerLin": ["Dianping", "Alibaba", "Master of Computer Applications (M.C.A.), Recommendation System", "Bachelor of CS, Computer Software Engineering"], "AaronRosen": ["PDT Partners", "AppNexus", "AppNexus", "Facebook", "Google", "Addison Search", "Medialets", "Eliassen Group", "Apex Systems", "Apex Systems", "Hawk Ridge Systems", "B.A."], "SeanDague": ["Hewlett-Packard", "Mid Hudson Valley Linux and Open Source Users Group", "OpenStack Summit Spring 2013", "Poughkeepsie Farm Project", "MS, Computer Science", "Bachelors, Physics", ""], "ElenaEzhova": ["Shop"], "frankseide": ["Microsoft", "Microsoft", "Microsoft", "Microsoft", "Microsoft", "Microsoft", "Philips Research, Taipei", "Philips Research", "Dipl.-Ing., EE, CS"], "fvsin": ["Montreal Institute for Learning Algorithms (MILA)"], "RobertLi": ["Brookfield Property Partners", "Tishman Speyer", "Grosvenor", "Shui On Land", "MSRED, Real Estate Finance and Investment", "Bachelor's degree, Econometrics"], "Caglar": ["Proceedings of the 15th ACM on International conference on multimodal interaction"], "StanLagun": ["Mirantis", "Mirantis", "Mirantis Inc."], "RussellSim": ["Pulcinella Toronto", "Culinary Management"], "GijsvanTulder": ["Biomedical Imaging Group Rotterdam, Erasmus MC"], "yifeif": ["Yifei liked", "Google", "Microsoft", "Olin College of Engineering", "Microsoft", "IEEE Xplore", "Master of Science (M.S.), Electrical Engineering", "Bachelor of Science (B.S.), Electrical and Computer Engineering"], "GeorgOstrovski": ["Google DeepMind", "DeepMind", "Sunrise Setting Ltd", "University of Warwick", "ISD Software und Systeme GmbH", "Coursera", "Coursera", "Coursera", "Coursera", "Coursera", "Journal of Dynamics and Games", "Physica D: Nonlinear Phenomena", "Topology and its Applications", "Regular and Chaotic Dynamics", "Doctor of Philosophy (PhD), Mathematics", "MSc in Mathematics, with distinction", "Visiting student", "Pre-diploma (Vordiplom), Mathematics, 1.1"], "JesseLivezey": ["UC Berkeley", "Audience, Inc.", "Cornell University", "Weill Cornell Medical College in Qatar", "Cornell University", "Facilitator, Teacher, Mentor", "Physics, Biophysics, Theoretical Neuroscience, Machine Learning", "B.A., Physics, Mathematics"], "QinZhao": ["Ingredion Incorporated", "Oceans Omega / Mycell Technologies LLC", "Rutgers University", "International Flavors & Fragrances Inc.", "Lifeflo Inc.", "Promotion In Motion Inc.", "Doctor of Philosophy (Ph.D.), Food Science, 3.9/4.0", "Bachelor of Science (BS), Biotechnology, 3.5/4.0", "Journal of Agricultural and Food Chemistry", "Carbohydrate Polymers", "Journal of Agricultural and Food Chemistry", "Journal of Agricultural and Food Chemistry", "Food Chemistry", "", "", "", ""], "yzhang87": ["GoDaddy", "EMC", "Pivotal Software, Inc.", "Amazon", "Beijing Topsec Network Security Technology", "Huawei", "MediaTek", "Lytran", "Master's degree, Information Technology, Mobility", "Bachelor's degree, automation"], "cai-lw": ["Wei LI gefllt Folgendes:", "Bachelor's Degree, Computer Science", "Master of Philosophy (M.Phil.), Electrical and Electronics Engineering", "Google", "Kaggle", "NetEase Youdao"], "DaveMcNally": ["Surgical Tables Inc", "BenchMark Rehab Partners", "Allen Medical Systems Inc", "Maverick Orthopedics Inc"], "SuneelMarthi": ["The Apache Software Foundation", "Red Hat", "Washington DC Apache Flink Meetup", "Intel Corporation", "VeriSign", "Lockheed Martin", "Plateau Systems", "AT&T Government Solutions", "Siemens Energy Management Systems", "Harris Corporation"], "KashifRasul": ["Samson Properties", "Cricket Communications", "PCC Wireless", "InTouch Wireless", "K S Wireless", "Northern Virginia Association of Realtors", "Bachelor of Science, Finance"], "delallea": ["Ubisoft", "Ubisoft", "ApSTAT Technologies", "Universit de Montral", "ApSTAT Technologies", "Universit de Montral", "Universit de Montral", "Doctor of Philosophy (Ph.D.), Machine Learning", "DEA (<=> Master's Degree), Artificial Intelligence", "Ingnieur, Computer Science", "Ingnieur"], "DerekHiggins": ["FEI Company"], "hunkim": ["Hong Kong University of Science and Technology", "Microsoft", "MIT", "UC Santa Cruz"], "JackRae": ["Google", "Quora", "Heswall Disabled Children's Holiday Fund", "Master of Science (M.S.), Statistics, 4.1 / 4.3", "Master of Science (M.Sc.), Mathematics and Computer Science, 1st Class Honors"], "HaiweiXu": [""], "AlaRezmerita": ["Cloudwatt", "PROLOGUE", "INRIA", "Universit Paris-Sud 11", "Universit Paris-Sud 11", "Euro-Par 2006", "Euro-Par 2006", "MPRI, Informatique", "DESS, Informatique", "Matrise, Informatique"], "WilliRichert": ["Microsoft (Bing)", "packt", "packt", "PhD Thesis, C-LAB Publication / University of Paderborn"], "DjangoPeng": ["2012 Labs, Huawei Technologies", "University of California, San Diego", "Witspring Inc", "Zhejiang University", "Visiting Scholar, Bioinformatics", "Bachelor of Engineering (B.Eng.)(Top 5%), Computer Science", "Zhejiang University", "Zhejiang University", "Zhejiang University", "", "Zhejiang University", "COMAP(the Consortium for Mathematics and Its Applications)", "Huawei Technologies Co., Ltd", "Huawei Technologies Co., Ltd", "DataCamp, License 0a39a85efc0d93aab822ba10eb5830a6c5d2ae23", "DataCamp, License 16186fa5294a7bbfb80460da954b74cfdd94ea5e"], "AndreyBrindeyev": ["IBM Redbooks"], "TakaoNakaguchi": ["", "NTT-AT", ", "], "DavidG.Andersen": ["Carnegie Mellon Department of Computer Science", "MIT - Laboratory for Computer Science (LCS/CSAIL)", "Compaq SRC", "University of Utah", "ArosNet, Inc.", "Multi-State Lottery Association, Intel, Banner & Witcoff, LLC, IJNT, Inc., Ascensus, others"], "MattRiedemann": ["IBM", "IBM", "IBM", "IBM", "Daktronics", "Bachelor of Science, Computer Science"], "JakubRuzicka": ["EZ, a.s.", "EZ, a.s.", "EZ, a.s.", "HayGroup", "Appian Group", "Deloitte", "Master of Business Administration (MBA), Business Administration and Management, General", "Mgr, Economics", ""], "AlexanderRosenbergJohansen": ["Salesforce", "DTU - Technical University of Denmark", "Master of Science (M.Sc.), Mathematics and Computer Science, 11.4 of 12.0", "Master of Science (M.Sc.), Computervidenskab", "Bachelor of Science (B.Sc.), Management Information Systems, General, 10.7 of 12.0", "Bachelor of Science (B.Sc.), Computervidenskab", "TensorFlow", "Deep Learning Research, In", "NIPS recurrent neural network Symposium, 2016", "International conference on acoustics speech and signal processing, 2016"], "KaseyAlusi": ["Workday", "Workday", "Threadix", "Workday", "Boeing", "Boeing", "Bayer HealthCare", "Bayer HealthCare", "Bayer HealthCare", "Bachelors, Informatics"], "Graham Hayes": ["HubSpot", "HubSpot", "HubSpot", "HubSpot", "HubSpot", "HubSpot", "Salem Five", "Bachelor, Business Administration; Marketing"], "SamAbrahams": ["Sam liked", "Sam liked", "Memdump LLC", "Illumination Entertainment", "Technology Learning Center", "Roadmap to Success Program, University of Richmond", "Arlington Public Schools", "Bachelor of Science (B.S.), Mathematical Economics, cum laude", "International Space Apps Challenge - Pasadena", "Arlington Food Assistance Center", "Bleeding Edge Press"], "GrahamTaylor": ["School of Engineering, University of Guelph", "Investment Industry Regulatory Organization of Canada (IIROC)", "OANDA", "Courant Institute of Mathematical Sciences, New York University", "Mixamo", "Speech Technology Group, Microsoft Research", "INSA de Lyon Technical and Scientific University"], "DelipRao": ["Joostware", "Amazon", "Glassdoor", "Twitter", "Human Language Technology Center of Excellence", "Google", "Google Inc., CA", "Indian Institute of Technology Madras", "IBM India Research Labs, New Delhi", "PhD, Machine Learning, Natural Language Processing", "MS, Computer Science", "MS, Computer Science", "BE, Computer Science"], "FarukAhmed": ["Universit de Montral"], "AlexanderMatyasko": ["Doctor of Philosophy (PhD), Computer Science", "MS, Computer Science", "Engineer's degree, Computer Science", "Scand", "Coursera", "edX, License CaltechX/CS1156x/Fall2013", "Coursera", "Coursera", "Coursera", "edX, License RiceX/ELEC301x/Spring2014", "Coursera", "edX, License HarvardX/MCB80.1x", "Santa Fe Institute"], "AmjadAlmahairi": ["Maluuba", "Montreal Institute for Learning Algorithms (MILA), Universit de Montral", "Nuance Communications", "McGill University", "McGill University", "McGill University", "Doctor of Philosophy (PhD), Machine Learning", "MSc., Computer Science", "BEng., Informatics, Artificial Intelligence"], "OllieLeahy": ["Glanmire Gas Heating & Plumbing", "Mechanical and building services", "Duggan Engineering"], "MarkMcLoughlin": ["VWR International, LLC", "VWR International, LLC", "VWR International", "Cardinal Health", "Cardinal Health", "IBA", "Mallinckrodt", "BA"], "MikeTurvey": ["The David J. Joseph Company", "Sogeti", "David J. Joeseph", "MSIS, Information Systems", "Information Systems"], "MarkHillebrand": ["Microsoft", "Microsoft", "German Research Center for Artificial Intelligence, DFKI", ""], "ZhouhanLIN": ["Montreal Institute for Learning Algorithms (MILA)"], "SuneelMarthi_": ["Suneel liked", "Suneel liked", "Suneel liked", "Suneel liked", "Suneel liked", "Coursera", "Coursera", "Coursera", "Coursera"], "SeanOwen": ["Cloudera", "Myrrix Ltd", "Pentech Ventures LLP", "Google", "MBA", "BA, Computer Science", "Manning"], "dima": ["Karmasoft - CTO", "Jiber Media, CTO", "Freelance Ruby on Rails + iOS Developer", "Ruboss, CTO", "SAP, Senior Developer", "Master of Software Systems, University of British Columbia"], "IgorBabuschkin": ["DeepMind", "CERN", "Masters Degree, Physics"], "ZhongyueLuo": ["Intel Corporation", "Intel Corporation", "Sina.com", "Enswers Inc"], "RajeshTailor": ["Telstra SNP Monitoring", "Bsmart Management", "UTC Building & Industrial Systems", "Chubb Fire & Security", "Media Review International", "Warner Home Video", "International Masters Publishers", "International Masters Publishers", "International Masters Publishers", "International Masters Publishers", "Murphy Oil", "Murphy Oil"], "MatthewKoichiGrimes": ["University of Cambridge - Computer Vision & Robotics Group Machine Intelligence Lab"], "VictorMelo": ["Bomboniere Ponto Doce"], "WenjianHuang": ["", "The 19th Annual International Conference on Mobile Computing and Networking, ACM MobiCom 2013, Chair Sumi Helal", "Alibaba Group", "The Asia-Pacific Robot Contest, Asia-Pacific Broadcasting Union", "The Young Entrepreneurs Development Council Limited (YDC), Hong Kong", "GS1 Hong Kong", "GS1 Taiwan, GS1 Hong Kong", " US 20130301870 A1", " CN 103383738 A", " No. 61/964,794", "MiningLamp", "Alibaba Group", "Master's Degree, Electrical, Electronics and Communications Engineering", "Bachelor's Degree, Electrical, Electronics and Communications Engineering"], "RickHarris": ["Devonshires Solicitors", "UC Hastings College of the Law", "CASIS MEDIA LIMITED", "The University of Law", "Howard Kennedy LLP", "The City Law School, City University London", "National Centre of Domestic Violence", "Mishcon de Reya", "Michael Simon (Barrister)", "Argent Chambers", "PURE Public Relations", "Foxtons", "Chesterton Humberts", "Hersh & Hersh Attorneys at Law", "Chesterton Humberts", "Cameron Mackintosh Ltd", "BDO LLP", "BDO LLP", "Masters Degree - Virginia Leary Merit Scholarship Recipient, American/U.S. Law/Legal Studies/Jurisprudence and Health Law & Policy, Overall Average of A-", "Post Graduate Diploma in Legal Practice (LPC), Law", "Graduate Diploma in Law, Law", "Bachelor of Arts (BA), Theatre and Performance, 2:1 HONS", "A Levels, 3 A Levels, 9 GCSE's", "Jewish Care", "Jewish Care", "National Centre of Domestic Violence", "University of California, Hastings College of the Law", "Francis Holland School", "Francis Holland School", "Francis Holland School", "The Duke of Edinburghs Award", "The Duke of Edinburghs Award"], "vesis84": ["Karel dal(a) lb se", "Karel dal(a) lb se", "Brno University of Technology", "IBM"], "RadhikaG": ["Mozilla Foundation", "GVC Systems", "Bachelor of Technology (B.Tech.), Computer Science and Engineering", "High School", "Indian Association for Research in Computer Science (IARCS)", "Auro-Mira Service Society"], "GuillaumeAlain": ["University of Montreal", "University of Montreal", "Solace Systems", "Communications Research Centre", "International Conference on Machine Learning 2014", "M.Sc, Computer Science", "Master's, Mathematics (Number Theory)", "Bachelor's, Sciences (Mathematics)"], "DerekMiller": ["Interactive Intelligence", "Project Lead The Way", "Timmy Global Health", "Ball State University", "Ball State University", "Master of Science, Computer Science", "Bachelor of Arts (BA), Telecommunications, Graduated"], "CraigCitro": ["Google", "University of Washington", "Doctor of Philosophy (PhD), Mathematics", "Bachelor of Science (BS), Mathematics and Computer Science", "Bachelor of Science (BS), Mathematics and Computer Science"], "LyubovKolesnikova": [" \" \"", " \" \"", " ", " ", " ", ", , ", " , : 77004482"], "GiulioFidente": ["Red Hat, Licenza 804006254022826", "Red Hat, Licenza 804006254022826", "Red Hat", "Red Hat", "Red Hat", "dotMobi", "IBM", "Babel - a business unit of Par-Tec S.p.A.", "ATS", "Contributor", "Contributor", "Electronic and Automation", "Computer Engineering"], "VladimirNazarenko": ["Lanit-Tercom", "Master's degree, Mathematics and Computer Science", "Bachelor's degree, Mathematics and Computer Science"], "ReyhaneAskari": ["University of Montreal - MISA", "GMA Solar Inc.", "National Research Council Canada"], "NumanSiddique": ["Red Hat", "eNovance", "Cisco Systems", "NDS services Pay TV Technology", "NDS services Pay TV Technology", "VeriFone", "S/W Engineer from Tata elxsi at Schneider Electric", "Tata Elxsi", "Coursera Verified Certificates, License 574G6YVWNZ", "B.E, I.S & E", "Pre University, Science"], "ChienliMa": ["Intuit", "Google Summer of Code 2015", "eLong, Inc", "Master's degree, Computer Science, 4.0/4.0", "Bachelor's degree, Information Engineering"], "KelvinXu": ["Montreal Institute for Learning Algorithms (MILA)", "Google Research - Brain Residency Program", "Courant Institute at NYU - machine learning group"], "BrantKnudson": ["IBM", "Unisys", "BS, Computer Science, 4.0", "IBM", "IBM"], "carriepl": ["Montreal Institute for Learning Algorithms (MILA)"], "AymanElkfrawy": ["Aurea Software", "Al-Azhar University", "NARSS", "Freelancer", "Leapforce", "Horizonssoftware", "IEEE 2010 Computer Society Students Competition", "IEEE Computer Society", "Bachelor's degree, Computer Engineering"], "ClementFarabet": ["Clment liked", "Clment liked", "Clment liked", "Clment liked", "Twitter", "MADBITS", "New York University"], "JeffDonahue": ["Ph.D., Computer Science", "B.S., Turing Scholars Honors Computer Science", "Pinterest", "UC Berkeley", "Pinterest", "Google", "Google", "Google", "Applied Research Labs", "National Instruments", "National Instruments"], "GauvainPocentek": ["Objectif Libre", "Ulteo", "Linutop"], "Taesup(TS)Kim": ["Universit de Montral", "Microsoft", "Solidware", "Intel Corporation", "LG Electronics", "Microsoft Research Cambridge", "Lam Research Korea", "Korea Univ.-Samsung Techwin Research Center", "168th Medical Battalion", "Doctor of Philosophy (Ph.D.), ", "M.S, Electrical Engineering", "B.E, Electrical Eng."], "VincentMichalski": ["Twenty Billion Neurons GmbH", "Goethe-Universitt Frankfurt a. Mainbersetzung anzeigen\nWie finden Sie diese bersetzung?GutFehlerhaft", "Universit de Montral, Montreal Institute for Learning Algorithms", "Goethe-Universitt Frankfurt a. Main, Bernstein Focus Neurotechnology", "Universit de Montral, Montreal Institute for Learning Algorithms", "Frankfurt Institute for Advanced Studies, Bernstein Focus Neurotechnology", "Goethe-Universitt Frankfurt a. Main, Institute for Sinology", "Goethe-Universitt Frankfurt a. Main, Frankfurt Institute for Advanced Studies", "Goethe-Universitt Frankfurt a. Main, Institute for Sinology", "Doctor of Philosophy (Ph.D.), Computer Sciencebersetzung anzeigen\nWie finden Sie diese bersetzung?GutFehlerhaft", "Master's degree, Computer Sciencebersetzung anzeigen\nWie finden Sie diese bersetzung?GutFehlerhaft"], "ManjunathKudlur": ["Google", "NVIDIA", "University of Michigan", "IBM TJ Watson Research Center", "Synfora Inc.", "Hewlett Packard", "Zaplet"], "ClarkBoylan": ["OpenStack Foundation", "Hewlett-Packard", "Intel Corporation", "Garmin International", "Portland State University", "Intel Corporation", "BS, Computer Science"], "HemanthMakkapati": ["Sun Microsystems", "Openstack Foundation, License COA-1600-0248-0100", "13th IEEE/ACM International Symposium on Cluster, Cloud and Grid Computing", "8th IEEE International Conference on E-Science (e-Science), 2012", "India Workshop on Reverse Engineering (IWRE), 2012", "India Workshop on Reverse Engineering, IWRE 2011", "North Texas Food Bank", "Blacksburg Middle School", "Virginia Tech Indian Students Association", "Virginia Tech Indian Students Association", "Department of Computer Science at Virginia Tech", "Tata Research Development & Design Center", "Tata Research Development & Design Center", "Tata Research Development & Design Center"], "MariusKillinger": ["Google", "Max Planck Institute for Medical Research", "Bosch Singapore", "Bosch", "Masters Degree, Physics", "Bachelors Degree, Physics, 1.4"], "DamienMartin-Guillerez": ["Damien Martin-Guillerez gefllt Folgendes:", "Damien Martin-Guillerez gefllt Folgendes:", "Damien Martin-Guillerez gefllt Folgendes:", "Damien Martin-Guillerez gefllt Folgendes:", "Google", "INRIA", "iQSpot", "LAAS-CNRS"], "ChrisBuccella": ["Intralinks", "BA", "BS", "United States US8271501", "United States US8041555", "United States US7836348", "Kiva.org", "AARP TaxAide"], "AnandChakravarty": ["Google", "Google", "Microsoft", "Microsoft", "Microsoft Corporation", "Microsoft Corporation", "Microsoft Corporation", "Microsoft", "United States", "Master of Science (M.S.), Computer Science"], "ZimingDong": ["LinkedIn", "Masters Degree, Computer Science", "Bachelors Degree, Computer Science", "Sohu, Inc.", "Association of Computing Machinery", "Coursera Course Certificates, : KAJYKT42GPNV", "ACM International Collegiate Programming Contest"], "RebeccaFinn": ["We Are Social", "Mom Central Consulting", "StudentUniverse.com", "Situation Interactive", "Be the Change Abroad", "J.Crew", "Boston Life", "Marketing", ""], "BorisPavlovic": ["DocuSign", "Early Stage Startup", "Microsoft", "Microsoft", "Microsoft", "Microsoft", "Fairmont Hotels and Resorts", "Fairmont Hotels and Resorts", "Four Seasons Hotels and Resorts", "HOTEL EDOUARD 7", "InterContinental Hotels Group", "Master of Business Administration (MBA)", "Bachelor of Science, International Hospitality Management", "International Sommelier Guild", "Board Member", "President", "Director At Large", "President", "Summit Assistance Dogs", "Microsoft Executive Briefing Center", "Microsoft Advertising", "Microsoft Advertising"], "WlodzimierzBorkowski": ["Intel Corporation", "ADVA Optical Networking", "ADVA Optical Networking", "MongoDB", "Udacity", "The Linux Foundation", "DataCamp, Licencja 2a1199d6a7d190d6625774ba4f3be6542f74d54c", "Big Data University, Licencja BD0111EN", "Big Data University, Licencja BD0115EN", "postgraduate, Software engineering in practice", "postgraduate, Projecting and programming desktop applications", "Master of Engineering (M.Eng.), electronic and telecommunication"], "nyghtowl": ["Skymind.io - Deep learning for Industry"], "YaguangTang": ["MANDOO GROUP PTY LTD"], "terrytangyuan": ["Uptake", "RStudio, Inc.", "DataNovo, Inc.", "Analytical Flavor Systems", "Penn State Department of Mathematics and National Science Foundation", "Penn State Department of Statistics", "Schreyer Honors College", "Schreyer Honors College", "Schreyer Honors College", "HackRPI at Rensselaer Polytechnic Institute", "Capital One", "Google", "Bachelor of science, Mathematics and Computer Science", ""], "IharHrachyshka": ["OpenStack", "Red Hat Czech s.r.o", "OpenStack", "OpenStack", "OpenStack", "Red Hat Czech s.r.o", "EPAM Systems", "Infoblox", "EPAM Systems", "Promwad", "Velesys", "Bachalor, Computer Science"], "SollyRoss": ["Red Hat", "Red Hat", "Rothbury Software", "Memolane", "Bachelor of Science (B.S.), Mathematics and Computer Science, Dean's List"], "DeanTroyer": ["Intel Corporation"], "JamesWexler": ["Google", "Amazon", "Microsoft Corporation", "Raytheon Integrated Defense Systems", "Raytheon Integrated Defense Systems", "Mohawk Innovative Technology, Inc", "MS, Computer Science", "BS, Computer Science"], "koraykavukcuoglu": ["Google Deepmind", "Deepmind Technologies", "NEC Laboratories America", "New York University", "Google", "NEC Laboratories America", "NEC Laboratories America", "Siemens Corporate Research", "Roketsan Missiles Inc.", "PhD", "MS", "MS", "BS"], "AlexeySurkov": ["Google", "ABBYY", "Master's degree, computer science, mathematics", "Goethe Institut"], "StephanHoyer": ["Google", "The Climate Corporation", "University of California, Berkeley", "The Climate Corporation", "Theory of Algorithms Course, UC Berkeley", "US Department of Energy", "", "The Climate Corporation", "The Climate Corporation", "PhD, Theoretical Physics", "BA, Physics, with High Honors and Phi Beta Kappa", ""], "QiweiYe": ["Microsoft", "Microsoft", "Microsoft", "Microsoft", "Computer"], "AdamGandelman": ["IBM", "Akanda inc", "HP Cloud Services", "Canonical Ltd.", "Janrain, Inc.", "LINBIT USA", "ICONN.NET, LLC"], "JonasDegrave": ["Ghent University", "Picanol Group", "Melexis", "Colruyt", "Covameat", "Coursera", "Rode Kruis-Vlaanderen", "Pirate Party Belgium", "Pirate Party Belgium", "SIAM, Society for Industrial and Applied Mathematics", "Master of Science, Electrical Engineering: ICT", "MOSIG: Graphics, Visuals and Robotics", "ASO, Wetenschappen-Wiskunde 8 uur"], "JoostvanDoorn": ["Master of Science (MSc), Artificial Intelligence", "Bachelor of Science (BSc), Computer Science, Cum laude", "VWO, Nature and Technology", "Centrum Wiskunde & Informatica", "University of Twente", "I.C.T.S.V. Inter-Actief", "I.C.T.S.V. Inter-Actief", "Nedforce", "Bestuur 2012-2013, Symposium 2012"], "RobinNabel": ["Google", "Google", "Democratic National Committee", "University of St Andrews", "J.P. Morgan", "Tilde, Ltd", "Masters Degree, Computer Science", "Nanodegree, Self-Driving Car Engineering", "EAP - full year exchange program, Computer Science, GPA 3.95/4.0", "High School", "University of St. Andrews Student's Association", "Athletic Union, University of St. Andrews", "Andrew Melville Hall", "University of St. Andrews, University of California at Davis", "School of Computer Science, University of St Andrews", "Worcester Sixth Form College"], "AttilaFazekas": ["ExxonMobil", "ExxonMobil", "ExxonMobil", "KFKI Ltd.", "Master of Science (MSc), Information Technology", "Exchange semester, Information Technology, MSc", "High School/Secondary Diplomas and Certificates", "High school, Mathematics", "Bachelor of Business Administration (BBA), Business Administration and Management, General"], "JohnLenihan": ["InfoSpace, Inc.", "Bachelor's Degree, Business Administration"], "Raingo": ["Yuncheng liked", "Yuncheng liked", "University of Rochester", "Snapchat, Inc.", "Yahoo", "Microsoft", "Microsoft Research Asia", "University of Science and Technology of China", "Doctor of Philosophy (PhD), Computer Science", "Bachelor of Engineering (BE), Electrical and Electronics Engineering"], "XiYang": ["Capco", "Capco", "LaunchHouse", "KeyBank", "Case Western Reserve University", "Jiangxi Special Type Vehicle Company, Ltd., Jiangxi, China.", "China Minsheng Banking Corporation, Ltd., Beijing, China.", "Capco", "Central Conservatory of music, China", "Capco", "The George Washington University", "Toastmasters International", "New York Cares", "Global Business Accelerator", "Cleveland Foundation Foundry Project", "Score: 740", "Score: 112", "Master of Business Administration (M.B.A.)", "Master, Finance", "Bachelors Degree, International Finance"], "ThomasGeorge": ["Eco Adapt", "iDMOG", "Egos Ventures Inc.", "Snecma", "", "Master of Science (M.Sc.), Artificial intelligence", "Master of science and executive engineering, Data Science", "Erasmus exchange program for my third year of bsc, Mathematics", "Licence, Mathmatiques, Physique, Mcanique, Informatique"], "BenjaminScellier": ["Arxiv", "Knowesis Pte Ltd", "University of Oxford", "Prescient Limited", "Lyce Louis-le-Grand", "French Army", "Academy of Sciences, Institut de France", "International Mathematical Olympiad", "German Mathematical Olympiad", "Ministry of National Education (France)", "International Mathematical Olympiad", "French Mathematical Olympiad", "Doctor of Philosophy (Ph.D.), Deep Learning (Artificial Intelligence)", "Masters Degree, Statistics", "Masters Degree, Applied Mathematics", "Mathematics, Physics and Computer Science"], "GabrielHurley": ["Oracle", "Nebula, Inc.", "NASA", "Strike Awe", "Zero Coordinate Inc", "UC Berkeley", "BA, Social Welfare"], "Kaixhin": ["Twitter", "Kaixhin", "inensu", "Wellframe", "Mobile Sanctuary", "Wellcome Trust", "St. George's University of London", "Doctor of Philosophy (Ph.D.), Bioengineering", "Master of Science (MSc), Biomedical Engineering, Merit", "Bachelor of Arts (BA), Computer Science, II.1", "Department of Bioengineering, Imperial College London", "Credit Suisse", ""], "JoseCastroLeon": ["CERN", "CERN", "CERN", "Aplicaciones Tecnologicas de Domotica", "Master Degree, Computer Engineering (Ingenieria Informatica)", "Bachelor degree, Computer Engineering (Ingenieria Tecnica Informatica, especialidad de Sistemas)"], "NicholasKuechler": ["OpenStack, License COA-1600-0135-0100", "Red Hat, License 120-044-649"], "NathanHowell": ["GoDaddy", "Alpha Heavy Industries", "eBay", "Positronic", "Microsoft", "United States 7,219,148", "United States 7,610,344", "United States 7,272,853", "United States 7,543,076", "United States 8,214,438", "United States 8,533,270", "United States"], "EdwardHopeMorley": ["Canonical UK", "Hewlett-Packard", "Hewlett-Packard", "2:1, MEng Computer Systems Engineering"], "XavierGlorot": ["Google DeepMind", "Microsoft", "UPMC - Sorbonne Universities", "Universit de Montral", "Universit de Montral", "Polytechnique Montral", "Hilti", "Doctor of Philosophy (Ph.D.), Computer Science", "Engineers Degree, Electronics, Computer Science and Communications Engineering", "Electrical and Computer Engineering"], "ke-kuroki": ["Community Lead", "Restaurant Brands International", "Andela", "Google", "iHub Nairobi", "VituMob", "Fitimage Studios LLC", "Cybercasia", "Score: 8/10", "Score: 7/10", "Score: 7/10", "Score: 7/10", "Score: 6/10", "Won't stop learning anytime soon, Computer Software Engineering (Web platform)", ""], "JanPrach": ["Chartboost", "Identified", "VigLink", "AVAST Software", "Sun Microsystems", "mgm technology partners GmbH", "Engineer (MSc), Computer Science, Software Engineering, Computer Vision"], "A.RosenbergJohansen": ["Salesforce", "DTU - Technical University of Denmark", "Master of Science (M.Sc.), Mathematics and Computer Science, 11.4 of 12.0", "Master of Science (M.Sc.), Computervidenskab", "Bachelor of Science (B.Sc.), Management Information Systems, General, 10.7 of 12.0", "Bachelor of Science (B.Sc.), Computervidenskab", "TensorFlow", "Deep Learning Research, In", "NIPS recurrent neural network Symposium, 2016", "International conference on acoustics speech and signal processing, 2016"], "IsakuYamahata": ["Intel", "VA Linux Systems Japan", "FUJITSU SOFTWARE TECHNOLOGIES LIMITED", "Softbank creative", "Nikkei BP"], "jyt109": ["Twitter", "Galvanize Inc", "Skymind.io - Deep learning for Industry", "IBM", "Integrative Genomics and Medicine - Medical Research Council"], "NicolasBallas": ["Universit de Montral", "CEA and Mines ParisTech", "Carnegie Mellon University", "LTU Technologies", "Siemens", "EPITA Research and Development Laboratory", "EPITA", "24/7 Real Media", "IBM", "Fulbright Program", "PhD, Applied Mathematics, Computer Science", "Master, Machine learning and Computer vision", "Master, Computer Science"], "lamblin": ["Montreal Institute for Learning Algorithms (MILA)"], "JiaDong": ["Marcetable", "The Walt Disney Company", "The Walt Disney Company", "Amgen", "Advantech", "Marvell Semiconductor", "Master of Business Administration (M.B.A.)", "Bachelor of Science (B.S.)"], "OleksiiChuprykov": ["Mirantis", "OpenStack", "Mirantis", "Mirantis", ""], "qipeng": ["Stanford University", "Stanford University", "Stanford University", "Stanford University", "Soulgame", "Stanford University", "Tsinghua University", "PhD, Computer Science", "MS, Computer Science", "BE, Computer Software", "Neural Computation", "ICONIP 2013", "", "", "Vice President"], "turambar": ["XPRIZE", "University of Southern California", "Podimetrics", "Alfred E. Mann Institute", "University of Southern California", "Stanford University", "Phi Beta Kappa, Beta of California, Stanford University", "Stanford University", "Project Management Committee for OODT Project", "Co-organizer", "United States 7933900", "1st Workshop on Data Mining for Medical Informatics (DMMI): Electronic Phenotyping", "Proceedings of the IEEE 14th International Conference on Data Mining (ICDM)", "Proceedings of the IEEE International Conference on Data Mining 2013", "AAAI 2013 Fall Symposium Series Discovery Informatics Workshop", "Proceedings of ACM International Health Informatics Conference 2012", "OReilly Open Source Convention: Special Session on Healthcare Technology", "9th International Conference on Complexity in Acute Illness", "SPIE Electronic Imaging: Human vision and electronic imaging XIV", "Journal of Community Health", "ICML 2015", "SIGKDD 2015", "Doctor of Philosophy (Ph.D.), Computer Science", "Deep Learning"], "HuiXiang": ["Allergan plc", "Nitto Denko Corporation", "Allergan, Inc", "DuPont Pharmaceuticals/Bristol-Myers Squibb", "DSM Biologics", "National Research Council Canada - Biotechnology Research Institute"], "LijunXue": ["Carnegie Mellon University", "Rakuten", "Tesla Motors", "University of Washington", "Theano Open Source Dev Community", "HackNTU", "INTERFIRM", "iFanr", "Carnegie Mellon University", "HackShanghai", "Google", "HappyChick Foundation", "AIESEC", "Master's degree, Software Engineering", "Master's degree, Computer Science and Systems, GPA 3.70", "Bachelor of Science (BS), Electrical and Electronics Engineering, GPA 3.5", "Deep Learning", "Coursera", "Coursera", "Coursera", "Coursera", "Coursera", "Coursera", "Canton Fair (China Import and Export Fair)", "Guangzhou International Documentary Film Festival", "Chinese Conference on Cloud Computing(CCCC 2013)", "PACKT Publishing", "", "", "", "", ""], "MartinThoma": ["Karlsruhe Institute of Technology (KIT)", "Karlsruhe Institute of Technology (KIT) / University of Karlsruhe (TH)", "Coursera", "Coursera", "Duolingo", "Bundeswettbewerb Informatik", "Masters Degree", "Computer Science", "Bachelors Degree, Computer Science", "Abitur"], "FangweiLi": ["Google", "Google", "Google", "Microsoft", "PhD candidate, Computer Science", "BEng, Computer Science"], "TimSalimans": ["OpenAI", "Aidence", "Aidence", "Algoritmica", "Erasmus University Rotterdam", "Microsoft Research", "Independent trader on the Betfair markets", "International Society for Bayesian Analysis", "Kaggle.com", "Erasmus School of Economics", "Bayesian Analysis", "PhD Dissertation", "PhD, Econometrics", "MPhil / MSc, Economics, Major in Econometrics", "BSc (Hons), Liberal Arts and Sciences (Magna Cum Laude) Major in Mathematics & Physics", "Exchange Semester in Australia, Science"], "ThiloWill": ["Microsoft", "Linguatec GmbH", "Sail-Labs GmbH", "IXEC GmbH", "debis Systemhaus GmbH", "Institute of Parallel and Distributed Computing, University of Stuttgart", "Doctor of Philosophy (PhD), Theoretical and Mathematical Physics", "Diplom (Master of Sc.), Physics, passed with excellence"], "BertrandLallau": ["Thales Services", "Alcatel-Lucent", "Nextenso"], "MoslemKazemi": ["Uber", "Brain Corporation", "Brain Corporation", "Carnegie Mellon University", "Carnegie Mellon University", "Simon Fraser University", "Simon Fraser University", "Simon Fraser University", "University of Regina", "Postdoctoral Fellow", "Doctor of Philosophy", "Master of Applied Science", "Bachelor of Applied Science"], "VijayVasudevan": ["Google", "Carnegie Mellon University", "Ph.D, Computer Science", "B.S., Electrical Engineering and Computer Science"], "PhilippeHamel": ["Google Research - Information Retrieval and the Web, Machine Intelligence"], "DanielKrook": ["IBM", "", "", "", "", "", "", "", "", "", "", "IBM developerWorks", "IBM developerWorks", "IBM developerWorks", "IBM developerWorks", "IBM developerWorks", "IBM Redbooks", "IBM developerWorks", "IBM WebSphere Developer Technical Journal", "United States 9,413,833", "United States 9,413,818", "United States 9,361,455", "United States 9,323,572", "United States 9,246,920", "United States 9,229,784", "United States 9,215,153", "United States 9,147,181", "United States 9,122,696", "United States 9,003,480", "United States 8,881,136", "United States 8,880,841", "United States 8,856,664", "United States 8,843,621", "United States 8,494,143", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "United States", "IBM", "IBM", "IBM", "IBM", "IBM", "IBM", "IBM", "IBM"], "PatrickMezard": ["Clustree", "MASA Group", "Mercurial", "BadTech SAS", "BadTech SAS", "FactSet Research Systems", "Mappy", ""], "MikeSeltzer": ["Michael liked", "Microsoft", "Microsoft", "Teradyne", "Doctor of Philosophy (PhD), Electrical and Computer Engineering", "Master of Science (MS), Electrical and Computer Engineering"], "houmingwang": ["Charles River Laboratories", "MIT", "Purdue University", "China Agricultural University", "Purdue University", "Purdue University", "AAI, seatle", "Purdue University", "Chinese Government", "The Journal of Experimental Medicine", "PLoS ONE", "BMC Immunology", "The Journal of Experimental Medicine", "The Journal of Immunology", "Gastroenterology", "Mucosal Immunology", "Doctor of Philosophy (PhD), Immunology", "Master of Science (MS), Veterinary Medicine", "AVMA"], "ChenFan": ["Amazon", "Star Valley Tech Inc.", "Doctor of Philosophy (PhD), Multimedia communication", "Bachelor of Science (BS), Information communication"], "DirkMueller": ["Coherent Inc.", "Coherent Inc.", "LUMERA LASER GmbH", "Kapteyn-Murnane Laboratories (KMLabs) Inc.", "Corning Incorporated", "Ph.D., Physics", "Vordiplom, Physics"], "GeorgyOkrokvertskhov": ["Mirantis", "Mirantis", "Mirantis", "Mirantis", "Cisco", "Mirantis", "PhD, Physics, Non-linear Dynamics", "Master of Science (MS), Physics, Biophysics"], "JingtianPeng": ["2012 Labs, Huawei Technologies", "University of California, San Diego", "Witspring Inc", "Zhejiang University", "Visiting Scholar, Bioinformatics", "Bachelor of Engineering (B.Eng.)(Top 5%), Computer Science", "Zhejiang University", "Zhejiang University", "Zhejiang University", "", "Zhejiang University", "COMAP(the Consortium for Mathematics and Its Applications)", "Huawei Technologies Co., Ltd", "Huawei Technologies Co., Ltd", "DataCamp, License 0a39a85efc0d93aab822ba10eb5830a6c5d2ae23", "DataCamp, License 16186fa5294a7bbfb80460da954b74cfdd94ea5e"], "DumitruErhan": ["Google Brain", "Google", "Yahoo!", "Google", "Microsoft Research", "Max-Planck Institute for Biological Cybernetics", "Helsinki University of Technology", "PhD, Computer Science", "MSc, Computer Science", "BSc, Electrical Engineering and Computer Science"], "FeiLongWang": ["Catalyst IT Limited", "IBM", "IBM", "IBM", "DCHanson", "IBM China Research Lab", "China's Ministry of Industry and Information Technology, License 08202110005", "IBM", "IBM", "IBM", "Master of Computer Applications (MCA)", "Bachelor's degree, Computer/Information Technology Administration and Management"], "MalcolmSlaney": ["Google", "Stanford University", "Department of Electrical Engineering - University of Washington", "Microsoft", "Yahoo!", "IBM", "Interval Research", "Apple Inc.", "Schlumberger Palo Alto Research", "Bell Laboratories", "PhD, Electrical Enginering", "BSEE with Honors, MSEE, PhD, Electrical Engineering"], "Bart": ["Twitter", "Facebook", "Self-Employed", "TEDxWarwick", "AIESEC", "GroeneKruis Domicura", "Paris International Model United Nations (PIMUN)", "European Commission", "SOS Children's Villages", "Doctor of Philosophy (Ph.D.), Machine learning, A", "Master of Science (MSc), Complex Systems Science (Erasmus Mundus), A", "Master of Science (MSc), Complex Systems Science (Erasmus Mundus), GPA 3.9/4.0", "Bachelor of Science (BSc), Mathematics and Business Studies, First Class Honours", "Business, Israeli politics, Middle Eastern history, Ethics, A (93%)"], "EricBrown": ["MediaWallah", "nToggle, Inc", "Nomi (acquired by Brickstream)", "Media Armor, Inc (acquired by Nomi)", "Jumptap (acquired by Millennial Media)", "Jumptap (acquired by Millennial Media)", "Jumptap (acquired by Millennial Media)", "Dotomi (acquired by ValueClick Media, now Conversant)", "Hyperknowledge", "Parametric Technology Corporation", "Knowledge Management Software", "Compaq", "AdExchanger", "AdMonsters", "AdMonsters", "Diploma", "BS", "High School", "National Restaurant Association Educational Foundation (NRAEF)", "Massachusetts Restaurant Association"], "DanijarHafner": ["B.S. IT Systems Engineering, Computer Science, GPA 3.8/4.0", "", "Google Inc.", "Information Systems Group, Hasso Plattner Institute", "Google Inc.", "Human Computer Interaction Group, Hasso Plattner Institute", "Bleeding Edge Press", "24th European Symposium on Algorithms (ESA)", "SAP, Fujitsu, Dell, HP", "Hasso Plattner Institute", "International Air Transport Association", "Cisco Systems, Inc.", "Google Inc."], "SabariKumarMurugesan": ["VMware", "VMware", "VMware", "Citrix Online", "Columbia Law School", "Oracle", "Oracle", "Master of Science (MS), Electrical, Computer Networks", "Bachelor of Engineering (B.E.), Electronics, Instrumentation"], "Pamela-RoseVirtucio": ["Bachelor of Science (B.S.), Computer Science"], "JamieLennox": ["Cleaver-Brooks Sales and Service, Inc."], "SukritiRamesh": ["Google", "ETH Zurich", "IBM Research", "L3S Research Center", "Hewlett-Packard"], "KirillZaitsev": ["Howden", "Ingersoll Rand", "Camozzi Pneumatics Ltd", "Master of Business Administration (M.B.A.), Strategic Business Administration", "Executive Coaching, Managing the Company", "Master's degree, Mechatronics and International Engineering", "Bachelor's degree, Mechatronics and International Engineering"], "ArnaudLegendre": ["Apple", "VMware", "Google Summer of Code", "Adobe", "Insight Centre for Data Analytics", "VMware", "EPFL (cole polytechnique fdrale de Lausanne)", "Accenture", "Master of Science (MS) Exchange, Computer Science", "Master of Science (MS), Computer Science", "UC Berkeley Extension, License In progress", "Coursera Course Certificates, License QFRARJY6TQEB", "Coursera Course Certificates, License 96AVAT45K99V"], "AlexGaynor": ["Freelance Filmmaker"], "ArturSvechnikov": ["Actimind", "Freelance Software Development", "BoonEx", "Meridis", "Coursera", "Coursera", "Coursera", "Software Engineering"], "MichaelKrotscheck": ["VMware", "OpenStack Foundation", "HP Cloud Services", "Rosetta Stone", "Livemocha", "The Active Network", "Adobe Systems", "Resource Interactive", "Elliance", "Abreon", "NDCHealth", "Master of Business Administration", "BArch"], "JohnDewey": ["JANUS Research Group, Inc.", "JANUS Research Group Inc.", "JANUS Research Group, Inc.", "US Army", "Masters in Strategic Studies, Strategic Studies", "MSEE, Electrical Engineering", "BS in Engineering, Electrical Engineering"], "JashaDroppo": ["Microsoft Research", "IEEE (SPS) Speech and Language Technical Committee (SLTC)", "Microsoft Corporation", "Microsoft", "Combustion Specialists Inc", "Doctor of Philosophy (Ph.D.), Electrical Engineering", "BSEE, Electrical Engineering, Honors Program"], "DaneFichter": ["trichome health consualtants"], "TomHancock": ["Agence France-Presse", "Chinese", "MPhil, Philosophy", "BA (Hons), Philosophy"], "VitaliyKolosov": ["OMK-IT", "IBS Holding", "Razvitie Plus", "", "", "specialist, computer scince, maths, economics, phisics"], "JonShlens": ["Google", "Howard Hughes Medical Institute", "UC Berkeley", "Salk Institute for Biological Studies", "Pixar Animation Studios", "Doctor of Philosophy (Ph.D.), Computational Neuroscience", "Bachelor of Arts (B.A.), Physics and Computer Science"], "SorenHansen": ["BSBA, Finance; Economics & Strategy", "", "Capital One", "Capital One", "Northern Trust Corporation", "Olin Business School", "UTC Aerospace Systems", "Cultivation Capital", "TAYLOR COMMUNITY CONSULTING PROJECT", "Goodwill-Easter Seals of MN", "Thomson Reuters", "Lunds and Byerly's", "Partner", "Co-President", "Industrials Portfolio Manager", "State President (October 2011-October 2012)"], "GustavLarsson": ["University of Chicago", "Tricycle Design HB", "Civis Analytics", "Tobii Technology AB", "Physical Sciences Division, University of Chicago", "Department of Computer Science, University of Chicago", "Doctor of Philosophy (Ph.D.), Computer Science", "Master of Science (M.S.), Engineering Physics"], "AshwiniShukla": ["Member", "ACM+IEEE Joint Conference on Digital Libraries (JCDL) 2002", "Scrum Alliance", "University Learning Institute"], "MichaelStill": ["Rackspace, the #1 managed cloud company", "OpenStack", "OpenStack", "OpenStack", "Rackspace, the Open Cloud Company", "Rackspace, the Open Cloud Company", "linux.conf.au 2013", "Canonical Ltd.", "Google", "The Australian National University", "Google Inc", "Google Inc", "TOWER Software", "AUUG", "Linux.Conf.Au", "Linux Australia", "IPAustralia", "IPAustralia", "National Center for Social and Economic Modelling (NATSEM)", "Australian Catholic University", "Questacon", "Department of Defence", "University of Canberra", "Aspect Computing", "Apress", "Apress", "PhD, Computer Science", "BEng, Computer Engineering", "Former board member, former conference director", "The Scout Association of Australia (Scouts Australia)", "The Scout Association of Australia (Scouts Australia)", "St John Ambulance Australia (ACT) Inc", "The Scout Association of Australia (Scouts Australia)", "The Scout Association of Australia (Scouts Australia)", "OpenStack Foundation, License COA-1600-0181-0100"], "ChihebTrabelsi": ["Polytechnique Montral", "Polytechnique Montral", "Polytechnique Montral", "Master of Science (M.Sc.), Computer Science", "", "Licence Fondamentale, Informatique de Gestion"], "CastuloJMartinez": ["Intel Corporation", "IBM", "Master's degree, Electrical and Electronics Engineering, Master's Degree in Electronics Design", "Bachelor of Engineering (B.E.), Electrical and Electronics Engineering"], "RainyaMosher": ["Cisco", "Jamberry Nails", "Rackspace, the #1 managed cloud company", "Rackspace, the #1 managed cloud company", "SA OpenStackers Meetup", "Rackspace Hosting", "Chenega Global Services, LLC", "TerraHealth Inc.", "Eclipsys Corporation", "Dell Computer Corporation", "Pratt & Whitney Avionics", "RFS Design", "Scrum Alliance", "Project Management Institute, License 1385732", "Scrum Alliance", "Family Justice Center of Bexar County", "Masters of Science, Technology Commercialization, 3.7", "Bachelor of Business, Information Systems, Cum Laude / 4.0 major / 3.6 cumulative", ""], "YanisGuenane": ["eNovance from Red Hat", "eNovance", "Freelance", "MNM Consulting", "TechTel21", "Logica", "Epitech", "Six Flags Great America", "Master Technologies de l'information", "Master, Information Technology", "Red Hat, License 150-132-280", "Red Hat, License 150-132-280"], "JinLi": ["GE Capital", "GE Capital", "Citigroup", "IBM", "CFA Institute", "Chinese Institute of Certified Public Accountants", "Member", "Master of Business Administration (MBA), Master of Accounting"], "PavelKirpichyov": ["SIA DYNINNO", "SIA Ambrella", "Partnership Alliance", "Webmedia", "Secondary education, Computer network administration", "Primary education"], "ZonghengYang": ["Google", "AMPLab, UC Berkeley", "Databricks", "Twitter", "UC Berkeley", "Bachelor of Arts (B.A.), Computer Science (Honors program); Mathematics.", ""], "AndyHsiang": ["H&K International", "Agri Ocean Service", "CEVA Logistics", "Express Line Corporation", "Express Line Corporation", "Sino Pearl"], "XiaoqiangZheng": ["Google", "NVIDIA", "Ph.D, Computer Graphics", "B.S, Computer Science"], "EoghanGlynn": ["Red Hat", "Red Hat", "Amazon Web Services", "Red Hat", "Progress Software", "IONA Technologies", "Institute of Technology Tallaght, Dublin", "ICL Fujitsu", "BSc (Joint Honours), Computer Science & Mathematics"], "JoshBleecherSnyder": ["foggy.co", "Braintree", "card.io (Lumber Labs)", "Treeline Labs", "AdCru", "AdMob, Inc.", "Synthese", "MA Philosophy, ABD", "BA", ""], "orhanf": ["Facebook AI Research, Paris", "IBM T.J. Watson Research Center", "University of Montreal Machinie Learning Lab-LISA", "Middle East Technical University - Department of Computer Engineering", "Military Academy - Department of Industrial and Systems Engineering"], "PeteWarden_": ["Goog", "Jetpac", "O'Reilly Media", "OpenHeatMap", "MoveableCode, inc.", "Mailana", "Apple", "PetesPlugins", "Visual Sciences", "BSc, Computer Science"], "slefrancois": ["Montreal Institute for Learning Algorithms (MILA)"], "XingdongZuo": ["Bachelor of Science (B.S.), Applied Mathematics"], "FabrizioMilo": ["Fabrizio liked", "Fabrizio liked", "Fabrizio liked", "Fabrizio liked", "Fabrizio liked", "Fabrizio liked"], "DeeptiRamakrishna": ["Intel Corporation", "Intel Corporation", "University of Washington", "MindTree", "Masters Degree, Electrical Engineering, 3.95/4.0", "Bachelors Degree, Electronics and Communications Engineering, 79.43/100", "Open Source Technology Center (OTC) at Intel Corporation", "Open Source Technology Center (OTC) at Intel Corporation", "Open Source Technology Center (OTC) at Intel Corporation", "Open Source Technology Center (OTC) at Intel Corporation", "System Validation Engineering (SVE) at Intel Corporation", "System Validation Engineering (SVE) at Intel Corporation", "System Validation Engineering (SVE) at Intel Corporation", "The National Institute of Engineering, India", "Developer", "Rackspace, the #1 managed cloud company"], "CaoXuanHoang": ["SPECCO"], "VaibhavBhatkar": ["Izel Technologies Pvt. Ltd.", "EMC", "Merce Technologies Private Limited", "B.E, Computer Science"], "yobibyte": ["RWTH Aachen University", "Terminal", "hlpme.ru", "CDC.ru", "Imagespark", "Ernst & Young", "RWTH Aachen University"], "ZachPloskey": ["Ploskey Technical", "University of Washington", "University of Washington", "University of Washington Dept. of Earth & Space Sciences", "University of Washington Dept. of Oceanography", "Pacific Northwest National Laboratory", "BAE Systems", "UW Dept. of Earth & Space Sciences", "UW Dept. of Earth & Space Sciences", "UW Dept. of Earth & Space Sciences", "UW Dept. of Earth & Space Sciences", "UW Dept. of Earth & Space Sciences", "Bachelor's Degree, Earth & Space Sciences", "Bachelor's Degree, Anthropology", "Doctor of Philosophy (Ph.D.), Earth & Space Sciences", "", "Rockin' Out"], "MarkWashenberger": ["Nebula, Inc.", "Rackspace Hosting", "Rackspace Hosting", "Rackspace Hosting", "Bachelor of Science (BS), Computer Science, 3.99", "Bachelor of Science (BS), Physics, 3.99", "Bachelor of Science (BS), Mathematics, 3.99"], "ClayGerrard": ["Swift Stack", "Rackspace", "Rackspace Managed Hosting", "Concept Cellular Int'l Inc", "Bachelor of Applied Science (BASc), Computer Science"], "lewuathe": ["The Apache Software Foundation", "Treasure Data", "Yahoo! JAPAN", "Tateno Dennou,Inc.", "Yahoo! JAPAN", "Coursera", "Coursera", ", Information Science", "Japan", "Wiley", "Willey / Wrox"], "MichaelIMandel": ["Brooklyn College, CUNY - Computer & Information Science", "CUNY Graduate Center", "Jelenik Speech and Language Technologies Workshop", "The Ohio State University - Computer Science & Engineering", "Telecom ParisTech - Signal & Image Processing", "Audience, Inc", "University of Montreal - LISA Lab", "Musically Intelligent Machine LLC", "Columbia University - LabROSA", "Boston University - Shinn-Cunningham Lab", "Google, Inc - Google News", "Owl Multimedia", "Bose Corporation", "MIT - CS/AI Lab and Media Lab"], "EdeMeijer": ["Buybrain", "experty", "SNT", "Coursera Course Certificates, Licentienummer YFVBZ7SFULUA", "Coursera Course Certificates, Licentienummer SGJHMT5UPS45", "Coursera Course Certificates, Licentienummer AVKVGZ5XVQ7C"], "JianminChen": ["Google", "Intel Corporation", "University of Florida", "University of Florida", "Motorola Solutions", "ICCD", "IISWC", "IPDPS", "PhD, Computer Engineering", "Bachelor, Computer Science; Computer Science & Technology"], "OlivierMastropietro": ["Montreal Institute for Learning Algorithms (MILA)"], "IldikoVancsa": ["OpenStack", "Ericsson", "Ericsson", "Ericsson", "Ericsson", "OptXware Ltd", "Active Technical Contributor", "Master's degree, Computer Science"], "IcchaSethi": ["Atlassian", "Rackspace, the #1 managed cloud company", "OpenStack", "Rackspace Hosting", "Let's Code Blacksburg!", "Virginia Bioinformatics Institute", "Siemens Technology India", "Rackspace", "Datastores Practice Area, Rackspace", "Rackspace", "Roanoke Blacksburg Technology Council", "Roanoke Blacksburg Technology Council", "Rackspace Blacksburg Office", "Virginia Bioinformatics Institute, Virginia Tech", "Cranwell International Center, Virginia Tech", "SSN College of Engineering, Anna University", "SSN College of Engineering, Anna University", "", "Computer Society of India, SSN Student Chapter", "Anna University", "Grace Hopper Conference", "Talk on \"Deploying Your Application on Public Cloud\" at GHC 2014", "OpenStack @ OpenSource Day at GHC 2014", "WECode Harvard Conference", "OpenSource Day at Grace Hopper Conference", "GNOME Foundation", "Student Opportunity Lab, Grace Hopper Conference", "The National Center for Women & Information Technology (NCWIT)", "Virginia Bioinfomatics Institute - Kids Tech University", "Grace Hopper Conference", "Committee Lead", "Women in Computing Day Co-chair", "Advertising Chair, First Year Representative"], "JustineTunney": ["Google", "Google", "Google", "Occupy Wall Street"], "DinaBelova": ["Materials Chemistry Section, University of Copenhagen", "University of Copenhagen", "Institute of Geology of KRC, RAS", "Scientific Research Institute of Atomic Reactors", "Institute of Geology of KRC, RAS", "Doctor of Philosophy (Ph.D.), Surface chemistry", "Master, Environmental Geochemistry, Hons", "Bachelor, Gelogy, Hons", "RUSMAM", "Crystal Growth and Design", "Journal of Contaminant Hydrology"], "RafaelRivero": ["Verizon", "Verizon Enterprise Solutions", "Verizon", "Verizon", "Verizon Wireless", "Dieste Harmel and Partners", "Digicel USA", "Verizon", "Verizon", "Global Ingenieria", "Verizon", "Verizon", "Marketing Certificate", "MBA, Finance & Telecom"], "medakk": ["Bachelor of Technology, Computer Science Engineering", "PUC, Electronics", "10th ICSE"], "ChrisN": ["Skymind.io - Deep learning for Industry", "FutureAdvisor", "Bloomberg", "New York Times", "Radio France International - English Service", "International Herald Tribune", "Zink Magazine", "International Political Science Association", "Grameen Bank", "Bloomberg News", "Growth", "Bachelor of Arts (B.A.), Economics, Political Science, Magna Cum Laude", "Moments of calm, Zazen", "Philosophy and Political Science", "High School Diploma"], "AbhishekChanda": ["Dell EMC", "Dell EMC", "EMC", "Cloudscaling (acquired by EMC)", "Huawei", "Rutgers University", "Microsoft India (R&D) Pvt Ltd", "United States US20140173018 A1", "Microsoft IT", "Rutgers University", "IEEE NOMEN", "HotMobile poster session", "FutureNet 2012", "European Wireless", "Hack.in", "Master of Science (MS), Electrical and Computer Engineering", "Bachelor of Engineering (BE), Computer Science", "", "Hurricane Electric"], "ErnoKuvaja": ["Red Hat", "Hewlett-Packard Company", "Hewlett Packard", "2nd", ""], "Yuan(Terry)Tang": ["Uptake", "RStudio, Inc.", "DataNovo, Inc.", "Analytical Flavor Systems", "Penn State Department of Mathematics and National Science Foundation", "Penn State Department of Statistics", "Schreyer Honors College", "Schreyer Honors College", "Schreyer Honors College", "HackRPI at Rensselaer Polytechnic Institute", "Capital One", "Google", "Bachelor of science, Mathematics and Computer Science", ""], "BartvanMerri\u00ebnboer": ["Twitter", "Facebook", "Self-Employed", "TEDxWarwick", "AIESEC", "GroeneKruis Domicura", "Paris International Model United Nations (PIMUN)", "European Commission", "SOS Children's Villages", "Doctor of Philosophy (Ph.D.), Machine learning, A", "Master of Science (MSc), Complex Systems Science (Erasmus Mundus), A", "Master of Science (MSc), Complex Systems Science (Erasmus Mundus), GPA 3.9/4.0", "Bachelor of Science (BSc), Mathematics and Business Studies, First Class Honours", "Business, Israeli politics, Middle Eastern history, Ethics, A (93%)"], "JohnSalvatier": ["AI Impacts", "Amazon", "RPX Research, Inc.", "Boise-Cascade", "Boise Cascade", "Capstone Technology", "Kimberly-Clark", "B.S.Ch.E., B.S., Chemical Engineering, Paper Science and Engineering"], "AdamGibson": ["Galvanize Inc", "Skymind.io Deep Learning support services training via deeplearning4j.org", "Zipfian Academy", "CritSend", "Clever Cloud Computing", "Mashape", "ITOxygen", "ITOxygen", "Coursera", "Coursera", "Dropped out, Computer Science/Data Science MIS, 3"], "MatthewBooth": ["Connectivity, Inc.", "BIA Kelsey", "BIAKelsey", "Done Right (Perform Local, Inc)", "Citysearch"], "MathieuGermain": ["Universit de Montral", "Invup", "SherWeb", "Technische Universitt Darmstadt", "Universit de Sherbrooke", "Nuance Communications", "Canadian Space Agency", "cole Secondaire Champagnat", "Centre Prvention Suicide", "Coursera", "Master of Science (MS), Deep Learning", "Bachelor, Computer Science"], "DavanumSrinivas": ["MBA", "M.Sc. (Tech), Information Systems"], "SaizhengZhang": ["Maluuba", "Microsoft Research Redmond", "Deepglint", "Carnegie Mellon University Silicon Valley", "Doctor of Philosophy (Ph.D.), Computer Science", "Bachelor of Engineering (BEng), Electronic Engineering and Information Science"], "CindyPallares": ["Wells Fargo Financial", ""], "hantek": ["Montreal Institute for Learning Algorithms (MILA)"], "GeoffreyIrving": ["Google Brain", "Eddy Systems", "Otherlab", "Weta Digital", "D. E. Shaw Research", "Pixar Animation Studios", "United States US8290757 B2", "United States", "United States", "Proceeding SIGGRAPH '08 ACM SIGGRAPH 2008 talks"], "AlexeyGalkin": ["IBM", "IBM", "IBM", "IBM", "Bachelor's Degree, Computational and Applied Mathematics"], "DanielRenshaw": ["Master of Philosophy (MPhil), Machine learning (esp. neural networks), speech technologies, and natural language processing", "BSc (honours), Artificial Intelligence & Computer Science, 1st", "IEEE International Conference on Acoustics, Speech, and Signal Processing (ICASSP)", "INTERSPEECH 2015: 16th Annual Conference of the International Speech Communication Association (to appear)"], "JamesBergstra": ["Kindred.ai", "University of Waterloo", "Harvard University", "Universit de Montral", "I-mmersion Studios Inc.", "Ph.D., Computer Science", "M.Sc., Computer Science", "B.Sc., Math, Philosophy, Computer Science", "B.Sc., Math, Philosophy, Comp Sci", "B.Sc., Math, Philosophy, Comp Sci", "", "", ""], "JonathanHseu": ["Google", "Dropbox", "Google"], "JoshPatterson": ["Josh liked", "Josh liked", "Josh liked", "Josh liked", "Josh liked", "Josh shared", "Skymind.io - Deep learning for Industry", "Relish", "Skymind.io - Deep learning for Industry", "O'Reilly Media", "Patterson Consulting of TN", "Continuuity", "Cloudera", "Cloudera", "Cloudera", "Tennessee Valley Authority", "University of Tennessee at Chattanooga", "LEWCON, LLC", "Cerillian", "USXpress", "Realty Center, GMAC", "", "IAAI-09"], "EricWindisch": ["Docker, Inc", "Cloudscaling (acquired by EMC Corp)", "GrokThis.net", "Harris Computer Systems", "Site5 Internet Solutions, Inc.", "BurstNET Technologies, Inc.", "OpenStack Foundation", ""], "RohanJain": ["Google", "Microsoft - Bing, Machine Learning Div", "Tryst - 2008, IIT Delhi's technical festival", "Indian Institue of Technoloy, Delhi", "Network Appliance Inc"], "AlexeiKornienko": ["Mirantis", "Ciklum", "Gameloft", "Gameloft", "Gameloft", "Gameloft", "10gen, The MongoDB Company", "10gen, The MongoDB Company", "Software engineering"], "LouisTaylor": ["Paulson & Co.", "Deutsche Bank Equity Research", "Prudential Securities", "Real Estate Private Equity", "Board Member", "Member", "Member", "President, Co-Founder, Board Chair", "President, Co-Founder, Board Chair", "President, Board Chair", "Board Member and Coach", "Board member, Treasurer"], "NikhilKomawar": ["IBM", "OpenStack", "OpenStack", "Rackspace", "Rackspace", "Virginia Tech", "Verizon Data Services", "University of Tuebingen", "Head Organizer", "Student Teaching Student", "Masters Degree, Computer Science", "Bachelor of Technology, Computer Science and Engineering", "", "Virginia Tech", "Indian Institute of Technology, Guwahati", "GNOME Foundation", "Score: Top 0.3%", "Score: Top 0.3%"], "PeteWarden": ["Google", "Jetpac", "O'Reilly Media", "OpenHeatMap", "MoveableCode, inc.", "Mailana", "Apple", "PetesPlugins", "Visual Sciences", "BSc, Computer Science"], "DavidWarde-Farley": ["DeepMind", "Universit de Montral", "Google", "Google", "Citizen Lab", "PhD, Computer Science", "M. Sc., Computer Science", "Hon. B. Sc., Computer Science, Statistics", ""], "RomanBogorodskiy": ["Mirantis", "The Apache Software Foundation", "FreeBSD", "Grid Dynamics", "Grid Dynamics Consulting", "Renet Com", "Fannet Telecom", "MSc, Mechanics and Mathematics"], "SamStavinoha": ["The Dow Chemical Company", "Kappa Kappa Gamma", "The Dow Chemical Company", "Kappa Kappa Gamma", "Hearst Magazines", "Bachelor of Science (B.S.), Advertising", "Girls on the Run International", "Reading Is Fundamental"], "DavidKoo": ["Groundworks Office", "David Koo", "UC Berkeley", "Melndrez", "Hogle-Ireland", "City of Ontario", "City of Walnut", "Masters Degree, Landscape Architecture", "Bachelors Degree, Educational; Urban & Regional Planning"], "BartvanMerrienboer": ["Twitter", "Facebook", "Self-Employed", "TEDxWarwick", "AIESEC", "GroeneKruis Domicura", "Paris International Model United Nations (PIMUN)", "European Commission", "SOS Children's Villages", "Doctor of Philosophy (Ph.D.), Machine learning, A", "Master of Science (MSc), Complex Systems Science (Erasmus Mundus), A", "Master of Science (MSc), Complex Systems Science (Erasmus Mundus), GPA 3.9/4.0", "Bachelor of Science (BSc), Mathematics and Business Studies, First Class Honours", "Business, Israeli politics, Middle Eastern history, Ethics, A (93%)"], "CyprienNoel": ["Flickr (Yahoo)", "Stanford University & NVIDIA Tech Talks", "NVIDIA GTC 2015", "H2O.ai (0xData)", "ObjectFabric", "Strange Loop 2011", "Self", "JavaOne 2010", "C3S2E10", "SmartTrade Technologies USA", "SmartTrade Technologies", "LORIA - Lorraine laboratory of computer science - Cortex Team", "ACM", "Masters, Engineering & Computer Science"], "SamMorrison": ["TBWA\\Media Arts Lab", "Laundry Service", "Kaltura", "Alphaserve Technologies", "Bachelor of Science (B.S.), Information Management and Technology, GPA 3.7 Within Major", "Continuing Education, Advertising", "Enitiative", "CenterState CEO", "Communications Officer"], "GuillaumeDesjardins": ["Google DeepMind", "DeepMind Technologies", "Doctor of Philosophy (Ph.D.), Computer Science (in progress)", "Master's degree, Computer Science", "Bachelor of Engineering (B.Eng.), Computer Engineering"], "PaulChristiano": ["Theory of Computing Group - UC Berkeley"], "JasonKoelker": ["WELBRO Building Corporation"], "FlavioPercoco": ["Red Hat", "OpenStack", "OpenStack", "OpenStack", "Red Hat", "Red Hat", "The Net Planet Europe", "Reitek S.p.A.", "Humanitarian FOSS Project", "DST PDVSA", "Fundacite"], "lukeiwanski": ["Codeplay Software Ltd", "Codeplay Software Ltd", "Codeplay Software Ltd", "Heehaw Digital", "Games Development"], "VadimMazalov": ["Microsoft", "Amazon", "Microsoft", "Western University", "Quantica Trading (formerly Embium)", "Western University", "Microsoft", "Peter-Service", "Ziiva Information Technology", "Oracle", "Oracle", "Oracle", "Project Euler"], "VishvanandaIshaya": ["Oracle", "OpenStack", "Datera", "Nebula, Inc.", "OpenStack", "Nebula, Inc.", "OpenStack", "Rackspace Hosting", "NASA Ames Research Center"], "AndrewHarp": ["Google", "Google", "Midway Games", "IBM", "IBM", "MS, Computer Science", "Bachelor of Science, Computer Science"], "Chmouel_Boudjnah": ["Red Hat", "Duolingo"], "FanZiye(t13m)": ["Theano Development Community", "Great Wall Computer Software And Systems Inc., Ltd.", "Master's degree, Machine Intelligence (School of EECS)", "Bachelor's degree, EE (School of EECS)"]} \ No newline at end of file diff --git a/company-affiliation/deeplearning4j_frequentcommitters.json b/company-affiliation/deeplearning4j_frequentcommitters.json deleted file mode 100644 index c43d0e7..0000000 --- a/company-affiliation/deeplearning4j_frequentcommitters.json +++ /dev/null @@ -1 +0,0 @@ -{"affiliated": ["agibsonccc", "Alex Black", "Adam Gibson", "nyghtowl", "raver119", "Melanie Warrick", "Samuel Audet", "jyt109", "ChrisN", "Josh Patterson", "sonaliii"], "overall": ["agibsonccc", "Alex Black", "Adam Gibson", "nyghtowl", "raver119", "Melanie Warrick", "Eron Wright", "fartovii", "Samuel Audet", "jyt109", "ChrisN", "Josh Patterson", "MJK", "Justin Long", "Suneel Marthi", "ejunprung", "sonaliii", "raver", "raver119@gmail.com", "Carsten Schnober", "Ayman Elkfrawy", "Benjamin", "turambar", "Linker Lin"]} \ No newline at end of file diff --git a/company-affiliation/geckodriver.log b/company-affiliation/geckodriver.log new file mode 100644 index 0000000..3089be8 --- /dev/null +++ b/company-affiliation/geckodriver.log @@ -0,0 +1,185 @@ +1494390694651 geckodriver INFO Listening on 127.0.0.1:46160 +1494390695632 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.wynlxkP6BPkv +1494390695633 geckodriver::marionette INFO Starting browser /usr/bin/firefox +1494390695636 geckodriver::marionette INFO Connecting to Marionette on localhost:34064 + +(firefox:8334): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed + +(firefox:8334): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed + +(firefox:8334): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed + +(firefox:8334): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed +1494390697952 Marionette INFO Listening on port 34064 + +(/usr/lib/firefox/firefox:8406): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed + +(/usr/lib/firefox/firefox:8406): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed + +(/usr/lib/firefox/firefox:8406): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed + +(/usr/lib/firefox/firefox:8406): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed +JavaScript error: https://static.licdn.com/sc/h/bfujzpfzk9bvfrwcnbea0qswy,bwkq2t7thanqo5lqys5wnoflj,8kp2w6rpcln18ko53h2318oog, line 2: SyntaxError: JSON.parse: unexpected character at line 1 column 2 of the JSON data +JavaScript error: https://static.licdn.com/sc/h/bfujzpfzk9bvfrwcnbea0qswy,bwkq2t7thanqo5lqys5wnoflj,8kp2w6rpcln18ko53h2318oog, line 2: SyntaxError: JSON.parse: unexpected character at line 1 column 2 of the JSON data +1494390702423 Marionette INFO New connections will no longer be accepted +[Child 8406] WARNING: pipe error (17): Connection reset by peer: file /build/firefox-FVkZSl/firefox-53.0+build6/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 346 +1494390728483 geckodriver INFO Listening on 127.0.0.1:51804 +1494390729483 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.eFGFImS5Jbls +1494390729483 geckodriver::marionette INFO Starting browser /usr/bin/firefox +1494390729488 geckodriver::marionette INFO Connecting to Marionette on localhost:45824 + +(firefox:8483): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed + +(firefox:8483): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed + +(firefox:8483): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed + +(firefox:8483): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed +1494390731672 Marionette INFO Listening on port 45824 + +(/usr/lib/firefox/firefox:8561): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed + +(/usr/lib/firefox/firefox:8561): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed + +(/usr/lib/firefox/firefox:8561): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed + +(/usr/lib/firefox/firefox:8561): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed +JavaScript error: https://static.licdn.com/sc/h/bfujzpfzk9bvfrwcnbea0qswy,bwkq2t7thanqo5lqys5wnoflj,8kp2w6rpcln18ko53h2318oog, line 2: SyntaxError: JSON.parse: unexpected character at line 1 column 2 of the JSON data +JavaScript error: https://static.licdn.com/sc/h/bfujzpfzk9bvfrwcnbea0qswy,bwkq2t7thanqo5lqys5wnoflj,8kp2w6rpcln18ko53h2318oog, line 2: SyntaxError: JSON.parse: unexpected character at line 1 column 2 of the JSON data +1494390735989 Marionette INFO New connections will no longer be accepted +[Child 8561] WARNING: pipe error (17): Connection reset by peer: file /build/firefox-FVkZSl/firefox-53.0+build6/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 346 +[Child 8561] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-FVkZSl/firefox-53.0+build6/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 346 +1494390759734 geckodriver INFO Listening on 127.0.0.1:56651 +1494390760734 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.zh7Ux4DR32Dx +1494390760734 geckodriver::marionette INFO Starting browser /usr/bin/firefox +1494390760736 geckodriver::marionette INFO Connecting to Marionette on localhost:36311 + +(firefox:8656): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed + +(firefox:8656): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed + +(firefox:8656): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed + +(firefox:8656): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed +1494390763014 Marionette INFO Listening on port 36311 + +(/usr/lib/firefox/firefox:8723): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed + +(/usr/lib/firefox/firefox:8723): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed + +(/usr/lib/firefox/firefox:8723): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed + +(/usr/lib/firefox/firefox:8723): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed +JavaScript error: https://static.licdn.com/sc/h/bfujzpfzk9bvfrwcnbea0qswy,bwkq2t7thanqo5lqys5wnoflj,8kp2w6rpcln18ko53h2318oog, line 2: SyntaxError: JSON.parse: unexpected character at line 1 column 2 of the JSON data +JavaScript error: https://static.licdn.com/sc/h/bfujzpfzk9bvfrwcnbea0qswy,bwkq2t7thanqo5lqys5wnoflj,8kp2w6rpcln18ko53h2318oog, line 2: SyntaxError: JSON.parse: unexpected character at line 1 column 2 of the JSON data +1494390767382 Marionette INFO New connections will no longer be accepted +[Child 8723] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-FVkZSl/firefox-53.0+build6/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 346 +1494390835098 geckodriver INFO Listening on 127.0.0.1:41369 +1494390836097 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.SR4h4IxuSpI9 +1494390836098 geckodriver::marionette INFO Starting browser /usr/bin/firefox +1494390836100 geckodriver::marionette INFO Connecting to Marionette on localhost:41125 + +(firefox:8822): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed + +(firefox:8822): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed + +(firefox:8822): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed + +(firefox:8822): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed +1494390838233 Marionette INFO Listening on port 41125 + +(/usr/lib/firefox/firefox:8889): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed + +(/usr/lib/firefox/firefox:8889): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed + +(/usr/lib/firefox/firefox:8889): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed + +(/usr/lib/firefox/firefox:8889): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed +JavaScript error: https://static.licdn.com/sc/h/bfujzpfzk9bvfrwcnbea0qswy,bwkq2t7thanqo5lqys5wnoflj,8kp2w6rpcln18ko53h2318oog, line 2: SyntaxError: JSON.parse: unexpected character at line 1 column 2 of the JSON data +1494390842027 Marionette INFO New connections will no longer be accepted +[Child 8889] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-FVkZSl/firefox-53.0+build6/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 346 +1494390978942 geckodriver INFO Listening on 127.0.0.1:44089 +1494390979940 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.lXSCbczzpVQL +1494390979940 geckodriver::marionette INFO Starting browser /usr/bin/firefox +1494390979943 geckodriver::marionette INFO Connecting to Marionette on localhost:34841 + +(firefox:9039): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed + +(firefox:9039): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed + +(firefox:9039): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed + +(firefox:9039): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed +1494390981759 Marionette INFO Listening on port 34841 + +(/usr/lib/firefox/firefox:9110): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed + +(/usr/lib/firefox/firefox:9110): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed + +(/usr/lib/firefox/firefox:9110): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed + +(/usr/lib/firefox/firefox:9110): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed +JavaScript error: https://static.licdn.com/sc/h/bfujzpfzk9bvfrwcnbea0qswy,bwkq2t7thanqo5lqys5wnoflj,8kp2w6rpcln18ko53h2318oog, line 2: SyntaxError: JSON.parse: unexpected character at line 1 column 2 of the JSON data +JavaScript error: https://static.licdn.com/sc/h/bfujzpfzk9bvfrwcnbea0qswy,bwkq2t7thanqo5lqys5wnoflj,8kp2w6rpcln18ko53h2318oog, line 2: SyntaxError: JSON.parse: unexpected character at line 1 column 2 of the JSON data +1494390985695 Marionette INFO New connections will no longer be accepted +[Child 9110] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-FVkZSl/firefox-53.0+build6/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 346 +1494391345903 geckodriver INFO Listening on 127.0.0.1:35193 +1494391346902 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.7HHPB4XF6fiK +1494391346902 geckodriver::marionette INFO Starting browser /usr/bin/firefox +1494391346904 geckodriver::marionette INFO Connecting to Marionette on localhost:44142 + +(firefox:9417): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed + +(firefox:9417): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed + +(firefox:9417): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed + +(firefox:9417): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed +1494391348709 Marionette INFO Listening on port 44142 + +(/usr/lib/firefox/firefox:9489): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed + +(/usr/lib/firefox/firefox:9489): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed + +(/usr/lib/firefox/firefox:9489): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed + +(/usr/lib/firefox/firefox:9489): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed +JavaScript error: https://static.licdn.com/sc/h/bfujzpfzk9bvfrwcnbea0qswy,bwkq2t7thanqo5lqys5wnoflj,8kp2w6rpcln18ko53h2318oog, line 2: SyntaxError: JSON.parse: unexpected character at line 1 column 2 of the JSON data +JavaScript error: https://static.licdn.com/sc/h/bfujzpfzk9bvfrwcnbea0qswy,bwkq2t7thanqo5lqys5wnoflj,8kp2w6rpcln18ko53h2318oog, line 2: SyntaxError: JSON.parse: unexpected character at line 1 column 2 of the JSON data +1494391352639 Marionette INFO New connections will no longer be accepted +[Child 9489] WARNING: pipe error (17): Connection reset by peer: file /build/firefox-FVkZSl/firefox-53.0+build6/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 346 + +###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv + +[Child 9489] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-FVkZSl/firefox-53.0+build6/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 346 + +###!!! [Child][MessageChannel] Error: (msgtype=0x880008,name=PLayerTransaction::Msg_ReleaseCompositable) Channel error: cannot send/recv + + +###!!! [Child][MessageChannel] Error: (msgtype=0x880007,name=PLayerTransaction::Msg_ReleaseLayer) Channel error: cannot send/recv + +1494394114740 geckodriver INFO Listening on 127.0.0.1:38903 +1494394115739 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.8go4hGVcewZd +1494394115739 geckodriver::marionette INFO Starting browser /usr/bin/firefox +1494394115745 geckodriver::marionette INFO Connecting to Marionette on localhost:42181 + +(firefox:10488): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed + +(firefox:10488): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed + +(firefox:10488): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed + +(firefox:10488): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed +1494394117832 Marionette INFO Listening on port 42181 + +(/usr/lib/firefox/firefox:10561): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed + +(/usr/lib/firefox/firefox:10561): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed + +(/usr/lib/firefox/firefox:10561): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed + +(/usr/lib/firefox/firefox:10561): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed +JavaScript error: https://static.licdn.com/sc/h/bfujzpfzk9bvfrwcnbea0qswy,bwkq2t7thanqo5lqys5wnoflj,8kp2w6rpcln18ko53h2318oog, line 2: SyntaxError: JSON.parse: unexpected character at line 1 column 2 of the JSON data +JavaScript error: https://static.licdn.com/sc/h/bfujzpfzk9bvfrwcnbea0qswy,bwkq2t7thanqo5lqys5wnoflj,8kp2w6rpcln18ko53h2318oog, line 2: SyntaxError: JSON.parse: unexpected character at line 1 column 2 of the JSON data +1494394121827 Marionette INFO New connections will no longer be accepted +[Child 10561] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-FVkZSl/firefox-53.0+build6/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 346 diff --git a/company-affiliation/readme.md b/company-affiliation/readme.md index 47c3e8d..2f324b1 100644 --- a/company-affiliation/readme.md +++ b/company-affiliation/readme.md @@ -3,18 +3,24 @@ Finding what contributors are affiliated with what company. ### Code -* get_linkedin_info.py +* affiliation_calculation.py -Grabs each of the commits from the API output (stored in files), and takes the commit author and scrapes the author's linkedin profile. Writes the results of the scraping to a file in "company-affiliation/resources/linkedin_info" that is specific to that commit author. Requires Selenium Webdriver and Firefox. +Contains a variety of helper functions that help us determine the percentage of top committers are affiliated with the organization that hosts the repository. -* company_affiliation.py +``` +$ cd ~/github-research/company-affiliation +$ python affiliation_calculation.py +Out of top 100 percent of deeplearning4j's committers, at least 6.92307692308 percent of them are affiliated with Skymind.io +Out of top 100 percent of Theano's committers, at least 13.539192399 percent of them are affiliated with Univ. of Montreal +Out of top 100 percent of caffe's committers, at least 1.0752688172 percent of them are affiliated with Berkeley Vision and Learning Center +Out of top 100 percent of CNTK's committers, at least 15.9090909091 percent of them are affiliated with Microsoft +Out of top 100 percent of tensorflow's committers, at least 8.75576036866 percent of them are affiliated with Google +``` -Goes through each commit from the API output and, using the commit author and the linkedin data generated from get_linkedin_info.py, finds the company or organization(s) the user was involved in at the time of the commit. Also generates a company that the user is affiliated with using the email domain. Writes a json for each repo, with the commit's sha mapped to the commit's author, email, timestamp, and list of companies/organizations, along with a flag that denotes how likely that company is to be the actual company the user is affiliated with. +* companyaffiliation.json +A large JSON file that contains the work histories we have of the Stack and ML repositories. -* getCrossovers.py +There's a small disclaimer: Most of the entries in this file is manually done, with some help from the getLinkedInInfo() function in affiliation_calculation.py. If you want to run this code on other repositories, you may have to add more entries -* obtain_remaining_linkedins.py - -* python_findtitle.py - -*arrayify.ipynb +* geckodriver.log +File needed to use the function getLinkedInInfo() in affiliation_calculation.py \ No newline at end of file diff --git a/company-affiliation/removing_duplicates.py b/company-affiliation/removing_duplicates.py deleted file mode 100644 index c97e77f..0000000 --- a/company-affiliation/removing_duplicates.py +++ /dev/null @@ -1,65 +0,0 @@ -# This Python file uses the following encoding: utf-8 - -# import os, sys - -from selenium.webdriver.common.desired_capabilities import DesiredCapabilities -firefox_capabilities = DesiredCapabilities.FIREFOX -firefox_capabilities['marionette'] = True -firefox_capabilities['binary'] = '/usr/bin/firefox' -from selenium import webdriver -from selenium.common.exceptions import NoSuchElementException -from selenium.webdriver.common.keys import Keys -from datetime import datetime, time -from pattern.web import * -from pattern.web import URL, extension, download -from sets import Set -import json -import re -DUP_DICT = {u"Frederic" : u"Frédéric Bastien", u"Frederic Bastien" : u"Frédéric Bastien", u"nouiz" : u"Frédéric Bastien", - u"lamblin" : u"Pascal Lamblin", - u"abergeron" : u"Arnaud Bergeron", - u"carriepl" : u"Pierre Luc Carrier", - u"Jon Long" : u"Jonathan L Long", u"longjon" : u"Jonathan L Long", - u"Sergio" : u"Sergio Guadarrama", - u"frankseide" : u"Frank Seide", - u"terrytangyuan" : u"Yuan (Terry) Tang", - u"caisq" : u"Shanqing Cai", - u"yifeif" : u"Yifei Feng", - u"Daniel W Mane" : u"Dan Mané", - u"soumith" : u"Soumith Chintala", - u"Nicholas Léonard" : u"Nicholas Leonard", u"nicholas-leonard" : u"Nicholas Leonard", - u"GeorgOstrovski" : u"Georg Ostrovski", - u"agibsonccc" : u"Adam Gibson", - u"raver" : u"raver119", u"raver119@gmail.com" : u"raver119", - u"nyghtowl" : u"Melanie Warrick", - u"jyt109" : u"Jeffrey Tang", - u"bergstrj@iro.umontreal.ca" :u"James Bergstra", u"bergstra@ip05.m" : u"James Bergstra" } - -PATHtoLinkedInJSONs = "/home/anne/github-research/company-affiliation/resources/linkedin_info/" -DEBUG = True -pending = [] -repos = ["CNTK", "Theano", "caffe", "deeplearning4j", "tensorflow"] - -for repo in repos: - print repo - json_file = "{}_frequentcommitters.json".format(repo) - with open(json_file, 'r') as data_file: - json_dict = json.load(data_file) - affiliated = json_dict["affiliated"] - overall = json_dict["overall"] - # Get keys of DUP_DICT - extra_names = DUP_DICT.keys() - for i in range(len(affiliated)): - name = affiliated[i] - if name in extra_names: - affiliated[i] = DUP_DICT[name] - for i in range(len(overall)): - name = overall[i] - if name in extra_names: - overall[i] = DUP_DICT[name] - new_affiliated = Set(affiliated) - new_overall = Set(overall) - final_json= {} - final_json["affiliated"] = list(new_affiliated) - final_json["overall"] = list(new_overall) - print "\nAt least {} people out of the top {} committers are affilaited with {}".format(len(final_json["affiliated"]), len(final_json["overall"]), repo) diff --git a/company-affiliation/tensorflow_frequentcommitters.json b/company-affiliation/tensorflow_frequentcommitters.json deleted file mode 100644 index ed6c23d..0000000 --- a/company-affiliation/tensorflow_frequentcommitters.json +++ /dev/null @@ -1 +0,0 @@ -{"affiliated": ["Vijay Vasudevan", "Illia Polosukhin", "Benoit Steiner", "Martin Wicke", "Derek Murray", "Shanqing Cai", "Eugene Brevdo", "terrytangyuan", "Dan Smilkov", "Manjunath Kudlur", "Geoffrey Irving", "Josh Levenberg", "Zongheng Yang", "Gunhan Gulsoy", "Pete Warden", "Andrew Harp", "Mustafa Ispir", "Charles Nicholson", "caisq", "Yifei Feng", "Jonathan Hseu", "Nikhil Thorat", "Yuan (Terry) Tang", "Patrick Nguyen", "Rohan Jain", "Asim Shankar", "Sukriti Ramesh", "Suharsh Sivakumar", "Daniel W Mane", "Xiaoqiang Zheng", "Renato Utsch", "Sherry Moore", "Ian Langmore", "Olivia Nordquist", "Andrew Selle", "Alexey Surkov", "Jianmin Chen", "Wei Ho", "David Soergel", "Justine Tunney", "Lukasz Kaiser", "Rasmus Munk Larsen", "Kiril Gorovoy", "Yutaka Leon", "Sergio Guadarrama", "Vinu Rajashekhar", "Yuefeng Zhou", "RJ Ryan", "Yaroslav Bulatov", "David Z. Chen", "yifeif", "Cassandra Xia", "Rasmus Larsen", "Maciek Chociej", "Phil Stahlfeld", "James Wexler", "Robin Nabel", "Damien Martin-Guillerez", "Joshua V. Dillon", "Stephan Hoyer", "Noah Fiedel", "Danijar Hafner", "Adria Puigdomenech"], "overall": ["A. Unique TensorFlower", "Vijay Vasudevan", "Illia Polosukhin", "Benoit Steiner", "Martin Wicke", "Derek Murray", "Shanqing Cai", "Eugene Brevdo", "terrytangyuan", "Dan Smilkov", "Dan Man\u00e9", "Manjunath Kudlur", "Geoffrey Irving", "Josh Levenberg", "Zongheng Yang", "Gunhan Gulsoy", "Pete Warden", "gunan", "Yuan Yu", "Andrew Harp", "Mustafa Ispir", "Charles Nicholson", "caisq", "Yifei Feng", "Vincent Vanhoucke", "Jonathan Hseu", "Nikhil Thorat", "Yuan (Terry) Tang", "Jan Prach", "Patrick Nguyen", "Rohan Jain", "Asim Shankar", "David G. Andersen", "Sukriti Ramesh", "Suharsh Sivakumar", "Daniel W Mane", "Xiaoqiang Zheng", "Renato Utsch", "Sherry Moore", "Ian Langmore", "Olivia Nordquist", "Wenjian Huang", "Andrew Selle", "Yun Peng", "Dongjoon Hyun", "Alexey Surkov", "Jianmin Chen", "Wei Ho", "David Soergel", "Nathan Silberman", "Justine Tunney", "Lukasz Kaiser", "Huazuo Gao", "luke iwanski", "Igor Babuschkin", "drpngx", "Siddharth Agrawal", "Jingtian Peng", "Sam Abrahams", "Rasmus Munk Larsen", "Kiril Gorovoy", "Yutaka Leon", "Sergio Guadarrama", "Vinu Rajashekhar", "Daniel Man\u00e9", "NORTHAMERICA\\vistepan", "Yuefeng Zhou", "Vu Pham", "RJ Ryan", "Yaroslav Bulatov", "David Z. Chen", "yifeif", "guschmue", "luke", "Johnny Lim", "Cassandra Xia", "zhengxq", "Rasmus Larsen", "Maciek Chociej", "amchercashin", "panmari", "Peter Hawkins", "Phil Stahlfeld", "zheng-xq", "James Wexler", "amcrae", "Robin Nabel", "Fabrizio Milo", "A. Rosenberg Johansen", "Fabrizio (Misto) Milo", "Kenton Lee", "Dr. Kashif Rasul", "Fred Bertsch", "tyfkda", "zhongzyd", "Dan Becker", "Adriano Carmezim", "thuyenvn", "Liangliang He", "Ziming Dong", "Damien Martin-Guillerez", "Joshua V. Dillon", "Jonas Rauber", "raix852", "Nikhil Mishra", "Frank Li", "SergejsRk", "jmtatsch", "Stephan Hoyer", "Ben Lee", "e3", "Sung Kim", "Noah Fiedel", "Alan Wu", "makseq-ubnt", "Alexander Rosenberg Johansen", "Danijar Hafner", "AidanGG", "Adria Puigdomenech", "Yuwen Yan"]} \ No newline at end of file