Last active
November 23, 2022 00:50
-
-
Save zehsilva/4e9965fd467a6ee119f0d651df4ff34e to your computer and use it in GitHub Desktop.
br_confs.ipynb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"cells": [ | |
{ | |
"cell_type": "markdown", | |
"metadata": { | |
"id": "view-in-github", | |
"colab_type": "text" | |
}, | |
"source": [ | |
"<a href=\"https://colab.research.google.com/gist/zehsilva/4e9965fd467a6ee119f0d651df4ff34e/br_confs.ipynb\" target=\"_parent\"><img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/></a>" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": null, | |
"metadata": { | |
"id": "gOHALr4-aYS1" | |
}, | |
"outputs": [], | |
"source": [ | |
"import pandas as pd\n", | |
"import requests\n", | |
"import itertools\n", | |
"import re\n", | |
"import enum\n", | |
"\n", | |
"# TODO:\n", | |
"# - Change the build_url to different formats for years <= 2020 (offset=1000 for each type)\n", | |
"# - Alternative version that looks into DBLP \n", | |
"\n", | |
"def build_url(conf,year,conf_type=0,limit=1000):\n", | |
" conf_type_str = \"\"\n", | |
" conf_site=\"\"\n", | |
" end_str=\"%2FConference%2F-%2FBlind_Submission\"\n", | |
" if conf_type==0:\n", | |
" conf_type_str= \"Poster\"\n", | |
" elif conf_type==1:\n", | |
" conf_type_str=\"Spotlight\"\n", | |
" if conf.lower()==\"uai\":\n", | |
" conf_type_str=\"Oral\"\n", | |
" elif conf_type==2:\n", | |
" conf_type_str=\"Oral\"\n", | |
" else:\n", | |
" conf_type_str=\"Oral\"\n", | |
" if conf.lower() == \"neurips_datasets\":\n", | |
" conf=\"NeurIPS\"\n", | |
" conf_type_str = \"Datasets+and+Benchmarks+\"\n", | |
" conf_site=f\"{conf}.cc\"\n", | |
" end_str=\"%2FTrack%2FDatasets_and_Benchmarks%2F-%2FSubmission\"\n", | |
" elif conf.lower() == \"neurips\":\n", | |
" conf=\"NeurIPS\"\n", | |
" conf_site=f\"{conf}.cc\"\n", | |
" if year==2022:\n", | |
" conf_type_str=\"Accept\"\n", | |
" elif conf.lower() == \"iclr\":\n", | |
" conf=\"ICLR\"\n", | |
" conf_site=f\"{conf}.cc\"\n", | |
" elif conf.lower() == \"uai\":\n", | |
" conf=\"UAI\"\n", | |
" conf_site=f\"auai.org%2F{conf}\"\n", | |
" elif conf.lower() == \"clear\":\n", | |
" conf=\"CLeaR\"\n", | |
" conf_site=f\"cclear.cc%2F{conf}\"\n", | |
" return f\"https://api.openreview.net/notes?content.venue={conf}+{year}+{conf_type_str}&details=replyCount&offset=0&limit={limit}&invitation={conf_site}%2F{year}{end_str}\"\n" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": null, | |
"metadata": { | |
"id": "DocmfMYAiXQI" | |
}, | |
"outputs": [], | |
"source": [ | |
"def get_papers_df(url):\n", | |
" print(f\"Getting notes from API using url {url}\")\n", | |
" result = requests.get(url).json()\n", | |
" df = dict()\n", | |
" count = 1\n", | |
" if 'count' in result:\n", | |
" count = result['count']\n", | |
" if \"notes\" in result:\n", | |
" df = pd.DataFrame(result['notes'])\n", | |
" if \"content\" in df:\n", | |
" df=pd.DataFrame(list(df['content']))\n", | |
" return df, count\n", | |
"\n", | |
"def get_author_data(author_id):\n", | |
" url=f\"https://api.openreview.net/profiles?id={author_id}\"\n", | |
" jsondata = requests.get(url).json()\n", | |
" if jsondata['count']>=1:\n", | |
" df = pd.DataFrame(jsondata['profiles'])\n", | |
" df=pd.DataFrame(list(df['content']))\n", | |
" return df\n", | |
" return {}\n", | |
"\n", | |
"def name_from_fields(names_field):\n", | |
" return f\"{names_field[0][0]['first']} {names_field[0][0]['middle']} {names_field[0][0]['last']}\"\n", | |
"\n", | |
"def test_br(author_id):\n", | |
" author_data=get_author_data(author_id)\n", | |
" str_data = \"\"\n", | |
" for key in ['preferredEmail', 'homepage', 'gscholar', 'emails', 'history','emailsConfirmed']:\n", | |
" if key in author_data:\n", | |
" str_data += str(author_data[[key]].to_dict()).lower()\n", | |
" #str_data = str(author_data[['preferredEmail', 'homepage', 'emails', 'history','emailsConfirmed']].to_dict()).lower()\n", | |
" #str_data = str(author_data[['preferredEmail', 'homepage', 'gscholar', 'emails', 'history','emailsConfirmed']].to_dict()).lower()\n", | |
" if (\".br,\" in str_data) or (\".br]\" in str_data) or (\".br'\" in str_data) or (\".br/\" in str_data) or (\"brazil\" in str_data) or (\"brasil\" in str_data) or (\"universidade\" in str_data):\n", | |
" return author_data\n", | |
" return None\n", | |
"\n", | |
"def test_nordic(author_id):\n", | |
" author_data=get_author_data(author_id)\n", | |
" str_data = \"\"\n", | |
" for key in ['preferredEmail', 'homepage', 'emails','emailsConfirmed']:\n", | |
" if key in author_data:\n", | |
" str_data += str(author_data[[key]].to_dict()).lower()\n", | |
" #str_data = str(author_data[['preferredEmail', 'homepage', 'emails', 'history','emailsConfirmed']].to_dict()).lower()\n", | |
" #str_data = str(author_data[['preferredEmail', 'homepage', 'gscholar', 'emails', 'history','emailsConfirmed']].to_dict()).lower()\n", | |
" patterns = [\"no\", \"fi\", \"se\", \"dk\"]\n", | |
" countries = [\"finland\", \"finnish\", \"sweden\", \"swedish\", \"norway\", \"norwegian\", \"denmark\", \"danish\", \"suomi\", \"suomen\", \"svenska\", \"sverige\", \"dansk\", \"danmark\", \"norges\", \"norge\", \"norsk\", \"universitet\", \"yliopisto\"]\n", | |
" if True in [((f\".{ending},\" in str_data) or (f\".{ending}]\" in str_data) or (f\".{ending}'\" in str_data) or (f\".{ending}/\" in str_data)) for ending in patterns]:\n", | |
" return author_data\n", | |
" #if True in [country in str_data for country in countries]:\n", | |
" # return author_data\n", | |
" return None\n", | |
"\n", | |
"def unique_authors(lst_lst):\n", | |
" if \"authorids\" in lst_lst:\n", | |
" return list(set(list(itertools.chain(*lst_lst['authorids'].to_list()))))\n", | |
" else:\n", | |
" return []\n", | |
"\n", | |
"def find_brazillians_conf(conf, year):\n", | |
" results=[]\n", | |
" data = dict()\n", | |
" for idx,venue_type in enumerate([\"poster\", \"oral\", \"spotlight\"]):\n", | |
" if (conf.lower() in [\"uai\",\"clear\"]) and venue_type == \"spotlight\":\n", | |
" continue\n", | |
" if (conf.lower() in [\"neurips_datasets\"]) and (venue_type in [\"spotlight\", \"oral\"]):\n", | |
" continue\n", | |
" data[venue_type], count=get_papers_df(build_url(conf,year,idx))\n", | |
" if count > 1000:\n", | |
" n_calls = count // 1000\n", | |
" offset = 0\n", | |
" init_url = build_url(conf,year,idx)\n", | |
" for i in range(n_calls):\n", | |
" offset+=1000\n", | |
" new_url=init_url.replace(\"offset=0\", f\"offset={offset}\")\n", | |
" new_df,_ = get_papers_df(new_url)\n", | |
" data[venue_type] = pd.concat([data[venue_type], new_df], axis=0, ignore_index=True)\n", | |
" for author in unique_authors(data[venue_type]):\n", | |
" try:\n", | |
" t = test_br(author)\n", | |
" if t is not None:\n", | |
" t_dict = t.to_dict()\n", | |
" t_dict['venue']=f\"{conf} {year} ({venue_type})\"\n", | |
" print(t_dict)\n", | |
" results.append(t.to_dict())\n", | |
" except:\n", | |
" pass\n", | |
" if conf.lower()==\"neurips\" and year==2022:\n", | |
" break\n", | |
" return results\n", | |
"\n", | |
"\n", | |
"def find_nordics_conf(conf, year):\n", | |
" results=[]\n", | |
" data = dict()\n", | |
" for idx,venue_type in enumerate([\"poster\", \"oral\", \"spotlight\"]):\n", | |
" if (conf.lower() in [\"uai\",\"clear\"]) and venue_type == \"spotlight\":\n", | |
" continue\n", | |
" if (conf.lower() in [\"neurips_datasets\"]) and (venue_type in [\"spotlight\", \"oral\"]):\n", | |
" continue\n", | |
" data[venue_type], count=get_papers_df(build_url(conf,year,idx))\n", | |
" for author in unique_authors(data[venue_type]):\n", | |
" try:\n", | |
" t = test_nordic(author)\n", | |
" if t is not None:\n", | |
" t_dict = t.to_dict()\n", | |
" t_dict['venue']=f\"{conf} {year} ({venue_type})\"\n", | |
" print(t_dict)\n", | |
"\n", | |
" results.append(t.to_dict())\n", | |
" except:\n", | |
" pass\n", | |
" if conf.lower()==\"neurips\" and year==2022:\n", | |
" break\n", | |
" return results\n" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": null, | |
"metadata": { | |
"id": "53p96nutSiwZ" | |
}, | |
"outputs": [], | |
"source": [ | |
"# get all papers\n", | |
"#poster=get_papers_df('https://api.openreview.net/notes?content.venue=NeurIPS+2021+Poster&details=replyCount&offset=0&limit=1000&invitation=NeurIPS.cc%2F2021%2FConference%2F-%2FBlind_Submission')\n", | |
"#oral=get_papers_df('https://api.openreview.net/notes?content.venue=NeurIPS+2021+Oral&details=replyCount&offset=0&limit=1000&invitation=NeurIPS.cc%2F2021%2FConference%2F-%2FBlind_Submission')\n", | |
"#spotlight=get_papers_df('https://api.openreview.net/notes?content.venue=NeurIPS+2021+Spotlight&details=replyCount&offset=0&limit=1000&invitation=NeurIPS.cc%2F2021%2FConference%d_Submission')\n", | |
"#spotlight=get_papers_df('https://api.openreview.net/notes?content.venue=NeurIPS+2021+Spotlight&details=replyCount&offset=0&limit=1000&invitation=NeurIPS.cc%2F2021%2FConference%2F-%2FBlind_Submission')\n" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": null, | |
"metadata": { | |
"id": "sNhgrlvVkE4u" | |
}, | |
"outputs": [], | |
"source": [ | |
"#author_id = unique_authors(poster.head(150))[110]\n", | |
"#author_data=get_author_data(author_id)\n", | |
"#str_data = str(author_data.to_dict()).lower()\n", | |
"#brs = []\n", | |
"#for author in unique_authors(poster):\n", | |
"# if test_name_br(author,2):\n", | |
"# t = get_author_data(author)\n", | |
"# print(dict(t))\n", | |
"# brs.append(t)" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"source": [ | |
"br_iclr_2022 = find_brazillians_conf(\"iclr\", 2022)" | |
], | |
"metadata": { | |
"id": "RrJaXCkfp3Vo" | |
}, | |
"execution_count": null, | |
"outputs": [] | |
}, | |
{ | |
"cell_type": "code", | |
"source": [ | |
"br_iclr_2021 = find_brazillians_conf(\"iclr\", 2021)" | |
], | |
"metadata": { | |
"id": "CYkdKv4h63e7" | |
}, | |
"execution_count": null, | |
"outputs": [] | |
}, | |
{ | |
"cell_type": "code", | |
"source": [ | |
"br_uai_2022 = find_brazillians_conf(\"uai\", 2022)" | |
], | |
"metadata": { | |
"id": "dKK3YDmN74nc" | |
}, | |
"execution_count": null, | |
"outputs": [] | |
}, | |
{ | |
"cell_type": "code", | |
"source": [ | |
"br_neurips_2021 = find_brazillians_conf(\"neurips\", 2021)" | |
], | |
"metadata": { | |
"id": "ngGdsUXP76qT" | |
}, | |
"execution_count": null, | |
"outputs": [] | |
}, | |
{ | |
"cell_type": "code", | |
"source": [ | |
"br_neurips_2022 = find_brazillians_conf(\"neurips\", 2022)" | |
], | |
"metadata": { | |
"id": "f7k6d8vSnT8x" | |
}, | |
"execution_count": null, | |
"outputs": [] | |
}, | |
{ | |
"cell_type": "code", | |
"source": [ | |
"br_neurips_2021 = find_brazillians_conf(\"neurips_datasets\", 2022)" | |
], | |
"metadata": { | |
"id": "uqEp8wjE79P0" | |
}, | |
"execution_count": null, | |
"outputs": [] | |
}, | |
{ | |
"cell_type": "code", | |
"source": [ | |
"br_clear_2021 = find_brazillians_conf(\"clear\", 2022)" | |
], | |
"metadata": { | |
"id": "rj6EDb2cG19q", | |
"colab": { | |
"base_uri": "https://localhost:8080/" | |
}, | |
"outputId": "f8beeaeb-2c53-4642-d29d-abd0bebdac23" | |
}, | |
"execution_count": null, | |
"outputs": [ | |
{ | |
"output_type": "stream", | |
"name": "stdout", | |
"text": [ | |
"Getting notes from API using url https://api.openreview.net/notes?content.venue=CLeaR+2022+Poster&details=replyCount&offset=0&limit=1000&invitation=cclear.cc%2FCLeaR%2F2022%2FConference%2F-%2FBlind_Submission\n", | |
"{'preferredEmail': {0: '****@ed.ac.uk'}, 'gender': {0: 'Male'}, 'homepage': {0: 'https://vios.science/team/sanchez'}, 'gscholar': {0: 'https://scholar.google.com/citations?user=KPchGe4AAAAJ&hl=en'}, 'linkedin': {0: 'https://linkedin.com/in/pedro-sanches-ppsg'}, 'orcid': {0: 'https://orcid.org/0000-0003-2435-3049'}, 'emails': {0: ['****@ed.ac.uk']}, 'names': {0: [{'first': 'Pedro', 'middle': '', 'last': 'Sanchez', 'preferred': True, 'username': '~Pedro_Sanchez1'}]}, 'history': {0: [{'position': 'PhD student', 'start': 2021, 'end': 2024, 'institution': {'domain': 'ed.ac.uk', 'name': 'University of Edinburgh, University of Edinburgh'}}, {'position': 'Undergrad student', 'start': 2014, 'end': 2021, 'institution': {'domain': 'unb.br', 'name': 'Universidade de Brasília'}}]}, 'relations': {0: [{'name': 'Sotirios Tsaftaris', 'email': '****@ed.ac.uk', 'relation': 'PhD Advisor', 'start': 2021, 'end': 2024, 'readers': ['everyone']}, {'name': 'Alison ONeil', 'email': '****@mre.medical.canon', 'relation': 'PhD Advisor', 'start': 2021, 'end': 2024, 'readers': ['everyone']}]}, 'expertise': {0: [{'keywords': ['Causality'], 'start': 2021, 'end': None}, {'keywords': ['Disentanglement'], 'start': 2021, 'end': None}, {'keywords': ['Medical Imaging'], 'start': 2017, 'end': None}]}, 'emailsConfirmed': {0: ['****@ed.ac.uk']}, 'venue': 'clear 2022 (poster)'}\n", | |
"Getting notes from API using url https://api.openreview.net/notes?content.venue=CLeaR+2022+Spotlight&details=replyCount&offset=0&limit=1000&invitation=cclear.cc%2FCLeaR%2F2022%2FConference%2F-%2FBlind_Submission\n" | |
] | |
} | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"source": [ | |
"# busca autores brasileiros na conferencias neurips, uai e iclr, nos anos 2021 e 2022\n", | |
"confs = [\"neurips\", \"uai\", \"iclr\"]\n", | |
"years = [2021, 2022]\n", | |
"res = dict()\n", | |
"for conf in confs:\n", | |
" for year in years:\n", | |
" res[(conf,year)] = find_brazillians_conf(conf,year)" | |
], | |
"metadata": { | |
"colab": { | |
"base_uri": "https://localhost:8080/" | |
}, | |
"id": "JeZPFl-o0rUT", | |
"outputId": "d5a9e576-df3b-4bda-80c6-399d35f8b4c7" | |
}, | |
"execution_count": null, | |
"outputs": [ | |
{ | |
"output_type": "stream", | |
"name": "stdout", | |
"text": [ | |
"Getting notes from API using url https://api.openreview.net/notes?content.venue=NeurIPS+2021+Poster&details=replyCount&offset=0&limit=1000&invitation=NeurIPS.cc%2F2021%2FConference%2F-%2FBlind_Submission\n", | |
"Getting notes from API using url https://api.openreview.net/notes?content.venue=NeurIPS+2021+Poster&details=replyCount&offset=1000&limit=1000&invitation=NeurIPS.cc%2F2021%2FConference%2F-%2FBlind_Submission\n", | |
"Getting notes from API using url https://api.openreview.net/notes?content.venue=NeurIPS+2021+Poster&details=replyCount&offset=2000&limit=1000&invitation=NeurIPS.cc%2F2021%2FConference%2F-%2FBlind_Submission\n", | |
"{'preferredEmail': {0: '****@gmail.com'}, 'gender': {0: 'Male'}, 'homepage': {0: 'https://cottascience.github.io/'}, 'gscholar': {0: 'https://scholar.google.com.br/citations?user=0GI4MyoAAAAJ&hl=en'}, 'dblp': {0: 'https://dblp.org/pid/183/1858.html'}, 'linkedin': {0: 'https://www.linkedin.com/in/cotta/'}, 'emails': {0: ['****@purdue.edu', '****@gmail.com', '****@purdue.edu']}, 'names': {0: [{'first': 'Leonardo', 'middle': '', 'last': 'Cotta', 'preferred': True, 'username': '~Leonardo_Cotta1'}]}, 'history': {0: [{'position': 'PhD student', 'start': 2017, 'end': None, 'institution': {'domain': 'purdue.edu', 'name': 'Purdue University'}}, {'position': 'Undergrad student', 'start': 2012, 'end': 2016, 'institution': {'domain': 'ufmg.br', 'name': 'Universidade Federal de Minas Gerais'}}]}, 'relations': {0: [{'name': 'Bruno Ribeiro', 'email': '****@cs.purdue.edu', 'relation': 'PhD Advisor', 'start': 2017, 'end': None, 'readers': ['everyone']}]}, 'expertise': {0: [{'keywords': ['deep learning', 'graphs', 'sets'], 'start': None, 'end': None}, {'keywords': ['mcmc', 'optimization', 'graphs'], 'start': None, 'end': None}]}, 'emailsConfirmed': {0: ['****@purdue.edu', '****@gmail.com', '****@purdue.edu']}, 'venue': 'neurips 2021 (poster)'}\n", | |
"{'preferredEmail': {0: '****@gmail.com'}, 'homepage': {0: 'http://www.cowhi.org'}, 'gscholar': {0: 'https://scholar.google.com/citations?user=XVfDYnAAAAAJ&hl=en&oi=ao'}, 'linkedin': {0: 'https://linkedin.com/in/rubenglatt'}, 'orcid': {0: 'https://orcid.org/0000-0002-4401-3810'}, 'gender': {0: 'Male'}, 'emails': {0: ['****@gmail.com', '****@llnl.gov', '****@usp.br']}, 'names': {0: [{'first': 'Ruben', 'middle': '', 'last': 'Glatt', 'preferred': True, 'username': '~Ruben_Glatt2'}]}, 'history': {0: [{'position': 'Staff Researcher', 'start': 2021, 'end': None, 'institution': {'domain': 'llnl.gov', 'name': 'Lawrence Livermore National Labs'}}, {'position': 'Postdoc', 'start': 2019, 'end': 2021, 'institution': {'domain': 'llnl.gov', 'name': 'Lawrence Livermore National Labs'}}, {'position': 'PhD student', 'start': 2015, 'end': 2019, 'institution': {'domain': 'usp.br', 'name': 'Universidade de Sao Paulo'}}, {'position': 'MS student', 'start': 2004, 'end': 2011, 'institution': {'domain': 'kit.edu', 'name': 'Karlsruhe Institute of Technology'}}]}, 'relations': {0: [{'name': 'Brenda Ng', 'email': '****@llnl.gov', 'relation': 'Postdoc Advisor', 'start': 2019, 'end': 2021, 'readers': ['everyone']}, {'name': 'Anna Helena Reali Costa', 'email': '****@usp.br', 'relation': 'PhD Advisor', 'start': 2015, 'end': 2019, 'readers': ['everyone']}]}, 'expertise': {0: [{'keywords': ['Multiagent Reinforcement Learning'], 'start': 2019, 'end': None}, {'keywords': ['Reinforcement Learning'], 'start': 2015, 'end': None}, {'keywords': ['Transfer Learning'], 'start': 2015, 'end': None}, {'keywords': ['Deep Learning'], 'start': 2014, 'end': None}]}, 'emailsConfirmed': {0: ['****@gmail.com', '****@llnl.gov']}, 'venue': 'neurips 2021 (poster)'}\n", | |
"{'preferredEmail': {0: '****@llnl.gov'}, 'gender': {0: 'Male'}, 'homepage': {0: 'https://people.llnl.gov/santiago10'}, 'emails': {0: ['****@llnl.gov', '****@llnl.gov']}, 'names': {0: [{'first': 'Claudio', 'middle': '', 'last': 'Santiago', 'username': '~Claudio_Santiago1', 'preferred': False}, {'first': 'Claudio', 'middle': 'Prata', 'last': 'Santiago', 'username': '~Claudio_Prata_Santiago1', 'preferred': False}, {'first': 'Claudio', 'middle': 'P.', 'last': 'Santiago', 'username': '~Claudio_P._Santiago1', 'preferred': True}]}, 'history': {0: [{'position': 'Lawrence Livermore National Laboratory', 'start': 2011, 'end': None, 'institution': {'domain': 'llnl.gov', 'name': 'Lawrence Livermore National Labs'}}, {'position': 'PhD student', 'start': 2003, 'end': 2009, 'institution': {'domain': 'gatech.edu', 'name': 'Georgia Institute of Technology'}}, {'position': 'MS student', 'start': 1998, 'end': 2001, 'institution': {'domain': 'ufrj.br', 'name': 'Federal University of Rio de Janeiro - UFRJ'}}]}, 'relations': {0: [{'name': 'Earl R. Barnes', 'email': '****@isye.gatech.edu', 'relation': 'PhD Advisor', 'start': 2007, 'end': 2009, 'readers': ['everyone']}, {'name': 'Nelson Maculan', 'email': '****@cos.ufrj.br', 'relation': 'MS Advisor', 'start': 1998, 'end': 2001, 'readers': ['everyone']}]}, 'expertise': {0: [{'keywords': ['Continuous optimization'], 'start': 1998, 'end': None}]}, 'emailsConfirmed': {0: ['****@llnl.gov', '****@llnl.gov']}, 'venue': 'neurips 2021 (poster)'}\n", | |
"{'preferredEmail': {0: '****@cern.ch'}, 'gender': {0: 'Male'}, 'homepage': {0: 'https://www.sprace.org.br/twiki/bin/view/Main/ThiagoRTomei'}, 'gscholar': {0: 'https://scholar.google.com/citations?user=Ud_lv6EAAAAJ'}, 'orcid': {0: 'https://orcid.org/0000-0002-1809-5226'}, 'emails': {0: ['****@cern.ch']}, 'names': {0: [{'first': 'Thiago', 'middle': 'R F P', 'last': 'Tomei', 'preferred': True, 'username': '~Thiago_R_F_P_Tomei1'}]}, 'history': {0: [{'position': 'Researcher', 'start': 2016, 'end': None, 'institution': {'domain': 'unesp.br', 'name': 'Universidade Estadual Paulista'}}, {'position': 'Postdoc', 'start': 2013, 'end': 2016, 'institution': {'domain': 'ift.unesp.br', 'name': 'Instituto de Física Teórica'}}, {'position': 'Postdoc', 'start': 2012, 'end': 2013, 'institution': {'domain': 'cern.ch', 'name': 'CERN'}}, {'position': 'PhD student', 'start': 2006, 'end': 2012, 'institution': {'domain': 'ift.unesp.br', 'name': 'Instituto de Física Teórica'}}]}, 'relations': {0: [{'name': 'Maurizio Pierini', 'email': '****@cern.ch', 'relation': 'Coauthor', 'start': None, 'end': None, 'readers': ['everyone']}, {'name': 'Maria Spiropulu', 'email': '****@caltech.edu', 'relation': 'PhD Advisor', 'start': 2006, 'end': 2012, 'readers': ['everyone']}, {'name': 'Sergio Novaes', 'email': '****@cern.ch', 'relation': 'PhD Advisor', 'start': 2006, 'end': 2012, 'readers': ['everyone']}]}, 'expertise': {0: [{'keywords': ['High Energy Physics'], 'start': None, 'end': None}]}, 'emailsConfirmed': {0: ['****@cern.ch']}, 'venue': 'neurips 2021 (poster)'}\n", | |
"{'dblp': {0: 'https://dblp.org/pid/54/8909'}, 'preferredEmail': {0: '****@amazon.com'}, 'gscholar': {0: 'https://scholar.google.de/citations?user=EFdp8UMAAAAJ&hl=en&oi=ao'}, 'gender': {0: 'Male'}, 'names': {0: [{'first': 'Tim', 'middle': '', 'last': 'Januschowski', 'username': '~Tim_Januschowski1', 'preferred': False}, {'first': 'Tim', 'middle': '', 'last': 'Januschowski', 'preferred': True, 'username': '~Tim_Januschowski2'}]}, 'emails': {0: ['****@amazon.com', '****@gmail.com']}, 'history': {0: [{'position': 'Researcher', 'start': 2013, 'end': 2021, 'institution': {'domain': 'amazon.com', 'name': 'Amazon'}}, {'position': 'Postdoc', 'start': 2010, 'end': 2010, 'institution': {'domain': 'tu-braunschweig.de', 'name': 'TU Braunschweig'}}, {'position': 'PhD student', 'start': 2007, 'end': 2010, 'institution': {'domain': 'ucc.ie', 'name': 'University College Cork'}}, {'position': 'MS student', 'start': 2003, 'end': 2007, 'institution': {'domain': 'tu-berlin.de', 'name': 'TU Berlin'}}, {'position': 'MS student', 'start': 2005, 'end': 2005, 'institution': {'domain': 'impa.br', 'name': 'IMPA'}}]}, 'expertise': {0: [{'keywords': ['Machine Learning'], 'start': None, 'end': None}, {'keywords': ['Probabilistic Machine Learning'], 'start': 2013, 'end': 2021}, {'keywords': ['Forecasting'], 'start': 2007, 'end': 2021}, {'keywords': ['Mathematical Programming'], 'start': 2005, 'end': 2021}]}, 'relations': {0: []}, 'emailsConfirmed': {0: ['****@amazon.com', '****@gmail.com']}, 'venue': 'neurips 2021 (poster)'}\n", | |
"{'dblp': {0: 'https://dblp.org/pid/183/6373'}, 'preferredEmail': {0: '****@gmail.com'}, 'gender': {0: 'Male'}, 'homepage': {0: 'https://www.rfsantacruz.com'}, 'gscholar': {0: 'https://scholar.google.com.au/citations?user=0O4FBMUAAAAJ&hl=en'}, 'orcid': {0: 'https://orcid.org/0000-0002-5273-7296'}, 'names': {0: [{'first': 'Rodrigo', 'middle': 'Santa', 'last': 'Cruz', 'username': '~Rodrigo_Santa_Cruz1', 'preferred': False}, {'first': 'Rodrigo', 'middle': '', 'last': 'Santa Cruz', 'username': '~Rodrigo_Santa_Cruz2', 'preferred': True}]}, 'emails': {0: ['****@gmail.com', '****@csiro.au', '****@anu.edu.au', '****@ecomp.upe.br']}, 'history': {0: [{'position': 'Postdoc', 'start': 2019, 'end': None, 'institution': {'domain': 'csiro.au', 'name': 'CSIRO'}}, {'position': 'PhD student', 'start': 2015, 'end': 2019, 'institution': {'domain': 'anu.edu.au', 'name': 'Australian National University'}}]}, 'expertise': {0: [{'keywords': ['Medical imaging processing', 'brain segmentation', 'cortical surface reconstruction'], 'start': None, 'end': None}, {'keywords': ['Visual recognition', 'object detection', 'action recognition', 'image classification', 'learning to rank', 'semantic segmentaiton'], 'start': None, 'end': None}, {'keywords': ['Deep Learning', 'self-supervised learning', 'compositional learning', 'unsupervised learning', 'zero-shot learning'], 'start': None, 'end': None}]}, 'relations': {0: [{'name': 'Olivier Salvado', 'email': '****@csiro.au', 'relation': 'Postdoc Advisor', 'start': 2019, 'end': None, 'readers': ['everyone']}, {'name': 'Leo Lebrat', 'email': '****@csiro.au', 'relation': 'Coauthor', 'start': 2019, 'end': None, 'readers': ['everyone']}, {'name': 'Stephen Gould', 'email': '****@anu.edu.au', 'relation': 'PhD Advisor', 'start': 2015, 'end': 2019, 'readers': ['everyone']}]}, 'emailsConfirmed': {0: ['****@gmail.com']}, 'venue': 'neurips 2021 (poster)'}\n", | |
"{'preferredEmail': {0: '****@gmail.com'}, 'gender': {0: 'Male'}, 'homepage': {0: 'https://thiagoserra.com/'}, 'gscholar': {0: 'https://scholar.google.com/citations?user=Wyk2Q9sAAAAJ&hl=en'}, 'dblp': {0: 'https://dblp.org/pid/119/6438'}, 'emails': {0: ['****@gmail.com', '****@bucknell.edu']}, 'history': {0: [{'position': 'Assistant Professor', 'start': 2019, 'end': None, 'institution': {'domain': 'bucknell.edu', 'name': 'Bucknell University'}}, {'position': 'Postdoc', 'start': 2018, 'end': 2019, 'institution': {'domain': 'merl.com', 'name': 'Mitsubishi Electric Research Labs'}}, {'position': 'PhD student', 'start': 2013, 'end': 2018, 'institution': {'domain': 'cmu.edu', 'name': 'Carnegie Mellon University'}}, {'position': 'Researcher', 'start': 2009, 'end': 2013, 'institution': {'domain': 'petrobras.com.br', 'name': 'Petrobras'}}, {'position': 'MS student', 'start': 2009, 'end': 2012, 'institution': {'domain': 'usp.br', 'name': 'University of Sao Paulo'}}, {'position': 'Undergrad student', 'start': 2003, 'end': 2008, 'institution': {'domain': 'unicamp.br', 'name': 'University of Campinas'}}]}, 'relations': {0: [{'start': None, 'end': None, 'email': '****@andrew.cmu.edu', 'name': 'John Hooker', 'relation': 'PhD Advisor'}, {'start': None, 'end': None, 'email': '****@andrew.cmu.edu', 'name': 'Egon Balas', 'relation': 'PhD Advisor'}, {'start': None, 'end': None, 'email': '****@polymtl.ca', 'name': 'Andrea Lodi', 'relation': 'PhD Advisor'}]}, 'names': {0: [{'preferred': False, 'first': 'Thiago', 'middle': '', 'last': 'Serra', 'username': '~Thiago_Serra1'}]}, 'emailsConfirmed': {0: ['****@gmail.com', '****@bucknell.edu']}, 'venue': 'neurips 2021 (poster)'}\n", | |
"{'preferredEmail': {0: '****@gmail.com'}, 'gender': {0: 'Male'}, 'gscholar': {0: 'https://scholar.google.com/citations?user=86t4YwYAAAAJ'}, 'emails': {0: ['****@gmail.com']}, 'names': {0: [{'first': 'Rodrigo', 'middle': '', 'last': 'Alves', 'preferred': True, 'username': '~Rodrigo_Alves1'}]}, 'history': {0: [{'position': 'PhD student', 'start': 2018, 'end': None, 'institution': {'domain': 'uni-kl.de', 'name': 'TU Kaiserslautern'}}, {'position': 'Lecturer', 'start': 2014, 'end': None, 'institution': {'domain': 'cefetmg.br', 'name': 'CEFETMG'}}]}, 'relations': {0: [{'name': 'Marius Kloft', 'email': '****@cs.uni-kl.de', 'relation': 'PhD Advisor', 'start': 2018, 'end': None, 'readers': ['everyone']}, {'name': 'Antoine Ledent', 'email': '****@cs.uni-kl.de', 'relation': 'Coauthor', 'start': 2018, 'end': None, 'readers': ['everyone']}, {'name': 'Renato Assuncao', 'email': '****@dcc.ufmg.br', 'relation': 'Coauthor', 'start': 2014, 'end': None, 'readers': ['everyone']}, {'name': 'Pedro Olmo Vaz de Melo', 'email': '****@dcc.ufmg.br', 'relation': 'Coauthor', 'start': 2014, 'end': None, 'readers': ['everyone']}]}, 'expertise': {0: [{'keywords': ['Machine Learning'], 'start': 2014, 'end': None}]}, 'emailsConfirmed': {0: ['****@gmail.com']}, 'venue': 'neurips 2021 (poster)'}\n", | |
"{'preferredEmail': {0: '****@cern.ch'}, 'orcid': {0: 'https://orcid.org/0000-0003-4232-4743'}, 'emails': {0: ['****@cern.ch']}, 'names': {0: [{'first': 'Breno', 'middle': '', 'last': 'Orzari', 'preferred': True, 'username': '~Breno_Orzari1'}]}, 'history': {0: [{'position': 'PhD student', 'start': 2020, 'end': None, 'institution': {'domain': 'unesp.br', 'name': 'Institute of Theoretical Physics - UNESP'}}, {'position': 'MS student', 'start': 2018, 'end': 2020, 'institution': {'domain': 'unesp.br', 'name': 'Institute of Theoretical Physics - UNESP'}}, {'position': 'Research Intern', 'start': 2019, 'end': 2019, 'institution': {'domain': 'cern.ch', 'name': 'CERN'}}, {'position': 'Undergrad student', 'start': 2014, 'end': 2017, 'institution': {'domain': 'unesp.br', 'name': 'Institute of Geosciences and Exact Sciences - UNESP'}}]}, 'relations': {0: [{'name': 'Thiago Tomei', 'email': '****@cern.ch', 'relation': 'PhD Advisor', 'start': 2020, 'end': None, 'readers': ['everyone']}, {'name': 'Maurizio Pierini', 'email': '****@cern.ch', 'relation': 'Research Internship Advisor', 'start': 2019, 'end': 2019, 'readers': ['everyone']}]}, 'expertise': {0: [{'keywords': ['deep learning', 'generative models', 'ML applications in physics'], 'start': 2019, 'end': None}]}, 'emailsConfirmed': {0: ['****@cern.ch']}, 'venue': 'neurips 2021 (poster)'}\n", | |
"{'preferredEmail': {0: '****@ttic.edu'}, 'gender': {0: 'Male'}, 'homepage': {0: 'https://ttic.uchicago.edu/~savarese/'}, 'emails': {0: ['****@ttic.edu', '****@uchicago.edu']}, 'names': {0: [{'first': 'Pedro Henrique', 'middle': '', 'last': 'Pamplona Savarese', 'preferred': True, 'username': '~Pedro_Henrique_Pamplona_Savarese1'}]}, 'history': {0: [{'position': 'PhD student', 'start': 2017, 'end': None, 'institution': {'domain': 'ttic.edu', 'name': 'Toyota Technological Institute at Chicago'}}, {'position': 'PhD student', 'start': 2016, 'end': 2017, 'institution': {'domain': 'ufrj.br', 'name': 'Federal University of Rio de Janeiro - UFRJ'}}, {'position': 'MS student', 'start': 2014, 'end': 2016, 'institution': {'domain': 'columbia.edu', 'name': 'Columbia University'}}, {'position': 'Undergrad student', 'start': 2009, 'end': 2016, 'institution': {'domain': 'ufrj.br', 'name': 'Federal University of Rio de Janeiro - UFRJ'}}]}, 'relations': {0: [{'name': 'David McAllester', 'email': '****@ttic.edu', 'relation': 'PhD Advisor', 'start': 2019, 'end': None}, {'name': 'Michael Maire', 'email': '****@uchicago.edu', 'relation': 'PhD Advisor', 'start': 2019, 'end': None}, {'name': 'Hugo Silva', 'email': '****@ualberta.ca', 'relation': 'Coauthor', 'start': 2018, 'end': None}, {'name': 'Nathan Srebro', 'email': '****@ttic.edu', 'relation': 'Coauthor', 'start': 2017, 'end': None}, {'name': 'Bruno Ribeiro', 'email': '****@cs.purdue.edu', 'relation': 'Coauthor', 'start': 2016, 'end': 2017}, {'name': 'Daniel Ratton', 'email': '****@land.ufrj.br', 'relation': 'Coauthor', 'start': 2016, 'end': 2017}]}, 'expertise': {0: [{'keywords': ['deep learning', 'machine learning'], 'start': 2014, 'end': None}]}, 'emailsConfirmed': {0: ['****@ttic.edu', '****@uchicago.edu']}, 'venue': 'neurips 2021 (poster)'}\n", | |
"{'preferredEmail': {0: '****@google.com'}, 'dblp': {0: 'https://dblp.org/pid/175/1420'}, 'gscholar': {0: 'https://scholar.google.pt/citations?user=JwiByPoAAAAJ&hl=en'}, 'orcid': {0: 'https://orcid.org/0000-0002-6684-8712'}, 'semanticScholar': {0: 'https://www.semanticscholar.org/author/Zita-Marinho/2566656'}, 'emails': {0: ['****@cmu.edu', '****@gmail.com', '****@google.com']}, 'history': {0: [{'position': 'Researcher', 'start': 2020, 'end': None, 'institution': {'domain': 'deepmind.com', 'name': 'DeepMind'}}, {'position': 'Principal Researcher', 'start': 2018, 'end': 2020, 'institution': {'domain': 'priberam.com', 'name': 'Priberam Labs'}}, {'position': 'PhD student', 'start': 2012, 'end': 2018, 'institution': {'domain': 'cs.cmu.edu', 'name': 'School of Computer Science, Carnegie Mellon University'}}, {'position': 'MS student', 'start': 2005, 'end': 2010, 'institution': {'domain': 'tecnico.ulisboa.pt', 'name': 'Instituto Superior Tecnico, Universidade de Lisboa'}}]}, 'relations': {0: [{'name': 'Geoffrey J. Gordon', 'email': '****@cs.cmu.edu', 'relation': 'PhD Advisor', 'start': 2012, 'end': 2018, 'readers': ['everyone']}, {'name': 'Siddhartha Srinivasa', 'email': '****@cs.cmu.edu', 'relation': 'PhD Advisor', 'start': 2012, 'end': 2018, 'readers': ['everyone']}, {'name': 'Andre F. T. Martins', 'email': '****@unbabel.com', 'relation': 'PhD Advisor', 'start': 2012, 'end': 2018, 'readers': ['everyone']}]}, 'expertise': {0: [{'keywords': ['Reinforcement Learning'], 'start': 2015, 'end': None}, {'end': None, 'start': 2012, 'keywords': ['Machine Learning']}, {'start': 2016, 'end': 2017, 'keywords': ['RNNs']}, {'start': 2012, 'end': 2017, 'keywords': ['Predictive State Representations']}, {'start': 2012, 'end': 2017, 'keywords': ['Method of moments']}, {'start': 2012, 'end': 2016, 'keywords': ['Trajectory Optimization']}]}, 'names': {0: [{'preferred': False, 'first': 'Zita', 'middle': '', 'last': 'Marinho', 'username': '~Zita_Marinho1'}]}, 'emailsConfirmed': {0: ['****@cmu.edu', '****@gmail.com', '****@google.com']}, 'venue': 'neurips 2021 (poster)'}\n", | |
"{'preferredEmail': {0: '****@dcc.ufmg.br'}, 'gender': {0: 'Male'}, 'dblp': {0: 'https://dblp.org/pid/92/7785'}, 'homepage': {0: 'https://www.dcc.ufmg.br/~erickson'}, 'gscholar': {0: 'https://scholar.google.com.br/citations?user=GTWCJkQAAAAJ&hl=en'}, 'orcid': {0: 'https://orcid.org/0000-0003-2973-2232'}, 'linkedin': {0: 'https://www.linkedin.com/in/erickson-nascimento/'}, 'semanticScholar': {0: 'https://www.semanticscholar.org/author/Erickson-R.-Nascimento/2310152'}, 'emails': {0: ['****@dcc.ufmg.br']}, 'history': {0: [{'position': 'Researcher', 'start': 2022, 'end': None, 'institution': {'domain': 'microsoft.com', 'name': 'Microsoft'}}, {'position': 'Associate Professor', 'start': 2012, 'end': None, 'institution': {'domain': 'ufmg.br', 'name': 'Universidade Federal de Minas Gerais'}}, {'position': 'Visiting Researcher', 'start': 2017, 'end': 2018, 'institution': {'domain': 'eecs.berkeley.edu', 'name': 'Electrical Engineering & Computer Science Department, University of California Berkeley'}}]}, 'names': {0: [{'preferred': False, 'middle': 'Rangel', 'first': 'Erickson', 'last': 'Nascimento', 'username': '~Erickson_Rangel_Nascimento1'}, {'first': 'Erickson', 'middle': 'Rangel do', 'last': 'Nascimento', 'username': '~Erickson_Rangel_do_Nascimento1', 'preferred': False}, {'first': 'Erickson', 'middle': '', 'last': 'Nascimento', 'username': '~Erickson_Nascimento1', 'preferred': False}, {'first': 'Erickson', 'middle': 'R.', 'last': 'Nascimento', 'preferred': True, 'username': '~Erickson_R._Nascimento1'}, {'first': 'Erickson', 'middle': 'R. do', 'last': 'Nascimento', 'username': '~Erickson_R._do_Nascimento1', 'preferred': False}]}, 'relations': {0: [{'name': 'Ruzena Bajcsy', 'email': '****@eecs.berkeley.edu', 'relation': 'Postdoc Advisor', 'start': 2017, 'end': 2018, 'readers': ['everyone']}, {'name': 'Zicheng Liu', 'email': '****@microsoft.com', 'relation': 'Coauthor', 'start': 2011, 'end': 2014, 'readers': ['everyone']}]}, 'expertise': {0: [{'keywords': ['computer vision', 'egocentric videos', 'video processing', 'underwater vision'], 'start': None, 'end': None}, {'keywords': ['keypoint descriptors', 'keypoint detection', 'multi-modal video processing'], 'start': None, 'end': None}]}, 'emailsConfirmed': {0: ['****@dcc.ufmg.br']}, 'venue': 'neurips 2021 (poster)'}\n", | |
"{'dblp': {0: 'https://dblp.org/pid/75/3139'}, 'preferredEmail': {0: '****@gmail.com'}, 'gender': {0: 'Male'}, 'homepage': {0: 'https://people.cs.umass.edu/~bsilva/'}, 'gscholar': {0: 'https://scholar.google.com/citations?user=eskJDVUAAAAJ&hl=en'}, 'names': {0: [{'first': 'Bruno', 'middle': 'Castro da', 'last': 'Silva', 'username': '~Bruno_Castro_da_Silva1', 'preferred': False}]}, 'emails': {0: ['****@gmail.com', '****@cs.umass.edu', '****@inf.ufrgs.br']}, 'history': {0: [{'position': 'Assistant Professor', 'start': 2021, 'end': None, 'institution': {'domain': 'umass.edu', 'name': 'University of Massachusetts, Amherst'}}, {'position': 'Assistant Professor', 'start': 2021, 'end': None, 'institution': {'domain': 'umass.edu', 'name': 'University of Massachusetts, Amherst'}}, {'position': 'Associate Professor', 'start': 2015, 'end': 2021, 'institution': {'domain': 'ufrgs.br', 'name': 'Federal University of Rio Grande do Sul'}}, {'position': 'Postdoc', 'start': 2014, 'end': 2015, 'institution': {'domain': 'mit.edu', 'name': 'Massachusetts Institute of Technology'}}, {'position': 'PhD student', 'start': 2007, 'end': 2014, 'institution': {'domain': 'umass.edu', 'name': 'University of Massachusetts, Amherst'}}]}, 'relations': {0: [{'name': 'Philip S. Thomas', 'email': '****@cs.umass.edu', 'relation': 'Coauthor', 'start': 2007, 'end': None}, {'name': 'Jonathan How', 'email': '****@mit.edu', 'relation': 'Postdoc Advisor', 'start': 2014, 'end': 2015}, {'name': 'Andrew G. Barto', 'email': '****@cs.umass.edu', 'relation': 'PhD Advisor', 'start': 2007, 'end': 2014}]}, 'expertise': {0: [{'keywords': ['Robotics'], 'start': 2007, 'end': None}, {'keywords': ['Reinforcement Learning'], 'start': 2004, 'end': None}]}, 'emailsConfirmed': {0: ['****@gmail.com', '****@cs.umass.edu', '****@inf.ufrgs.br']}, 'venue': 'neurips 2021 (poster)'}\n", | |
"{'preferredEmail': {0: '****@gmail.com'}, 'gender': {0: 'Male'}, 'gscholar': {0: 'https://scholar.google.com/citations?user=bs2yAMUAAAAJ&hl=en'}, 'homepage': {0: 'https://renatojmsdh.github.io/'}, 'dblp': {0: 'https://dblp.org/pid/164/8301'}, 'orcid': {0: 'https://orcid.org/0000-0003-0053-0004'}, 'emails': {0: ['****@inria.fr', '****@dcc.ufmg.br', '****@gmail.com', '****@u-bourgogne.fr']}, 'names': {0: [{'first': 'Renato', 'middle': '', 'last': 'Martins', 'preferred': True, 'username': '~Renato_Martins1'}, {'first': 'Renato', 'middle': 'Jose', 'last': 'Martins', 'preferred': False, 'username': '~Renato_Jose_Martins1'}, {'first': 'Renato', 'middle': 'J.', 'last': 'Martins', 'preferred': False, 'username': '~Renato_J._Martins1'}]}, 'history': {0: [{'position': 'Associate Professor', 'start': 2021, 'end': None, 'institution': {'domain': 'u-bourgogne.fr', 'name': 'Université de Bourgogne'}}, {'position': 'Postdoc', 'start': 2019, 'end': 2021, 'institution': {'domain': 'inria.fr', 'name': 'INRIA Sophia Antipolis '}}, {'position': 'Postdoc', 'start': 2018, 'end': 2019, 'institution': {'domain': 'ufmg.br', 'name': 'Universidade Federal de Minas Gerais'}}, {'position': 'PhD student', 'start': 2013, 'end': 2017, 'institution': {'domain': 'mines-paristech.fr', 'name': 'Ecole des Mines de Paris - PSL/INRIA Sophia Antipolis'}}]}, 'relations': {0: [{'relation': 'Postdoc Advisor', 'name': 'Erickson R. Nascimento', 'email': '****@dcc.ufmg.br', 'start': 2018, 'end': 2019, 'readers': ['everyone']}, {'relation': 'PhD Advisor', 'name': 'Patrick Rives', 'email': '****@inria.fr', 'start': 2013, 'end': 2017, 'readers': ['everyone']}]}, 'expertise': {0: [{'keywords': ['Image descriptors'], 'start': None, 'end': None}, {'keywords': ['Multi-modal vision'], 'start': '', 'end': None}, {'keywords': ['Representation learning'], 'start': '', 'end': None}, {'keywords': ['Human motion analysis'], 'start': '', 'end': None}]}, 'emailsConfirmed': {0: ['****@inria.fr', '****@dcc.ufmg.br', '****@gmail.com', '****@u-bourgogne.fr']}, 'venue': 'neurips 2021 (poster)'}\n", | |
"{'preferredEmail': {0: '****@gmail.com'}, 'gender': {0: 'Male'}, 'orcid': {0: 'https://orcid.org/0000-0003-2577-2886'}, 'gscholar': {0: 'https://scholar.google.com/citations?user=kWJdwIkAAAAJ&hl=en&oi=ao'}, 'dblp': {0: 'https://dblp.org/pid/192/6464'}, 'emails': {0: ['****@gmail.com', '****@dcc.ufmg.br', '****@inventvision.com.br']}, 'names': {0: [{'first': 'Guilherme', 'middle': '', 'last': 'Potje', 'preferred': True, 'username': '~Guilherme_Potje1'}, {'first': 'Guilherme', 'middle': 'A.', 'last': 'Potje', 'preferred': False, 'username': '~Guilherme_A._Potje1'}]}, 'history': {0: [{'position': 'PhD student', 'start': 2018, 'end': None, 'institution': {'domain': 'dcc.ufmg.br', 'name': 'Universidade Federal de Minas Gerais, Universidade Federal de Minas Gerais'}}]}, 'relations': {0: [{'relation': 'Coauthor', 'name': 'Andre Araujo', 'email': '****@google.com', 'start': 2022, 'end': None, 'readers': ['everyone']}, {'relation': 'PhD Advisor', 'name': 'Renato Martins', 'email': '****@inria.fr', 'start': 2018, 'end': None, 'readers': ['NeurIPS.cc/2021/Conference/Program_Chairs', 'everyone']}, {'relation': 'Coauthor', 'name': 'Felipe Cadar', 'email': '****@dcc.ufmg.br', 'start': 2018, 'end': None, 'readers': ['NeurIPS.cc/2021/Conference/Program_Chairs', 'everyone']}, {'relation': 'PhD Advisor', 'name': 'Erickson R. Nascimento', 'email': '****@dcc.ufmg.br', 'start': 2014, 'end': None, 'readers': ['NeurIPS.cc/2021/Conference/Program_Chairs', 'everyone']}]}, 'expertise': {0: [{'keywords': ['Computer Vision'], 'start': None, 'end': None}, {'keywords': ['Image Matching'], 'start': None, 'end': None}, {'keywords': ['3D Reconstruction'], 'start': None, 'end': None}]}, 'emailsConfirmed': {0: ['****@gmail.com', '****@dcc.ufmg.br', '****@inventvision.com.br']}, 'venue': 'neurips 2021 (poster)'}\n", | |
"{'dblp': {0: 'https://dblp.org/pid/209/9905'}, 'preferredEmail': {0: '****@google.com'}, 'gender': {0: 'Male'}, 'orcid': {0: 'https://orcid.org/0000-0003-1707-5984'}, 'gscholar': {0: 'https://scholar.google.com.br/citations?hl=pt-BR&view_op=list_works&gmla=AJsN-F4Uu9c6X1Mg5CrN3yPL4khN2gtW0fOfDz9hcUrPqCnu5j-QTWs4YqeNk2NOT6OQiPQ5K_VRHMxb0_WJPbCqSwPlo6iSke-RvTD43uBmsRBRQIsxhG8&user=2SiR088AAAAJ'}, 'linkedin': {0: 'https://www.linkedin.com/in/eucadar/'}, 'semanticScholar': {0: 'https://www.semanticscholar.org/author/Felipe-C.-Chamone/29995743'}, 'names': {0: [{'first': 'Felipe', 'middle': 'C.', 'last': 'Chamone', 'username': '~Felipe_C._Chamone1', 'preferred': False}, {'first': 'FELIPE', 'middle': 'CADAR', 'last': 'CHAMONE', 'username': '~FELIPE_CADAR_CHAMONE1', 'preferred': False}, {'first': 'Felipe', 'middle': '', 'last': 'Cadar', 'username': '~Felipe_Cadar1', 'preferred': True}]}, 'emails': {0: ['****@dcc.ufmg.br', '****@gmail.com', '****@google.com']}, 'history': {0: [{'position': 'PhD student', 'start': 2021, 'end': None, 'institution': {'domain': 'ufmg.br', 'name': 'Universidade Federal de Minas Gerais, Universidade Federal de Minas Gerais'}}, {'position': 'Undergrad student', 'start': 2016, 'end': 2021, 'institution': {'domain': 'ufmg.br', 'name': 'Universidade Federal de Minas Gerais'}}]}, 'relations': {0: [{'relation': 'PhD Advisor', 'name': 'Erickson Rangel Nascimento', 'email': '****@dcc.ufmg.br', 'start': 2021, 'end': None, 'readers': ['everyone']}, {'relation': 'PhD Advisor', 'name': 'Renato Martins', 'email': '****@u-bourgogne.fr', 'start': 2021, 'end': None, 'readers': ['everyone']}]}, 'expertise': {0: [{'keywords': ['deep learning'], 'start': '', 'end': None}, {'keywords': ['local features'], 'start': 2017, 'end': None}]}, 'emailsConfirmed': {0: ['****@dcc.ufmg.br', '****@gmail.com', '****@google.com']}, 'venue': 'neurips 2021 (poster)'}\n", | |
"{'preferredEmail': {0: '****@stanford.edu'}, 'gender': {0: 'Male'}, 'homepage': {0: 'https://gpoesia.com'}, 'gscholar': {0: 'https://scholar.google.com/citations?user=as5iYn4AAAAJ&hl=pt-BR'}, 'dblp': {0: 'https://dblp.org/pid/150/2695.html'}, 'emails': {0: ['****@stanford.edu']}, 'names': {0: [{'first': 'Gabriel', 'middle': '', 'last': 'Poesia', 'preferred': True, 'username': '~Gabriel_Poesia1'}]}, 'history': {0: [{'position': 'PhD student', 'start': 2019, 'end': None, 'institution': {'domain': 'stanford.edu', 'name': 'Stanford University'}}, {'position': 'MS student', 'start': 2015, 'end': 2017, 'institution': {'domain': 'ufmg.br', 'name': 'Universidade Federal de Minas Gerais'}}, {'position': 'Undergrad student', 'start': 2011, 'end': 2015, 'institution': {'domain': 'ufmg.br', 'name': 'Universidade Federal de Minas Gerais'}}]}, 'relations': {0: [{'name': 'Noah Goodman', 'email': '****@stanford.edu', 'relation': 'PhD Advisor', 'start': 2019, 'end': 2025, 'readers': ['everyone']}, {'name': 'Fernando Magno', 'email': '****@ufmg.br', 'relation': 'Coauthor', 'start': 2015, 'end': 2017, 'readers': ['everyone']}]}, 'expertise': {0: [{'keywords': ['artificial intelligence'], 'start': 2018, 'end': None}, {'keywords': ['program synthesis'], 'start': 2015, 'end': None}]}, 'emailsConfirmed': {0: ['****@stanford.edu']}, 'venue': 'neurips 2021 (poster)'}\n", | |
"{'preferredEmail': {0: '****@tri.global'}, 'gender': {0: 'Male'}, 'gscholar': {0: 'https://scholar.google.com/citations?user=UH9tP6QAAAAJ&hl=en'}, 'linkedin': {0: 'https://www.linkedin.com/in/vitorguizilini/'}, 'emails': {0: ['****@tri.global']}, 'names': {0: [{'first': 'Vitor', 'middle': '', 'last': 'Campagnolo Guizilini', 'preferred': True, 'username': '~Vitor_Campagnolo_Guizilini2'}]}, 'history': {0: [{'position': 'Senior Research Scientist', 'start': 2018, 'end': None, 'institution': {'domain': 'tri.global', 'name': 'Toyota Research Institute'}}, {'position': 'PhD', 'start': 2010, 'end': 2015, 'institution': {'domain': 'sydney.edu.au', 'name': 'University of Sydney'}}, {'position': 'MS student', 'start': 2005, 'end': 2009, 'institution': {'domain': 'usp.br', 'name': 'Universidade de Sao Paulo'}}]}, 'relations': {0: []}, 'emailsConfirmed': {0: ['****@tri.global']}, 'venue': 'neurips 2021 (poster)'}\n", | |
"Getting notes from API using url https://api.openreview.net/notes?content.venue=NeurIPS+2021+Spotlight&details=replyCount&offset=0&limit=1000&invitation=NeurIPS.cc%2F2021%2FConference%2F-%2FBlind_Submission\n", | |
"{'preferredEmail': {0: '****@kcl.ac.uk'}, 'gender': {0: 'Male'}, 'gscholar': {0: 'https://scholar.google.com/citations?user=Lls7QvUAAAAJ'}, 'orcid': {0: 'https://orcid.org/0000-0002-9258-2436'}, 'emails': {0: ['****@kcl.ac.uk', '****@gmail.com']}, 'names': {0: [{'first': 'Gabriele', 'middle': '', 'last': 'Sicuro', 'preferred': True, 'username': '~Gabriele_Sicuro1'}]}, 'history': {0: [{'position': 'Lecturer', 'start': 2021, 'end': None, 'institution': {'domain': 'kcl.ac.uk', 'name': \"King's College London\"}}, {'position': 'Postdoc', 'start': 2020, 'end': 2020, 'institution': {'domain': 'ens.fr', 'name': 'Ecole Normale Superieure Paris'}}, {'position': 'Postdoc', 'start': 2020, 'end': 2020, 'institution': {'domain': 'epfl.ch', 'name': 'Swiss Federal Institute of Technology Lausanne'}}, {'position': 'Postdoc', 'start': 2017, 'end': 2019, 'institution': {'domain': 'uniroma1.it', 'name': 'Sapienza University of Rome'}}, {'position': 'Postdoc', 'start': 2015, 'end': 2016, 'institution': {'domain': 'cbpf.br', 'name': 'Centro Brasileiro de Pesquisas Fisicas'}}, {'position': 'PhD student', 'start': 2012, 'end': 2015, 'institution': {'domain': 'unipi.it', 'name': 'University of Pisa'}}]}, 'relations': {0: [{'name': 'Florent Krzakala', 'email': '****@epfl.ch', 'relation': 'Postdoc Advisor', 'start': 2020, 'end': 2020, 'readers': ['everyone']}, {'name': 'Giorgio Parisi', 'email': '****@roma1.infn.it', 'relation': 'Postdoc Advisor', 'start': 2017, 'end': 2019, 'readers': ['everyone']}, {'name': 'Constantino Tsallis', 'email': '****@cbpf.br', 'relation': 'Postdoc Advisor', 'start': 2015, 'end': 2016, 'readers': ['everyone']}, {'name': 'Sergio Caracciolo', 'email': '****@mi.infn.it', 'relation': 'PhD Advisor', 'start': 2012, 'end': 2015, 'readers': ['everyone']}]}, 'expertise': {0: [{'keywords': ['Statistical physics of machine learning'], 'start': 2020, 'end': None}, {'keywords': ['Optimization problems on random graphs'], 'start': 2013, 'end': None}, {'keywords': ['Optimal transportation'], 'start': 2013, 'end': None}, {'keywords': ['Spin glasses and disordered systems'], 'start': 2012, 'end': None}]}, 'emailsConfirmed': {0: ['****@kcl.ac.uk', '****@gmail.com']}, 'venue': 'neurips 2021 (oral)'}\n", | |
"{'preferredEmail': {0: '****@gmail.com'}, 'gender': {0: 'Male'}, 'gscholar': {0: 'https://scholar.google.com/citations?user=lsOne4AAAAAJ&hl=en'}, 'emails': {0: ['****@gmail.com', '****@ma.tum.de']}, 'names': {0: [{'first': 'Claudio', 'middle': '', 'last': 'Mayrink Verdun', 'preferred': True, 'username': '~Claudio_Mayrink_Verdun1'}]}, 'history': {0: [{'position': 'PhD student', 'start': 2017, 'end': None, 'institution': {'domain': 'tum.de', 'name': 'Technical University Munich'}}, {'position': 'MS student', 'start': 2014, 'end': 2016, 'institution': {'domain': 'ufrj.br', 'name': 'Federal University of Rio de Janeiro - UFRJ'}}]}, 'relations': {0: [{'name': 'Felix Krahmer', 'email': '****@tum.de', 'relation': 'PhD Advisor', 'start': None, 'end': None, 'readers': ['everyone']}, {'name': 'Holger Boche', 'email': '****@tum.de', 'relation': 'PhD Advisor', 'start': None, 'end': None, 'readers': ['everyone']}]}, 'expertise': {0: [{'keywords': ['Compressive Sensing'], 'start': None, 'end': None}, {'keywords': ['Nonconvex Optimization'], 'start': None, 'end': None}, {'keywords': ['High-dimensional Statistics'], 'start': None, 'end': None}, {'keywords': ['Computational Harmonic Analysis'], 'start': None, 'end': None}, {'keywords': ['Matrix Completion'], 'start': None, 'end': None}]}, 'emailsConfirmed': {0: ['****@gmail.com', '****@ma.tum.de']}, 'venue': 'neurips 2021 (oral)'}\n", | |
"{'preferredEmail': {0: '****@gmail.com'}, 'gender': {0: 'Male'}, 'homepage': {0: 'https://www.jhonykaesemodel.com'}, 'gscholar': {0: 'https://scholar.google.com/citations?user=gOfBGxsAAAAJ&hl=en'}, 'linkedin': {0: 'https://www.linkedin.com/in/jhonykaesemodel/'}, 'dblp': {0: 'https://dblp.org/pid/176/8340'}, 'emails': {0: ['****@gmail.com']}, 'names': {0: [{'first': 'Jhony', 'middle': '', 'last': 'Kaesemodel Pontes', 'preferred': True, 'username': '~Jhony_Kaesemodel_Pontes1'}]}, 'history': {0: [{'position': 'Researcher', 'start': 2019, 'end': None, 'institution': {'domain': 'argo.ai', 'name': 'Argo AI'}}, {'position': 'PhD student', 'start': 2015, 'end': 2019, 'institution': {'domain': 'qut.edu.au', 'name': 'Queensland University of Technology'}}, {'position': 'Researcher', 'start': 2017, 'end': 2017, 'institution': {'domain': 'cmu.edu', 'name': 'Carnegie Mellon University'}}, {'position': 'MS student', 'start': 2013, 'end': 2014, 'institution': {'domain': 'ufpr.br', 'name': 'Federal University of Parana (UFPR)'}}]}, 'relations': {0: [{'name': 'Simon Lucey', 'email': '****@adelaide.edu.au', 'relation': 'PhD Advisor', 'start': 2017, 'end': 2021, 'readers': ['everyone']}, {'name': 'Clinton Fookes', 'email': '****@qut.edu.au', 'relation': 'PhD Advisor', 'start': 2015, 'end': 2019, 'readers': ['everyone']}, {'name': 'Anders Eriksson', 'email': '****@uq.edu.au', 'relation': 'PhD Advisor', 'start': 2015, 'end': 2019, 'readers': ['everyone']}]}, 'expertise': {0: [{'keywords': ['computer vision', 'machine learning', '3d reconstruction', '3D registration', '3d vision', 'scene flow'], 'start': 2013, 'end': None}]}, 'emailsConfirmed': {0: ['****@gmail.com']}, 'venue': 'neurips 2021 (oral)'}\n", | |
"Getting notes from API using url https://api.openreview.net/notes?content.venue=NeurIPS+2021+Oral&details=replyCount&offset=0&limit=1000&invitation=NeurIPS.cc%2F2021%2FConference%2F-%2FBlind_Submission\n", | |
"Getting notes from API using url https://api.openreview.net/notes?content.venue=NeurIPS+2022+Accept&details=replyCount&offset=0&limit=1000&invitation=NeurIPS.cc%2F2022%2FConference%2F-%2FBlind_Submission\n", | |
"Getting notes from API using url https://api.openreview.net/notes?content.venue=NeurIPS+2022+Accept&details=replyCount&offset=1000&limit=1000&invitation=NeurIPS.cc%2F2022%2FConference%2F-%2FBlind_Submission\n", | |
"Getting notes from API using url https://api.openreview.net/notes?content.venue=NeurIPS+2022+Accept&details=replyCount&offset=2000&limit=1000&invitation=NeurIPS.cc%2F2022%2FConference%2F-%2FBlind_Submission\n", | |
"{'preferredEmail': {0: '****@centralesupelec.fr'}, 'gender': {0: 'Male'}, 'linkedin': {0: 'https://www.linkedin.com/in/edadaltocg/'}, 'gscholar': {0: 'https://scholar.google.com/citations?user=ImL09qAAAAAJ&hl=en&oi=ao'}, 'homepage': {0: 'https://edadaltocg.github.io'}, 'dblp': {0: 'https://dblp.org/pid/306/2391'}, 'emails': {0: ['****@centralesupelec.fr', '****@gmail.com']}, 'names': {0: [{'first': 'Eduardo', 'middle': '', 'last': 'Dadalto Camara Gomes', 'username': '~Eduardo_Dadalto_Camara_Gomes1', 'preferred': False}, {'first': 'Eduardo', 'middle': '', 'last': 'Dadalto Câmara Gomes', 'username': '~Eduardo_Dadalto_Câmara_Gomes1', 'preferred': True}]}, 'history': {0: [{'position': 'PhD student', 'start': 2020, 'end': None, 'institution': {'domain': 'centralesupelec.fr', 'name': 'Université Paris-Saclay CNRS CentraleSupélec'}}, {'position': 'MS student', 'start': 2018, 'end': 2020, 'institution': {'domain': 'isae-supaero.fr', 'name': \"Institut Supérieur de l'Aéronautique et de l'Espace\"}}, {'position': 'Undergrad student', 'start': 2015, 'end': 2020, 'institution': {'domain': 'ita.br', 'name': 'Instituto Tecnológico de Aeronáutica'}}]}, 'relations': {0: [{'relation': 'Coauthor', 'name': 'Pierre Colombo', 'email': '****@gmail.com', 'start': 2022, 'end': None, 'readers': ['everyone']}, {'relation': 'Coauthor', 'name': 'Nathan Noiry', 'email': '****@althiqa.io', 'start': 2022, 'end': None, 'readers': ['everyone']}, {'relation': 'Coauthor', 'name': 'Guillaume Staerman', 'email': '****@gmail.com', 'start': 2022, 'end': None, 'readers': ['everyone']}, {'relation': 'PhD Advisor', 'name': 'Pablo Piantanida', 'email': '****@centralesupelec.fr', 'start': 2020, 'end': None, 'readers': ['MIDL.io/2021/Conference/Short/Program_Chairs', 'NeurIPS.cc/2021/Conference/Program_Chairs', 'everyone']}, {'relation': 'PhD Advisee', 'name': 'Florence Alberge', 'email': '****@l2s.centralesupelec.fr', 'start': 2020, 'end': None, 'readers': ['MIDL.io/2021/Conference/Short/Program_Chairs', 'NeurIPS.cc/2021/Conference/Program_Chairs', 'everyone']}, {'name': 'Pierre Duhamel', 'email': '****@l2s.centralesupelec.fr', 'relation': 'Coauthor', 'start': 2020, 'end': None, 'readers': ['everyone']}, {'relation': 'Coauthor', 'name': 'Meryem Benammar', 'email': '****@isae-supaero.fr', 'start': 2020, 'end': None, 'readers': ['everyone']}]}, 'expertise': {0: [{'keywords': ['misclassification detection'], 'start': 2021, 'end': None}, {'keywords': ['out-of-distribution detection'], 'start': 2020, 'end': None}, {'keywords': ['trustworthy AI'], 'start': 2020, 'end': None}, {'keywords': ['deep learning'], 'start': 2020, 'end': None}]}, 'emailsConfirmed': {0: ['****@centralesupelec.fr', '****@gmail.com']}, 'venue': 'neurips 2022 (poster)'}\n", | |
"{'preferredEmail': {0: '****@gmail.com'}, 'gender': {0: 'Male'}, 'linkedin': {0: 'https://www.linkedin.com/in/victor-feitosa-b49211a9/'}, 'emails': {0: ['****@gmail.com']}, 'names': {0: [{'first': 'Victor', 'middle': 'Feitosa', 'last': 'Souza', 'preferred': True, 'username': '~Victor_Feitosa_Souza1'}]}, 'history': {0: [{'position': 'MS student', 'start': 2021, 'end': 2023, 'institution': {'domain': 'puc-rio.br', 'name': 'Pontifícia Universidade Católica do Rio de Janeiro'}}]}, 'expertise': {0: [{'keywords': ['decision trees'], 'start': 2021, 'end': 2023}]}, 'relations': {0: []}, 'emailsConfirmed': {0: ['****@gmail.com']}, 'venue': 'neurips 2022 (poster)'}\n", | |
"{'preferredEmail': {0: '****@gmail.com'}, 'homepage': {0: 'http://www.cowhi.org'}, 'gscholar': {0: 'https://scholar.google.com/citations?user=XVfDYnAAAAAJ&hl=en&oi=ao'}, 'linkedin': {0: 'https://linkedin.com/in/rubenglatt'}, 'orcid': {0: 'https://orcid.org/0000-0002-4401-3810'}, 'gender': {0: 'Male'}, 'emails': {0: ['****@gmail.com', '****@llnl.gov', '****@usp.br']}, 'names': {0: [{'first': 'Ruben', 'middle': '', 'last': 'Glatt', 'preferred': True, 'username': '~Ruben_Glatt2'}]}, 'history': {0: [{'position': 'Staff Researcher', 'start': 2021, 'end': None, 'institution': {'domain': 'llnl.gov', 'name': 'Lawrence Livermore National Labs'}}, {'position': 'Postdoc', 'start': 2019, 'end': 2021, 'institution': {'domain': 'llnl.gov', 'name': 'Lawrence Livermore National Labs'}}, {'position': 'PhD student', 'start': 2015, 'end': 2019, 'institution': {'domain': 'usp.br', 'name': 'Universidade de Sao Paulo'}}, {'position': 'MS student', 'start': 2004, 'end': 2011, 'institution': {'domain': 'kit.edu', 'name': 'Karlsruhe Institute of Technology'}}]}, 'relations': {0: [{'name': 'Brenda Ng', 'email': '****@llnl.gov', 'relation': 'Postdoc Advisor', 'start': 2019, 'end': 2021, 'readers': ['everyone']}, {'name': 'Anna Helena Reali Costa', 'email': '****@usp.br', 'relation': 'PhD Advisor', 'start': 2015, 'end': 2019, 'readers': ['everyone']}]}, 'expertise': {0: [{'keywords': ['Multiagent Reinforcement Learning'], 'start': 2019, 'end': None}, {'keywords': ['Reinforcement Learning'], 'start': 2015, 'end': None}, {'keywords': ['Transfer Learning'], 'start': 2015, 'end': None}, {'keywords': ['Deep Learning'], 'start': 2014, 'end': None}]}, 'emailsConfirmed': {0: ['****@gmail.com', '****@llnl.gov']}, 'venue': 'neurips 2022 (poster)'}\n", | |
"{'preferredEmail': {0: '****@llnl.gov'}, 'gender': {0: 'Male'}, 'homepage': {0: 'https://people.llnl.gov/santiago10'}, 'emails': {0: ['****@llnl.gov', '****@llnl.gov']}, 'names': {0: [{'first': 'Claudio', 'middle': '', 'last': 'Santiago', 'username': '~Claudio_Santiago1', 'preferred': False}, {'first': 'Claudio', 'middle': 'Prata', 'last': 'Santiago', 'username': '~Claudio_Prata_Santiago1', 'preferred': False}, {'first': 'Claudio', 'middle': 'P.', 'last': 'Santiago', 'username': '~Claudio_P._Santiago1', 'preferred': True}]}, 'history': {0: [{'position': 'Lawrence Livermore National Laboratory', 'start': 2011, 'end': None, 'institution': {'domain': 'llnl.gov', 'name': 'Lawrence Livermore National Labs'}}, {'position': 'PhD student', 'start': 2003, 'end': 2009, 'institution': {'domain': 'gatech.edu', 'name': 'Georgia Institute of Technology'}}, {'position': 'MS student', 'start': 1998, 'end': 2001, 'institution': {'domain': 'ufrj.br', 'name': 'Federal University of Rio de Janeiro - UFRJ'}}]}, 'relations': {0: [{'name': 'Earl R. Barnes', 'email': '****@isye.gatech.edu', 'relation': 'PhD Advisor', 'start': 2007, 'end': 2009, 'readers': ['everyone']}, {'name': 'Nelson Maculan', 'email': '****@cos.ufrj.br', 'relation': 'MS Advisor', 'start': 1998, 'end': 2001, 'readers': ['everyone']}]}, 'expertise': {0: [{'keywords': ['Continuous optimization'], 'start': 1998, 'end': None}]}, 'emailsConfirmed': {0: ['****@llnl.gov', '****@llnl.gov']}, 'venue': 'neurips 2022 (poster)'}\n", | |
"{'dblp': {0: 'https://dblp.org/pid/54/8909'}, 'preferredEmail': {0: '****@amazon.com'}, 'gscholar': {0: 'https://scholar.google.de/citations?user=EFdp8UMAAAAJ&hl=en&oi=ao'}, 'gender': {0: 'Male'}, 'names': {0: [{'first': 'Tim', 'middle': '', 'last': 'Januschowski', 'username': '~Tim_Januschowski1', 'preferred': False}, {'first': 'Tim', 'middle': '', 'last': 'Januschowski', 'preferred': True, 'username': '~Tim_Januschowski2'}]}, 'emails': {0: ['****@amazon.com', '****@gmail.com']}, 'history': {0: [{'position': 'Researcher', 'start': 2013, 'end': 2021, 'institution': {'domain': 'amazon.com', 'name': 'Amazon'}}, {'position': 'Postdoc', 'start': 2010, 'end': 2010, 'institution': {'domain': 'tu-braunschweig.de', 'name': 'TU Braunschweig'}}, {'position': 'PhD student', 'start': 2007, 'end': 2010, 'institution': {'domain': 'ucc.ie', 'name': 'University College Cork'}}, {'position': 'MS student', 'start': 2003, 'end': 2007, 'institution': {'domain': 'tu-berlin.de', 'name': 'TU Berlin'}}, {'position': 'MS student', 'start': 2005, 'end': 2005, 'institution': {'domain': 'impa.br', 'name': 'IMPA'}}]}, 'expertise': {0: [{'keywords': ['Machine Learning'], 'start': None, 'end': None}, {'keywords': ['Probabilistic Machine Learning'], 'start': 2013, 'end': 2021}, {'keywords': ['Forecasting'], 'start': 2007, 'end': 2021}, {'keywords': ['Mathematical Programming'], 'start': 2005, 'end': 2021}]}, 'relations': {0: []}, 'emailsConfirmed': {0: ['****@amazon.com', '****@gmail.com']}, 'venue': 'neurips 2022 (poster)'}\n", | |
"{'preferredEmail': {0: '****@ifce.edu.br'}, 'gender': {0: 'Male'}, 'dblp': {0: 'https://dblp.org/pid/131/3352'}, 'homepage': {0: 'http://www.amauriholanda.org'}, 'gscholar': {0: 'https://scholar.google.com/citations?user=lP0LBI4AAAAJ'}, 'emails': {0: ['****@gmail.com', '****@ifce.edu.br']}, 'history': {0: [{'position': 'Associate Professor', 'start': 2011, 'end': None, 'institution': {'domain': 'ifce.edu.br', 'name': 'Federal Institute of Ceará'}}, {'position': 'Postdoc', 'start': 2018, 'end': 2019, 'institution': {'domain': 'cornell.edu', 'name': 'Cornell University'}}]}, 'names': {0: [{'preferred': False, 'first': 'Amauri', 'middle': 'Holanda', 'last': 'Souza Jr', 'username': '~Amauri_Holanda_Souza_Jr1'}, {'first': 'Amauri', 'middle': 'H. Souza', 'last': 'Jr.', 'username': '~Amauri_H._Souza_Jr.1', 'preferred': False}, {'first': 'Amauri', 'middle': 'H', 'last': 'Souza', 'preferred': True, 'username': '~Amauri_H_Souza1'}, {'first': 'Amauri', 'middle': 'Holanda', 'last': 'Souza Junior', 'username': '~Amauri_Holanda_Souza_Junior1', 'preferred': False}, {'first': 'Amauri', 'middle': 'Holanda', 'last': 'de Souza Júnior', 'username': '~Amauri_Holanda_de_Souza_Júnior1', 'preferred': False}, {'first': 'Amauri', 'middle': 'H', 'last': 'Souza Jr', 'username': '~Amauri_H_Souza_Jr1', 'preferred': False}]}, 'relations': {0: [{'name': 'Samuel Kaski', 'email': '****@aalto.fi', 'relation': 'Coauthor', 'start': 2020, 'end': None, 'readers': ['everyone']}, {'name': 'Kilian Weinberger', 'email': '****@cornell.edu', 'relation': 'Postdoc Advisor', 'start': 2018, 'end': 2019, 'readers': ['everyone']}]}, 'expertise': {0: [{'keywords': ['deep learning', 'recurrent neural networks', 'sequence modeling'], 'start': 2018, 'end': None}, {'keywords': ['graph neural networks', 'graph representation learning', 'relational learning', 'structured prediction'], 'start': 2018, 'end': None}, {'keywords': ['kernel methods', 'distance-based learning'], 'start': 2014, 'end': None}]}, 'emailsConfirmed': {0: ['****@ifce.edu.br', '****@gmail.com']}, 'venue': 'neurips 2022 (poster)'}\n", | |
"{'preferredEmail': {0: '****@gsb.columbia.edu'}, 'gscholar': {0: 'https://scholar.google.com.br/citations?user=hr1PnUkAAAAJ&hl'}, 'dblp': {0: 'https://dblp.org/pid/295/9443'}, 'emails': {0: ['****@gsb.columbia.edu']}, 'names': {0: [{'first': 'Yuri', 'middle': '', 'last': 'Fonseca', 'preferred': True, 'username': '~Yuri_Fonseca1'}]}, 'history': {0: [{'position': 'PhD student', 'start': 2018, 'end': None, 'institution': {'domain': 'columbia.edu', 'name': 'Columbia University'}}]}, 'relations': {0: [{'relation': 'PhD Advisor', 'name': 'Omar Besbes', 'email': '****@gsb.columbia.edu', 'start': 2018, 'end': 2023, 'readers': ['everyone']}, {'relation': 'PhD Advisor', 'name': 'Ilan Lobel', 'email': '****@stern.nyu.edu', 'start': 2018, 'end': 2023, 'readers': ['everyone']}, {'relation': 'Coauthor', 'name': 'Yuri Saporito', 'email': '****@fgv.br', 'start': 2016, 'end': 2022, 'readers': ['everyone']}]}, 'expertise': {0: [{'keywords': ['online learning', 'online optimization'], 'start': '', 'end': None}, {'keywords': ['revenue management'], 'start': '', 'end': None}]}, 'emailsConfirmed': {0: ['****@gsb.columbia.edu']}, 'venue': 'neurips 2022 (poster)'}\n", | |
"{'preferredEmail': {0: '****@sydney.edu.au'}, 'gender': {0: 'Male'}, 'homepage': {0: 'https://rafaeloliveira.me'}, 'gscholar': {0: 'https://scholar.google.com/citations?user=vdGqGjQAAAAJ'}, 'dblp': {0: 'https://dblp.org/pid/62/7803'}, 'linkedin': {0: 'https://www.linkedin.com/in/rafael-dos-santos-de-oliveira-34569251/'}, 'orcid': {0: 'https://orcid.org/0000-0002-3586-5026'}, 'semanticScholar': {0: 'https://www.semanticscholar.org/author/Rafael-Oliveira/144880277'}, 'emails': {0: ['****@uni.sydney.edu.au', '****@sydney.edu.au']}, 'names': {0: [{'first': 'Rafael', 'middle': '', 'last': 'Oliveira', 'preferred': True, 'username': '~Rafael_Oliveira1'}, {'first': 'Rafael', 'middle': '', 'last': 'dos Santos de Oliveira', 'username': '~Rafael_dos_Santos_de_Oliveira1', 'preferred': False}]}, 'history': {0: [{'position': 'Postdoc', 'start': 2018, 'end': None, 'institution': {'domain': 'sydney.edu.au', 'name': 'University of Sydney'}}, {'position': 'PhD student', 'start': 2014, 'end': 2018, 'institution': {'domain': 'sydney.edu.au', 'name': 'University of Sydney'}}, {'position': 'Undergrad student', 'start': 2007, 'end': 2013, 'institution': {'domain': 'ufrj.br', 'name': 'Universidade Federal do Rio de Janeiro'}}]}, 'relations': {0: [{'relation': 'Postdoc Advisor', 'name': 'Richard Scalzo', 'email': '****@sydney.edu.au', 'start': 2018, 'end': None, 'readers': ['everyone']}, {'relation': 'Postdoc Advisor', 'name': 'Sally Cripps', 'email': '****@data61.csiro.au', 'start': 2018, 'end': None, 'readers': ['everyone']}, {'name': 'Fabio Ramos', 'email': '****@sydney.edu.au', 'relation': 'PhD Advisor', 'start': 2014, 'end': None, 'readers': ['everyone']}, {'relation': 'Coauthor', 'name': 'Byron Boots', 'email': '****@cs.washington.edu', 'start': 2020, 'end': 2021, 'readers': ['everyone']}, {'relation': 'Coauthor', 'name': 'Alexander Lambert', 'email': '****@gatech.edu', 'start': 2020, 'end': 2021, 'readers': ['everyone']}, {'relation': 'Coworker', 'name': 'Lionel Ott', 'email': '****@ethz.ch', 'start': 2014, 'end': 2021, 'readers': ['everyone']}]}, 'expertise': {0: [{'keywords': ['Approximate Bayesian inference'], 'start': 2019, 'end': None}, {'keywords': ['Bayesian optimization'], 'start': 2015, 'end': None}, {'keywords': ['Gaussian processes'], 'start': 2015, 'end': None}, {'keywords': ['Kernel methods'], 'start': 2015, 'end': None}]}, 'emailsConfirmed': {0: ['****@uni.sydney.edu.au', '****@sydney.edu.au']}, 'venue': 'neurips 2022 (poster)'}\n", | |
"{'preferredEmail': {0: '****@uni-tuebingen.de'}, 'gender': {0: 'Male'}, 'dblp': {0: 'https://dblp.org/pid/249/5767'}, 'gscholar': {0: 'https://scholar.google.de/citations?user=PqHTP_AAAAAJ&hl=en&oi=ao'}, 'linkedin': {0: 'https://www.linkedin.com/in/alexander-meinke-a32904173/'}, 'emails': {0: ['****@uni-tuebingen.de']}, 'names': {0: [{'first': 'Alexander', 'middle': '', 'last': 'Meinke', 'preferred': True, 'username': '~Alexander_Meinke1'}]}, 'history': {0: [{'position': 'PhD student', 'start': 2019, 'end': None, 'institution': {'domain': 'uni-tuebingen.de', 'name': 'University of Tuebingen'}}, {'position': 'PhD student', 'start': 2019, 'end': None, 'institution': {'domain': 'is.mpg.de', 'name': 'Max-Planck-Institute for Intelligent Systems, Max-Planck Institute'}}, {'position': 'MS student', 'start': 2016, 'end': 2018, 'institution': {'domain': 'usp.br', 'name': 'Universidade de Sao Paulo'}}]}, 'relations': {0: [{'name': 'Matthias Hein', 'email': '****@uni-tuebingen.de', 'relation': 'PhD Advisor', 'start': 2019, 'end': None, 'readers': ['everyone']}]}, 'emailsConfirmed': {0: ['****@uni-tuebingen.de']}, 'venue': 'neurips 2022 (poster)'}\n", | |
"{'preferredEmail': {0: '****@gmail.com'}, 'gender': {0: 'Male'}, 'dblp': {0: 'https://dblp.org/pid/20/11498'}, 'semanticScholar': {0: 'https://www.semanticscholar.org/author/C.-Mendes/3027730'}, 'emails': {0: ['****@gmail.com']}, 'names': {0: [{'first': 'Caio Cesar', 'middle': '', 'last': 'Teodoro Mendes', 'preferred': True, 'username': '~Caio_Cesar_Teodoro_Mendes1'}]}, 'history': {0: [{'position': 'Researcher', 'start': 2021, 'end': None, 'institution': {'domain': 'microsoft.com', 'name': 'Microsoft'}}, {'position': 'PhD student', 'start': 2012, 'end': 2017, 'institution': {'domain': 'usp.br', 'name': 'Universidade de São Paulo'}}, {'position': 'PhD student', 'start': 2014, 'end': 2015, 'institution': {'domain': 'utc.fr', 'name': 'Université de Technologie de Compiègne'}}, {'position': 'MS student', 'start': 2010, 'end': 2012, 'institution': {'domain': 'usp.br', 'name': 'Universidade de São Paulo'}}, {'position': 'Undergrad student', 'start': 2006, 'end': 2010, 'institution': {'domain': 'pucminas.br', 'name': 'Pontifícia Universidade Católica de Minas Gerais'}}]}, 'relations': {0: [{'name': 'Shital Shah', 'email': '****@microsoft.com', 'relation': 'Coworker', 'start': 2021, 'end': None, 'readers': ['everyone']}, {'name': 'Debadeepta Dey', 'email': '****@microsoft.com', 'relation': 'Coworker', 'start': 2021, 'end': None, 'readers': ['everyone']}, {'name': 'Gustavo de Rosa', 'email': '****@microsoft.com', 'relation': 'Coworker', 'start': 2021, 'end': None, 'readers': ['everyone']}, {'name': 'Denis Fernando Wolf', 'email': '****@icmc.usp.br', 'relation': 'PhD Advisor', 'start': 2012, 'end': 2017, 'readers': ['everyone']}]}, 'expertise': {0: [{'keywords': ['NLP'], 'start': 2021, 'end': None}, {'keywords': ['Computer vision'], 'start': 2010, 'end': None}, {'keywords': ['Neural Networks'], 'start': 2010, 'end': None}]}, 'emailsConfirmed': {0: ['****@gmail.com']}, 'venue': 'neurips 2022 (poster)'}\n", | |
"{'preferredEmail': {0: '****@gmail.com'}, 'gender': {0: 'Male'}, 'homepage': {0: 'https://thiagoserra.com/'}, 'gscholar': {0: 'https://scholar.google.com/citations?user=Wyk2Q9sAAAAJ&hl=en'}, 'dblp': {0: 'https://dblp.org/pid/119/6438'}, 'emails': {0: ['****@gmail.com', '****@bucknell.edu']}, 'history': {0: [{'position': 'Assistant Professor', 'start': 2019, 'end': None, 'institution': {'domain': 'bucknell.edu', 'name': 'Bucknell University'}}, {'position': 'Postdoc', 'start': 2018, 'end': 2019, 'institution': {'domain': 'merl.com', 'name': 'Mitsubishi Electric Research Labs'}}, {'position': 'PhD student', 'start': 2013, 'end': 2018, 'institution': {'domain': 'cmu.edu', 'name': 'Carnegie Mellon University'}}, {'position': 'Researcher', 'start': 2009, 'end': 2013, 'institution': {'domain': 'petrobras.com.br', 'name': 'Petrobras'}}, {'position': 'MS student', 'start': 2009, 'end': 2012, 'institution': {'domain': 'usp.br', 'name': 'University of Sao Paulo'}}, {'position': 'Undergrad student', 'start': 2003, 'end': 2008, 'institution': {'domain': 'unicamp.br', 'name': 'University of Campinas'}}]}, 'relations': {0: [{'start': None, 'end': None, 'email': '****@andrew.cmu.edu', 'name': 'John Hooker', 'relation': 'PhD Advisor'}, {'start': None, 'end': None, 'email': '****@andrew.cmu.edu', 'name': 'Egon Balas', 'relation': 'PhD Advisor'}, {'start': None, 'end': None, 'email': '****@polymtl.ca', 'name': 'Andrea Lodi', 'relation': 'PhD Advisor'}]}, 'names': {0: [{'preferred': False, 'first': 'Thiago', 'middle': '', 'last': 'Serra', 'username': '~Thiago_Serra1'}]}, 'emailsConfirmed': {0: ['****@gmail.com', '****@bucknell.edu']}, 'venue': 'neurips 2022 (poster)'}\n", | |
"{'preferredEmail': {0: '****@google.com'}, 'gender': {0: 'Female'}, 'homepage': {0: 'https://hereismari.github.io/'}, 'linkedin': {0: 'https://br.linkedin.com/in/mariannelinharesm'}, 'emails': {0: ['****@google.com']}, 'names': {0: [{'first': 'Marianne', 'middle': '', 'last': 'Monteiro', 'preferred': True, 'username': '~Marianne_Monteiro2'}]}, 'history': {0: [{'position': 'Research Engineer', 'start': 2019, 'end': None, 'institution': {'domain': 'deepmind.com', 'name': 'DeepMind'}}, {'position': 'Undergrad student', 'start': 2014, 'end': 2019, 'institution': {'domain': 'ufcg.edu.br', 'name': 'Universidade Federal de Campina Grande'}}]}, 'relations': {0: []}, 'emailsConfirmed': {0: ['****@google.com']}, 'venue': 'neurips 2022 (poster)'}\n", | |
"{'preferredEmail': {0: '****@fgv.br'}, 'gender': {0: 'Male'}, 'homepage': {0: 'https://weakly-informative.github.io'}, 'dblp': {0: 'https://dblp.org/pid/163/4293'}, 'emails': {0: ['****@aalto.fi', '****@fgv.br']}, 'names': {0: [{'first': 'Diego', 'middle': '', 'last': 'Mesquita', 'preferred': True, 'username': '~Diego_Mesquita1'}, {'first': 'Diego', 'middle': 'Parente Paiva', 'last': 'Mesquita', 'username': '~Diego_Parente_Paiva_Mesquita1', 'preferred': False}]}, 'history': {0: [{'position': 'Assistant Professor', 'start': 2022, 'end': None, 'institution': {'domain': 'fgv.br', 'name': 'Getulio Vargas Foundation'}}, {'position': 'PhD student', 'start': 2017, 'end': 2021, 'institution': {'domain': 'aalto.fi', 'name': 'Aalto University'}}, {'position': 'MS student', 'start': 2016, 'end': 2017, 'institution': {'domain': 'ufc.com.br', 'name': 'Universidade Federal do Ceará'}}, {'position': 'Undergrad student', 'start': 2012, 'end': 2016, 'institution': {'domain': 'ufc.com.br', 'name': 'Universidade Federal do Ceará'}}]}, 'expertise': {0: [{'keywords': ['Graph neural networks'], 'start': None, 'end': None}, {'keywords': ['Bayesian inference'], 'start': None, 'end': None}]}, 'relations': {0: [{'relation': 'Coauthor', 'name': 'Daniel Ramos', 'email': '****@ucl.ac.uk', 'start': '', 'end': None, 'readers': ['everyone']}, {'relation': 'Coauthor', 'name': 'Omar Rivasplata', 'email': '****@ucl.ac.uk', 'start': '', 'end': None, 'readers': ['everyone']}]}, 'emailsConfirmed': {0: ['****@aalto.fi', '****@fgv.br']}, 'venue': 'neurips 2022 (poster)'}\n", | |
"{'preferredEmail': {0: '****@g.harvard.edu'}, 'gender': {0: 'Male'}, 'gscholar': {0: 'https://scholar.google.com/citations?user=ruB-9hwAAAAJ&hl=pt-BR'}, 'linkedin': {0: 'https://www.linkedin.com/in/lucas-monteiro-paes-201125141'}, 'orcid': {0: 'https://orcid.org/my-orcid?orcid=0000-0003-0129-1420'}, 'semanticScholar': {0: 'https://www.semanticscholar.org/author/153835786'}, 'emails': {0: ['****@g.harvard.edu', '****@impa.br']}, 'names': {0: [{'first': 'Lucas', 'middle': '', 'last': 'Monteiro Paes', 'preferred': True, 'username': '~Lucas_Monteiro_Paes1'}]}, 'history': {0: [{'position': 'PhD student', 'start': 2021, 'end': 2027, 'institution': {'domain': 'g.harvard.edu', 'name': 'Harvard University, Harvard University'}}, {'position': 'MS student', 'start': 2019, 'end': 2021, 'institution': {'domain': 'impa.br', 'name': 'Instituto Nacional de Matemática Pura e Aplicada - IMPA'}}]}, 'relations': {0: [{'relation': 'PhD Advisor', 'name': 'Flavio du Pin Calmon', 'email': '****@seas.harvard.edu', 'start': 2021, 'end': 2027, 'readers': ['everyone']}, {'relation': 'Coauthor', 'name': 'Carol Long', 'email': '****@g.harvard.edu', 'start': 2021, 'end': 2027, 'readers': ['everyone']}, {'relation': 'Coauthor', 'name': 'Berk Ustun', 'email': '****@ucsd.edu', 'start': 2021, 'end': 2022, 'readers': ['everyone']}]}, 'expertise': {0: [{'keywords': ['Fairness in Machine Learning', 'Information Theory', 'Privacy'], 'start': 2021, 'end': 2027}, {'keywords': ['Machine Learning in Healthcare', 'NN', 'High Dimensional Probability'], 'start': 2019, 'end': 2021}, {'keywords': ['Stochastic Modelling'], 'start': 2017, 'end': 2019}]}, 'emailsConfirmed': {0: ['****@g.harvard.edu']}, 'venue': 'neurips 2022 (poster)'}\n", | |
"{'dblp': {0: 'https://dblp.org/pid/226/2527'}, 'preferredEmail': {0: '****@gmail.com'}, 'gender': {0: 'Male'}, 'homepage': {0: 'https://rcdaudt.github.io/'}, 'gscholar': {0: 'https://scholar.google.com/citations?user=zTwHChcAAAAJ&hl=en'}, 'linkedin': {0: 'https://www.linkedin.com/in/rodrigo-daudt-b7b86b37/'}, 'orcid': {0: 'https://orcid.org/0000-0002-4952-9736'}, 'names': {0: [{'first': 'Rodrigo', 'middle': 'Caye', 'last': 'Daudt', 'username': '~Rodrigo_Caye_Daudt1', 'preferred': False}]}, 'emails': {0: ['****@gmail.com', '****@onera.fr', '****@telecom-paristech.fr', '****@telecom-paris.fr', '****@ethz.ch', '****@geod.baug.ethz.ch']}, 'history': {0: [{'position': 'Postdoc', 'start': 2020, 'end': None, 'institution': {'domain': 'ethz.ch', 'name': 'ETHZ - ETH Zurich'}}, {'position': 'PhD student', 'start': 2017, 'end': 2020, 'institution': {'domain': 'telecom-paristech.fr', 'name': 'Télécom ParisTech'}}, {'position': 'MS student', 'start': 2015, 'end': 2017, 'institution': {'domain': 'bourgogne.fr', 'name': 'Université de Bourgogne'}}, {'position': 'Undergrad student', 'start': 2009, 'end': 2015, 'institution': {'domain': 'unb.br', 'name': 'Universidade de Brasília'}}]}, 'relations': {0: [{'relation': 'Postdoc Advisor', 'name': 'Konrad Schindler', 'email': '****@ethz.ch', 'start': 2020, 'end': None, 'readers': ['everyone']}, {'relation': 'Postdoc Advisor', 'name': 'Jan Dirk Wegner', 'email': '****@geod.baug.ethz.ch', 'start': 2020, 'end': None, 'readers': ['everyone']}, {'name': 'Yann Gousseau', 'email': '****@telecom-paris.fr', 'relation': 'PhD Advisor', 'start': 2017, 'end': 2020}, {'name': 'Bertrand Le Saux', 'email': '****@onera.fr', 'relation': 'PhD Advisor', 'start': 2017, 'end': 2020}, {'name': 'Alexandre Blouch', 'email': '****@valeo.com', 'relation': 'PhD Advisor', 'start': 2017, 'end': 2020}]}, 'expertise': {0: [{'keywords': ['Deep Learning'], 'start': 2017, 'end': None}, {'keywords': ['Remote Sensing'], 'start': 2017, 'end': None}, {'keywords': ['Computer Vision'], 'start': 2015, 'end': None}]}, 'emailsConfirmed': {0: ['****@gmail.com', '****@ethz.ch', '****@geod.baug.ethz.ch']}, 'venue': 'neurips 2022 (poster)'}\n", | |
"{'preferredEmail': {0: '****@ttic.edu'}, 'gender': {0: 'Male'}, 'homepage': {0: 'https://ttic.uchicago.edu/~savarese/'}, 'emails': {0: ['****@ttic.edu', '****@uchicago.edu']}, 'names': {0: [{'first': 'Pedro Henrique', 'middle': '', 'last': 'Pamplona Savarese', 'preferred': True, 'username': '~Pedro_Henrique_Pamplona_Savarese1'}]}, 'history': {0: [{'position': 'PhD student', 'start': 2017, 'end': None, 'institution': {'domain': 'ttic.edu', 'name': 'Toyota Technological Institute at Chicago'}}, {'position': 'PhD student', 'start': 2016, 'end': 2017, 'institution': {'domain': 'ufrj.br', 'name': 'Federal University of Rio de Janeiro - UFRJ'}}, {'position': 'MS student', 'start': 2014, 'end': 2016, 'institution': {'domain': 'columbia.edu', 'name': 'Columbia University'}}, {'position': 'Undergrad student', 'start': 2009, 'end': 2016, 'institution': {'domain': 'ufrj.br', 'name': 'Federal University of Rio de Janeiro - UFRJ'}}]}, 'relations': {0: [{'name': 'David McAllester', 'email': '****@ttic.edu', 'relation': 'PhD Advisor', 'start': 2019, 'end': None}, {'name': 'Michael Maire', 'email': '****@uchicago.edu', 'relation': 'PhD Advisor', 'start': 2019, 'end': None}, {'name': 'Hugo Silva', 'email': '****@ualberta.ca', 'relation': 'Coauthor', 'start': 2018, 'end': None}, {'name': 'Nathan Srebro', 'email': '****@ttic.edu', 'relation': 'Coauthor', 'start': 2017, 'end': None}, {'name': 'Bruno Ribeiro', 'email': '****@cs.purdue.edu', 'relation': 'Coauthor', 'start': 2016, 'end': 2017}, {'name': 'Daniel Ratton', 'email': '****@land.ufrj.br', 'relation': 'Coauthor', 'start': 2016, 'end': 2017}]}, 'expertise': {0: [{'keywords': ['deep learning', 'machine learning'], 'start': 2014, 'end': None}]}, 'emailsConfirmed': {0: ['****@ttic.edu', '****@uchicago.edu']}, 'venue': 'neurips 2022 (poster)'}\n", | |
"{'preferredEmail': {0: '****@microsoft.com'}, 'gender': {0: 'Male'}, 'homepage': {0: 'https://gugarosa.github.io'}, 'gscholar': {0: 'https://scholar.google.com/citations?user=UGto_zMAAAAJ'}, 'dblp': {0: 'https://dblp.org/pid/121/8054'}, 'linkedin': {0: 'https://www.linkedin.com/in/gugarosa'}, 'orcid': {0: 'https://orcid.org/0000-0002-6442-8343'}, 'semanticScholar': {0: 'https://www.semanticscholar.org/author/144977605'}, 'emails': {0: ['****@microsoft.com', '****@unesp.br']}, 'names': {0: [{'first': 'Gustavo', 'middle': 'Henrique', 'last': 'de Rosa', 'preferred': True, 'username': '~Gustavo_Henrique_de_Rosa1'}]}, 'history': {0: [{'position': 'Research Software Engineer', 'start': 2021, 'end': None, 'institution': {'domain': 'microsoft.com', 'name': 'Microsoft Research'}}, {'position': 'PhD student', 'start': 2019, 'end': None, 'institution': {'domain': 'unesp.br', 'name': 'Universidade Estadual Paulista'}}, {'position': 'MS student', 'start': 2016, 'end': 2018, 'institution': {'domain': 'unesp.br', 'name': 'Universidade Estadual Paulista'}}, {'position': 'Undergrad student', 'start': 2012, 'end': 2016, 'institution': {'domain': 'unesp.br', 'name': 'Universidade Estadual Paulista'}}]}, 'relations': {0: [{'name': 'Shital Shah', 'email': '****@microsoft.com', 'relation': 'Coworker', 'start': 2021, 'end': None, 'readers': ['everyone']}, {'name': 'Debadeepta Dey', 'email': '****@microsoft.com', 'relation': 'Coworker', 'start': 2021, 'end': None, 'readers': ['everyone']}, {'name': 'Caio Cesar', 'email': '****@microsoft.com', 'relation': 'Coworker', 'start': 2021, 'end': None, 'readers': ['everyone']}, {'name': 'Subho Mukherjee', 'email': '****@microsoft.com', 'relation': 'Coworker', 'start': 2021, 'end': None, 'readers': ['everyone']}, {'name': 'Ganesh Jawahar', 'email': '****@gmail.com', 'relation': 'Coauthor', 'start': 2021, 'end': None, 'readers': ['everyone']}, {'name': 'João Paulo Papa', 'email': '****@unesp.br', 'relation': 'PhD Advisor', 'start': 2012, 'end': None, 'readers': ['everyone']}]}, 'expertise': {0: [{'keywords': ['natural language processing'], 'start': 2019, 'end': None}, {'keywords': ['deep learning'], 'start': 2015, 'end': None}, {'keywords': ['machine learning'], 'start': 2013, 'end': None}, {'keywords': ['computer science'], 'start': 2012, 'end': None}, {'keywords': ['pattern recognition'], 'start': 2012, 'end': None}, {'keywords': ['computer vision'], 'start': 2012, 'end': None}]}, 'emailsConfirmed': {0: ['****@microsoft.com', '****@unesp.br']}, 'venue': 'neurips 2022 (poster)'}\n", | |
"{'dblp': {0: 'https://dblp.org/pid/75/3139'}, 'preferredEmail': {0: '****@gmail.com'}, 'gender': {0: 'Male'}, 'homepage': {0: 'https://people.cs.umass.edu/~bsilva/'}, 'gscholar': {0: 'https://scholar.google.com/citations?user=eskJDVUAAAAJ&hl=en'}, 'names': {0: [{'first': 'Bruno', 'middle': 'Castro da', 'last': 'Silva', 'username': '~Bruno_Castro_da_Silva1', 'preferred': False}]}, 'emails': {0: ['****@gmail.com', '****@cs.umass.edu', '****@inf.ufrgs.br']}, 'history': {0: [{'position': 'Assistant Professor', 'start': 2021, 'end': None, 'institution': {'domain': 'umass.edu', 'name': 'University of Massachusetts, Amherst'}}, {'position': 'Assistant Professor', 'start': 2021, 'end': None, 'institution': {'domain': 'umass.edu', 'name': 'University of Massachusetts, Amherst'}}, {'position': 'Associate Professor', 'start': 2015, 'end': 2021, 'institution': {'domain': 'ufrgs.br', 'name': 'Federal University of Rio Grande do Sul'}}, {'position': 'Postdoc', 'start': 2014, 'end': 2015, 'institution': {'domain': 'mit.edu', 'name': 'Massachusetts Institute of Technology'}}, {'position': 'PhD student', 'start': 2007, 'end': 2014, 'institution': {'domain': 'umass.edu', 'name': 'University of Massachusetts, Amherst'}}]}, 'relations': {0: [{'name': 'Philip S. Thomas', 'email': '****@cs.umass.edu', 'relation': 'Coauthor', 'start': 2007, 'end': None}, {'name': 'Jonathan How', 'email': '****@mit.edu', 'relation': 'Postdoc Advisor', 'start': 2014, 'end': 2015}, {'name': 'Andrew G. Barto', 'email': '****@cs.umass.edu', 'relation': 'PhD Advisor', 'start': 2007, 'end': 2014}]}, 'expertise': {0: [{'keywords': ['Robotics'], 'start': 2007, 'end': None}, {'keywords': ['Reinforcement Learning'], 'start': 2004, 'end': None}]}, 'emailsConfirmed': {0: ['****@gmail.com', '****@cs.umass.edu', '****@inf.ufrgs.br']}, 'venue': 'neurips 2022 (poster)'}\n", | |
"{'preferredEmail': {0: '****@gmail.com'}, 'gender': {0: 'Male'}, 'homepage': {0: 'http://www-di.inf.puc-rio.br/~laber/'}, 'gscholar': {0: 'https://scholar.google.com.br/citations?hl=pt-BR&user=61hrt1cAAAAJ'}, 'dblp': {0: 'https://dblp.org/pid/49/5557.html'}, 'orcid': {0: 'https://orcid.org/0000-0002-9025-8333'}, 'emails': {0: ['****@gmail.com', '****@inf.puc-rio.br']}, 'names': {0: [{'first': 'Eduardo', 'middle': 'Sany', 'last': 'Laber', 'preferred': True, 'username': '~Eduardo_Sany_Laber1'}]}, 'history': {0: [{'position': 'Associate Professor', 'start': 2011, 'end': None, 'institution': {'domain': 'puc-rio.br', 'name': 'Pontificia Universidade Catolica, Rio de Janeiro, Brazil'}}]}, 'expertise': {0: [{'keywords': ['Machine Teaching'], 'start': 2019, 'end': None}, {'keywords': ['Clustering Algorithms'], 'start': 2017, 'end': None}, {'keywords': ['Decision Trees'], 'start': 1999, 'end': None}]}, 'relations': {0: []}, 'emailsConfirmed': {0: ['****@gmail.com']}, 'venue': 'neurips 2022 (poster)'}\n", | |
"{'preferredEmail': {0: '****@gmail.com'}, 'gender': {0: 'Male'}, 'gscholar': {0: 'https://scholar.google.com.tr/citations?user=SIzY0mgAAAAJ&hl=en'}, 'emails': {0: ['****@gmail.com', '****@usp.br']}, 'names': {0: [{'first': 'Rodrigo', 'middle': '', 'last': 'Veiga', 'preferred': True, 'username': '~Rodrigo_Veiga1'}]}, 'history': {0: [{'position': 'PhD student', 'start': 2017, 'end': None, 'institution': {'domain': 'usp.br', 'name': 'Universidade de São Paulo'}}]}, 'relations': {0: []}, 'emailsConfirmed': {0: ['****@gmail.com']}, 'venue': 'neurips 2022 (poster)'}\n", | |
"{'preferredEmail': {0: '****@gmail.com'}, 'gender': {0: 'Male'}, 'homepage': {0: 'www.inf.puc-rio.br/~mmolinaro'}, 'dblp': {0: 'https://dblp.org/pid/88/4732'}, 'emails': {0: ['****@gmail.com']}, 'names': {0: [{'first': 'Marco', 'middle': '', 'last': 'Molinaro', 'preferred': True, 'username': '~Marco_Molinaro1'}]}, 'history': {0: [{'end': None, 'start': None, 'institution': {'name': 'PUC-RIO'}, 'position': 'Assistant Professor'}, {'position': 'Assistant Professor', 'start': 2015, 'end': None, 'institution': {'domain': 'puc-rio.br', 'name': 'Pontificia Universidade Catolica, Rio de Janeiro, Brazil'}}, {'position': 'Assistant Professor', 'start': 2014, 'end': 2015, 'institution': {'domain': 'tudelft.nl', 'name': 'Delft University of Technology'}}, {'position': 'Assistant Professor', 'start': 2013, 'end': 2014, 'institution': {'domain': 'gatech.edu', 'name': 'Georgia Institute of Technology'}}, {'position': 'PhD student', 'start': 2008, 'end': 2013, 'institution': {'domain': 'cmu.edu', 'name': 'Carnegie Mellon University'}}]}, 'expertise': {0: [{'keywords': ['online algorithms'], 'start': None, 'end': None}, {'keywords': ['integer programming'], 'start': None, 'end': None}, {'keywords': ['optimization'], 'start': None, 'end': None}]}, 'relations': {0: []}, 'emailsConfirmed': {0: ['****@gmail.com']}, 'venue': 'neurips 2022 (poster)'}\n", | |
"Getting notes from API using url https://api.openreview.net/notes?content.venue=UAI+2021+Poster&details=replyCount&offset=0&limit=1000&invitation=auai.org%2FUAI%2F2021%2FConference%2F-%2FBlind_Submission\n", | |
"Getting notes from API using url https://api.openreview.net/notes?content.venue=UAI+2021+Oral&details=replyCount&offset=0&limit=1000&invitation=auai.org%2FUAI%2F2021%2FConference%2F-%2FBlind_Submission\n", | |
"Getting notes from API using url https://api.openreview.net/notes?content.venue=UAI+2022+Poster&details=replyCount&offset=0&limit=1000&invitation=auai.org%2FUAI%2F2022%2FConference%2F-%2FBlind_Submission\n", | |
"{'preferredEmail': {0: '****@sydney.edu.au'}, 'gender': {0: 'Male'}, 'homepage': {0: 'https://rafaeloliveira.me'}, 'gscholar': {0: 'https://scholar.google.com/citations?user=vdGqGjQAAAAJ'}, 'dblp': {0: 'https://dblp.org/pid/62/7803'}, 'linkedin': {0: 'https://www.linkedin.com/in/rafael-dos-santos-de-oliveira-34569251/'}, 'orcid': {0: 'https://orcid.org/0000-0002-3586-5026'}, 'semanticScholar': {0: 'https://www.semanticscholar.org/author/Rafael-Oliveira/144880277'}, 'emails': {0: ['****@uni.sydney.edu.au', '****@sydney.edu.au']}, 'names': {0: [{'first': 'Rafael', 'middle': '', 'last': 'Oliveira', 'preferred': True, 'username': '~Rafael_Oliveira1'}, {'first': 'Rafael', 'middle': '', 'last': 'dos Santos de Oliveira', 'username': '~Rafael_dos_Santos_de_Oliveira1', 'preferred': False}]}, 'history': {0: [{'position': 'Postdoc', 'start': 2018, 'end': None, 'institution': {'domain': 'sydney.edu.au', 'name': 'University of Sydney'}}, {'position': 'PhD student', 'start': 2014, 'end': 2018, 'institution': {'domain': 'sydney.edu.au', 'name': 'University of Sydney'}}, {'position': 'Undergrad student', 'start': 2007, 'end': 2013, 'institution': {'domain': 'ufrj.br', 'name': 'Universidade Federal do Rio de Janeiro'}}]}, 'relations': {0: [{'relation': 'Postdoc Advisor', 'name': 'Richard Scalzo', 'email': '****@sydney.edu.au', 'start': 2018, 'end': None, 'readers': ['everyone']}, {'relation': 'Postdoc Advisor', 'name': 'Sally Cripps', 'email': '****@data61.csiro.au', 'start': 2018, 'end': None, 'readers': ['everyone']}, {'name': 'Fabio Ramos', 'email': '****@sydney.edu.au', 'relation': 'PhD Advisor', 'start': 2014, 'end': None, 'readers': ['everyone']}, {'relation': 'Coauthor', 'name': 'Byron Boots', 'email': '****@cs.washington.edu', 'start': 2020, 'end': 2021, 'readers': ['everyone']}, {'relation': 'Coauthor', 'name': 'Alexander Lambert', 'email': '****@gatech.edu', 'start': 2020, 'end': 2021, 'readers': ['everyone']}, {'relation': 'Coworker', 'name': 'Lionel Ott', 'email': '****@ethz.ch', 'start': 2014, 'end': 2021, 'readers': ['everyone']}]}, 'expertise': {0: [{'keywords': ['Approximate Bayesian inference'], 'start': 2019, 'end': None}, {'keywords': ['Bayesian optimization'], 'start': 2015, 'end': None}, {'keywords': ['Gaussian processes'], 'start': 2015, 'end': None}, {'keywords': ['Kernel methods'], 'start': 2015, 'end': None}]}, 'emailsConfirmed': {0: ['****@uni.sydney.edu.au', '****@sydney.edu.au']}, 'venue': 'uai 2022 (poster)'}\n", | |
"{'preferredEmail': {0: '****@gmail.com'}, 'gender': {0: 'Male'}, 'homepage': {0: 'https://kohan.uk'}, 'gscholar': {0: 'https://scholar.google.co.uk/citations?user=FkMTXi4AAAAJ&hl=en'}, 'dblp': {0: 'https://dblp.org/pid/199/6863'}, 'orcid': {0: 'https://orcid.org/0000-0001-8475-7913'}, 'emails': {0: ['****@gmail.com', '****@eng.ox.ac.uk', '****@kcl.ac.uk']}, 'names': {0: [{'first': 'David', 'middle': '', 'last': 'Kohan Marzagao', 'preferred': True, 'username': '~David_Kohan_Marzagao1'}]}, 'history': {0: [{'position': 'Postdoc', 'start': 2021, 'end': None, 'institution': {'domain': 'ox.ac.uk', 'name': 'University of Oxford'}}, {'position': 'Postdoc', 'start': 2019, 'end': 2021, 'institution': {'domain': 'kcl.ac.uk', 'name': \"King's College London, University of London\"}}, {'position': 'PhD student', 'start': 2015, 'end': 2019, 'institution': {'domain': 'kcl.ac.uk', 'name': \"King's College London, University of London\"}}, {'position': 'Undergrad student', 'start': 2009, 'end': 2014, 'institution': {'domain': 'ime.usp.br', 'name': 'University of São Paulo, Universidade de São Paulo'}}]}, 'relations': {0: [{'relation': 'Postdoc Advisor', 'name': 'David Clifton', 'email': '****@eng.ox.ac.uk', 'start': 2021, 'end': None, 'readers': ['everyone']}, {'relation': 'Postdoc Advisor', 'name': 'Luc Moreau', 'email': '****@kcl.ac.uk', 'start': 2019, 'end': 2021, 'readers': ['everyone']}, {'relation': 'PhD Advisor', 'name': 'Peter McBurney', 'email': '****@kcl.ac.uk', 'start': 2015, 'end': 2019, 'readers': ['everyone']}]}, 'emailsConfirmed': {0: ['****@gmail.com']}, 'venue': 'uai 2022 (poster)'}\n", | |
"{'preferredEmail': {0: '****@google.com'}, 'gender': {0: 'Male'}, 'homepage': {0: 'http://mcmachado.info'}, 'gscholar': {0: 'https://scholar.google.ca/citations?user=xf_n4xUAAAAJ&hl=en'}, 'dblp': {0: 'https://dblp.org/pid/21/10949'}, 'linkedin': {0: 'https://www.linkedin.com/in/cholodovskis/'}, 'semanticScholar': {0: 'https://www.semanticscholar.org/author/Marlos-C.-Machado/40066857'}, 'emails': {0: ['****@ualberta.ca', '****@google.com']}, 'history': {0: [{'position': 'Research Scientist', 'start': 2021, 'end': None, 'institution': {'domain': 'deepmind.com', 'name': 'DeepMind'}}, {'position': 'Adjunct Professor', 'start': 2021, 'end': None, 'institution': {'domain': 'ualberta.ca', 'name': 'University of Alberta'}}, {'position': 'Research Scientist', 'start': 2019, 'end': 2021, 'institution': {'domain': 'google.com', 'name': 'Google Brain'}}, {'position': 'PhD student', 'start': 2013, 'end': 2019, 'institution': {'domain': 'ualberta.ca', 'name': 'University of Alberta'}}, {'position': 'MS student', 'start': 2011, 'end': 2013, 'institution': {'domain': 'ufmg.br', 'name': 'Universidade Federal de Minas Gerais'}}, {'position': 'Undergrad student', 'start': 2006, 'end': 2010, 'institution': {'domain': 'ufmg.br', 'name': 'Universidade Federal de Minas Gerais'}}]}, 'relations': {0: [{'relation': 'MSc Advisee', 'name': 'Subhojeet Pramanik', 'email': '****@ualberta.ca', 'start': 2022, 'end': None, 'readers': ['everyone']}, {'relation': 'MSc Advisee', 'name': 'Edan Meyer ', 'email': '****@ualberta.ca', 'start': 2022, 'end': None, 'readers': ['everyone']}, {'relation': 'Coworker', 'name': 'Doina Precup', 'email': '****@cs.mcgill.ca', 'start': 2021, 'end': None, 'readers': ['everyone']}, {'relation': 'MSc Advisee', 'name': 'Erfan Miahi ', 'email': '****@ualberta.ca', 'start': 2021, 'end': None, 'readers': ['everyone']}, {'relation': 'MSc Advisee', 'name': 'Ruo Yu (David) Tao', 'email': '****@ualberta.ca', 'start': 2021, 'end': None, 'readers': ['everyone']}, {'name': 'Adrien Ali Ta¨ıga', 'email': '****@umontreal.ca', 'relation': 'Coauthor', 'start': 2020, 'end': None, 'readers': ['everyone']}, {'name': 'Pablo Samuel Castro', 'email': '****@google.com', 'relation': 'Coworker', 'start': 2019, 'end': None, 'readers': ['everyone']}, {'name': 'Nicolas Le Roux', 'email': '****@google.com', 'relation': 'Coauthor', 'start': 2019, 'end': None, 'readers': ['everyone']}, {'name': 'Rishabh Agarwal', 'email': '****@google.com', 'relation': 'Coworker', 'start': 2019, 'end': None, 'readers': ['everyone']}, {'relation': 'Former Intern', 'name': 'Taylor W. Killian', 'email': '****@cs.toronto.edu', 'start': 2020, 'end': 2020, 'readers': ['everyone']}, {'name': 'Marc G. Bellemare', 'email': '****@google.com', 'relation': 'PhD Advisor', 'start': 2015, 'end': 2019, 'readers': ['everyone']}, {'name': 'Michael Bowling', 'email': '****@ualberta.ca', 'relation': 'PhD Advisor', 'start': 2013, 'end': 2019, 'readers': ['everyone']}, {'name': 'Erin Talvitie', 'email': '****@cs.hmc.edu', 'relation': 'Coauthor', 'start': 2015, 'end': 2018, 'readers': ['everyone']}]}, 'expertise': {0: [{'keywords': ['reinforcement learning', 'exploration', 'options', 'model-based', 'never ending reinforcement learning', 'continual learning', 'computer games'], 'start': None, 'end': None}]}, 'names': {0: [{'preferred': True, 'first': 'Marlos', 'middle': '', 'last': 'C. Machado', 'username': '~Marlos_C._Machado1'}]}, 'emailsConfirmed': {0: ['****@ualberta.ca', '****@google.com']}, 'venue': 'uai 2022 (poster)'}\n", | |
"{'preferredEmail': {0: '****@gmail.com'}, 'gscholar': {0: 'https://scholar.google.com/citations?user=loas8EEAAAAJ&hl=en'}, 'semanticScholar': {0: 'https://www.semanticscholar.org/author/Ant%C3%B3nio-G%C3%B3is/2060583042'}, 'dblp': {0: 'https://dblp.org/pid/245/9006'}, 'emails': {0: ['****@gmail.com']}, 'names': {0: [{'first': 'António', 'middle': '', 'last': 'Góis', 'preferred': True, 'username': '~António_Góis1'}, {'first': 'António', 'middle': 'R.', 'last': 'Góis', 'username': '~António_R._Góis1', 'preferred': False}]}, 'history': {0: [{'position': 'PhD student', 'start': 2021, 'end': 2025, 'institution': {'domain': 'mila.quebec', 'name': 'Montreal Institute for Learning Algorithms, University of Montreal, Université de Montréal'}}, {'position': 'MS student', 'start': 2015, 'end': 2018, 'institution': {'domain': 'tecnico.ulisboa.pt', 'name': 'Instituto Superior Técnico'}}, {'position': 'Undergrad student', 'start': 2011, 'end': 2014, 'institution': {'domain': 'novasbe.pt', 'name': 'Universidade Nova de Lisboa'}}]}, 'relations': {0: [{'name': 'André T. Martins', 'email': '****@tecnico.ulisboa.pt', 'relation': 'Coauthor', 'start': None, 'end': None, 'readers': ['everyone']}, {'name': 'Simon Lacoste-Julien', 'email': '****@iro.umontreal.ca', 'relation': 'PhD Advisor', 'start': 2021, 'end': 2025, 'readers': ['everyone']}]}, 'expertise': {0: [{'keywords': ['machine translation'], 'start': None, 'end': None}, {'keywords': ['evolutionary game theory'], 'start': None, 'end': None}]}, 'emailsConfirmed': {0: ['****@gmail.com']}, 'venue': 'uai 2022 (poster)'}\n", | |
"Getting notes from API using url https://api.openreview.net/notes?content.venue=UAI+2022+Oral&details=replyCount&offset=0&limit=1000&invitation=auai.org%2FUAI%2F2022%2FConference%2F-%2FBlind_Submission\n", | |
"Getting notes from API using url https://api.openreview.net/notes?content.venue=ICLR+2021+Poster&details=replyCount&offset=0&limit=1000&invitation=ICLR.cc%2F2021%2FConference%2F-%2FBlind_Submission\n", | |
"Getting notes from API using url https://api.openreview.net/notes?content.venue=ICLR+2021+Spotlight&details=replyCount&offset=0&limit=1000&invitation=ICLR.cc%2F2021%2FConference%2F-%2FBlind_Submission\n", | |
"{'preferredEmail': {0: '****@google.com'}, 'gender': {0: 'Male'}, 'homepage': {0: 'http://mcmachado.info'}, 'gscholar': {0: 'https://scholar.google.ca/citations?user=xf_n4xUAAAAJ&hl=en'}, 'dblp': {0: 'https://dblp.org/pid/21/10949'}, 'linkedin': {0: 'https://www.linkedin.com/in/cholodovskis/'}, 'semanticScholar': {0: 'https://www.semanticscholar.org/author/Marlos-C.-Machado/40066857'}, 'emails': {0: ['****@ualberta.ca', '****@google.com']}, 'history': {0: [{'position': 'Research Scientist', 'start': 2021, 'end': None, 'institution': {'domain': 'deepmind.com', 'name': 'DeepMind'}}, {'position': 'Adjunct Professor', 'start': 2021, 'end': None, 'institution': {'domain': 'ualberta.ca', 'name': 'University of Alberta'}}, {'position': 'Research Scientist', 'start': 2019, 'end': 2021, 'institution': {'domain': 'google.com', 'name': 'Google Brain'}}, {'position': 'PhD student', 'start': 2013, 'end': 2019, 'institution': {'domain': 'ualberta.ca', 'name': 'University of Alberta'}}, {'position': 'MS student', 'start': 2011, 'end': 2013, 'institution': {'domain': 'ufmg.br', 'name': 'Universidade Federal de Minas Gerais'}}, {'position': 'Undergrad student', 'start': 2006, 'end': 2010, 'institution': {'domain': 'ufmg.br', 'name': 'Universidade Federal de Minas Gerais'}}]}, 'relations': {0: [{'relation': 'MSc Advisee', 'name': 'Subhojeet Pramanik', 'email': '****@ualberta.ca', 'start': 2022, 'end': None, 'readers': ['everyone']}, {'relation': 'MSc Advisee', 'name': 'Edan Meyer ', 'email': '****@ualberta.ca', 'start': 2022, 'end': None, 'readers': ['everyone']}, {'relation': 'Coworker', 'name': 'Doina Precup', 'email': '****@cs.mcgill.ca', 'start': 2021, 'end': None, 'readers': ['everyone']}, {'relation': 'MSc Advisee', 'name': 'Erfan Miahi ', 'email': '****@ualberta.ca', 'start': 2021, 'end': None, 'readers': ['everyone']}, {'relation': 'MSc Advisee', 'name': 'Ruo Yu (David) Tao', 'email': '****@ualberta.ca', 'start': 2021, 'end': None, 'readers': ['everyone']}, {'name': 'Adrien Ali Ta¨ıga', 'email': '****@umontreal.ca', 'relation': 'Coauthor', 'start': 2020, 'end': None, 'readers': ['everyone']}, {'name': 'Pablo Samuel Castro', 'email': '****@google.com', 'relation': 'Coworker', 'start': 2019, 'end': None, 'readers': ['everyone']}, {'name': 'Nicolas Le Roux', 'email': '****@google.com', 'relation': 'Coauthor', 'start': 2019, 'end': None, 'readers': ['everyone']}, {'name': 'Rishabh Agarwal', 'email': '****@google.com', 'relation': 'Coworker', 'start': 2019, 'end': None, 'readers': ['everyone']}, {'relation': 'Former Intern', 'name': 'Taylor W. Killian', 'email': '****@cs.toronto.edu', 'start': 2020, 'end': 2020, 'readers': ['everyone']}, {'name': 'Marc G. Bellemare', 'email': '****@google.com', 'relation': 'PhD Advisor', 'start': 2015, 'end': 2019, 'readers': ['everyone']}, {'name': 'Michael Bowling', 'email': '****@ualberta.ca', 'relation': 'PhD Advisor', 'start': 2013, 'end': 2019, 'readers': ['everyone']}, {'name': 'Erin Talvitie', 'email': '****@cs.hmc.edu', 'relation': 'Coauthor', 'start': 2015, 'end': 2018, 'readers': ['everyone']}]}, 'expertise': {0: [{'keywords': ['reinforcement learning', 'exploration', 'options', 'model-based', 'never ending reinforcement learning', 'continual learning', 'computer games'], 'start': None, 'end': None}]}, 'names': {0: [{'preferred': True, 'first': 'Marlos', 'middle': '', 'last': 'C. Machado', 'username': '~Marlos_C._Machado1'}]}, 'emailsConfirmed': {0: ['****@ualberta.ca', '****@google.com']}, 'venue': 'iclr 2021 (oral)'}\n", | |
"{'preferredEmail': {0: '****@gmail.com'}, 'gender': {0: 'Male'}, 'gscholar': {0: 'https://scholar.google.com.br/citations?user=sx8MOL8AAAAJ&hl=en'}, 'linkedin': {0: 'https://www.linkedin.com/in/cicero-nogueira-dos-santos-b276b3a/'}, 'emails': {0: ['****@us.ibm.com', '****@gmail.com', '****@amazon.com', '****@google.com']}, 'history': {0: [{'position': 'Research Scientist', 'start': 2021, 'end': None, 'institution': {'domain': 'research.google.com', 'name': 'Research, Google'}}, {'position': 'Senior Applied Scientist', 'start': 2019, 'end': 2021, 'institution': {'domain': 'amazon.com', 'name': 'Amazon Web Services'}}, {'position': 'Research Staff Member', 'start': 2012, 'end': 2019, 'institution': {'domain': 'ibm.com', 'name': 'International Business Machines'}}]}, 'relations': {0: [{'relation': 'PhD Advisor', 'name': 'Ruy Milidiu', 'email': '****@puc-rio.br', 'start': 2005, 'end': 2009}]}, 'expertise': {0: [{'keywords': ['neural language models'], 'start': 2017, 'end': None}, {'keywords': ['language generation'], 'start': 2017, 'end': None}, {'keywords': ['generative models'], 'start': 2016, 'end': None}, {'keywords': ['unsupervised learning'], 'start': 2015, 'end': None}, {'keywords': ['natural language processing'], 'start': 2004, 'end': None}, {'keywords': ['adversarial networks'], 'start': 2016, 'end': 2018}]}, 'names': {0: [{'preferred': False, 'first': 'Cicero', 'middle': '', 'last': 'Nogueira dos Santos', 'username': '~Cicero_Nogueira_dos_Santos1'}]}, 'emailsConfirmed': {0: ['****@us.ibm.com', '****@gmail.com', '****@amazon.com', '****@google.com']}, 'venue': 'iclr 2021 (oral)'}\n", | |
"Getting notes from API using url https://api.openreview.net/notes?content.venue=ICLR+2021+Oral&details=replyCount&offset=0&limit=1000&invitation=ICLR.cc%2F2021%2FConference%2F-%2FBlind_Submission\n", | |
"{'preferredEmail': {0: '****@ttic.edu'}, 'gender': {0: 'Male'}, 'homepage': {0: 'https://ttic.uchicago.edu/~savarese/'}, 'emails': {0: ['****@ttic.edu', '****@uchicago.edu']}, 'names': {0: [{'first': 'Pedro Henrique', 'middle': '', 'last': 'Pamplona Savarese', 'preferred': True, 'username': '~Pedro_Henrique_Pamplona_Savarese1'}]}, 'history': {0: [{'position': 'PhD student', 'start': 2017, 'end': None, 'institution': {'domain': 'ttic.edu', 'name': 'Toyota Technological Institute at Chicago'}}, {'position': 'PhD student', 'start': 2016, 'end': 2017, 'institution': {'domain': 'ufrj.br', 'name': 'Federal University of Rio de Janeiro - UFRJ'}}, {'position': 'MS student', 'start': 2014, 'end': 2016, 'institution': {'domain': 'columbia.edu', 'name': 'Columbia University'}}, {'position': 'Undergrad student', 'start': 2009, 'end': 2016, 'institution': {'domain': 'ufrj.br', 'name': 'Federal University of Rio de Janeiro - UFRJ'}}]}, 'relations': {0: [{'name': 'David McAllester', 'email': '****@ttic.edu', 'relation': 'PhD Advisor', 'start': 2019, 'end': None}, {'name': 'Michael Maire', 'email': '****@uchicago.edu', 'relation': 'PhD Advisor', 'start': 2019, 'end': None}, {'name': 'Hugo Silva', 'email': '****@ualberta.ca', 'relation': 'Coauthor', 'start': 2018, 'end': None}, {'name': 'Nathan Srebro', 'email': '****@ttic.edu', 'relation': 'Coauthor', 'start': 2017, 'end': None}, {'name': 'Bruno Ribeiro', 'email': '****@cs.purdue.edu', 'relation': 'Coauthor', 'start': 2016, 'end': 2017}, {'name': 'Daniel Ratton', 'email': '****@land.ufrj.br', 'relation': 'Coauthor', 'start': 2016, 'end': 2017}]}, 'expertise': {0: [{'keywords': ['deep learning', 'machine learning'], 'start': 2014, 'end': None}]}, 'emailsConfirmed': {0: ['****@ttic.edu', '****@uchicago.edu']}, 'venue': 'iclr 2021 (spotlight)'}\n", | |
"Getting notes from API using url https://api.openreview.net/notes?content.venue=ICLR+2022+Poster&details=replyCount&offset=0&limit=1000&invitation=ICLR.cc%2F2022%2FConference%2F-%2FBlind_Submission\n", | |
"{'dblp': {0: 'https://dblp.org/pid/75/3139'}, 'preferredEmail': {0: '****@gmail.com'}, 'gender': {0: 'Male'}, 'homepage': {0: 'https://people.cs.umass.edu/~bsilva/'}, 'gscholar': {0: 'https://scholar.google.com/citations?user=eskJDVUAAAAJ&hl=en'}, 'names': {0: [{'first': 'Bruno', 'middle': 'Castro da', 'last': 'Silva', 'username': '~Bruno_Castro_da_Silva1', 'preferred': False}]}, 'emails': {0: ['****@gmail.com', '****@cs.umass.edu', '****@inf.ufrgs.br']}, 'history': {0: [{'position': 'Assistant Professor', 'start': 2021, 'end': None, 'institution': {'domain': 'umass.edu', 'name': 'University of Massachusetts, Amherst'}}, {'position': 'Assistant Professor', 'start': 2021, 'end': None, 'institution': {'domain': 'umass.edu', 'name': 'University of Massachusetts, Amherst'}}, {'position': 'Associate Professor', 'start': 2015, 'end': 2021, 'institution': {'domain': 'ufrgs.br', 'name': 'Federal University of Rio Grande do Sul'}}, {'position': 'Postdoc', 'start': 2014, 'end': 2015, 'institution': {'domain': 'mit.edu', 'name': 'Massachusetts Institute of Technology'}}, {'position': 'PhD student', 'start': 2007, 'end': 2014, 'institution': {'domain': 'umass.edu', 'name': 'University of Massachusetts, Amherst'}}]}, 'relations': {0: [{'name': 'Philip S. Thomas', 'email': '****@cs.umass.edu', 'relation': 'Coauthor', 'start': 2007, 'end': None}, {'name': 'Jonathan How', 'email': '****@mit.edu', 'relation': 'Postdoc Advisor', 'start': 2014, 'end': 2015}, {'name': 'Andrew G. Barto', 'email': '****@cs.umass.edu', 'relation': 'PhD Advisor', 'start': 2007, 'end': 2014}]}, 'expertise': {0: [{'keywords': ['Robotics'], 'start': 2007, 'end': None}, {'keywords': ['Reinforcement Learning'], 'start': 2004, 'end': None}]}, 'emailsConfirmed': {0: ['****@gmail.com', '****@cs.umass.edu', '****@inf.ufrgs.br']}, 'venue': 'iclr 2022 (poster)'}\n", | |
"{'dblp': {0: 'https://dblp.org/pid/54/8909'}, 'preferredEmail': {0: '****@amazon.com'}, 'gscholar': {0: 'https://scholar.google.de/citations?user=EFdp8UMAAAAJ&hl=en&oi=ao'}, 'gender': {0: 'Male'}, 'names': {0: [{'first': 'Tim', 'middle': '', 'last': 'Januschowski', 'username': '~Tim_Januschowski1', 'preferred': False}, {'first': 'Tim', 'middle': '', 'last': 'Januschowski', 'preferred': True, 'username': '~Tim_Januschowski2'}]}, 'emails': {0: ['****@amazon.com', '****@gmail.com']}, 'history': {0: [{'position': 'Researcher', 'start': 2013, 'end': 2021, 'institution': {'domain': 'amazon.com', 'name': 'Amazon'}}, {'position': 'Postdoc', 'start': 2010, 'end': 2010, 'institution': {'domain': 'tu-braunschweig.de', 'name': 'TU Braunschweig'}}, {'position': 'PhD student', 'start': 2007, 'end': 2010, 'institution': {'domain': 'ucc.ie', 'name': 'University College Cork'}}, {'position': 'MS student', 'start': 2003, 'end': 2007, 'institution': {'domain': 'tu-berlin.de', 'name': 'TU Berlin'}}, {'position': 'MS student', 'start': 2005, 'end': 2005, 'institution': {'domain': 'impa.br', 'name': 'IMPA'}}]}, 'expertise': {0: [{'keywords': ['Machine Learning'], 'start': None, 'end': None}, {'keywords': ['Probabilistic Machine Learning'], 'start': 2013, 'end': 2021}, {'keywords': ['Forecasting'], 'start': 2007, 'end': 2021}, {'keywords': ['Mathematical Programming'], 'start': 2005, 'end': 2021}]}, 'relations': {0: []}, 'emailsConfirmed': {0: ['****@amazon.com', '****@gmail.com']}, 'venue': 'iclr 2022 (poster)'}\n", | |
"{'preferredEmail': {0: '****@ornl.gov'}, 'gender': {0: 'Female'}, 'gscholar': {0: 'https://scholar.google.com/citations?user=NDRCz6sAAAAJ&hl'}, 'emails': {0: ['****@ornl.gov']}, 'names': {0: [{'first': 'Erica', 'middle': '', 'last': 'Teixeira Prates', 'preferred': True, 'username': '~Erica_Teixeira_Prates1'}]}, 'history': {0: [{'position': 'Postdoc', 'start': 2018, 'end': 2021, 'institution': {'domain': 'ornl.gov', 'name': 'Oak Ridge National Laboratory'}}, {'position': 'Postdoc', 'start': 2013, 'end': 2017, 'institution': {'domain': 'unicamp.br', 'name': 'Instituto de Quimica'}}, {'position': 'PhD student', 'start': 2009, 'end': 2013, 'institution': {'domain': 'unicamp.br', 'name': 'Instituto de Quimica'}}]}, 'relations': {0: []}, 'expertise': {0: [{'keywords': ['Molecular docking', 'deep learning', 'molecular dynamics', 'protein structure'], 'start': 2018, 'end': 2021}]}, 'emailsConfirmed': {0: ['****@ornl.gov']}, 'venue': 'iclr 2022 (poster)'}\n", | |
"{'preferredEmail': {0: '****@centralesupelec.fr'}, 'gender': {0: 'Male'}, 'linkedin': {0: 'https://www.linkedin.com/in/edadaltocg/'}, 'gscholar': {0: 'https://scholar.google.com/citations?user=ImL09qAAAAAJ&hl=en&oi=ao'}, 'homepage': {0: 'https://edadaltocg.github.io'}, 'dblp': {0: 'https://dblp.org/pid/306/2391'}, 'emails': {0: ['****@centralesupelec.fr', '****@gmail.com']}, 'names': {0: [{'first': 'Eduardo', 'middle': '', 'last': 'Dadalto Camara Gomes', 'username': '~Eduardo_Dadalto_Camara_Gomes1', 'preferred': False}, {'first': 'Eduardo', 'middle': '', 'last': 'Dadalto Câmara Gomes', 'username': '~Eduardo_Dadalto_Câmara_Gomes1', 'preferred': True}]}, 'history': {0: [{'position': 'PhD student', 'start': 2020, 'end': None, 'institution': {'domain': 'centralesupelec.fr', 'name': 'Université Paris-Saclay CNRS CentraleSupélec'}}, {'position': 'MS student', 'start': 2018, 'end': 2020, 'institution': {'domain': 'isae-supaero.fr', 'name': \"Institut Supérieur de l'Aéronautique et de l'Espace\"}}, {'position': 'Undergrad student', 'start': 2015, 'end': 2020, 'institution': {'domain': 'ita.br', 'name': 'Instituto Tecnológico de Aeronáutica'}}]}, 'relations': {0: [{'relation': 'Coauthor', 'name': 'Pierre Colombo', 'email': '****@gmail.com', 'start': 2022, 'end': None, 'readers': ['everyone']}, {'relation': 'Coauthor', 'name': 'Nathan Noiry', 'email': '****@althiqa.io', 'start': 2022, 'end': None, 'readers': ['everyone']}, {'relation': 'Coauthor', 'name': 'Guillaume Staerman', 'email': '****@gmail.com', 'start': 2022, 'end': None, 'readers': ['everyone']}, {'relation': 'PhD Advisor', 'name': 'Pablo Piantanida', 'email': '****@centralesupelec.fr', 'start': 2020, 'end': None, 'readers': ['MIDL.io/2021/Conference/Short/Program_Chairs', 'NeurIPS.cc/2021/Conference/Program_Chairs', 'everyone']}, {'relation': 'PhD Advisee', 'name': 'Florence Alberge', 'email': '****@l2s.centralesupelec.fr', 'start': 2020, 'end': None, 'readers': ['MIDL.io/2021/Conference/Short/Program_Chairs', 'NeurIPS.cc/2021/Conference/Program_Chairs', 'everyone']}, {'name': 'Pierre Duhamel', 'email': '****@l2s.centralesupelec.fr', 'relation': 'Coauthor', 'start': 2020, 'end': None, 'readers': ['everyone']}, {'relation': 'Coauthor', 'name': 'Meryem Benammar', 'email': '****@isae-supaero.fr', 'start': 2020, 'end': None, 'readers': ['everyone']}]}, 'expertise': {0: [{'keywords': ['misclassification detection'], 'start': 2021, 'end': None}, {'keywords': ['out-of-distribution detection'], 'start': 2020, 'end': None}, {'keywords': ['trustworthy AI'], 'start': 2020, 'end': None}, {'keywords': ['deep learning'], 'start': 2020, 'end': None}]}, 'emailsConfirmed': {0: ['****@centralesupelec.fr', '****@gmail.com']}, 'venue': 'iclr 2022 (poster)'}\n", | |
"{'preferredEmail': {0: '****@gmail.com'}, 'gender': {0: 'Male'}, 'homepage': {0: 'http://buscatextual.cnpq.br/buscatextual/visualizacv.do;jsessionid=D9822F24D364299D11D8868EF46ADB21.buscatextual_0'}, 'emails': {0: ['****@dcc.ufmg.br', '****@gmail.com']}, 'names': {0: [{'first': 'Artur', 'middle': '', 'last': 'Souza', 'preferred': True, 'username': '~Artur_Souza1'}, {'first': 'Artur', 'middle': '', 'last': 'Luis Fernandes', 'username': '~Artur_Luis_Fernandes1', 'preferred': False}, {'first': 'Artur', 'middle': 'L. F.', 'last': 'Souza', 'username': '~Artur_L._F._Souza1', 'preferred': False}]}, 'history': {0: [{'position': 'PhD student', 'start': 2017, 'end': None, 'institution': {'domain': 'ufmg.br', 'name': 'Universidade Federal de Minas Gerais'}}, {'position': 'Undergrad student', 'start': 2013, 'end': 2016, 'institution': {'domain': 'ufmg.br', 'name': 'Universidade Federal de Minas Gerais'}}]}, 'relations': {0: [{'name': 'Leonardo B. Oliveira', 'email': '****@stanford.edu', 'relation': 'PhD Advisor', 'start': 2017, 'end': None, 'readers': ['everyone']}]}, 'expertise': {0: [{'keywords': ['Deep Learning'], 'start': 2018, 'end': None}]}, 'emailsConfirmed': {0: ['****@dcc.ufmg.br', '****@gmail.com']}, 'venue': 'iclr 2022 (poster)'}\n", | |
"{'dblp': {0: 'https://dblp.org/pid/122/2913'}, 'preferredEmail': {0: '****@gmail.com'}, 'gender': {0: 'Male'}, 'gscholar': {0: 'https://scholar.google.com/citations?user=LpWGWAwAAAAJ&hl=en'}, 'linkedin': {0: 'https://www.linkedin.com/in/andre-manoel/'}, 'orcid': {0: 'https://orcid.org/0000-0002-5455-0230'}, 'names': {0: [{'first': 'Andre', 'middle': '', 'last': 'Manoel', 'username': '~Andre_Manoel1', 'preferred': False}]}, 'emails': {0: ['****@gmail.com', '****@microsoft.com']}, 'history': {0: [{'position': 'Research Engineer', 'start': 2021, 'end': None, 'institution': {'domain': 'microsoft.com', 'name': 'Microsoft'}}, {'position': 'Data Scientist', 'start': 2020, 'end': 2021, 'institution': {'domain': 'einstein.br', 'name': 'Hospital Israelita Albert Einstein'}}, {'position': 'Machine Learning Scientist', 'start': 2018, 'end': 2020, 'institution': {'domain': 'owkin.com', 'name': 'Owkin'}}, {'position': 'Postdoc', 'start': 2017, 'end': 2018, 'institution': {'domain': 'inria.fr', 'name': 'INRIA'}}, {'position': 'Postdoc', 'start': 2016, 'end': 2017, 'institution': {'domain': 'cea.fr', 'name': 'CEA'}}, {'position': 'Postdoc', 'start': 2015, 'end': 2016, 'institution': {'domain': 'ens.fr', 'name': 'École Normale Supérieure'}}, {'position': 'PhD student', 'start': 2012, 'end': 2015, 'institution': {'domain': 'usp.br', 'name': 'Universidade de Sao Paulo'}}]}, 'relations': {0: [{'name': 'Bertrand Thirion', 'email': '****@inria.fr', 'relation': 'Postdoc Advisor', 'start': 2017, 'end': 2018, 'readers': ['everyone']}, {'name': 'Lenka Zdeborová', 'email': '****@gmail.com', 'relation': 'Postdoc Advisor', 'start': 2016, 'end': 2017, 'readers': ['everyone']}, {'name': 'Florent Krzakala', 'email': '****@ens.fr', 'relation': 'Postdoc Advisor', 'start': 2015, 'end': 2016, 'readers': ['everyone']}, {'name': 'Renato Vicente', 'email': '****@ime.usp.br', 'relation': 'PhD Advisor', 'start': 2012, 'end': 2015, 'readers': ['everyone']}]}, 'expertise': {0: [{'keywords': ['machine learning for healthcare'], 'start': 2020, 'end': None}, {'keywords': ['privacy-preserving machine learning'], 'start': 2018, 'end': None}, {'keywords': ['federated learning'], 'start': 2018, 'end': None}, {'keywords': ['message-passing algorithms'], 'start': 2012, 'end': 2018}]}, 'emailsConfirmed': {0: ['****@gmail.com', '****@microsoft.com']}, 'venue': 'iclr 2022 (poster)'}\n", | |
"{'preferredEmail': {0: '****@stanford.edu'}, 'gender': {0: 'Male'}, 'homepage': {0: 'https://gpoesia.com'}, 'gscholar': {0: 'https://scholar.google.com/citations?user=as5iYn4AAAAJ&hl=pt-BR'}, 'dblp': {0: 'https://dblp.org/pid/150/2695.html'}, 'emails': {0: ['****@stanford.edu']}, 'names': {0: [{'first': 'Gabriel', 'middle': '', 'last': 'Poesia', 'preferred': True, 'username': '~Gabriel_Poesia1'}]}, 'history': {0: [{'position': 'PhD student', 'start': 2019, 'end': None, 'institution': {'domain': 'stanford.edu', 'name': 'Stanford University'}}, {'position': 'MS student', 'start': 2015, 'end': 2017, 'institution': {'domain': 'ufmg.br', 'name': 'Universidade Federal de Minas Gerais'}}, {'position': 'Undergrad student', 'start': 2011, 'end': 2015, 'institution': {'domain': 'ufmg.br', 'name': 'Universidade Federal de Minas Gerais'}}]}, 'relations': {0: [{'name': 'Noah Goodman', 'email': '****@stanford.edu', 'relation': 'PhD Advisor', 'start': 2019, 'end': 2025, 'readers': ['everyone']}, {'name': 'Fernando Magno', 'email': '****@ufmg.br', 'relation': 'Coauthor', 'start': 2015, 'end': 2017, 'readers': ['everyone']}]}, 'expertise': {0: [{'keywords': ['artificial intelligence'], 'start': 2018, 'end': None}, {'keywords': ['program synthesis'], 'start': 2015, 'end': None}]}, 'emailsConfirmed': {0: ['****@stanford.edu']}, 'venue': 'iclr 2022 (poster)'}\n", | |
"Getting notes from API using url https://api.openreview.net/notes?content.venue=ICLR+2022+Spotlight&details=replyCount&offset=0&limit=1000&invitation=ICLR.cc%2F2022%2FConference%2F-%2FBlind_Submission\n", | |
"Getting notes from API using url https://api.openreview.net/notes?content.venue=ICLR+2022+Oral&details=replyCount&offset=0&limit=1000&invitation=ICLR.cc%2F2022%2FConference%2F-%2FBlind_Submission\n", | |
"{'preferredEmail': {0: '****@uva.nl'}, 'gender': {0: 'Male'}, 'homepage': {0: 'http://wilkeraziz.github.io'}, 'gscholar': {0: 'https://scholar.google.com/citations?user=phgBJXYAAAAJ'}, 'dblp': {0: 'https://dblp.org/pid/51/10489'}, 'emails': {0: ['****@gmail.com', '****@uva.nl', '****@gmail.com', '****@uva.nl']}, 'history': {0: [{'position': 'Assistant Professor', 'start': 2019, 'end': None, 'institution': {'domain': 'uva.nl', 'name': 'University of Amsterdam'}}, {'position': 'Research Associate', 'start': 2015, 'end': 2018, 'institution': {'domain': 'uva.nl', 'name': 'University of Amsterdam'}}, {'position': 'Research Associate', 'start': 2013, 'end': 2014, 'institution': {'domain': 'sheffield.ac.uk', 'name': 'University of Sheffield'}}, {'position': 'PhD student', 'start': 2010, 'end': 2014, 'institution': {'domain': 'wlv.ac.uk', 'name': 'University of Wolverhampton'}}, {'position': 'Intern', 'start': 2009, 'end': 2010, 'institution': {'domain': 'xrce.xerox.com', 'name': 'Xerox Research Centre Europe'}}, {'position': 'Undergrad student', 'start': 2005, 'end': 2010, 'institution': {'domain': 'usp.br', 'name': 'University of Sao Paulo'}}]}, 'expertise': {0: [{'keywords': ['approximate inference', 'deep generative models', 'deep learning'], 'start': 2016, 'end': None}, {'start': 2015, 'end': 2017, 'keywords': ['Word alignment', 'Bayesian modelling', 'variational inference', 'inversion transduction grammars']}, {'start': 2010, 'end': 2017, 'keywords': ['machine translation', 'MC', 'MCMC', 'conditional random fields']}]}, 'names': {0: [{'preferred': False, 'first': 'Wilker', 'middle': '', 'last': 'Aziz', 'username': '~Wilker_Aziz1'}]}, 'relations': {0: [{'name': 'Bryan Eikema', 'email': '****@uva.nl', 'relation': 'PhD Advisee', 'start': 2018, 'end': None}, {'name': 'Nicola De Cao', 'email': '****@uva.nl', 'relation': 'PhD Advisee', 'start': 2018, 'end': None}, {'name': 'Lucia Specia', 'email': '****@imperial.ac.uk', 'relation': 'PhD Advisor', 'start': 2010, 'end': 2013}, {'name': 'Marc Dymetman', 'email': '****@naverlabs.com', 'relation': 'PhD Advisor', 'start': 2010, 'end': 2013}]}, 'emailsConfirmed': {0: ['****@gmail.com', '****@uva.nl', '****@gmail.com', '****@uva.nl']}, 'venue': 'iclr 2022 (spotlight)'}\n" | |
] | |
} | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"source": [ | |
"## cria base com chave unica para cada autor\n", | |
"br_unique = dict()\n", | |
"for keys in res:\n", | |
" for author in res[keys]:\n", | |
" n_key = hash(str(author['names']))\n", | |
" if n_key in br_unique:\n", | |
" br_unique[n_key]['conf'].append(keys)\n", | |
" else:\n", | |
" name=\" \".join([author['names'][0][0]['first'],author['names'][0][0]['middle'],author['names'][0][0]['last']]).replace(\" \", \" \")\n", | |
" br_unique[n_key]=author\n", | |
" br_unique[n_key]['conf']=[keys]\n", | |
" br_unique[n_key]['name']=name\n" | |
], | |
"metadata": { | |
"id": "UZ6l6PWfzG_K" | |
}, | |
"execution_count": null, | |
"outputs": [] | |
}, | |
{ | |
"cell_type": "code", | |
"source": [ | |
"## limpa a base e export pra csv\n", | |
"import pandas as pd\n", | |
"\n", | |
"def clean_column(colnames,df):\n", | |
" for col in colnames:\n", | |
" df[col]=[x[0] if type(x)==dict else x for x in df[col] ]\n", | |
"\n", | |
"\n", | |
"df = pd.DataFrame(br_unique.values())[['homepage', 'expertise', 'conf', 'name', 'dblp', 'orcid', 'gscholar', 'linkedin']]\n", | |
"clean_column(['homepage', 'expertise', 'dblp', 'orcid', 'gscholar', 'linkedin'],df)\n", | |
"df.to_csv(\"br_iclr_uai_neurips_2021_2022.csv\")" | |
], | |
"metadata": { | |
"id": "l3va8-RlRDXk" | |
}, | |
"execution_count": null, | |
"outputs": [] | |
}, | |
{ | |
"cell_type": "code", | |
"source": [ | |
"## exporta para o google drive\n", | |
"from google.colab import auth\n", | |
"from google.auth import default\n", | |
"import gspread\n", | |
"import pandas as pd\n", | |
"#Auth\n", | |
"auth.authenticate_user()\n", | |
"creds, _ = default()\n", | |
"gc = gspread.authorize(creds)\n", | |
"title = 'br_iclr_uai_neurips_2021_2022'\n", | |
"from gspread_dataframe import set_with_dataframe\n", | |
"\n", | |
"gc.create(title) # if not exist\n", | |
"sheet = gc.open(title).sheet1\n", | |
"set_with_dataframe(sheet, df) " | |
], | |
"metadata": { | |
"id": "-PAwI-yRRwx1" | |
}, | |
"execution_count": null, | |
"outputs": [] | |
}, | |
{ | |
"cell_type": "code", | |
"source": [], | |
"metadata": { | |
"id": "kDY85nA2T4y4" | |
}, | |
"execution_count": null, | |
"outputs": [] | |
}, | |
{ | |
"cell_type": "code", | |
"source": [], | |
"metadata": { | |
"id": "GHO8woeStZow" | |
}, | |
"execution_count": null, | |
"outputs": [] | |
} | |
], | |
"metadata": { | |
"colab": { | |
"provenance": [], | |
"include_colab_link": true | |
}, | |
"kernelspec": { | |
"display_name": "Python 3", | |
"name": "python3" | |
}, | |
"language_info": { | |
"name": "python" | |
} | |
}, | |
"nbformat": 4, | |
"nbformat_minor": 0 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment