Scrape & extract data, Store documents¶



SC 4125: Developing Data Products

Module-3: Data from crawls & APIs; NoSQL/MongoDB Data Store



by Anwitaman DATTA
School of Computer Science and Engineering, NTU Singapore.

Teaching material¶

  • .html deck of slides
  • .ipynb Jupyter notebook

Disclaimer/Caveat emptor¶

  • Non-systematic and non-exhaustive review
  • Example solutions are not necessarily the most efficient or elegant, let alone unique

Positioning this module in the big picture¶

Big picture

BeautifulSoup¶

BeautifulSoup

  • BeautifulSoup (BS4) is a Python library for pulling data out of HTML and XML files.
  • It is modular, and thus requires other libraries such as `requests' to fetch the data through http requests (or you can first fetch the data whichever way, and then process the locally stored data with BS4), and one can use different parsers, e.g., lxml or html5lib.
  • Useful resources:
    • Doc: https://www.crummy.com/software/BeautifulSoup/bs4/doc/
    • A nice online tutorial: https://www.youtube.com/watch?v=ng2o98k983k
  • Contrast with Scrapy: https://scrapy.org/ (Check out Scrapy on your own)
    • Scrapy is an application framework for writing "web spiders" to crawl and extract data from them. It has its in-built data extraction mechanism (selectors), but you may also use BeautifulSoup instead for the extraction purpose, after having carried out the crawl and download.
In [1]:
### BeautifulSoup: Install & import libraries as needed
#!pip install --upgrade beautifulsoup4
#! pip install lxml 
#! pip install html5lib # an alternate parser
#! pip install requests
from bs4 import BeautifulSoup
import requests
#print(bs4.__version__)
In [2]:
# Since the individual project will use DR-NTU academic profile as one of the data sources,
# let's see some examples from there. 
# As example, I am using the data from the profile of SCSE's chair as on August 2021.

soup_URL="https://dr.ntu.edu.sg/cris/rp/rp00084"
soup_source = requests.get(soup_URL).text
soup = BeautifulSoup(soup_source,'lxml')
print(soup)
<!DOCTYPE html>
<html>
<head>
<title>Prof Miao Chun Yan | Nanyang Technological University (DR-NTU)</title>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
<meta content="IE=edge" http-equiv="X-UA-Compatible"/>
<meta content="DSpace CRIS-6.3.0-SNAPSHOT" name="Generator"/>
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
<meta content="Dr. Jaclyn, Chunyan Miao is a Full Professor in the School of Computer Engineering at Nanyang Technological University (NTU). Her research focus is on ..." name="description"/>
<link href="https://dr.ntu.edu.sg/rs/resourcesync.xml" rel="resourcesync sitemap" type="application/xml"/>
<link href="/favicon.ico" rel="shortcut icon" type="image/x-icon"/>
<link href="/static/css/jquery-ui-1.10.3.custom/redmond/jquery-ui-1.10.3.custom.css" rel="stylesheet" type="text/css"/>
<link href="/css/researcher.css" rel="stylesheet" type="text/css"/>
<link href="/css/jdyna.css" rel="stylesheet" type="text/css"/>
<link href="/static/css/bootstrap/bootstrap.min.css" rel="stylesheet" type="text/css"/>
<link href="/static/css/bootstrap/bootstrap-theme.css" rel="stylesheet" type="text/css"/>
<link href="/static/css/font-awesome/css/font-awesome.min.css" rel="stylesheet"/>
<link href="/static/css/jstree/themes/default/style.min.css" rel="stylesheet"/>
<link href="/static/css/bootstrap/dspace-theme.css" rel="stylesheet" type="text/css"/>
<link href="/css/orcid.css" rel="stylesheet" type="text/css"/>
<link href="/static/css/dataTables.bootstrap.min.css" rel="stylesheet" type="text/css"/>
<link href="/static/css/buttons.bootstrap.min.css" rel="stylesheet" type="text/css"/>
<link href="/static/css/responsive.bootstrap.min.css" rel="stylesheet" type="text/css"/>
<link href="/css/bootstrap-datetimepicker.min.css" rel="stylesheet" type="text/css"/>
<link href="/static/css/select.dataTables.min.css" rel="stylesheet" type="text/css"/>
<link href="/open-search/description.xml" rel="search" title="DSpace" type="application/opensearchdescription+xml"/>
<meta content="Prof Miao Chun Yan" property="title"/>
<meta content="Prof Miao Chun Yan" property="og:title"/>
<meta content="profile" property="og:type"/>
<meta content="https://dr.ntu.edu.sg/cris/uuid/2a1b708e-400e-4450-bd74-f72460789080" property="og:url"/>
<script src="/static/js/jquery/jquery-1.11.3.min.js" type="text/javascript"></script>
<script src="/static/js/jquery/jquery-ui-1.11.4.min.js" type="text/javascript"></script>
<script src="/js/moment.js" type="text/javascript"></script>
<script src="/static/js/bootstrap/bootstrap.min.js" type="text/javascript"></script>
<script src="/static/js/holder.js" type="text/javascript"></script>
<script src="/utils.js" type="text/javascript"></script>
<script src="/static/js/choice-support.js" type="text/javascript"> </script>
<script src="/js/jdyna/jdyna.js" type="text/javascript"></script>
<script src="/js/jquery.dataTables.min.js" type="text/javascript"></script>
<script src="/js/dataTables.bootstrap.min.js" type="text/javascript"></script>
<script src="/js/dataTables.buttons.min.js" type="text/javascript"></script>
<script src="/js/buttons.bootstrap.min.js" type="text/javascript"></script>
<script src="/js/buttons.html5.min.js" type="text/javascript"></script>
<script src="/js/dataTables.responsive.min.js" type="text/javascript"></script>
<script src="/js/bootstrap-datetimepicker.min.js" type="text/javascript"></script>
<script src="/static/js/dataTables.select.min.js" type="text/javascript"></script>
<script src="/js/jszip.min.js" type="text/javascript"></script>
<script type="text/javascript">
		var j = jQuery.noConflict();
		var $ = jQuery.noConflict();
		var JQ = j;
		dspaceContextPath = "";
		jQuery(document).ready(function ($) {
			  $('span[data-toggle="tooltip"]').tooltip();
			  $('i[data-toggle="tooltip"]').tooltip();
		      $('[data-toggle="accessicontooltip"]').tooltip();
		});
	</script>
<script>
            (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
            (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
            m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
            })(window,document,'script','//www.google-analytics.com/analytics.js','ga');

            ga('create', 'UA-119404953-6', 'auto');
            ga('send', 'pageview');
        </script>
<script type="application/ld+json">
    {
      "@context": "http://schema.org",
      "@type": "Person",
      "name": "Prof Miao Chun Yan",
      "url": "https://dr.ntu.edu.sg/cris/uuid/2a1b708e-400e-4450-bd74-f72460789080"
    }
    </script>
<script type="text/javascript"><!--

	    var activeTab = function(){
    		var ajaxurlrelations = "/cris/rp/viewNested.htm";
		   	j('.nestedinfo').each(function(){
				var id = j(this).html();
				j.ajax( {
					url : ajaxurlrelations,
					data : {																			
						"parentID" : 84,
						"typeNestedID" : id,
						"pageCurrent": j('#nested_'+id+"_pageCurrent").html(),
						"limit": j('#nested_'+id+"_limit").html(),
						"editmode": j('#nested_'+id+"_editmode").html(),
						"totalHit": j('#nested_'+id+"_totalHit").html(),
						"admin": false,
						"externalJSP": j('#nested_'+id+"_externalJSP").html()
					},
					success : function(data) {																										
						j('#viewnested_'+id).html(data);
						var ajaxFunction = function(page){
							j.ajax( {
								url : ajaxurlrelations,
								data : {																			
									"parentID" : 84,
									"typeNestedID" : id,													
									"pageCurrent": page,
									"limit": j('#nested_'+id+"_limit").html(),
									"editmode": j('#nested_'+id+"_editmode").html(),
									"totalHit": j('#nested_'+id+"_totalHit").html(),
									"admin": false,
									"externalJSP": j('#nested_'+id+"_externalJSP").html()
								},
								success : function(data) {									
									j('#viewnested_'+id).html(data);
									postfunction();
								},
								error : function(data) {
								}
							});		
						};
						var postfunction = function(){
							j('#nested_'+id+'_next').click(
									function() {
								    	ajaxFunction(parseInt(j('#nested_'+id+"_pageCurrent").html())+1);
										
							});
							j('#nested_'+id+'_prev').click(
									function() {
										ajaxFunction(parseInt(j('#nested_'+id+"_pageCurrent").html())-1);
							});
							j('.nested_'+id+'_nextprev').click(
									function(){
										ajaxFunction(j(this).attr('id').substr(('nested_'+id+'_nextprev_').length));
							});
						};
						postfunction();
					},
					error : function(data) {
					}
				});
			});
    	};
    	
		j(document).ready(function()
		{
			
			j('#namecard-box-fixed').html(j('#namecard').html());
			j('#namecard').hide();
			
			j('#claimrp-modal-close').on('click',function(){
				j('#claimrp-modal').hide();
			});
			
			j('#claim-rp').on('click',function(){
				j('#claimrp-validation').val('');
				j('#label-success').remove();
				j('#label-error').remove();
         		j('#claimrp-modal').show();				
			});
			
			j("#tabs").tabs({
				cache: true,
				active: 0,
				load: function(event, ui){
					activeTab();
				},
				"activate": function( event, ui ) {
					j("li.ui-tabs-active").toggleClass("ui-tabs-active ui-state-active active");
					if(history!=undefined) {
						history.replaceState(null, null, "/cris/rp/rp00084/" + j(ui.newTab[0]).data("tabname")+".html");	
					}					
				},
				"beforeActivate": function( event, ui ) {
	   			 j("li.active").toggleClass("active");
				},
		   		"create": function( event, ui ) {
		               j("div.ui-tabs").toggleClass("ui-tabs ui-widget ui-widget-content ui-corner-all tabbable");
		               j("ul.ui-tabs-nav").toggleClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all nav nav-tabs");
		               j("li.ui-tabs-active").toggleClass("ui-state-default ui-corner-top ui-tabs-active ui-state-active active");
		               j("li.ui-state-default").toggleClass("ui-state-default ui-corner-top");
		               j("div.ui-tabs-panel").toggleClass("ui-tabs-panel ui-widget-content ui-corner-bottom tab-content with-padding");
		        }
			});

			activeTab();
		});
		-->
	</script>
<!-- HTML5 shiv and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>  
	  <script src="/static/js/html5shiv.js"></script>
	  <script src="/static/js/selectivizr-min.js"></script>
	  <script src="/static/js/respond.min.js"></script>
	  <link rel="stylesheet" href="/static/css/bootstrap/dspace-theme-IElte9.css" type="text/css" />
	<![endif]-->
</head>
<body class="undernavigation" dir="ltr">
<a class="sr-only" href="#content">Skip navigation</a>
<header class="navbar navbar-default">
<div class="container">
<br/>
<div class="navbar-header">
<button class="navbar-toggle" data-target=".navbar-collapse" data-toggle="collapse" type="button">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="col-sm-5 col-md-5 hidden-xs">
<div class="col-sm-12" id="brandname">
<a href="https://www.ntu.edu.sg" style="text-decoration: none">
<img class="hidden-xs hidden-sm" src="/image/hires_logo_bw_school.jpg" style="max-width:181px;"/>
</a>
</div>
</div>
<div class="col-sm-7 col-md-7 hidden-xs">
<div class="pull-right nowrap">
<a class="home_name" href="/" target="_self">
				DR-NTU (Digital Repository of NTU)</a>
</div>
</div>
<div class="hidden-md hidden-lg hidden-sm visible-xs">
<div class="row">
<div class="col-xs-12" id="brandname">
<a href="https://www.ntu.edu.sg" style="text-decoration: none">
<img class="center-block" src="/image/hires_logo_bw_school.jpg" style="max-width:181px;"/>
</a>
				 
                        </div>
</div>
<div class="hidden-md hidden-lg hidden-sm visible-xs">
<div class="home_name_sm text-center">
<a href="/" target="_blank">DR-NTU (Digital Repository of NTU)</a> 
			</div>
</div>
</div>
<div class="row">
<nav aria-expanded="false" class="navbar-collapse bs-navbar-collapse collapse" role="navigation" style="height: 1px;">
<br/>
<ul class="nav navbar-nav" id="top-menu">
<li class="text-uppercase" id="home-top-menu"><a href="/"><span class="glyphicon glyphicon-home"> </span></a></li>
<li class="text-uppercase" id=""><a href="/community-list">Communities &amp; Collections</a></li>
<li class="text-uppercase" id="publications-top-menu"><a href="/cris/explore/publications">Research Papers </a></li>
<li class="text-uppercase" id="orgunits-top-menu"><a href="/cris/explore/orgunits">Organisations</a></li>
<li class="text-uppercase" id="theses-top-menu"><a href="/cris/explore/theses">Theses</a></li>
<li class="text-uppercase" id="fyp-top-menu"><a href="/cris/explore/fyp">FYPs</a></li>
<li class="text-uppercase" id="fundings-top-menu"><a href="/cris/explore/fundings">Projects</a></li>
<li class="text-uppercase" id="researcherprofiles-top-menu"><a href="/cris/explore/researcherprofiles">Academic Profile </a></li>
<li class="dropdown hidden-md hidden-lg hidden-xs">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">Explore by <b class="caret"></b></a>
<ul class="dropdown-menu">
<li class="text-uppercase"><a href="/cris/explore/publications">Research Papers </a></li>
<li class="text-uppercase"><a href="/cris/explore/orgunits">Organisations</a></li>
<li class="text-uppercase"><a href="/cris/explore/theses">Theses</a></li>
<li class="text-uppercase"><a href="/cris/explore/fyp">FYPs</a></li>
<li class="text-uppercase"><a href="/cris/explore/fundings">Projects</a></li>
<li class="text-uppercase"><a href="/cris/explore/researcherprofiles">Academic Profile </a></li>
</ul>
</li>
<li class="text-uppercase" id="help-top-menu"><a href="https://libguides.ntu.edu.sg/drntu" target="_blank">Guidelines </a></li>
</ul>
<div class="nav navbar-nav navbar-right">
<ul class="nav navbar-nav" id="search-user-menu">
<li class="dropdown hidden-xs" id="search-top-menu">
<a class="dropdown-toggle" data-toggle="dropdown" href="#"><span class="glyphicon glyphicon-search"></span><b class="caret"></b></a>
<div class="dropdown-menu">
<form action="/global-search" class="navbar-form navbar-right" id="formsearch-top-menu" method="get" scope="search">
<div class="form-group">
<input class="form-control" id="tequery" name="query" placeholder="Search the repository" size="25" type="text"/>
</div>
<button class="btn btn-primary" type="submit"><span class="glyphicon glyphicon-search"></span></button>
</form>
</div>
</li>
<li id="user-top-menu">
<a href="/mydspace"><span class="glyphicon glyphicon-user"></span> Login </a>
</li>
</ul>
</div>
</nav>
</div>
</div>
</header>
<main id="content" role="main">
<div class="container fullheight">
<div id="content">
<div class="row">
<div class="col-lg-12">
<div class="form-inline">
</div>
</div>
<div id="researcher">
<h2>Academic Profile </h2>
<div id="namecard-box-fixed">
</div>
<div class="col-lg-3 tab-content-left researcher-menu-item-hidden">
<ul class="nav nav-pills nav-stacked cris-tabs-menu">
</ul>
</div>
<div class="col-lg-12">
<ul class="nav nav-tabs">
<li class="researcher-menu-item active" data-tabname="information" id="bar-tab-9">
<a href="/cris/rp/rp00084">
						
						About
						
						</a>
</li>
</ul>
<div id="tab-9">
<div class="row horizontal-tab">
<div class="panel-group col-md-12" id="biography">
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-parent="#biography" data-toggle="collapse" href="#collapseOnebiography">
<b>Biography</b>
</a>
</h4>
</div>
<div class="panel-collapse collapse in" id="collapseOnebiography">
<div class="rdiv">
<div class="dynaField">
<div class="dynaFieldValue" id="biographyDiv">
<div>Dr. Jaclyn, Chunyan Miao is a Full Professor in the School of Computer Engineering at Nanyang Technological University (NTU). Her research focus is on infusing intelligent agents into interactive new media (virtual, mixed, mobile and pervasive media) to create novel experiences and dimensions in game design, interactive narrative and other real world agent systems. She has done significant research work her research areas and published over 30 top quality international conference and journal papers. She believes that intelligence/agent augmentation will have a major impact on future new media systems.</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-12" id="namecard">
<div class="col-md-2" id="researcherPicture">
<div class="dynaField">
<div class="dynaFieldValue" id="personalpictureDiv">
<div class="image">
<img alt="ascymiao_1_2.JPG picture" id="picture" name="picture" src="/cris/rp/fileservice/rp00084/57/?filename=ascymiao_1_2.JPG" title="A preview ascymiao_1_2.JPG picture"/>
</div>
</div>
</div>
</div>
<div class="col-md-10" id="researcherInfo">
<div class="col-md-12">
<span class="namecard-fullname">
						
						
						 	   Prof Miao Chun Yan
						         
						</span>
</div>
<div>
<div class="col-md-12">
						
						     Chair, School of Computer Science and Engineering
						
	         		</div>
<div class="col-md-12">
                                                                   Professor, School of Computer Science and Engineering
						             </div>
<div class="col-md-12">
<div class="dynaField">
<span class="dynaLabel"><span class="glyphicon glyphicon-envelope"></span></span>
<div class="dynaFieldValue" id="emailDiv">
<a href="mailto:ascymiao@ntu.edu.sg">ascymiao@ntu.edu.sg</a>
</div>
</div>
<div class="dynaClear"> </div>
</div>
<br/>
<div class="col-md-12">
<div class="dynaField">
<span class="dynaLabel"><span class="glyphicon glyphicon-link"></span></span>
<div class="dynaFieldValue" id="personalsiteDiv">
<a href="https://personal.ntu.edu.sg/ascymiao" target="_blank">
<span style="min-width: 40em;">Website</span>
</a>
</div>
</div>
<div class="dynaClear"> </div>
</div>
<div class="col-md-12" style="font-size: 0;">
</div>
</div>
</div>
</div>
<div class="panel-group col-md-12" id="researchinterests">
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-parent="#researchinterests" data-toggle="collapse" href="#collapseOneresearchinterests">
<b>Research Interests</b>
</a>
</h4>
</div>
<div class="panel-collapse collapse in" id="collapseOneresearchinterests">
<div class="rdiv">
<div class="dynaField">
<div class="dynaFieldValue" id="researchinterestsDiv">
<div>Dr. Jaclyn, Chunyan Miao's area of expertise are Agent, Multi-Agent Systems (MAS), Agent Oriented Software Engineering (AOSE), Semantic Web/Grid, Agent Augmented Interactive Media/gaming/storytelling, Agent Mediated e-services?mobile agents for wireless communications.  Her current research works focus on infusing intelligent agents into interactive new media (virtual, mixed, mobile and pervasive media) to create novel experiences and dimensions in game design, interactive narrative and other real world agent systems.</div>
</div>
</div>
<div class="dynaClear"> </div>
</div>
</div>
</div>
</div>
<div class="panel-group col-md-12" id="taxonomy">
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-parent="#taxonomy" data-toggle="collapse" href="#collapseOnetaxonomy">
<b>Keywords</b>
</a>
</h4>
</div>
<div class="panel-collapse collapse in" id="collapseOnetaxonomy">
<div class="rdiv">
<div class="dynaField">
<div class="dynaFieldValue" id="taxonomyDiv">
<a href="/simple-search?location=researcherprofiles&amp;query=++crisrp.taxonomy_authority%3A(taxonomy00237)">Computer Science and Engineering</a>

				

				

			

			

		

		

		

		

		

		

			;

			

			

			

				

					<a href="/simple-search?location=researcherprofiles&amp;query=++crisrp.taxonomy_authority%3A(taxonomy00245)">Info-Communication Technology</a>

				

				

			

			

		

		

		

		

		

		

			;

			

			

			

				

					<a href="/simple-search?location=researcherprofiles&amp;query=++crisrp.taxonomy_authority%3A(taxonomy00246)">Interactive Digital Media</a>

				

				

			

			

		

		

		

		

		

		

			;

			

			

			

				

					<a href="/simple-search?location=researcherprofiles&amp;query=++crisrp.taxonomy_authority%3A(taxonomy00248)">Internet &amp; Communications</a>
</div>
</div>
<div class="dynaClear"> </div>
</div>
</div>
</div>
</div>
<div class="panel-group col-md-12" id="currentprojects">
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-parent="#currentprojects" data-toggle="collapse" href="#collapseOnecurrentprojects">
<b>Current Projects</b>
</a>
</h4>
</div>
<div class="panel-collapse collapse in" id="collapseOnecurrentprojects">
<div class="rdiv">
<div class="dynaField">
<div class="dynaFieldValue" id="currentprojectsDiv">
<ul>
<li>ADL+: A Digital Toolkit For Cognitive Assessment And Intervention</li>
<br/>
<li>Alibaba-NTU Singapore Joint Research Institute</li>
<br/>
<li>An End-to-end Adaptive AI-Assisted 3H Care (A3C) System</li>
<br/>
<li>Joint NTU-Alibaba Research Institute</li>
<br/>
<li>Joint NTU-WeBank Research Centre on Fintech</li>
<br/>
<li>Joint SDU-NTU Centre for Artificial Intelligence Research(C-FAIR) - Smart Community Research and Talent Programme</li>
<br/>
<li>Monetary Academic Resources for Research</li>
<br/>
<li>Senior-friendly Persuasive AI Companions for an Aging Population</li>
<br/>
<li>The Joint NTU-WeBank Research Centre Of Eco-Intelligent Applications ("THEIA")</li>
<br/>
<li>TrustFUL: Trustworthy Federated Ubiquitous Learning</li>
<br/>
<li>TrustFUL: Trustworthy Federated Ubiquitous Learning (SCSE)</li>
</ul>
</div>
</div>
<div class="dynaClear"> </div>
</div>
</div>
</div>
</div>
<div class="panel-group col-md-12" id="selectedPublications">
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-parent="#selectedPublications" data-toggle="collapse" href="#collapseOneselectedPublications">
<b>Selected Publications</b>
</a>
</h4>
</div>
<div class="panel-collapse collapse in" id="collapseOneselectedPublications">
<div class="rdiv">
<div class="dynaField">
<div class="dynaFieldValue" id="selectedPublicationsDiv">
<ul>
<li>Zhiwei Zeng, Zhiqi Shen, Jing Jih Chin, Cyril Leung, Yu Wang, Ying Chi, Chunyan Miao. (2020). Explainable and Contextual Preferences based Decision Making with Assumption-based Argumentation for Diagnostics and Prognostics of Alzheimer’s Disease. <i>International Conference on Autonomous Agents and Multiagent Systems</i>.</li>
<br/>
<li>Yongqing Zheng, Han Yu, Lizhen Cui, Chunyan Miao, Cyril Leung, Yang Liu &amp; Qiang Yang. (2020). Addressing the challenges of government service provision with AI. <i>AI Magazine, 41</i>(1), 33-43.</li>
<br/>
<li>Chang Liu, Han Yu, Yi Dong, Zhiqi Shen, Yingxue Yu, Ian Dixon, Zhanning Gao, Pan Wang, Peiran Ren, Xuansong Xie, Lizhen Cui, Chunyan Miao. (2020). Generating Engaging Promotional Videos for E-commerce Platforms. <i>the 34th AAAI Conference on Artificial Intelligence (AAAI-20)</i>.</li>
<br/>
<li>Yong Liu, Yingtai Xiao, Qiong Wu, Chunyan Miao, Juyong Zhang, Binqiang Zhao, Haihong Tang. (2020). Diversified Interactive Recommendation with Implicit Feedback. <i>The Thirty-Fourth AAAI Conference on Artificial Intelligence (AAAI-20)</i>.</li>
<br/>
<li>Chang Liu, Yi Dong, Han Yu, Zhiqi Shen, Zhanning Gao, Pan Wang, Changgong Zhang, Peiran Ren, Xuansong Xie, Lizhen Cui &amp; Chunyan Miao. (2019). Proceedings of the 28th ACM International Conference on Information and Knowledge Management (CIKM'19): Generating Persuasive Visual Storylines for Promotional Videos. (pp. 901–910)ACM.</li>
</ul>
</div>
</div>
<div class="dynaClear"> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="clearfix"> </div>
</div>
</div>
</div>
<footer class="container navbar navbar-inverse navbar-bottom">
<div class="container">
<div class="row">
<div class="col-md-12">
<!-- Footer --><footer class="page-footer font-small teal pt-4"> <!-- Footer Text --> <div class="container-fluid text-left text-md-left"> <!-- Grid row --> <div class="row"> <!-- Grid column --> <div class="col-md-12 mt-md-0 mt-3"> <!-- Content --> <h4 class="text-uppercase font-weight-bold">Contact Us</h4> <p><a href="https://www.ntu.edu.sg/education/libraries"><h5>NTU Library</h5></a> </p><p>Office of Information, Knowledge and Library Services</p> <p>Email: <a href="mailto:library@ntu.edu.sg">library@ntu.edu.sg</a></p> </div> </div> <!-- Grid row --> </div> <!-- Footer Text --> <!-- Copyright --> <div class="footer-copyright text-right py-3" style="padding:0 20px 20px 0"> <a href="https://www.ntu.edu.sg/footer/copyright">Copyright</a> • <a href="https://www.ntu.edu.sg/footer/disclaimer">Disclaimer</a> • <a href="https://www.ntu.edu.sg/footer/ntu-privacy-statement">Data Protection and Privacy</a><br/>                                     © 2019 Nanyang Technological University ​  <br/></div> <!-- Copyright --></footer><!-- Footer -->
</div>
</div>
</div>
</footer>
</div></main></body>
</html>

In [3]:
# prettify() helps print with indentation
print(soup.prettify())
<!DOCTYPE html>
<html>
 <head>
  <title>
   Prof Miao Chun Yan | Nanyang Technological University (DR-NTU)
  </title>
  <meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
  <meta content="IE=edge" http-equiv="X-UA-Compatible"/>
  <meta content="DSpace CRIS-6.3.0-SNAPSHOT" name="Generator"/>
  <meta content="width=device-width, initial-scale=1.0" name="viewport"/>
  <meta content="Dr. Jaclyn, Chunyan Miao is a Full Professor in the School of Computer Engineering at Nanyang Technological University (NTU). Her research focus is on ..." name="description"/>
  <link href="https://dr.ntu.edu.sg/rs/resourcesync.xml" rel="resourcesync sitemap" type="application/xml"/>
  <link href="/favicon.ico" rel="shortcut icon" type="image/x-icon"/>
  <link href="/static/css/jquery-ui-1.10.3.custom/redmond/jquery-ui-1.10.3.custom.css" rel="stylesheet" type="text/css"/>
  <link href="/css/researcher.css" rel="stylesheet" type="text/css"/>
  <link href="/css/jdyna.css" rel="stylesheet" type="text/css"/>
  <link href="/static/css/bootstrap/bootstrap.min.css" rel="stylesheet" type="text/css"/>
  <link href="/static/css/bootstrap/bootstrap-theme.css" rel="stylesheet" type="text/css"/>
  <link href="/static/css/font-awesome/css/font-awesome.min.css" rel="stylesheet"/>
  <link href="/static/css/jstree/themes/default/style.min.css" rel="stylesheet"/>
  <link href="/static/css/bootstrap/dspace-theme.css" rel="stylesheet" type="text/css"/>
  <link href="/css/orcid.css" rel="stylesheet" type="text/css"/>
  <link href="/static/css/dataTables.bootstrap.min.css" rel="stylesheet" type="text/css"/>
  <link href="/static/css/buttons.bootstrap.min.css" rel="stylesheet" type="text/css"/>
  <link href="/static/css/responsive.bootstrap.min.css" rel="stylesheet" type="text/css"/>
  <link href="/css/bootstrap-datetimepicker.min.css" rel="stylesheet" type="text/css"/>
  <link href="/static/css/select.dataTables.min.css" rel="stylesheet" type="text/css"/>
  <link href="/open-search/description.xml" rel="search" title="DSpace" type="application/opensearchdescription+xml"/>
  <meta content="Prof Miao Chun Yan" property="title"/>
  <meta content="Prof Miao Chun Yan" property="og:title"/>
  <meta content="profile" property="og:type"/>
  <meta content="https://dr.ntu.edu.sg/cris/uuid/2a1b708e-400e-4450-bd74-f72460789080" property="og:url"/>
  <script src="/static/js/jquery/jquery-1.11.3.min.js" type="text/javascript">
  </script>
  <script src="/static/js/jquery/jquery-ui-1.11.4.min.js" type="text/javascript">
  </script>
  <script src="/js/moment.js" type="text/javascript">
  </script>
  <script src="/static/js/bootstrap/bootstrap.min.js" type="text/javascript">
  </script>
  <script src="/static/js/holder.js" type="text/javascript">
  </script>
  <script src="/utils.js" type="text/javascript">
  </script>
  <script src="/static/js/choice-support.js" type="text/javascript">
  </script>
  <script src="/js/jdyna/jdyna.js" type="text/javascript">
  </script>
  <script src="/js/jquery.dataTables.min.js" type="text/javascript">
  </script>
  <script src="/js/dataTables.bootstrap.min.js" type="text/javascript">
  </script>
  <script src="/js/dataTables.buttons.min.js" type="text/javascript">
  </script>
  <script src="/js/buttons.bootstrap.min.js" type="text/javascript">
  </script>
  <script src="/js/buttons.html5.min.js" type="text/javascript">
  </script>
  <script src="/js/dataTables.responsive.min.js" type="text/javascript">
  </script>
  <script src="/js/bootstrap-datetimepicker.min.js" type="text/javascript">
  </script>
  <script src="/static/js/dataTables.select.min.js" type="text/javascript">
  </script>
  <script src="/js/jszip.min.js" type="text/javascript">
  </script>
  <script type="text/javascript">
   var j = jQuery.noConflict();
		var $ = jQuery.noConflict();
		var JQ = j;
		dspaceContextPath = "";
		jQuery(document).ready(function ($) {
			  $('span[data-toggle="tooltip"]').tooltip();
			  $('i[data-toggle="tooltip"]').tooltip();
		      $('[data-toggle="accessicontooltip"]').tooltip();
		});
  </script>
  <script>
   (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
            (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
            m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
            })(window,document,'script','//www.google-analytics.com/analytics.js','ga');

            ga('create', 'UA-119404953-6', 'auto');
            ga('send', 'pageview');
  </script>
  <script type="application/ld+json">
   {
      "@context": "http://schema.org",
      "@type": "Person",
      "name": "Prof Miao Chun Yan",
      "url": "https://dr.ntu.edu.sg/cris/uuid/2a1b708e-400e-4450-bd74-f72460789080"
    }
  </script>
  <script type="text/javascript">
   <!--

	    var activeTab = function(){
    		var ajaxurlrelations = "/cris/rp/viewNested.htm";
		   	j('.nestedinfo').each(function(){
				var id = j(this).html();
				j.ajax( {
					url : ajaxurlrelations,
					data : {																			
						"parentID" : 84,
						"typeNestedID" : id,
						"pageCurrent": j('#nested_'+id+"_pageCurrent").html(),
						"limit": j('#nested_'+id+"_limit").html(),
						"editmode": j('#nested_'+id+"_editmode").html(),
						"totalHit": j('#nested_'+id+"_totalHit").html(),
						"admin": false,
						"externalJSP": j('#nested_'+id+"_externalJSP").html()
					},
					success : function(data) {																										
						j('#viewnested_'+id).html(data);
						var ajaxFunction = function(page){
							j.ajax( {
								url : ajaxurlrelations,
								data : {																			
									"parentID" : 84,
									"typeNestedID" : id,													
									"pageCurrent": page,
									"limit": j('#nested_'+id+"_limit").html(),
									"editmode": j('#nested_'+id+"_editmode").html(),
									"totalHit": j('#nested_'+id+"_totalHit").html(),
									"admin": false,
									"externalJSP": j('#nested_'+id+"_externalJSP").html()
								},
								success : function(data) {									
									j('#viewnested_'+id).html(data);
									postfunction();
								},
								error : function(data) {
								}
							});		
						};
						var postfunction = function(){
							j('#nested_'+id+'_next').click(
									function() {
								    	ajaxFunction(parseInt(j('#nested_'+id+"_pageCurrent").html())+1);
										
							});
							j('#nested_'+id+'_prev').click(
									function() {
										ajaxFunction(parseInt(j('#nested_'+id+"_pageCurrent").html())-1);
							});
							j('.nested_'+id+'_nextprev').click(
									function(){
										ajaxFunction(j(this).attr('id').substr(('nested_'+id+'_nextprev_').length));
							});
						};
						postfunction();
					},
					error : function(data) {
					}
				});
			});
    	};
    	
		j(document).ready(function()
		{
			
			j('#namecard-box-fixed').html(j('#namecard').html());
			j('#namecard').hide();
			
			j('#claimrp-modal-close').on('click',function(){
				j('#claimrp-modal').hide();
			});
			
			j('#claim-rp').on('click',function(){
				j('#claimrp-validation').val('');
				j('#label-success').remove();
				j('#label-error').remove();
         		j('#claimrp-modal').show();				
			});
			
			j("#tabs").tabs({
				cache: true,
				active: 0,
				load: function(event, ui){
					activeTab();
				},
				"activate": function( event, ui ) {
					j("li.ui-tabs-active").toggleClass("ui-tabs-active ui-state-active active");
					if(history!=undefined) {
						history.replaceState(null, null, "/cris/rp/rp00084/" + j(ui.newTab[0]).data("tabname")+".html");	
					}					
				},
				"beforeActivate": function( event, ui ) {
	   			 j("li.active").toggleClass("active");
				},
		   		"create": function( event, ui ) {
		               j("div.ui-tabs").toggleClass("ui-tabs ui-widget ui-widget-content ui-corner-all tabbable");
		               j("ul.ui-tabs-nav").toggleClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all nav nav-tabs");
		               j("li.ui-tabs-active").toggleClass("ui-state-default ui-corner-top ui-tabs-active ui-state-active active");
		               j("li.ui-state-default").toggleClass("ui-state-default ui-corner-top");
		               j("div.ui-tabs-panel").toggleClass("ui-tabs-panel ui-widget-content ui-corner-bottom tab-content with-padding");
		        }
			});

			activeTab();
		});
		-->
  </script>
  <!-- HTML5 shiv and Respond.js IE8 support of HTML5 elements and media queries -->
  <!--[if lt IE 9]>  
	  <script src="/static/js/html5shiv.js"></script>
	  <script src="/static/js/selectivizr-min.js"></script>
	  <script src="/static/js/respond.min.js"></script>
	  <link rel="stylesheet" href="/static/css/bootstrap/dspace-theme-IElte9.css" type="text/css" />
	<![endif]-->
 </head>
 <body class="undernavigation" dir="ltr">
  <a class="sr-only" href="#content">
   Skip navigation
  </a>
  <header class="navbar navbar-default">
   <div class="container">
    <br/>
    <div class="navbar-header">
     <button class="navbar-toggle" data-target=".navbar-collapse" data-toggle="collapse" type="button">
      <span class="icon-bar">
      </span>
      <span class="icon-bar">
      </span>
      <span class="icon-bar">
      </span>
     </button>
    </div>
    <div class="col-sm-5 col-md-5 hidden-xs">
     <div class="col-sm-12" id="brandname">
      <a href="https://www.ntu.edu.sg" style="text-decoration: none">
       <img class="hidden-xs hidden-sm" src="/image/hires_logo_bw_school.jpg" style="max-width:181px;"/>
      </a>
     </div>
    </div>
    <div class="col-sm-7 col-md-7 hidden-xs">
     <div class="pull-right nowrap">
      <a class="home_name" href="/" target="_self">
       DR-NTU (Digital Repository of NTU)
      </a>
     </div>
    </div>
    <div class="hidden-md hidden-lg hidden-sm visible-xs">
     <div class="row">
      <div class="col-xs-12" id="brandname">
       <a href="https://www.ntu.edu.sg" style="text-decoration: none">
        <img class="center-block" src="/image/hires_logo_bw_school.jpg" style="max-width:181px;"/>
       </a>
      </div>
     </div>
     <div class="hidden-md hidden-lg hidden-sm visible-xs">
      <div class="home_name_sm text-center">
       <a href="/" target="_blank">
        DR-NTU (Digital Repository of NTU)
       </a>
      </div>
     </div>
    </div>
    <div class="row">
     <nav aria-expanded="false" class="navbar-collapse bs-navbar-collapse collapse" role="navigation" style="height: 1px;">
      <br/>
      <ul class="nav navbar-nav" id="top-menu">
       <li class="text-uppercase" id="home-top-menu">
        <a href="/">
         <span class="glyphicon glyphicon-home">
         </span>
        </a>
       </li>
       <li class="text-uppercase" id="">
        <a href="/community-list">
         Communities &amp; Collections
        </a>
       </li>
       <li class="text-uppercase" id="publications-top-menu">
        <a href="/cris/explore/publications">
         Research Papers
        </a>
       </li>
       <li class="text-uppercase" id="orgunits-top-menu">
        <a href="/cris/explore/orgunits">
         Organisations
        </a>
       </li>
       <li class="text-uppercase" id="theses-top-menu">
        <a href="/cris/explore/theses">
         Theses
        </a>
       </li>
       <li class="text-uppercase" id="fyp-top-menu">
        <a href="/cris/explore/fyp">
         FYPs
        </a>
       </li>
       <li class="text-uppercase" id="fundings-top-menu">
        <a href="/cris/explore/fundings">
         Projects
        </a>
       </li>
       <li class="text-uppercase" id="researcherprofiles-top-menu">
        <a href="/cris/explore/researcherprofiles">
         Academic Profile
        </a>
       </li>
       <li class="dropdown hidden-md hidden-lg hidden-xs">
        <a class="dropdown-toggle" data-toggle="dropdown" href="#">
         Explore by
         <b class="caret">
         </b>
        </a>
        <ul class="dropdown-menu">
         <li class="text-uppercase">
          <a href="/cris/explore/publications">
           Research Papers
          </a>
         </li>
         <li class="text-uppercase">
          <a href="/cris/explore/orgunits">
           Organisations
          </a>
         </li>
         <li class="text-uppercase">
          <a href="/cris/explore/theses">
           Theses
          </a>
         </li>
         <li class="text-uppercase">
          <a href="/cris/explore/fyp">
           FYPs
          </a>
         </li>
         <li class="text-uppercase">
          <a href="/cris/explore/fundings">
           Projects
          </a>
         </li>
         <li class="text-uppercase">
          <a href="/cris/explore/researcherprofiles">
           Academic Profile
          </a>
         </li>
        </ul>
       </li>
       <li class="text-uppercase" id="help-top-menu">
        <a href="https://libguides.ntu.edu.sg/drntu" target="_blank">
         Guidelines
        </a>
       </li>
      </ul>
      <div class="nav navbar-nav navbar-right">
       <ul class="nav navbar-nav" id="search-user-menu">
        <li class="dropdown hidden-xs" id="search-top-menu">
         <a class="dropdown-toggle" data-toggle="dropdown" href="#">
          <span class="glyphicon glyphicon-search">
          </span>
          <b class="caret">
          </b>
         </a>
         <div class="dropdown-menu">
          <form action="/global-search" class="navbar-form navbar-right" id="formsearch-top-menu" method="get" scope="search">
           <div class="form-group">
            <input class="form-control" id="tequery" name="query" placeholder="Search the repository" size="25" type="text"/>
           </div>
           <button class="btn btn-primary" type="submit">
            <span class="glyphicon glyphicon-search">
            </span>
           </button>
          </form>
         </div>
        </li>
        <li id="user-top-menu">
         <a href="/mydspace">
          <span class="glyphicon glyphicon-user">
          </span>
          Login
         </a>
        </li>
       </ul>
      </div>
     </nav>
    </div>
   </div>
  </header>
  <main id="content" role="main">
   <div class="container fullheight">
    <div id="content">
     <div class="row">
      <div class="col-lg-12">
       <div class="form-inline">
       </div>
      </div>
      <div id="researcher">
       <h2>
        Academic Profile
       </h2>
       <div id="namecard-box-fixed">
       </div>
       <div class="col-lg-3 tab-content-left researcher-menu-item-hidden">
        <ul class="nav nav-pills nav-stacked cris-tabs-menu">
        </ul>
       </div>
       <div class="col-lg-12">
        <ul class="nav nav-tabs">
         <li class="researcher-menu-item active" data-tabname="information" id="bar-tab-9">
          <a href="/cris/rp/rp00084">
           About
          </a>
         </li>
        </ul>
        <div id="tab-9">
         <div class="row horizontal-tab">
          <div class="panel-group col-md-12" id="biography">
           <div class="panel panel-default">
            <div class="panel-heading">
             <h4 class="panel-title">
              <a data-parent="#biography" data-toggle="collapse" href="#collapseOnebiography">
               <b>
                Biography
               </b>
              </a>
             </h4>
            </div>
            <div class="panel-collapse collapse in" id="collapseOnebiography">
             <div class="rdiv">
              <div class="dynaField">
               <div class="dynaFieldValue" id="biographyDiv">
                <div>
                 Dr. Jaclyn, Chunyan Miao is a Full Professor in the School of Computer Engineering at Nanyang Technological University (NTU). Her research focus is on infusing intelligent agents into interactive new media (virtual, mixed, mobile and pervasive media) to create novel experiences and dimensions in game design, interactive narrative and other real world agent systems. She has done significant research work her research areas and published over 30 top quality international conference and journal papers. She believes that intelligence/agent augmentation will have a major impact on future new media systems.
                </div>
               </div>
              </div>
             </div>
            </div>
           </div>
          </div>
          <div class="col-md-12" id="namecard">
           <div class="col-md-2" id="researcherPicture">
            <div class="dynaField">
             <div class="dynaFieldValue" id="personalpictureDiv">
              <div class="image">
               <img alt="ascymiao_1_2.JPG picture" id="picture" name="picture" src="/cris/rp/fileservice/rp00084/57/?filename=ascymiao_1_2.JPG" title="A preview ascymiao_1_2.JPG picture"/>
              </div>
             </div>
            </div>
           </div>
           <div class="col-md-10" id="researcherInfo">
            <div class="col-md-12">
             <span class="namecard-fullname">
              Prof Miao Chun Yan
             </span>
            </div>
            <div>
             <div class="col-md-12">
              Chair, School of Computer Science and Engineering
             </div>
             <div class="col-md-12">
              Professor, School of Computer Science and Engineering
             </div>
             <div class="col-md-12">
              <div class="dynaField">
               <span class="dynaLabel">
                <span class="glyphicon glyphicon-envelope">
                </span>
               </span>
               <div class="dynaFieldValue" id="emailDiv">
                <a href="mailto:ascymiao@ntu.edu.sg">
                 ascymiao@ntu.edu.sg
                </a>
               </div>
              </div>
              <div class="dynaClear">
              </div>
             </div>
             <br/>
             <div class="col-md-12">
              <div class="dynaField">
               <span class="dynaLabel">
                <span class="glyphicon glyphicon-link">
                </span>
               </span>
               <div class="dynaFieldValue" id="personalsiteDiv">
                <a href="https://personal.ntu.edu.sg/ascymiao" target="_blank">
                 <span style="min-width: 40em;">
                  Website
                 </span>
                </a>
               </div>
              </div>
              <div class="dynaClear">
              </div>
             </div>
             <div class="col-md-12" style="font-size: 0;">
             </div>
            </div>
           </div>
          </div>
          <div class="panel-group col-md-12" id="researchinterests">
           <div class="panel panel-default">
            <div class="panel-heading">
             <h4 class="panel-title">
              <a data-parent="#researchinterests" data-toggle="collapse" href="#collapseOneresearchinterests">
               <b>
                Research Interests
               </b>
              </a>
             </h4>
            </div>
            <div class="panel-collapse collapse in" id="collapseOneresearchinterests">
             <div class="rdiv">
              <div class="dynaField">
               <div class="dynaFieldValue" id="researchinterestsDiv">
                <div>
                 Dr. Jaclyn, Chunyan Miao's area of expertise are Agent, Multi-Agent Systems (MAS), Agent Oriented Software Engineering (AOSE), Semantic Web/Grid, Agent Augmented Interactive Media/gaming/storytelling, Agent Mediated e-services?mobile agents for wireless communications.  Her current research works focus on infusing intelligent agents into interactive new media (virtual, mixed, mobile and pervasive media) to create novel experiences and dimensions in game design, interactive narrative and other real world agent systems.
                </div>
               </div>
              </div>
              <div class="dynaClear">
              </div>
             </div>
            </div>
           </div>
          </div>
          <div class="panel-group col-md-12" id="taxonomy">
           <div class="panel panel-default">
            <div class="panel-heading">
             <h4 class="panel-title">
              <a data-parent="#taxonomy" data-toggle="collapse" href="#collapseOnetaxonomy">
               <b>
                Keywords
               </b>
              </a>
             </h4>
            </div>
            <div class="panel-collapse collapse in" id="collapseOnetaxonomy">
             <div class="rdiv">
              <div class="dynaField">
               <div class="dynaFieldValue" id="taxonomyDiv">
                <a href="/simple-search?location=researcherprofiles&amp;query=++crisrp.taxonomy_authority%3A(taxonomy00237)">
                 Computer Science and Engineering
                </a>
                ;
                <a href="/simple-search?location=researcherprofiles&amp;query=++crisrp.taxonomy_authority%3A(taxonomy00245)">
                 Info-Communication Technology
                </a>
                ;
                <a href="/simple-search?location=researcherprofiles&amp;query=++crisrp.taxonomy_authority%3A(taxonomy00246)">
                 Interactive Digital Media
                </a>
                ;
                <a href="/simple-search?location=researcherprofiles&amp;query=++crisrp.taxonomy_authority%3A(taxonomy00248)">
                 Internet &amp; Communications
                </a>
               </div>
              </div>
              <div class="dynaClear">
              </div>
             </div>
            </div>
           </div>
          </div>
          <div class="panel-group col-md-12" id="currentprojects">
           <div class="panel panel-default">
            <div class="panel-heading">
             <h4 class="panel-title">
              <a data-parent="#currentprojects" data-toggle="collapse" href="#collapseOnecurrentprojects">
               <b>
                Current Projects
               </b>
              </a>
             </h4>
            </div>
            <div class="panel-collapse collapse in" id="collapseOnecurrentprojects">
             <div class="rdiv">
              <div class="dynaField">
               <div class="dynaFieldValue" id="currentprojectsDiv">
                <ul>
                 <li>
                  ADL+: A Digital Toolkit For Cognitive Assessment And Intervention
                 </li>
                 <br/>
                 <li>
                  Alibaba-NTU Singapore Joint Research Institute
                 </li>
                 <br/>
                 <li>
                  An End-to-end Adaptive AI-Assisted 3H Care (A3C) System
                 </li>
                 <br/>
                 <li>
                  Joint NTU-Alibaba Research Institute
                 </li>
                 <br/>
                 <li>
                  Joint NTU-WeBank Research Centre on Fintech
                 </li>
                 <br/>
                 <li>
                  Joint SDU-NTU Centre for Artificial Intelligence Research(C-FAIR) - Smart Community Research and Talent Programme
                 </li>
                 <br/>
                 <li>
                  Monetary Academic Resources for Research
                 </li>
                 <br/>
                 <li>
                  Senior-friendly Persuasive AI Companions for an Aging Population
                 </li>
                 <br/>
                 <li>
                  The Joint NTU-WeBank Research Centre Of Eco-Intelligent Applications ("THEIA")
                 </li>
                 <br/>
                 <li>
                  TrustFUL: Trustworthy Federated Ubiquitous Learning
                 </li>
                 <br/>
                 <li>
                  TrustFUL: Trustworthy Federated Ubiquitous Learning (SCSE)
                 </li>
                </ul>
               </div>
              </div>
              <div class="dynaClear">
              </div>
             </div>
            </div>
           </div>
          </div>
          <div class="panel-group col-md-12" id="selectedPublications">
           <div class="panel panel-default">
            <div class="panel-heading">
             <h4 class="panel-title">
              <a data-parent="#selectedPublications" data-toggle="collapse" href="#collapseOneselectedPublications">
               <b>
                Selected Publications
               </b>
              </a>
             </h4>
            </div>
            <div class="panel-collapse collapse in" id="collapseOneselectedPublications">
             <div class="rdiv">
              <div class="dynaField">
               <div class="dynaFieldValue" id="selectedPublicationsDiv">
                <ul>
                 <li>
                  Zhiwei Zeng, Zhiqi Shen, Jing Jih Chin, Cyril Leung, Yu Wang, Ying Chi, Chunyan Miao. (2020). Explainable and Contextual Preferences based Decision Making with Assumption-based Argumentation for Diagnostics and Prognostics of Alzheimer’s Disease.
                  <i>
                   International Conference on Autonomous Agents and Multiagent Systems
                  </i>
                  .
                 </li>
                 <br/>
                 <li>
                  Yongqing Zheng, Han Yu, Lizhen Cui, Chunyan Miao, Cyril Leung, Yang Liu &amp; Qiang Yang. (2020). Addressing the challenges of government service provision with AI.
                  <i>
                   AI Magazine, 41
                  </i>
                  (1), 33-43.
                 </li>
                 <br/>
                 <li>
                  Chang Liu, Han Yu, Yi Dong, Zhiqi Shen, Yingxue Yu, Ian Dixon, Zhanning Gao, Pan Wang, Peiran Ren, Xuansong Xie, Lizhen Cui, Chunyan Miao. (2020). Generating Engaging Promotional Videos for E-commerce Platforms.
                  <i>
                   the 34th AAAI Conference on Artificial Intelligence (AAAI-20)
                  </i>
                  .
                 </li>
                 <br/>
                 <li>
                  Yong Liu, Yingtai Xiao, Qiong Wu, Chunyan Miao, Juyong Zhang, Binqiang Zhao, Haihong Tang. (2020). Diversified Interactive Recommendation with Implicit Feedback.
                  <i>
                   The Thirty-Fourth AAAI Conference on Artificial Intelligence (AAAI-20)
                  </i>
                  .
                 </li>
                 <br/>
                 <li>
                  Chang Liu, Yi Dong, Han Yu, Zhiqi Shen, Zhanning Gao, Pan Wang, Changgong Zhang, Peiran Ren, Xuansong Xie, Lizhen Cui &amp; Chunyan Miao. (2019). Proceedings of the 28th ACM International Conference on Information and Knowledge Management (CIKM'19): Generating Persuasive Visual Storylines for Promotional Videos. (pp. 901–910)ACM.
                 </li>
                </ul>
               </div>
              </div>
              <div class="dynaClear">
              </div>
             </div>
            </div>
           </div>
          </div>
         </div>
        </div>
       </div>
       <div class="clearfix">
       </div>
      </div>
     </div>
    </div>
    <footer class="container navbar navbar-inverse navbar-bottom">
     <div class="container">
      <div class="row">
       <div class="col-md-12">
        <!-- Footer -->
        <footer class="page-footer font-small teal pt-4">
         <!-- Footer Text -->
         <div class="container-fluid text-left text-md-left">
          <!-- Grid row -->
          <div class="row">
           <!-- Grid column -->
           <div class="col-md-12 mt-md-0 mt-3">
            <!-- Content -->
            <h4 class="text-uppercase font-weight-bold">
             Contact Us
            </h4>
            <p>
             <a href="https://www.ntu.edu.sg/education/libraries">
              <h5>
               NTU Library
              </h5>
             </a>
            </p>
            <p>
             Office of Information, Knowledge and Library Services
            </p>
            <p>
             Email:
             <a href="mailto:library@ntu.edu.sg">
              library@ntu.edu.sg
             </a>
            </p>
           </div>
          </div>
          <!-- Grid row -->
         </div>
         <!-- Footer Text -->
         <!-- Copyright -->
         <div class="footer-copyright text-right py-3" style="padding:0 20px 20px 0">
          <a href="https://www.ntu.edu.sg/footer/copyright">
           Copyright
          </a>
          •
          <a href="https://www.ntu.edu.sg/footer/disclaimer">
           Disclaimer
          </a>
          •
          <a href="https://www.ntu.edu.sg/footer/ntu-privacy-statement">
           Data Protection and Privacy
          </a>
          <br/>
          © 2019 Nanyang Technological University ​
          <br/>
         </div>
         <!-- Copyright -->
        </footer>
        <!-- Footer -->
       </div>
      </div>
     </div>
    </footer>
   </div>
  </main>
 </body>
</html>

In [4]:
# Extract the HTML page title from the soup object
match_title=soup.title
print(match_title)
<title>Prof Miao Chun Yan | Nanyang Technological University (DR-NTU)</title>
In [5]:
match_title_txt=soup.title.text
print(match_title_txt)
Prof Miao Chun Yan | Nanyang Technological University (DR-NTU)
In [6]:
print(soup.find('div').prettify())
# soup.div==soup.find('div') ## these are equivalent
# find() returns the first matching instance
<div class="container">
 <br/>
 <div class="navbar-header">
  <button class="navbar-toggle" data-target=".navbar-collapse" data-toggle="collapse" type="button">
   <span class="icon-bar">
   </span>
   <span class="icon-bar">
   </span>
   <span class="icon-bar">
   </span>
  </button>
 </div>
 <div class="col-sm-5 col-md-5 hidden-xs">
  <div class="col-sm-12" id="brandname">
   <a href="https://www.ntu.edu.sg" style="text-decoration: none">
    <img class="hidden-xs hidden-sm" src="/image/hires_logo_bw_school.jpg" style="max-width:181px;"/>
   </a>
  </div>
 </div>
 <div class="col-sm-7 col-md-7 hidden-xs">
  <div class="pull-right nowrap">
   <a class="home_name" href="/" target="_self">
    DR-NTU (Digital Repository of NTU)
   </a>
  </div>
 </div>
 <div class="hidden-md hidden-lg hidden-sm visible-xs">
  <div class="row">
   <div class="col-xs-12" id="brandname">
    <a href="https://www.ntu.edu.sg" style="text-decoration: none">
     <img class="center-block" src="/image/hires_logo_bw_school.jpg" style="max-width:181px;"/>
    </a>
   </div>
  </div>
  <div class="hidden-md hidden-lg hidden-sm visible-xs">
   <div class="home_name_sm text-center">
    <a href="/" target="_blank">
     DR-NTU (Digital Repository of NTU)
    </a>
   </div>
  </div>
 </div>
 <div class="row">
  <nav aria-expanded="false" class="navbar-collapse bs-navbar-collapse collapse" role="navigation" style="height: 1px;">
   <br/>
   <ul class="nav navbar-nav" id="top-menu">
    <li class="text-uppercase" id="home-top-menu">
     <a href="/">
      <span class="glyphicon glyphicon-home">
      </span>
     </a>
    </li>
    <li class="text-uppercase" id="">
     <a href="/community-list">
      Communities &amp; Collections
     </a>
    </li>
    <li class="text-uppercase" id="publications-top-menu">
     <a href="/cris/explore/publications">
      Research Papers
     </a>
    </li>
    <li class="text-uppercase" id="orgunits-top-menu">
     <a href="/cris/explore/orgunits">
      Organisations
     </a>
    </li>
    <li class="text-uppercase" id="theses-top-menu">
     <a href="/cris/explore/theses">
      Theses
     </a>
    </li>
    <li class="text-uppercase" id="fyp-top-menu">
     <a href="/cris/explore/fyp">
      FYPs
     </a>
    </li>
    <li class="text-uppercase" id="fundings-top-menu">
     <a href="/cris/explore/fundings">
      Projects
     </a>
    </li>
    <li class="text-uppercase" id="researcherprofiles-top-menu">
     <a href="/cris/explore/researcherprofiles">
      Academic Profile
     </a>
    </li>
    <li class="dropdown hidden-md hidden-lg hidden-xs">
     <a class="dropdown-toggle" data-toggle="dropdown" href="#">
      Explore by
      <b class="caret">
      </b>
     </a>
     <ul class="dropdown-menu">
      <li class="text-uppercase">
       <a href="/cris/explore/publications">
        Research Papers
       </a>
      </li>
      <li class="text-uppercase">
       <a href="/cris/explore/orgunits">
        Organisations
       </a>
      </li>
      <li class="text-uppercase">
       <a href="/cris/explore/theses">
        Theses
       </a>
      </li>
      <li class="text-uppercase">
       <a href="/cris/explore/fyp">
        FYPs
       </a>
      </li>
      <li class="text-uppercase">
       <a href="/cris/explore/fundings">
        Projects
       </a>
      </li>
      <li class="text-uppercase">
       <a href="/cris/explore/researcherprofiles">
        Academic Profile
       </a>
      </li>
     </ul>
    </li>
    <li class="text-uppercase" id="help-top-menu">
     <a href="https://libguides.ntu.edu.sg/drntu" target="_blank">
      Guidelines
     </a>
    </li>
   </ul>
   <div class="nav navbar-nav navbar-right">
    <ul class="nav navbar-nav" id="search-user-menu">
     <li class="dropdown hidden-xs" id="search-top-menu">
      <a class="dropdown-toggle" data-toggle="dropdown" href="#">
       <span class="glyphicon glyphicon-search">
       </span>
       <b class="caret">
       </b>
      </a>
      <div class="dropdown-menu">
       <form action="/global-search" class="navbar-form navbar-right" id="formsearch-top-menu" method="get" scope="search">
        <div class="form-group">
         <input class="form-control" id="tequery" name="query" placeholder="Search the repository" size="25" type="text"/>
        </div>
        <button class="btn btn-primary" type="submit">
         <span class="glyphicon glyphicon-search">
         </span>
        </button>
       </form>
      </div>
     </li>
     <li id="user-top-menu">
      <a href="/mydspace">
       <span class="glyphicon glyphicon-user">
       </span>
       Login
      </a>
     </li>
    </ul>
   </div>
  </nav>
 </div>
</div>

In [7]:
soup.find('div', class_="dynaFieldValue")
# class is a special keyword in python, so we need class_ to distinguish
# You can use .div.text to access only the text
Out[7]:
<div class="dynaFieldValue" id="biographyDiv">
<div>Dr. Jaclyn, Chunyan Miao is a Full Professor in the School of Computer Engineering at Nanyang Technological University (NTU). Her research focus is on infusing intelligent agents into interactive new media (virtual, mixed, mobile and pervasive media) to create novel experiences and dimensions in game design, interactive narrative and other real world agent systems. She has done significant research work her research areas and published over 30 top quality international conference and journal papers. She believes that intelligence/agent augmentation will have a major impact on future new media systems.</div>
</div>
In [8]:
soup.find('div', class_="dynaFieldValue").text 
# Recall: you can use .strip() to clean-up the \n 
Out[8]:
'\nDr. Jaclyn, Chunyan Miao is a Full Professor in the School of Computer Engineering at Nanyang Technological University (NTU). Her research focus is on infusing intelligent agents into interactive new media (virtual, mixed, mobile and pervasive media) to create novel experiences and dimensions in game design, interactive narrative and other real world agent systems. She has done significant research work her research areas and published over 30 top quality international conference and journal papers. She believes that intelligence/agent augmentation will have a major impact on future new media systems.\n'
In [9]:
# Let's find all the projects this faculty is involved in
soup.find('div', id="currentprojectsDiv")
Out[9]:
<div class="dynaFieldValue" id="currentprojectsDiv">
<ul>
<li>ADL+: A Digital Toolkit For Cognitive Assessment And Intervention</li>
<br/>
<li>Alibaba-NTU Singapore Joint Research Institute</li>
<br/>
<li>An End-to-end Adaptive AI-Assisted 3H Care (A3C) System</li>
<br/>
<li>Joint NTU-Alibaba Research Institute</li>
<br/>
<li>Joint NTU-WeBank Research Centre on Fintech</li>
<br/>
<li>Joint SDU-NTU Centre for Artificial Intelligence Research(C-FAIR) - Smart Community Research and Talent Programme</li>
<br/>
<li>Monetary Academic Resources for Research</li>
<br/>
<li>Senior-friendly Persuasive AI Companions for an Aging Population</li>
<br/>
<li>The Joint NTU-WeBank Research Centre Of Eco-Intelligent Applications ("THEIA")</li>
<br/>
<li>TrustFUL: Trustworthy Federated Ubiquitous Learning</li>
<br/>
<li>TrustFUL: Trustworthy Federated Ubiquitous Learning (SCSE)</li>
</ul>
</div>
In [10]:
soup.find('div', id="currentprojectsDiv").find_all('li')
Out[10]:
[<li>ADL+: A Digital Toolkit For Cognitive Assessment And Intervention</li>,
 <li>Alibaba-NTU Singapore Joint Research Institute</li>,
 <li>An End-to-end Adaptive AI-Assisted 3H Care (A3C) System</li>,
 <li>Joint NTU-Alibaba Research Institute</li>,
 <li>Joint NTU-WeBank Research Centre on Fintech</li>,
 <li>Joint SDU-NTU Centre for Artificial Intelligence Research(C-FAIR) - Smart Community Research and Talent Programme</li>,
 <li>Monetary Academic Resources for Research</li>,
 <li>Senior-friendly Persuasive AI Companions for an Aging Population</li>,
 <li>The Joint NTU-WeBank Research Centre Of Eco-Intelligent Applications ("THEIA")</li>,
 <li>TrustFUL: Trustworthy Federated Ubiquitous Learning</li>,
 <li>TrustFUL: Trustworthy Federated Ubiquitous Learning (SCSE)</li>]
In [11]:
# Chain it with a find_all over 'li' list-item tag, and extract the text of the result to create a list
[x.text for x in soup.find('div', id="currentprojectsDiv").find_all('li')]
Out[11]:
['ADL+: A Digital Toolkit For Cognitive Assessment And Intervention',
 'Alibaba-NTU Singapore Joint Research Institute',
 'An End-to-end Adaptive AI-Assisted 3H Care (A3C) System',
 'Joint NTU-Alibaba Research Institute',
 'Joint NTU-WeBank Research Centre on Fintech',
 'Joint SDU-NTU Centre for Artificial Intelligence Research(C-FAIR) - Smart Community Research and Talent Programme',
 'Monetary Academic Resources for Research',
 'Senior-friendly Persuasive AI Companions for an Aging Population',
 'The Joint NTU-WeBank Research Centre Of Eco-Intelligent Applications ("THEIA")',
 'TrustFUL: Trustworthy Federated Ubiquitous Learning',
 'TrustFUL: Trustworthy Federated Ubiquitous Learning (SCSE)']
In [12]:
# What's the faculty member's email address?
soup.find('div', id="emailDiv").text.strip()
Out[12]:
'ascymiao@ntu.edu.sg'
In [13]:
# What's the faculty member's personal webpage URL?
# Not everyone maintains their homepage, 
# and not all those who do host on canonical NTU personal page address
soup.find('div', id="personalsiteDiv")
Out[13]:
<div class="dynaFieldValue" id="personalsiteDiv">
<a href="https://personal.ntu.edu.sg/ascymiao" target="_blank">
<span style="min-width: 40em;">Website</span>
</a>
</div>
In [14]:
soup.find('div', id="personalsiteDiv").a['href'] 
# if you are looking at a single instance
# access the attribute of a tag in a manner analogous to referring a Python dictionary element
Out[14]:
'https://personal.ntu.edu.sg/ascymiao'
In [15]:
# How to extract the URLs for all the faculty members listed on a page
# Note that you may need to do some clean-up after this extraction
# Note also that, I am scoping the search, so this won't locate all the links on the page
# Particularly, in this specific example, we won't find the link to the next page

SCSE_list_url="https://dr.ntu.edu.sg/simple-search?filterquery=ou00030&filtername=school&filtertype=authority&location=researcherprofiles"
new_soup_source = requests.get(SCSE_list_url).text
new_soup = BeautifulSoup(new_soup_source,'lxml')
#print(new_soup)
#new_soup.find("div", class_="discovery-result-results").find_all('a')
[(x.get('href'),x.text) for x in new_soup.find("div", class_="discovery-result-results").find_all('a')]
Out[15]:
[('#', 'Full Name'),
 ('/cris/rp/rp01023', 'Guan Cuntai'),
 ('/cris/rp/rp00345', 'Seah Hock Soon'),
 ('/cris/rp/rp00531', 'Lee Bu Sung'),
 ('/cris/rp/rp00707', 'Quek Hiok Chai'),
 ('/cris/rp/rp00700', 'Hui Siu Cheung'),
 ('/cris/rp/rp00693', 'Goh Wooi Boon'),
 ('/cris/rp/rp00691', 'Chan Syin'),
 ('/cris/rp/rp00670', 'Lau Chiew Tong'),
 ('/cris/rp/rp00643', 'Huang Shell Ying'),
 ('/cris/rp/rp00839', 'Vun Chan Hua, Nicholas'),
 ('/cris/rp/rp00841', 'Thambipillai Srikanthan'),
 ('/cris/rp/rp00799', 'Kwoh Chee Keong'),
 ('/cris/rp/rp00964', 'Wentong Cai'),
 ('/cris/rp/rp00963', 'Yeo Chai Kiat'),
 ('/cris/rp/rp00958', 'Lin Feng'),
 ('/cris/rp/rp00991', 'Chia Liang Tien'),
 ('/cris/rp/rp01094', 'Wee Keong NG'),
 ('/cris/rp/rp00169', 'Jagath Chandana Rajapakse'),
 ('/cris/rp/rp00552', 'Sun Aixin'),
 ('/cris/rp/rp00503', 'He Ying'),
 ('/cris/rp/rp00706', 'Anwitaman Datta'),
 ('/cris/rp/rp00683', 'Lin Weisi'),
 ('/cris/rp/rp00834', 'Wai Kin Adams Kong'),
 ('/cris/rp/rp00274', 'Alexei Sourin'),
 ('/cris/rp/rp00915', 'Sourav Saha Bhowmick'),
 ('/cris/rp/rp00901', 'Lam Siew Kei'),
 ('/cris/rp/rp00891', 'Qian Kemao'),
 ('/cris/rp/rp01067', 'Cham Tat Jen'),
 ('/cris/rp/rp01059', 'Douglas Leslie Maskell'),
 ('/cris/rp/rp01161', 'Li Fang'),
 ('/cris/rp/rp01157', 'Deepu Rajan'),
 ('/cris/rp/rp00092', 'Ong Yew Soon'),
 ('/cris/rp/rp00098', 'Chng Eng Siong'),
 ('/cris/rp/rp00084', 'Miao Chun Yan'),
 ('/cris/rp/rp00083', 'A S Madhukumar'),
 ('/cris/rp/rp00075', 'Tang Xueyan'),
 ('/cris/rp/rp00072', 'Zheng Jianmin'),
 ('/cris/rp/rp00227', 'Shen Zhiqi'),
 ('/cris/rp/rp01008', 'Dusit Niyato'),
 ('/cris/rp/rp01107', 'Luo Jun'),
 ('/cris/rp/rp00759', 'Zhang Jie'),
 ('/cris/rp/rp00744', 'Cong Gao'),
 ('/cris/rp/rp00937', 'Li Mo'),
 ('/cris/rp/rp01090', 'Wen Yonggang'),
 ('/cris/rp/rp00400', 'Owen Noel Newton Fernando'),
 ('/cris/rp/rp00698', 'Bo An'),
 ('/cris/rp/rp00687', 'Arvind Easwaran'),
 ('/cris/rp/rp00334', 'Yu Han'),
 ('/cris/rp/rp00612', 'Smitha K G'),
 ('/cris/rp/rp00927', 'Erik Cambria')]

RESTful APIs¶

Various ways to obtain/exchange data:

  • EDI (electronic data interchange) is a somewhat generic term.
    • Encompasses both direct point-to-point communications, as well as through third-party managed data transmissions.
    • Can be implemented through a wide range of protocols, e.g., SFTP (Secure File Transfer Protocol), HTTPS, SOAP (Simple Object Access Protocol), etc.
  • Web Services using SOAP: standardized (XML based) format, but extensible, decoupled from the transport layer protocol and underlying programming model; amenable to distributed enterprise environments.
  • REST (Representational State Transfer): simpler client-server architecture, stateless & cacheable, closely aligned with web technologies (using HTTP requests: POST, GET, PUT, DELETE, PATCH), supports multiple and flexible formats (XML, JSON, ...).
    • with/out authentication
  • Streaming APIs

An example (Reddit) with authenticated REST API:
BeautifulSoup

In [16]:
#! pip install --upgrade praw
# Python Reddit API Wrapper(PRAW) 
# https://praw.readthedocs.io/en/stable/index.html 
# For a quick start, check "Working with PRAW's models" 

import praw
import numpy as np
import pandas as pd
In [17]:
# Uncomment and replace the dummy "XYZ"s with your own token information. 
# red_client_id="XYZ"
# red_client_secret="XYZ"
# red_user_agent="XYZ"
# red_username="XYZ" # Don't need these for just reading data
# red_password="XYZ" # Don't need these for just reading data

# Comment out the below 
fo = open("reddit-credentials.txt", "r")
str = fo.readlines()
fo.close()
str=[x.split()[2] for x in str]
red_client_id=str[0]
red_client_secret=str[1]
red_password=str[2]  # Don't need these for just reading data
red_user_agent=str[3]
red_username=str[4]  # Don't need these for just reading data
In [18]:
reddit = praw.Reddit(
    client_id=red_client_id,
    client_secret=red_client_secret,
    user_agent=red_user_agent,
#    username=red_username,
#    password=red_password,    
)
#print(reddit.user.me())
In [20]:
sg_subreddit = reddit.subreddit('singapore')
posts = []
for post in sg_subreddit.hot(limit=10):
    posts.append([post.title, post.score, post.id, post.subreddit, post.url, post.num_comments, post.selftext, post.created])
posts_df = pd.DataFrame(posts,columns=['title', 'score', 'id', 'subreddit', 'url', 'num_comments', 'body', 'created'])
posts_df
Out[20]:
title score id subreddit url num_comments body created
0 /r/singapore random discussion and small quest... 5 paxd13 singapore https://www.reddit.com/r/singapore/comments/pa... 193 Talk about your day. Anything goes, but subre... 1.629842e+09
1 Yip Pin Xiu will defend her crown in the Tokyo... 174 pb16e0 singapore https://www.channelnewsasia.com/sport/tokyo-pa... 5 1.629855e+09
2 Is This The New Normal For Employment Prospects? 791 pajh8r singapore https://i.redd.it/wbndejths9j71.png 202 1.629795e+09
3 lightnight strike in bb 2674 pae0xj singapore https://v.redd.it/u44597f8r7j71 256 1.629771e+09
4 Taman Jurong hawker, 82, happy to share Chwee ... 160 par30f singapore https://mothership.sg/2021/08/chwee-kueh-taman... 6 1.629823e+09
5 Update: Footpath near Little Guilin got worse ... 21 pb2ljv singapore https://v.redd.it/rsagps7g6fj71 5 1.629861e+09
6 ComfortDelgro cabby tells passenger he need no... 30 pb074f singapore https://mothership.sg/2021/08/comfort-delgro-t... 20 1.629852e+09
7 Weekly Vaccination Update - Total: 8,765,866 /... 27 pb0g4o singapore https://www.reddit.com/r/singapore/comments/pb... 15 **Singapore Vaccination Data (as of 24. Aug 20... 1.629853e+09
8 Woman makes police report alleging safe distan... 20 pb22d8 singapore https://www.straitstimes.com/singapore/woman-m... 11 1.629859e+09
9 How to mic test like a boss 1564 paebbh singapore https://v.redd.it/ttj65lggu7j71 85 1.629772e+09
In [21]:
# Let's identify the submission with the largest score
submission_id=posts_df[posts_df['score']==posts_df['score'].max()]['id'].iloc[0]
submission_id
Out[21]:
'pae0xj'
In [22]:
submission = reddit.submission(id=submission_id)
for top_level_comment in submission.comments:
    print(top_level_comment.body)
[close up photo](https://imgur.com/a/dPC39Xs)
Ex building engineer here, 

The lightning certainly would have hit lightning protection copper tape or air terminal at the top of the building beside, and down conductors taking it to earth. Designs are based on what is known as the rolling sphere method (BCA requirement dictate a min of 45m radius), such that lightning will go to a favorable lightning protection air terminal in lieu of directly hitting ground, thus I’m sure the lightning didn’t manage to hit directly to the manhole cover, but hit the building.

One possibility (dont pofma me pls) is I guess lightning protection system might be be wrongly connected to sanitary pipes, which exploded gases in the inspection chamber. (the close up photos are metal covers for the sewer inspection chamber). Another possibility is there was a gas leak..
Alright I’mma WFH today. Can’t argue with god of thunder
But why the lightning hit the ground? There are so many tall buildings in the surrounding.
ARTY ARTY ARTY

Why look like CGI though
Looks like Raiden Shogun has turned her attention to SG.
That doesn't look like a lightning strike.  It may have been triggered by the lightning but it looks a lot more like something under the ground exploding.
Probably not a result of a direct lightning strike but rather a strike traveling into the ground, and  transferring to a cable or gas pipe which caused a breakage / ignition that blew off the drain cover and surrounding. 

Something like this happened in the US [back in 2006](https://i.imgur.com/UkJtXXH.jpg)
Dammit Thor, watch where you aim that thing.
This is so going on Mothership
no one would've believe if weren't for the car cam
OP driving should buy his car plate number 4D
aside from CGI, never seen something like this irl. very *enlightning*
If you drove 1 min earlier you would have a chance at death
oh my gosh, I run by this place every other day. Can't imagine what would have happened if I was outside at this time.
holy shit what are the odds that you capture a lighting hit the manhole. This is so rare and gold!
Dang!   


Lowkey looks like something out of a disaster movie.
inazuma vibes
Wow! I wonder if there's a fulgarite (where the heat from the lightning turns the sand into glass) under there
There must be methane underground or something for it to ignite like that
Zeus finding observer wards la
The way those bricks lifted omg like got invisible superheroes fighting
Wah this is so cool
*voice from above*

Ahh fuck!! I missed
MFA: Summon ambassador to Asgard
Rat Hill, Turtled Bus, Water-logged landslides and now, Lightning strikes. Surely, Bukit Batok is the new Yishun haha.
This what I first tot of when I saw this video.

[Genshin Impact reference - Baal has arrived!](https://youtu.be/V4-8zgLdPH0)
This is why I'm scared of walking in the open during thunderstorms. To avoid the one in a gazillion chance of being struck by lightning.
Is this your video OP? Inb4 someone steals ur content
Hmm,a certain party logo.
u/savevideo
Thor lai le!
Invoker missing his sunstrike.
Holy moly. Thought there are lightning conductors in the buildings nearby??
welp, usually only see manhole explosions from china
wtf its not cgi
This is why Pikachu should always remain in its pokeball
This looks like scenes in movies, luckily no one was passing by at that moment.
Is that how war of the worlds begun??
I was so shook by the video I almost didn't notice the title said "lightnight" lmao
Thunder breathing, first form: thunderclap and flash
Pikachu, use Thunderbolt!
What the fuck that lightning did a lot more damage than I thought in real life.

Well Camcar missed the chance to become the Flash
Holy Lightning
$50 bet that mothership is going to post this video later today
Can someone go there and take more video reference because I'm still at the back of my mind, thinking it's a really well-done CGI shot by a local VFX artist and I'd be curious if it was or not.
BB as in bukit batok?
someone is having fun with blender ar?  

smoke & fire sim, particle physics, motion tracking
Rainwater seeping through the ground and touching some wires? Otherwise damn weird for lightning to strike so low
Alright I’mma WFH today. Can’t argue with god of thunder
That's scary
Just had a close call myself. All I saw was the flash before the sound came.

Scary stuff
That is probably the place where the lightning conductor meets earth.
honestly looked like CGI. unreal
What time at Bukit batok?
For a moment I thought its from After Effects. Looks like the lightning ignited some gas pipe and it blew out of that hole.
And that was how, Drain-itsu came to be
Pikachu use thunderbolt! It's not very effective.....
Duuuuude, this is amazing
Seriously shocked by lightning. (And not just a particular logo)
We wonder how loud that must've been...
@savevideo
Thor just landed!
Manhole strike in Bukit Buttock
https://www.youtube.com/watch?v=W\_EYrVGI7LQ
Holy crap.
So who shd they send the repair bill to for this one.
Thunderous ⚡
The only thing missing from this clip is someone making a superhero landing
This is today at bukit Batok together with the flash floods
Shazam !!!!
i thought someone threw a grenade...
amazing video! what luck to capture it OP
Reminded me of war of the worlds, when the alien surface after lighting hit the ground
https://www.channelnewsasia.com/singapore/bukit-batok-manhole-explosion-carpark-scdf-investigating-2132236
Someone casted lightning strike
Lord Raiden is that you?
[deleted]
Looks like one of the side streets in siege of Shanghai near A Flag
/u/redditspeedbot 0.25x
No one heng ah the driver 3s too slow, and allow us to enjoy such awesome footage.

If this was in russia itll be in a compilation.
Jyu Man Boruto!
Bukit baThor?
This is what my gf asks me to do when we wanna have some seggsy time
Ghost busters scene. 7 month spirits escape through vault
Methane gas explosion. But why is the lightning rod hooked up to the sewage system?
Light em up boys
Lightnight
Sunstrike
u/SaveVideo
Techies player - PS PS accidentally cast ulti...
Awesome!
This reminded me of the Tom Cruise War of the Worlds movie, where the aliens in pods ride lightning down to their tripods, and the tripods later come out of the ground.

Even the driver was like "lemme take shelter in the mscp so that I can change out my pooped underwear!".
I would have took u turn and fled
is this thunder, thundara or thundaga?
Zeus: Fuck this manhole in particular.
How long before the Tripods start coming out?
Fucking terry bogard nearby wrecking public property again.
Thundurus uses Thunderbolt... Its super effective
 zxx
got thor ah?
u/savevideo
u/SaveVideo
Fus-ro-DAH!
Toot
Sheesh
u/savevideo
first thought: fire in the hole
We need captain dissolution on this its prolly like Adobe aftereffects
That looks kinda fake
Wow glad nobody was injured, that looked serious
This is obviously fake
A bit confused why there would be an explosion though, seems pretty fake to me
WHY NOT HD
That's shocking
PAP propaganda getting quite blatant nowadays.

Get it? _Lightning_
Thor practicing his aim, bobo sia
Looks like the lightning struck caused an explosion in the drain? What a strange place to strike
Guess that’s where Mjolnir landed
U\savevideo
ITS GOTTA BE KANE!
How do you download this? I wanna show my dad who lives nearby
Zues cast Ulti
Same thing would happen in my pants if lightning struck so near me
u/savevideo
+999 damage
Zeus was annoyed
THUNDER BOLTO!!
Bring me Thanos
Adobe After effect? 😅
Imagine python resting under the drain cover …

“The code just got executed!”
In [23]:
comments_lst = []
submission.comments.replace_more(limit=None) 
# See more on the CommentForest structure in the documentations. 
# https://praw.readthedocs.io/en/stable/code_overview/other/commentforest.html 
# The below code using list() provides a BFS based flattening of the comments 
for comment in submission.comments.list():
   comments_lst.append([comment.id, comment.score,comment.author, comment.body, comment.parent_id])
comments_df=pd.DataFrame(comments_lst,columns=['id','score','author','comment','parent']).sort_values('score', ascending=False)
# parent_id: The ID of the parent comment (prefixed with t1_). 
# If it is a top-level comment, this returns the submission ID instead (prefixed with t3_).
comments_df
Out[23]:
id score author comment parent
1 ha4gfi9 345 butilikewaffles Ex building engineer here, \n\nThe lightning c... t3_pae0xj
0 ha42wsj 301 spartacurse [close up photo](https://imgur.com/a/dPC39Xs) t3_pae0xj
131 ha43mwd 265 NotSiaoOn Now I know what 3 damage in magic the gatherin... t1_ha42wsj
140 ha497uo 248 Cleftbutt It didnt, it hit the lightning protection and ... t1_ha41b5a
3 ha41b5a 244 k34t0n But why the lightning hit the ground? There ar... t3_pae0xj
... ... ... ... ... ...
112 ha4465v -4 Helmet_Politician A bit confused why there would be an explosion... t3_pae0xj
113 ha47wkg -4 nikhoftime WHY NOT HD t3_pae0xj
164 ha4j8gc -5 Dynosmite Because it was made in blender by someone who ... t1_ha45rse
155 ha4j4d3 -17 Dynosmite Because it is t1_ha41vs8
154 ha45m3x -17 aub_ao Agree. Looks fake. t1_ha41vs8

255 rows × 5 columns

In the previous example

  • We used a ready-made wrapper, instead of using the API endpoints directly.
  • Given the nature of accesses granted, we also needed to use an authentication token.
    • Let's next look at another example, where we will use the API endpoints natively.
      • let's check some data from Data.gov.sg
In [24]:
sg_env_url="https://api.data.gov.sg/v1/environment/psi"
sg_env_dat = requests.get(sg_env_url).text
print(sg_env_dat)
{"region_metadata":[{"name":"west","label_location":{"latitude":1.35735,"longitude":103.7}},{"name":"national","label_location":{"latitude":0,"longitude":0}},{"name":"east","label_location":{"latitude":1.35735,"longitude":103.94}},{"name":"central","label_location":{"latitude":1.35735,"longitude":103.82}},{"name":"south","label_location":{"latitude":1.29587,"longitude":103.82}},{"name":"north","label_location":{"latitude":1.41803,"longitude":103.82}}],"items":[{"timestamp":"2021-08-25T11:00:00+08:00","update_timestamp":"2021-08-25T11:08:52+08:00","readings":{"o3_sub_index":{"west":3,"national":4,"east":4,"central":3,"south":3,"north":1},"pm10_twenty_four_hourly":{"west":22,"national":24,"east":13,"central":21,"south":20,"north":24},"pm10_sub_index":{"west":22,"national":24,"east":13,"central":21,"south":20,"north":24},"co_sub_index":{"west":6,"national":6,"east":5,"central":3,"south":5,"north":4},"pm25_twenty_four_hourly":{"west":10,"national":11,"east":4,"central":11,"south":8,"north":10},"so2_sub_index":{"west":6,"national":6,"east":2,"central":1,"south":2,"north":6},"co_eight_hour_max":{"west":0.59,"national":0.59,"east":0.47,"central":0.34,"south":0.53,"north":0.35},"no2_one_hour_max":{"west":48,"national":48,"east":20,"central":21,"south":22,"north":29},"so2_twenty_four_hourly":{"west":9,"national":10,"east":4,"central":2,"south":4,"north":10},"pm25_sub_index":{"west":41,"national":47,"east":16,"central":47,"south":32,"north":44},"psi_twenty_four_hourly":{"west":41,"national":47,"east":16,"central":47,"south":32,"north":44},"o3_eight_hour_max":{"west":6,"national":9,"east":9,"central":7,"south":6,"north":2}}}],"api_info":{"status":"healthy"}}
In [25]:
import json
# below code for is_json is from 
# https://stackoverflow.com/questions/5508509/how-do-i-check-if-a-string-is-valid-json-in-python

def is_json(myjson):
  try:
    json_object = json.loads(myjson)
  except ValueError as e:
    return False
  return True

is_json(sg_env_dat)
Out[25]:
True
In [26]:
import pprint
pprint.pprint(json.loads(sg_env_dat))
{'api_info': {'status': 'healthy'},
 'items': [{'readings': {'co_eight_hour_max': {'central': 0.34,
                                               'east': 0.47,
                                               'national': 0.59,
                                               'north': 0.35,
                                               'south': 0.53,
                                               'west': 0.59},
                         'co_sub_index': {'central': 3,
                                          'east': 5,
                                          'national': 6,
                                          'north': 4,
                                          'south': 5,
                                          'west': 6},
                         'no2_one_hour_max': {'central': 21,
                                              'east': 20,
                                              'national': 48,
                                              'north': 29,
                                              'south': 22,
                                              'west': 48},
                         'o3_eight_hour_max': {'central': 7,
                                               'east': 9,
                                               'national': 9,
                                               'north': 2,
                                               'south': 6,
                                               'west': 6},
                         'o3_sub_index': {'central': 3,
                                          'east': 4,
                                          'national': 4,
                                          'north': 1,
                                          'south': 3,
                                          'west': 3},
                         'pm10_sub_index': {'central': 21,
                                            'east': 13,
                                            'national': 24,
                                            'north': 24,
                                            'south': 20,
                                            'west': 22},
                         'pm10_twenty_four_hourly': {'central': 21,
                                                     'east': 13,
                                                     'national': 24,
                                                     'north': 24,
                                                     'south': 20,
                                                     'west': 22},
                         'pm25_sub_index': {'central': 47,
                                            'east': 16,
                                            'national': 47,
                                            'north': 44,
                                            'south': 32,
                                            'west': 41},
                         'pm25_twenty_four_hourly': {'central': 11,
                                                     'east': 4,
                                                     'national': 11,
                                                     'north': 10,
                                                     'south': 8,
                                                     'west': 10},
                         'psi_twenty_four_hourly': {'central': 47,
                                                    'east': 16,
                                                    'national': 47,
                                                    'north': 44,
                                                    'south': 32,
                                                    'west': 41},
                         'so2_sub_index': {'central': 1,
                                           'east': 2,
                                           'national': 6,
                                           'north': 6,
                                           'south': 2,
                                           'west': 6},
                         'so2_twenty_four_hourly': {'central': 2,
                                                    'east': 4,
                                                    'national': 10,
                                                    'north': 10,
                                                    'south': 4,
                                                    'west': 9}},
            'timestamp': '2021-08-25T11:00:00+08:00',
            'update_timestamp': '2021-08-25T11:08:52+08:00'}],
 'region_metadata': [{'label_location': {'latitude': 1.35735,
                                         'longitude': 103.7},
                      'name': 'west'},
                     {'label_location': {'latitude': 0, 'longitude': 0},
                      'name': 'national'},
                     {'label_location': {'latitude': 1.35735,
                                         'longitude': 103.94},
                      'name': 'east'},
                     {'label_location': {'latitude': 1.35735,
                                         'longitude': 103.82},
                      'name': 'central'},
                     {'label_location': {'latitude': 1.29587,
                                         'longitude': 103.82},
                      'name': 'south'},
                     {'label_location': {'latitude': 1.41803,
                                         'longitude': 103.82},
                      'name': 'north'}]}
In [27]:
# We can grab historical data for specific date and/or time-window
sg_env_url_dated="https://api.data.gov.sg/v1/environment/psi?date=2020-02-20"
#sg_env_url_dated="https://api.data.gov.sg/v1/environment/psi?date_time=2020-02-20T03:20:15"
sg_env_dat_dated = requests.get(sg_env_url_dated).text
pprint.pprint(json.loads(sg_env_dat_dated))
{'api_info': {'status': 'healthy'},
 'items': [{'readings': {'co_eight_hour_max': {'central': 0.43,
                                               'east': 0.51,
                                               'national': 0.57,
                                               'north': 0.43,
                                               'south': 0.5,
                                               'west': 0.57},
                         'co_sub_index': {'central': 4,
                                          'east': 5,
                                          'national': 6,
                                          'north': 4,
                                          'south': 5,
                                          'west': 6},
                         'no2_one_hour_max': {'central': 7,
                                              'east': 8,
                                              'national': 11,
                                              'north': 4,
                                              'south': 11,
                                              'west': 4},
                         'o3_eight_hour_max': {'central': 44,
                                               'east': 27,
                                               'national': 44,
                                               'north': 38,
                                               'south': 37,
                                               'west': 28},
                         'o3_sub_index': {'central': 19,
                                          'east': 11,
                                          'national': 19,
                                          'north': 16,
                                          'south': 16,
                                          'west': 12},
                         'pm10_sub_index': {'central': 27,
                                            'east': 28,
                                            'national': 34,
                                            'north': 19,
                                            'south': 34,
                                            'west': 28},
                         'pm10_twenty_four_hourly': {'central': 27,
                                                     'east': 28,
                                                     'national': 34,
                                                     'north': 19,
                                                     'south': 34,
                                                     'west': 28},
                         'pm25_sub_index': {'central': 48,
                                            'east': 53,
                                            'national': 53,
                                            'north': 40,
                                            'south': 44,
                                            'west': 37},
                         'pm25_twenty_four_hourly': {'central': 11,
                                                     'east': 14,
                                                     'national': 14,
                                                     'north': 10,
                                                     'south': 11,
                                                     'west': 9},
                         'psi_twenty_four_hourly': {'central': 48,
                                                    'east': 53,
                                                    'national': 53,
                                                    'north': 40,
                                                    'south': 44,
                                                    'west': 37},
                         'so2_sub_index': {'central': 2,
                                           'east': 3,
                                           'national': 3,
                                           'north': 2,
                                           'south': 2,
                                           'west': 3},
                         'so2_twenty_four_hourly': {'central': 3,
                                                    'east': 4,
                                                    'national': 5,
                                                    'north': 4,
                                                    'south': 3,
                                                    'west': 5}},
            'timestamp': '2020-02-20T01:00:00+08:00',
            'update_timestamp': '2020-02-20T01:08:52+08:00'},
           {'readings': {'co_eight_hour_max': {'central': 0.43,
                                               'east': 0.56,
                                               'national': 0.57,
                                               'north': 0.43,
                                               'south': 0.51,
                                               'west': 0.57},
                         'co_sub_index': {'central': 4,
                                          'east': 6,
                                          'national': 6,
                                          'north': 4,
                                          'south': 5,
                                          'west': 6},
                         'no2_one_hour_max': {'central': 5,
                                              'east': 9,
                                              'national': 12,
                                              'north': 2,
                                              'south': 12,
                                              'west': 4},
                         'o3_eight_hour_max': {'central': 44,
                                               'east': 27,
                                               'national': 44,
                                               'north': 38,
                                               'south': 37,
                                               'west': 27},
                         'o3_sub_index': {'central': 19,
                                          'east': 12,
                                          'national': 19,
                                          'north': 16,
                                          'south': 16,
                                          'west': 12},
                         'pm10_sub_index': {'central': 27,
                                            'east': 27,
                                            'national': 33,
                                            'north': 19,
                                            'south': 33,
                                            'west': 27},
                         'pm10_twenty_four_hourly': {'central': 27,
                                                     'east': 27,
                                                     'national': 33,
                                                     'north': 19,
                                                     'south': 33,
                                                     'west': 27},
                         'pm25_sub_index': {'central': 47,
                                            'east': 52,
                                            'national': 52,
                                            'north': 39,
                                            'south': 42,
                                            'west': 36},
                         'pm25_twenty_four_hourly': {'central': 11,
                                                     'east': 13,
                                                     'national': 13,
                                                     'north': 9,
                                                     'south': 10,
                                                     'west': 9},
                         'psi_twenty_four_hourly': {'central': 47,
                                                    'east': 52,
                                                    'national': 52,
                                                    'north': 39,
                                                    'south': 42,
                                                    'west': 36},
                         'so2_sub_index': {'central': 2,
                                           'east': 2,
                                           'national': 3,
                                           'north': 2,
                                           'south': 2,
                                           'west': 3},
                         'so2_twenty_four_hourly': {'central': 3,
                                                    'east': 4,
                                                    'national': 5,
                                                    'north': 4,
                                                    'south': 3,
                                                    'west': 5}},
            'timestamp': '2020-02-20T02:00:00+08:00',
            'update_timestamp': '2020-02-20T02:08:52+08:00'},
           {'readings': {'co_eight_hour_max': {'central': 0.43,
                                               'east': 0.61,
                                               'national': 0.61,
                                               'north': 0.44,
                                               'south': 0.51,
                                               'west': 0.58},
                         'co_sub_index': {'central': 4,
                                          'east': 6,
                                          'national': 6,
                                          'north': 4,
                                          'south': 5,
                                          'west': 6},
                         'no2_one_hour_max': {'central': 4,
                                              'east': 8,
                                              'national': 9,
                                              'north': 9,
                                              'south': 8,
                                              'west': 4},
                         'o3_eight_hour_max': {'central': 45,
                                               'east': 28,
                                               'national': 45,
                                               'north': 37,
                                               'south': 38,
                                               'west': 27},
                         'o3_sub_index': {'central': 19,
                                          'east': 12,
                                          'national': 19,
                                          'north': 16,
                                          'south': 16,
                                          'west': 11},
                         'pm10_sub_index': {'central': 26,
                                            'east': 27,
                                            'national': 33,
                                            'north': 18,
                                            'south': 33,
                                            'west': 27},
                         'pm10_twenty_four_hourly': {'central': 26,
                                                     'east': 27,
                                                     'national': 33,
                                                     'north': 18,
                                                     'south': 33,
                                                     'west': 27},
                         'pm25_sub_index': {'central': 46,
                                            'east': 52,
                                            'national': 52,
                                            'north': 38,
                                            'south': 42,
                                            'west': 35},
                         'pm25_twenty_four_hourly': {'central': 11,
                                                     'east': 13,
                                                     'national': 13,
                                                     'north': 9,
                                                     'south': 10,
                                                     'west': 8},
                         'psi_twenty_four_hourly': {'central': 46,
                                                    'east': 52,
                                                    'national': 52,
                                                    'north': 38,
                                                    'south': 42,
                                                    'west': 35},
                         'so2_sub_index': {'central': 2,
                                           'east': 2,
                                           'national': 3,
                                           'north': 2,
                                           'south': 2,
                                           'west': 3},
                         'so2_twenty_four_hourly': {'central': 3,
                                                    'east': 3,
                                                    'national': 5,
                                                    'north': 4,
                                                    'south': 2,
                                                    'west': 5}},
            'timestamp': '2020-02-20T03:00:00+08:00',
            'update_timestamp': '2020-02-20T03:08:52+08:00'},
           {'readings': {'co_eight_hour_max': {'central': 0.43,
                                               'east': 0.65,
                                               'national': 0.65,
                                               'north': 0.44,
                                               'south': 0.51,
                                               'west': 0.58},
                         'co_sub_index': {'central': 4,
                                          'east': 6,
                                          'national': 6,
                                          'north': 4,
                                          'south': 5,
                                          'west': 6},
                         'no2_one_hour_max': {'central': 6,
                                              'east': 9,
                                              'national': 11,
                                              'north': 3,
                                              'south': 11,
                                              'west': 4},
                         'o3_eight_hour_max': {'central': 45,
                                               'east': 28,
                                               'national': 45,
                                               'north': 37,
                                               'south': 39,
                                               'west': 27},
                         'o3_sub_index': {'central': 19,
                                          'east': 12,
                                          'national': 19,
                                          'north': 16,
                                          'south': 16,
                                          'west': 11},
                         'pm10_sub_index': {'central': 26,
                                            'east': 27,
                                            'national': 32,
                                            'north': 18,
                                            'south': 32,
                                            'west': 27},
                         'pm10_twenty_four_hourly': {'central': 26,
                                                     'east': 27,
                                                     'national': 32,
                                                     'north': 18,
                                                     'south': 32,
                                                     'west': 27},
                         'pm25_sub_index': {'central': 45,
                                            'east': 52,
                                            'national': 52,
                                            'north': 38,
                                            'south': 40,
                                            'west': 34},
                         'pm25_twenty_four_hourly': {'central': 11,
                                                     'east': 13,
                                                     'national': 13,
                                                     'north': 9,
                                                     'south': 10,
                                                     'west': 8},
                         'psi_twenty_four_hourly': {'central': 45,
                                                    'east': 52,
                                                    'national': 52,
                                                    'north': 38,
                                                    'south': 40,
                                                    'west': 34},
                         'so2_sub_index': {'central': 2,
                                           'east': 2,
                                           'national': 3,
                                           'north': 2,
                                           'south': 2,
                                           'west': 3},
                         'so2_twenty_four_hourly': {'central': 3,
                                                    'east': 3,
                                                    'national': 5,
                                                    'north': 4,
                                                    'south': 2,
                                                    'west': 5}},
            'timestamp': '2020-02-20T04:00:00+08:00',
            'update_timestamp': '2020-02-20T04:08:52+08:00'},
           {'readings': {'co_eight_hour_max': {'central': 0.43,
                                               'east': 0.67,
                                               'national': 0.67,
                                               'north': 0.44,
                                               'south': 0.51,
                                               'west': 0.58},
                         'co_sub_index': {'central': 4,
                                          'east': 7,
                                          'national': 7,
                                          'north': 4,
                                          'south': 5,
                                          'west': 6},
                         'no2_one_hour_max': {'central': 10,
                                              'east': 9,
                                              'national': 21,
                                              'north': 2,
                                              'south': 21,
                                              'west': 4},
                         'o3_eight_hour_max': {'central': 45,
                                               'east': 29,
                                               'national': 45,
                                               'north': 37,
                                               'south': 38,
                                               'west': 27},
                         'o3_sub_index': {'central': 19,
                                          'east': 12,
                                          'national': 19,
                                          'north': 16,
                                          'south': 16,
                                          'west': 11},
                         'pm10_sub_index': {'central': 25,
                                            'east': 27,
                                            'national': 31,
                                            'north': 18,
                                            'south': 31,
                                            'west': 27},
                         'pm10_twenty_four_hourly': {'central': 25,
                                                     'east': 27,
                                                     'national': 31,
                                                     'north': 18,
                                                     'south': 31,
                                                     'west': 27},
                         'pm25_sub_index': {'central': 45,
                                            'east': 52,
                                            'national': 52,
                                            'north': 38,
                                            'south': 41,
                                            'west': 33},
                         'pm25_twenty_four_hourly': {'central': 11,
                                                     'east': 13,
                                                     'national': 13,
                                                     'north': 9,
                                                     'south': 10,
                                                     'west': 8},
                         'psi_twenty_four_hourly': {'central': 45,
                                                    'east': 52,
                                                    'national': 52,
                                                    'north': 38,
                                                    'south': 41,
                                                    'west': 33},
                         'so2_sub_index': {'central': 2,
                                           'east': 2,
                                           'national': 3,
                                           'north': 2,
                                           'south': 1,
                                           'west': 3},
                         'so2_twenty_four_hourly': {'central': 3,
                                                    'east': 3,
                                                    'national': 5,
                                                    'north': 4,
                                                    'south': 2,
                                                    'west': 5}},
            'timestamp': '2020-02-20T05:00:00+08:00',
            'update_timestamp': '2020-02-20T05:08:52+08:00'},
           {'readings': {'co_eight_hour_max': {'central': 0.43,
                                               'east': 0.69,
                                               'national': 0.69,
                                               'north': 0.44,
                                               'south': 0.51,
                                               'west': 0.59},
                         'co_sub_index': {'central': 4,
                                          'east': 7,
                                          'national': 7,
                                          'north': 4,
                                          'south': 5,
                                          'west': 6},
                         'no2_one_hour_max': {'central': 9,
                                              'east': 9,
                                              'national': 12,
                                              'north': 3,
                                              'south': 12,
                                              'west': 4},
                         'o3_eight_hour_max': {'central': 45,
                                               'east': 29,
                                               'national': 45,
                                               'north': 38,
                                               'south': 38,
                                               'west': 27},
                         'o3_sub_index': {'central': 19,
                                          'east': 12,
                                          'national': 19,
                                          'north': 16,
                                          'south': 16,
                                          'west': 11},
                         'pm10_sub_index': {'central': 25,
                                            'east': 27,
                                            'national': 32,
                                            'north': 18,
                                            'south': 32,
                                            'west': 27},
                         'pm10_twenty_four_hourly': {'central': 25,
                                                     'east': 27,
                                                     'national': 32,
                                                     'north': 18,
                                                     'south': 32,
                                                     'west': 27},
                         'pm25_sub_index': {'central': 46,
                                            'east': 52,
                                            'national': 52,
                                            'north': 39,
                                            'south': 41,
                                            'west': 33},
                         'pm25_twenty_four_hourly': {'central': 11,
                                                     'east': 13,
                                                     'national': 13,
                                                     'north': 9,
                                                     'south': 10,
                                                     'west': 8},
                         'psi_twenty_four_hourly': {'central': 46,
                                                    'east': 52,
                                                    'national': 52,
                                                    'north': 39,
                                                    'south': 41,
                                                    'west': 33},
                         'so2_sub_index': {'central': 2,
                                           'east': 2,
                                           'national': 3,
                                           'north': 2,
                                           'south': 1,
                                           'west': 3},
                         'so2_twenty_four_hourly': {'central': 3,
                                                    'east': 3,
                                                    'national': 5,
                                                    'north': 4,
                                                    'south': 2,
                                                    'west': 5}},
            'timestamp': '2020-02-20T06:00:00+08:00',
            'update_timestamp': '2020-02-20T06:08:52+08:00'},
           {'readings': {'co_eight_hour_max': {'central': 0.43,
                                               'east': 0.71,
                                               'national': 0.71,
                                               'north': 0.44,
                                               'south': 0.51,
                                               'west': 0.59},
                         'co_sub_index': {'central': 4,
                                          'east': 7,
                                          'national': 7,
                                          'north': 4,
                                          'south': 5,
                                          'west': 6},
                         'no2_one_hour_max': {'central': 15,
                                              'east': 14,
                                              'national': 18,
                                              'north': 10,
                                              'south': 18,
                                              'west': 5},
                         'o3_eight_hour_max': {'central': 45,
                                               'east': 29,
                                               'national': 45,
                                               'north': 38,
                                               'south': 38,
                                               'west': 27},
                         'o3_sub_index': {'central': 19,
                                          'east': 12,
                                          'national': 19,
                                          'north': 16,
                                          'south': 16,
                                          'west': 11},
                         'pm10_sub_index': {'central': 25,
                                            'east': 27,
                                            'national': 32,
                                            'north': 19,
                                            'south': 32,
                                            'west': 28},
                         'pm10_twenty_four_hourly': {'central': 25,
                                                     'east': 27,
                                                     'national': 32,
                                                     'north': 19,
                                                     'south': 32,
                                                     'west': 28},
                         'pm25_sub_index': {'central': 46,
                                            'east': 52,
                                            'national': 52,
                                            'north': 40,
                                            'south': 41,
                                            'west': 35},
                         'pm25_twenty_four_hourly': {'central': 11,
                                                     'east': 13,
                                                     'national': 13,
                                                     'north': 10,
                                                     'south': 10,
                                                     'west': 8},
                         'psi_twenty_four_hourly': {'central': 46,
                                                    'east': 52,
                                                    'national': 52,
                                                    'north': 40,
                                                    'south': 41,
                                                    'west': 35},
                         'so2_sub_index': {'central': 2,
                                           'east': 2,
                                           'national': 3,
                                           'north': 2,
                                           'south': 1,
                                           'west': 3},
                         'so2_twenty_four_hourly': {'central': 3,
                                                    'east': 2,
                                                    'national': 5,
                                                    'north': 4,
                                                    'south': 2,
                                                    'west': 5}},
            'timestamp': '2020-02-20T07:00:00+08:00',
            'update_timestamp': '2020-02-20T07:08:52+08:00'},
           {'readings': {'co_eight_hour_max': {'central': 0.43,
                                               'east': 0.73,
                                               'national': 0.73,
                                               'north': 0.44,
                                               'south': 0.52,
                                               'west': 0.6},
                         'co_sub_index': {'central': 4,
                                          'east': 7,
                                          'national': 7,
                                          'north': 4,
                                          'south': 5,
                                          'west': 6},
                         'no2_one_hour_max': {'central': 16,
                                              'east': 20,
                                              'national': 23,
                                              'north': 15,
                                              'south': 23,
                                              'west': 8},
                         'o3_eight_hour_max': {'central': 44,
                                               'east': 28,
                                               'national': 44,
                                               'north': 37,
                                               'south': 38,
                                               'west': 26},
                         'o3_sub_index': {'central': 19,
                                          'east': 12,
                                          'national': 19,
                                          'north': 16,
                                          'south': 16,
                                          'west': 11},
                         'pm10_sub_index': {'central': 25,
                                            'east': 28,
                                            'national': 32,
                                            'north': 19,
                                            'south': 32,
                                            'west': 28},
                         'pm10_twenty_four_hourly': {'central': 25,
                                                     'east': 28,
                                                     'national': 32,
                                                     'north': 19,
                                                     'south': 32,
                                                     'west': 28},
                         'pm25_sub_index': {'central': 46,
                                            'east': 52,
                                            'national': 52,
                                            'north': 40,
                                            'south': 41,
                                            'west': 35},
                         'pm25_twenty_four_hourly': {'central': 11,
                                                     'east': 13,
                                                     'national': 13,
                                                     'north': 10,
                                                     'south': 10,
                                                     'west': 8},
                         'psi_twenty_four_hourly': {'central': 46,
                                                    'east': 52,
                                                    'national': 52,
                                                    'north': 40,
                                                    'south': 41,
                                                    'west': 35},
                         'so2_sub_index': {'central': 2,
                                           'east': 1,
                                           'national': 4,
                                           'north': 2,
                                           'south': 1,
                                           'west': 4},
                         'so2_twenty_four_hourly': {'central': 3,
                                                    'east': 2,
                                                    'national': 6,
                                                    'north': 4,
                                                    'south': 2,
                                                    'west': 6}},
            'timestamp': '2020-02-20T08:00:00+08:00',
            'update_timestamp': '2020-02-20T08:08:53+08:00'},
           {'readings': {'co_eight_hour_max': {'central': 0.44,
                                               'east': 0.75,
                                               'national': 0.75,
                                               'north': 0.46,
                                               'south': 0.54,
                                               'west': 0.61},
                         'co_sub_index': {'central': 4,
                                          'east': 7,
                                          'national': 7,
                                          'north': 5,
                                          'south': 5,
                                          'west': 6},
                         'no2_one_hour_max': {'central': 17,
                                              'east': 20,
                                              'national': 23,
                                              'north': 15,
                                              'south': 23,
                                              'west': 20},
                         'o3_eight_hour_max': {'central': 44,
                                               'east': 28,
                                               'national': 44,
                                               'north': 36,
                                               'south': 38,
                                               'west': 25},
                         'o3_sub_index': {'central': 19,
                                          'east': 12,
                                          'national': 19,
                                          'north': 15,
                                          'south': 16,
                                          'west': 11},
                         'pm10_sub_index': {'central': 25,
                                            'east': 28,
                                            'national': 32,
                                            'north': 19,
                                            'south': 32,
                                            'west': 28},
                         'pm10_twenty_four_hourly': {'central': 25,
                                                     'east': 28,
                                                     'national': 32,
                                                     'north': 19,
                                                     'south': 32,
                                                     'west': 28},
                         'pm25_sub_index': {'central': 46,
                                            'east': 53,
                                            'national': 53,
                                            'north': 41,
                                            'south': 41,
                                            'west': 34},
                         'pm25_twenty_four_hourly': {'central': 11,
                                                     'east': 14,
                                                     'national': 14,
                                                     'north': 10,
                                                     'south': 10,
                                                     'west': 8},
                         'psi_twenty_four_hourly': {'central': 46,
                                                    'east': 53,
                                                    'national': 53,
                                                    'north': 41,
                                                    'south': 41,
                                                    'west': 34},
                         'so2_sub_index': {'central': 2,
                                           'east': 1,
                                           'national': 4,
                                           'north': 2,
                                           'south': 1,
                                           'west': 4},
                         'so2_twenty_four_hourly': {'central': 3,
                                                    'east': 2,
                                                    'national': 6,
                                                    'north': 4,
                                                    'south': 2,
                                                    'west': 6}},
            'timestamp': '2020-02-20T09:00:00+08:00',
            'update_timestamp': '2020-02-20T09:08:52+08:00'},
           {'readings': {'co_eight_hour_max': {'central': 0.45,
                                               'east': 0.75,
                                               'national': 0.75,
                                               'north': 0.47,
                                               'south': 0.55,
                                               'west': 0.6},
                         'co_sub_index': {'central': 5,
                                          'east': 8,
                                          'national': 8,
                                          'north': 5,
                                          'south': 6,
                                          'west': 6},
                         'no2_one_hour_max': {'central': 15,
                                              'east': 14,
                                              'national': 21,
                                              'north': 9,
                                              'south': 21,
                                              'west': 10},
                         'o3_eight_hour_max': {'central': 43,
                                               'east': 28,
                                               'national': 43,
                                               'north': 36,
                                               'south': 40,
                                               'west': 24},
                         'o3_sub_index': {'central': 18,
                                          'east': 12,
                                          'national': 18,
                                          'north': 15,
                                          'south': 17,
                                          'west': 10},
                         'pm10_sub_index': {'central': 25,
                                            'east': 29,
                                            'national': 31,
                                            'north': 19,
                                            'south': 31,
                                            'west': 29},
                         'pm10_twenty_four_hourly': {'central': 25,
                                                     'east': 29,
                                                     'national': 31,
                                                     'north': 19,
                                                     'south': 31,
                                                     'west': 29},
                         'pm25_sub_index': {'central': 45,
                                            'east': 53,
                                            'national': 53,
                                            'north': 40,
                                            'south': 42,
                                            'west': 33},
                         'pm25_twenty_four_hourly': {'central': 11,
                                                     'east': 14,
                                                     'national': 14,
                                                     'north': 10,
                                                     'south': 10,
                                                     'west': 8},
                         'psi_twenty_four_hourly': {'central': 45,
                                                    'east': 53,
                                                    'national': 53,
                                                    'north': 40,
                                                    'south': 42,
                                                    'west': 33},
                         'so2_sub_index': {'central': 2,
                                           'east': 1,
                                           'national': 4,
                                           'north': 2,
                                           'south': 1,
                                           'west': 4},
                         'so2_twenty_four_hourly': {'central': 3,
                                                    'east': 2,
                                                    'national': 6,
                                                    'north': 4,
                                                    'south': 2,
                                                    'west': 6}},
            'timestamp': '2020-02-20T10:00:00+08:00',
            'update_timestamp': '2020-02-20T10:08:52+08:00'},
           {'readings': {'co_eight_hour_max': {'central': 0.45,
                                               'east': 0.73,
                                               'national': 0.73,
                                               'north': 0.47,
                                               'south': 0.56,
                                               'west': 0.59},
                         'co_sub_index': {'central': 5,
                                          'east': 7,
                                          'national': 7,
                                          'north': 5,
                                          'south': 6,
                                          'west': 6},
                         'no2_one_hour_max': {'central': 17,
                                              'east': 15,
                                              'national': 17,
                                              'north': 5,
                                              'south': 16,
                                              'west': 4},
                         'o3_eight_hour_max': {'central': 43,
                                               'east': 28,
                                               'national': 43,
                                               'north': 37,
                                               'south': 42,
                                               'west': 25},
                         'o3_sub_index': {'central': 18,
                                          'east': 12,
                                          'national': 18,
                                          'north': 16,
                                          'south': 18,
                                          'west': 10},
                         'pm10_sub_index': {'central': 25,
                                            'east': 29,
                                            'national': 31,
                                            'north': 19,
                                            'south': 31,
                                            'west': 29},
                         'pm10_twenty_four_hourly': {'central': 25,
                                                     'east': 29,
                                                     'national': 31,
                                                     'north': 19,
                                                     'south': 31,
                                                     'west': 29},
                         'pm25_sub_index': {'central': 45,
                                            'east': 53,
                                            'national': 53,
                                            'north': 40,
                                            'south': 42,
                                            'west': 34},
                         'pm25_twenty_four_hourly': {'central': 11,
                                                     'east': 14,
                                                     'national': 14,
                                                     'north': 10,
                                                     'south': 10,
                                                     'west': 8},
                         'psi_twenty_four_hourly': {'central': 45,
                                                    'east': 53,
                                                    'national': 53,
                                                    'north': 40,
                                                    'south': 42,
                                                    'west': 34},
                         'so2_sub_index': {'central': 2,
                                           'east': 1,
                                           'national': 4,
                                           'north': 2,
                                           'south': 1,
                                           'west': 4},
                         'so2_twenty_four_hourly': {'central': 3,
                                                    'east': 2,
                                                    'national': 6,
                                                    'north': 4,
                                                    'south': 2,
                                                    'west': 6}},
            'timestamp': '2020-02-20T11:00:00+08:00',
            'update_timestamp': '2020-02-20T11:08:52+08:00'},
           {'readings': {'co_eight_hour_max': {'central': 0.45,
                                               'east': 0.71,
                                               'national': 0.71,
                                               'north': 0.47,
                                               'south': 0.56,
                                               'west': 0.57},
                         'co_sub_index': {'central': 5,
                                          'east': 7,
                                          'national': 7,
                                          'north': 5,
                                          'south': 6,
                                          'west': 6},
                         'no2_one_hour_max': {'central': 15,
                                              'east': 14,
                                              'national': 15,
                                              'north': 4,
                                              'south': 15,
                                              'west': 7},
                         'o3_eight_hour_max': {'central': 44,
                                               'east': 27,
                                               'national': 44,
                                               'north': 38,
                                               'south': 44,
                                               'west': 25},
                         'o3_sub_index': {'central': 19,
                                          'east': 11,
                                          'national': 19,
                                          'north': 16,
                                          'south': 18,
                                          'west': 11},
                         'pm10_sub_index': {'central': 25,
                                            'east': 28,
                                            'national': 31,
                                            'north': 19,
                                            'south': 31,
                                            'west': 29},
                         'pm10_twenty_four_hourly': {'central': 25,
                                                     'east': 28,
                                                     'national': 31,
                                                     'north': 19,
                                                     'south': 31,
                                                     'west': 29},
                         'pm25_sub_index': {'central': 45,
                                            'east': 53,
                                            'national': 53,
                                            'north': 40,
                                            'south': 42,
                                            'west': 35},
                         'pm25_twenty_four_hourly': {'central': 11,
                                                     'east': 14,
                                                     'national': 14,
                                                     'north': 10,
                                                     'south': 10,
                                                     'west': 8},
                         'psi_twenty_four_hourly': {'central': 45,
                                                    'east': 53,
                                                    'national': 53,
                                                    'north': 40,
                                                    'south': 42,
                                                    'west': 35},
                         'so2_sub_index': {'central': 2,
                                           'east': 1,
                                           'national': 4,
                                           'north': 2,
                                           'south': 1,
                                           'west': 4},
                         'so2_twenty_four_hourly': {'central': 3,
                                                    'east': 2,
                                                    'national': 6,
                                                    'north': 4,
                                                    'south': 2,
                                                    'west': 6}},
            'timestamp': '2020-02-20T12:00:00+08:00',
            'update_timestamp': '2020-02-20T12:08:52+08:00'},
           {'readings': {'co_eight_hour_max': {'central': 0.45,
                                               'east': 0.67,
                                               'national': 0.67,
                                               'north': 0.46,
                                               'south': 0.56,
                                               'west': 0.54},
                         'co_sub_index': {'central': 4,
                                          'east': 7,
                                          'national': 7,
                                          'north': 5,
                                          'south': 6,
                                          'west': 5},
                         'no2_one_hour_max': {'central': 14,
                                              'east': 12,
                                              'national': 14,
                                              'north': 3,
                                              'south': 14,
                                              'west': 10},
                         'o3_eight_hour_max': {'central': 46,
                                               'east': 26,
                                               'national': 47,
                                               'north': 40,
                                               'south': 47,
                                               'west': 27},
                         'o3_sub_index': {'central': 19,
                                          'east': 11,
                                          'national': 20,
                                          'north': 17,
                                          'south': 20,
                                          'west': 11},
                         'pm10_sub_index': {'central': 25,
                                            'east': 27,
                                            'national': 31,
                                            'north': 19,
                                            'south': 31,
                                            'west': 29},
                         'pm10_twenty_four_hourly': {'central': 25,
                                                     'east': 27,
                                                     'national': 31,
                                                     'north': 19,
                                                     'south': 31,
                                                     'west': 29},
                         'pm25_sub_index': {'central': 46,
                                            'east': 52,
                                            'national': 52,
                                            'north': 40,
                                            'south': 42,
                                            'west': 36},
                         'pm25_twenty_four_hourly': {'central': 11,
                                                     'east': 13,
                                                     'national': 13,
                                                     'north': 10,
                                                     'south': 10,
                                                     'west': 9},
                         'psi_twenty_four_hourly': {'central': 46,
                                                    'east': 52,
                                                    'national': 52,
                                                    'north': 40,
                                                    'south': 42,
                                                    'west': 36},
                         'so2_sub_index': {'central': 2,
                                           'east': 1,
                                           'national': 4,
                                           'north': 2,
                                           'south': 1,
                                           'west': 4},
                         'so2_twenty_four_hourly': {'central': 3,
                                                    'east': 2,
                                                    'national': 6,
                                                    'north': 4,
                                                    'south': 2,
                                                    'west': 6}},
            'timestamp': '2020-02-20T13:00:00+08:00',
            'update_timestamp': '2020-02-20T13:08:52+08:00'},
           {'readings': {'co_eight_hour_max': {'central': 0.44,
                                               'east': 0.64,
                                               'national': 0.64,
                                               'north': 0.45,
                                               'south': 0.55,
                                               'west': 0.51},
                         'co_sub_index': {'central': 4,
                                          'east': 6,
                                          'national': 6,
                                          'north': 5,
                                          'south': 6,
                                          'west': 5},
                         'no2_one_hour_max': {'central': 13,
                                              'east': 11,
                                              'national': 13,
                                              'north': 4,
                                              'south': 13,
                                              'west': 11},
                         'o3_eight_hour_max': {'central': 47,
                                               'east': 24,
                                               'national': 48,
                                               'north': 41,
                                               'south': 48,
                                               'west': 29},
                         'o3_sub_index': {'central': 20,
                                          'east': 10,
                                          'national': 20,
                                          'north': 18,
                                          'south': 20,
                                          'west': 12},
                         'pm10_sub_index': {'central': 25,
                                            'east': 27,
                                            'national': 32,
                                            'north': 19,
                                            'south': 32,
                                            'west': 29},
                         'pm10_twenty_four_hourly': {'central': 25,
                                                     'east': 27,
                                                     'national': 32,
                                                     'north': 19,
                                                     'south': 32,
                                                     'west': 29},
                         'pm25_sub_index': {'central': 44,
                                            'east': 52,
                                            'national': 52,
                                            'north': 40,
                                            'south': 41,
                                            'west': 35},
                         'pm25_twenty_four_hourly': {'central': 11,
                                                     'east': 13,
                                                     'national': 13,
                                                     'north': 10,
                                                     'south': 10,
                                                     'west': 8},
                         'psi_twenty_four_hourly': {'central': 44,
                                                    'east': 52,
                                                    'national': 52,
                                                    'north': 40,
                                                    'south': 41,
                                                    'west': 35},
                         'so2_sub_index': {'central': 2,
                                           'east': 1,
                                           'national': 4,
                                           'north': 2,
                                           'south': 1,
                                           'west': 4},
                         'so2_twenty_four_hourly': {'central': 3,
                                                    'east': 2,
                                                    'national': 6,
                                                    'north': 4,
                                                    'south': 2,
                                                    'west': 6}},
            'timestamp': '2020-02-20T14:00:00+08:00',
            'update_timestamp': '2020-02-20T14:08:52+08:00'},
           {'readings': {'co_eight_hour_max': {'central': 0.43,
                                               'east': 0.59,
                                               'national': 0.59,
                                               'north': 0.44,
                                               'south': 0.55,
                                               'west': 0.48},
                         'co_sub_index': {'central': 4,
                                          'east': 6,
                                          'national': 6,
                                          'north': 4,
                                          'south': 5,
                                          'west': 5},
                         'no2_one_hour_max': {'central': 14,
                                              'east': 13,
                                              'national': 14,
                                              'north': 5,
                                              'south': 14,
                                              'west': 14},
                         'o3_eight_hour_max': {'central': 49,
                                               'east': 23,
                                               'national': 51,
                                               'north': 43,
                                               'south': 51,
                                               'west': 31},
                         'o3_sub_index': {'central': 21,
                                          'east': 10,
                                          'national': 22,
                                          'north': 18,
                                          'south': 22,
                                          'west': 13},
                         'pm10_sub_index': {'central': 25,
                                            'east': 26,
                                            'national': 31,
                                            'north': 19,
                                            'south': 31,
                                            'west': 29},
                         'pm10_twenty_four_hourly': {'central': 25,
                                                     'east': 26,
                                                     'national': 31,
                                                     'north': 19,
                                                     'south': 31,
                                                     'west': 29},
                         'pm25_sub_index': {'central': 44,
                                            'east': 51,
                                            'national': 51,
                                            'north': 39,
                                            'south': 40,
                                            'west': 34},
                         'pm25_twenty_four_hourly': {'central': 11,
                                                     'east': 12,
                                                     'national': 12,
                                                     'north': 9,
                                                     'south': 10,
                                                     'west': 8},
                         'psi_twenty_four_hourly': {'central': 44,
                                                    'east': 51,
                                                    'national': 51,
                                                    'north': 39,
                                                    'south': 40,
                                                    'west': 34},
                         'so2_sub_index': {'central': 2,
                                           'east': 1,
                                           'national': 4,
                                           'north': 2,
                                           'south': 1,
                                           'west': 4},
                         'so2_twenty_four_hourly': {'central': 3,
                                                    'east': 2,
                                                    'national': 6,
                                                    'north': 4,
                                                    'south': 2,
                                                    'west': 6}},
            'timestamp': '2020-02-20T15:00:00+08:00',
            'update_timestamp': '2020-02-20T15:08:52+08:00'},
           {'readings': {'co_eight_hour_max': {'central': 0.42,
                                               'east': 0.51,
                                               'national': 0.54,
                                               'north': 0.43,
                                               'south': 0.54,
                                               'west': 0.45},
                         'co_sub_index': {'central': 4,
                                          'east': 5,
                                          'national': 5,
                                          'north': 4,
                                          'south': 5,
                                          'west': 4},
                         'no2_one_hour_max': {'central': 15,
                                              'east': 12,
                                              'national': 15,
                                              'north': 5,
                                              'south': 15,
                                              'west': 14},
                         'o3_eight_hour_max': {'central': 51,
                                               'east': 24,
                                               'national': 53,
                                               'north': 45,
                                               'south': 53,
                                               'west': 33},
                         'o3_sub_index': {'central': 21,
                                          'east': 10,
                                          'national': 23,
                                          'north': 19,
                                          'south': 23,
                                          'west': 14},
                         'pm10_sub_index': {'central': 25,
                                            'east': 26,
                                            'national': 32,
                                            'north': 19,
                                            'south': 32,
                                            'west': 29},
                         'pm10_twenty_four_hourly': {'central': 25,
                                                     'east': 26,
                                                     'national': 32,
                                                     'north': 19,
                                                     'south': 32,
                                                     'west': 29},
                         'pm25_sub_index': {'central': 44,
                                            'east': 50,
                                            'national': 50,
                                            'north': 40,
                                            'south': 40,
                                            'west': 34},
                         'pm25_twenty_four_hourly': {'central': 11,
                                                     'east': 12,
                                                     'national': 12,
                                                     'north': 10,
                                                     'south': 10,
                                                     'west': 8},
                         'psi_twenty_four_hourly': {'central': 44,
                                                    'east': 50,
                                                    'national': 50,
                                                    'north': 40,
                                                    'south': 40,
                                                    'west': 34},
                         'so2_sub_index': {'central': 2,
                                           'east': 1,
                                           'national': 4,
                                           'north': 2,
                                           'south': 1,
                                           'west': 4},
                         'so2_twenty_four_hourly': {'central': 3,
                                                    'east': 2,
                                                    'national': 6,
                                                    'north': 4,
                                                    'south': 2,
                                                    'west': 6}},
            'timestamp': '2020-02-20T16:00:00+08:00',
            'update_timestamp': '2020-02-20T16:08:52+08:00'},
           {'readings': {'co_eight_hour_max': {'central': 0.41,
                                               'east': 0.44,
                                               'national': 0.52,
                                               'north': 0.41,
                                               'south': 0.52,
                                               'west': 0.41},
                         'co_sub_index': {'central': 4,
                                          'east': 4,
                                          'national': 5,
                                          'north': 4,
                                          'south': 5,
                                          'west': 4},
                         'no2_one_hour_max': {'central': 14,
                                              'east': 13,
                                              'national': 15,
                                              'north': 4,
                                              'south': 14,
                                              'west': 15},
                         'o3_eight_hour_max': {'central': 52,
                                               'east': 24,
                                               'national': 54,
                                               'north': 47,
                                               'south': 54,
                                               'west': 35},
                         'o3_sub_index': {'central': 22,
                                          'east': 10,
                                          'national': 23,
                                          'north': 20,
                                          'south': 23,
                                          'west': 15},
                         'pm10_sub_index': {'central': 25,
                                            'east': 27,
                                            'national': 32,
                                            'north': 19,
                                            'south': 32,
                                            'west': 29},
                         'pm10_twenty_four_hourly': {'central': 25,
                                                     'east': 27,
                                                     'national': 32,
                                                     'north': 19,
                                                     'south': 32,
                                                     'west': 29},
                         'pm25_sub_index': {'central': 45,
                                            'east': 51,
                                            'national': 51,
                                            'north': 40,
                                            'south': 40,
                                            'west': 35},
                         'pm25_twenty_four_hourly': {'central': 11,
                                                     'east': 12,
                                                     'national': 12,
                                                     'north': 9,
                                                     'south': 10,
                                                     'west': 8},
                         'psi_twenty_four_hourly': {'central': 45,
                                                    'east': 51,
                                                    'national': 51,
                                                    'north': 40,
                                                    'south': 40,
                                                    'west': 35},
                         'so2_sub_index': {'central': 2,
                                           'east': 1,
                                           'national': 4,
                                           'north': 2,
                                           'south': 1,
                                           'west': 4},
                         'so2_twenty_four_hourly': {'central': 3,
                                                    'east': 2,
                                                    'national': 6,
                                                    'north': 4,
                                                    'south': 2,
                                                    'west': 6}},
            'timestamp': '2020-02-20T17:00:00+08:00',
            'update_timestamp': '2020-02-20T17:08:52+08:00'},
           {'readings': {'co_eight_hour_max': {'central': 0.4,
                                               'east': 0.39,
                                               'national': 0.5,
                                               'north': 0.4,
                                               'south': 0.5,
                                               'west': 0.39},
                         'co_sub_index': {'central': 4,
                                          'east': 4,
                                          'national': 5,
                                          'north': 4,
                                          'south': 5,
                                          'west': 4},
                         'no2_one_hour_max': {'central': 22,
                                              'east': 14,
                                              'national': 22,
                                              'north': 6,
                                              'south': 14,
                                              'west': 18},
                         'o3_eight_hour_max': {'central': 51,
                                               'east': 24,
                                               'national': 52,
                                               'north': 47,
                                               'south': 52,
                                               'west': 36},
                         'o3_sub_index': {'central': 22,
                                          'east': 10,
                                          'national': 22,
                                          'north': 20,
                                          'south': 22,
                                          'west': 15},
                         'pm10_sub_index': {'central': 25,
                                            'east': 27,
                                            'national': 32,
                                            'north': 19,
                                            'south': 32,
                                            'west': 29},
                         'pm10_twenty_four_hourly': {'central': 25,
                                                     'east': 27,
                                                     'national': 32,
                                                     'north': 19,
                                                     'south': 32,
                                                     'west': 29},
                         'pm25_sub_index': {'central': 46,
                                            'east': 51,
                                            'national': 51,
                                            'north': 40,
                                            'south': 41,
                                            'west': 36},
                         'pm25_twenty_four_hourly': {'central': 11,
                                                     'east': 12,
                                                     'national': 12,
                                                     'north': 10,
                                                     'south': 10,
                                                     'west': 9},
                         'psi_twenty_four_hourly': {'central': 46,
                                                    'east': 51,
                                                    'national': 51,
                                                    'north': 40,
                                                    'south': 41,
                                                    'west': 36},
                         'so2_sub_index': {'central': 2,
                                           'east': 1,
                                           'national': 3,
                                           'north': 2,
                                           'south': 1,
                                           'west': 3},
                         'so2_twenty_four_hourly': {'central': 3,
                                                    'east': 2,
                                                    'national': 6,
                                                    'north': 4,
                                                    'south': 2,
                                                    'west': 6}},
            'timestamp': '2020-02-20T18:00:00+08:00',
            'update_timestamp': '2020-02-20T18:08:52+08:00'},
           {'readings': {'co_eight_hour_max': {'central': 0.4,
                                               'east': 0.36,
                                               'national': 0.5,
                                               'north': 0.4,
                                               'south': 0.5,
                                               'west': 0.38},
                         'co_sub_index': {'central': 4,
                                          'east': 4,
                                          'national': 5,
                                          'north': 4,
                                          'south': 5,
                                          'west': 4},
                         'no2_one_hour_max': {'central': 15,
                                              'east': 15,
                                              'national': 20,
                                              'north': 7,
                                              'south': 17,
                                              'west': 20},
                         'o3_eight_hour_max': {'central': 50,
                                               'east': 25,
                                               'national': 51,
                                               'north': 46,
                                               'south': 51,
                                               'west': 36},
                         'o3_sub_index': {'central': 21,
                                          'east': 10,
                                          'national': 21,
                                          'north': 20,
                                          'south': 21,
                                          'west': 15},
                         'pm10_sub_index': {'central': 25,
                                            'east': 28,
                                            'national': 32,
                                            'north': 19,
                                            'south': 32,
                                            'west': 29},
                         'pm10_twenty_four_hourly': {'central': 25,
                                                     'east': 28,
                                                     'national': 32,
                                                     'north': 19,
                                                     'south': 32,
                                                     'west': 29},
                         'pm25_sub_index': {'central': 46,
                                            'east': 51,
                                            'national': 51,
                                            'north': 40,
                                            'south': 41,
                                            'west': 36},
                         'pm25_twenty_four_hourly': {'central': 11,
                                                     'east': 12,
                                                     'national': 12,
                                                     'north': 9,
                                                     'south': 10,
                                                     'west': 9},
                         'psi_twenty_four_hourly': {'central': 46,
                                                    'east': 51,
                                                    'national': 51,
                                                    'north': 40,
                                                    'south': 41,
                                                    'west': 36},
                         'so2_sub_index': {'central': 2,
                                           'east': 1,
                                           'national': 3,
                                           'north': 2,
                                           'south': 1,
                                           'west': 3},
                         'so2_twenty_four_hourly': {'central': 3,
                                                    'east': 2,
                                                    'national': 6,
                                                    'north': 4,
                                                    'south': 2,
                                                    'west': 6}},
            'timestamp': '2020-02-20T19:00:00+08:00',
            'update_timestamp': '2020-02-20T19:08:52+08:00'},
           {'readings': {'co_eight_hour_max': {'central': 0.4,
                                               'east': 0.35,
                                               'national': 0.5,
                                               'north': 0.4,
                                               'south': 0.5,
                                               'west': 0.38},
                         'co_sub_index': {'central': 4,
                                          'east': 4,
                                          'national': 5,
                                          'north': 4,
                                          'south': 5,
                                          'west': 4},
                         'no2_one_hour_max': {'central': 16,
                                              'east': 15,
                                              'national': 21,
                                              'north': 7,
                                              'south': 15,
                                              'west': 21},
                         'o3_eight_hour_max': {'central': 49,
                                               'east': 25,
                                               'national': 49,
                                               'north': 45,
                                               'south': 48,
                                               'west': 36},
                         'o3_sub_index': {'central': 21,
                                          'east': 11,
                                          'national': 21,
                                          'north': 19,
                                          'south': 20,
                                          'west': 15},
                         'pm10_sub_index': {'central': 25,
                                            'east': 28,
                                            'national': 32,
                                            'north': 18,
                                            'south': 32,
                                            'west': 29},
                         'pm10_twenty_four_hourly': {'central': 25,
                                                     'east': 28,
                                                     'national': 32,
                                                     'north': 18,
                                                     'south': 32,
                                                     'west': 29},
                         'pm25_sub_index': {'central': 46,
                                            'east': 51,
                                            'national': 51,
                                            'north': 40,
                                            'south': 40,
                                            'west': 36},
                         'pm25_twenty_four_hourly': {'central': 11,
                                                     'east': 12,
                                                     'national': 12,
                                                     'north': 10,
                                                     'south': 10,
                                                     'west': 9},
                         'psi_twenty_four_hourly': {'central': 46,
                                                    'east': 51,
                                                    'national': 51,
                                                    'north': 40,
                                                    'south': 40,
                                                    'west': 36},
                         'so2_sub_index': {'central': 2,
                                           'east': 1,
                                           'national': 3,
                                           'north': 2,
                                           'south': 1,
                                           'west': 3},
                         'so2_twenty_four_hourly': {'central': 3,
                                                    'east': 2,
                                                    'national': 5,
                                                    'north': 4,
                                                    'south': 2,
                                                    'west': 5}},
            'timestamp': '2020-02-20T20:00:00+08:00',
            'update_timestamp': '2020-02-20T20:08:52+08:00'},
           {'readings': {'co_eight_hour_max': {'central': 0.41,
                                               'east': 0.36,
                                               'national': 0.5,
                                               'north': 0.4,
                                               'south': 0.5,
                                               'west': 0.38},
                         'co_sub_index': {'central': 4,
                                          'east': 4,
                                          'national': 5,
                                          'north': 4,
                                          'south': 5,
                                          'west': 4},
                         'no2_one_hour_max': {'central': 12,
                                              'east': 14,
                                              'national': 21,
                                              'north': 6,
                                              'south': 16,
                                              'west': 21},
                         'o3_eight_hour_max': {'central': 47,
                                               'east': 26,
                                               'national': 47,
                                               'north': 43,
                                               'south': 45,
                                               'west': 34},
                         'o3_sub_index': {'central': 20,
                                          'east': 11,
                                          'national': 20,
                                          'north': 18,
                                          'south': 19,
                                          'west': 14},
                         'pm10_sub_index': {'central': 25,
                                            'east': 29,
                                            'national': 36,
                                            'north': 18,
                                            'south': 36,
                                            'west': 29},
                         'pm10_twenty_four_hourly': {'central': 25,
                                                     'east': 29,
                                                     'national': 36,
                                                     'north': 18,
                                                     'south': 36,
                                                     'west': 29},
                         'pm25_sub_index': {'central': 46,
                                            'east': 51,
                                            'national': 51,
                                            'north': 40,
                                            'south': 41,
                                            'west': 37},
                         'pm25_twenty_four_hourly': {'central': 11,
                                                     'east': 12,
                                                     'national': 12,
                                                     'north': 10,
                                                     'south': 10,
                                                     'west': 9},
                         'psi_twenty_four_hourly': {'central': 46,
                                                    'east': 51,
                                                    'national': 51,
                                                    'north': 40,
                                                    'south': 41,
                                                    'west': 37},
                         'so2_sub_index': {'central': 2,
                                           'east': 1,
                                           'national': 3,
                                           'north': 3,
                                           'south': 1,
                                           'west': 3},
                         'so2_twenty_four_hourly': {'central': 3,
                                                    'east': 2,
                                                    'national': 5,
                                                    'north': 4,
                                                    'south': 2,
                                                    'west': 5}},
            'timestamp': '2020-02-20T21:00:00+08:00',
            'update_timestamp': '2020-02-20T21:08:52+08:00'},
           {'readings': {'co_eight_hour_max': {'central': 0.41,
                                               'east': 0.39,
                                               'national': 0.5,
                                               'north': 0.41,
                                               'south': 0.5,
                                               'west': 0.39},
                         'co_sub_index': {'central': 4,
                                          'east': 4,
                                          'national': 5,
                                          'north': 4,
                                          'south': 5,
                                          'west': 4},
                         'no2_one_hour_max': {'central': 9,
                                              'east': 17,
                                              'national': 21,
                                              'north': 7,
                                              'south': 17,
                                              'west': 21},
                         'o3_eight_hour_max': {'central': 45,
                                               'east': 26,
                                               'national': 45,
                                               'north': 41,
                                               'south': 42,
                                               'west': 32},
                         'o3_sub_index': {'central': 19,
                                          'east': 11,
                                          'national': 19,
                                          'north': 17,
                                          'south': 18,
                                          'west': 14},
                         'pm10_sub_index': {'central': 25,
                                            'east': 29,
                                            'national': 35,
                                            'north': 18,
                                            'south': 35,
                                            'west': 29},
                         'pm10_twenty_four_hourly': {'central': 25,
                                                     'east': 29,
                                                     'national': 35,
                                                     'north': 18,
                                                     'south': 35,
                                                     'west': 29},
                         'pm25_sub_index': {'central': 46,
                                            'east': 51,
                                            'national': 51,
                                            'north': 40,
                                            'south': 40,
                                            'west': 38},
                         'pm25_twenty_four_hourly': {'central': 11,
                                                     'east': 12,
                                                     'national': 12,
                                                     'north': 10,
                                                     'south': 10,
                                                     'west': 9},
                         'psi_twenty_four_hourly': {'central': 46,
                                                    'east': 51,
                                                    'national': 51,
                                                    'north': 40,
                                                    'south': 40,
                                                    'west': 38},
                         'so2_sub_index': {'central': 2,
                                           'east': 1,
                                           'national': 3,
                                           'north': 3,
                                           'south': 1,
                                           'west': 3},
                         'so2_twenty_four_hourly': {'central': 3,
                                                    'east': 2,
                                                    'national': 5,
                                                    'north': 4,
                                                    'south': 2,
                                                    'west': 5}},
            'timestamp': '2020-02-20T22:00:00+08:00',
            'update_timestamp': '2020-02-20T22:08:57+08:00'},
           {'readings': {'co_eight_hour_max': {'central': 0.42,
                                               'east': 0.41,
                                               'national': 0.5,
                                               'north': 0.42,
                                               'south': 0.5,
                                               'west': 0.4},
                         'co_sub_index': {'central': 4,
                                          'east': 4,
                                          'national': 5,
                                          'north': 4,
                                          'south': 5,
                                          'west': 4},
                         'no2_one_hour_max': {'central': 11,
                                              'east': 17,
                                              'national': 22,
                                              'north': 7,
                                              'south': 22,
                                              'west': 18},
                         'o3_eight_hour_max': {'central': 43,
                                               'east': 26,
                                               'national': 43,
                                               'north': 39,
                                               'south': 39,
                                               'west': 29},
                         'o3_sub_index': {'central': 18,
                                          'east': 11,
                                          'national': 18,
                                          'north': 16,
                                          'south': 16,
                                          'west': 12},
                         'pm10_sub_index': {'central': 25,
                                            'east': 29,
                                            'national': 35,
                                            'north': 18,
                                            'south': 35,
                                            'west': 29},
                         'pm10_twenty_four_hourly': {'central': 25,
                                                     'east': 29,
                                                     'national': 35,
                                                     'north': 18,
                                                     'south': 35,
                                                     'west': 29},
                         'pm25_sub_index': {'central': 45,
                                            'east': 51,
                                            'national': 51,
                                            'north': 39,
                                            'south': 39,
                                            'west': 38},
                         'pm25_twenty_four_hourly': {'central': 11,
                                                     'east': 13,
                                                     'national': 13,
                                                     'north': 9,
                                                     'south': 9,
                                                     'west': 9},
                         'psi_twenty_four_hourly': {'central': 45,
                                                    'east': 51,
                                                    'national': 51,
                                                    'north': 39,
                                                    'south': 39,
                                                    'west': 38},
                         'so2_sub_index': {'central': 2,
                                           'east': 1,
                                           'national': 3,
                                           'north': 3,
                                           'south': 1,
                                           'west': 3},
                         'so2_twenty_four_hourly': {'central': 3,
                                                    'east': 2,
                                                    'national': 5,
                                                    'north': 4,
                                                    'south': 2,
                                                    'west': 5}},
            'timestamp': '2020-02-20T23:00:00+08:00',
            'update_timestamp': '2020-02-20T23:08:52+08:00'}],
 'region_metadata': [{'label_location': {'latitude': 1.35735,
                                         'longitude': 103.7},
                      'name': 'west'},
                     {'label_location': {'latitude': 0, 'longitude': 0},
                      'name': 'national'},
                     {'label_location': {'latitude': 1.35735,
                                         'longitude': 103.94},
                      'name': 'east'},
                     {'label_location': {'latitude': 1.35735,
                                         'longitude': 103.82},
                      'name': 'central'},
                     {'label_location': {'latitude': 1.29587,
                                         'longitude': 103.82},
                      'name': 'south'},
                     {'label_location': {'latitude': 1.41803,
                                         'longitude': 103.82},
                      'name': 'north'}]}

What's this JSON (JavaScript Object Notation) format?¶


BeautifulSoup

Image source: MongoDB Blog
In [29]:
# JSON is everywhere, for example, you may encounter them when/if you try to grab data from DBLP
from urllib.request import urlopen
from pandas.io.json import json_normalize 
import urllib.request 

DBLP_URL = 'https://dblp.org/search/publ/api?q=andrew+ng&format=json&h=1000'
with urllib.request.urlopen(DBLP_URL) as url:
    dblp_data_instance = json.loads(url.read().decode())
pprint.pprint(dblp_data_instance)     
{'result': {'completions': {'@computed': '1',
                            '@sent': '1',
                            '@total': '1',
                            'c': {'@dc': '812',
                                  '@id': '27437870',
                                  '@oc': '1772',
                                  '@sc': '1772',
                                  'text': 'ng'}},
            'hits': {'@computed': '812',
                     '@first': '0',
                     '@sent': '812',
                     '@total': '812',
                     'hit': [{'@id': '195628',
                              '@score': '9',
                              'info': {'authors': {'author': [{'@pid': '263/3159',
                                                               'text': 'Akshay '
                                                                       'Smit'},
                                                              {'@pid': '257/3291',
                                                               'text': 'Damir '
                                                                       'Vrabac'},
                                                              {'@pid': '140/9459',
                                                               'text': 'Yujie '
                                                                       'He'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '154/3831',
                                                               'text': 'Andrew '
                                                                       'L. '
                                                                       'Beam'},
                                                              {'@pid': '161/3744',
                                                               'text': 'Pranav '
                                                                       'Rajpurkar'}]},
                                       'ee': 'https://arxiv.org/abs/2103.14339',
                                       'key': 'journals/corr/abs-2103-14339',
                                       'title': 'MedSelect - Selective '
                                                'Labeling for Medical Image '
                                                'Classification Combining '
                                                'Meta-Learning with Deep '
                                                'Reinforcement Learning.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-2103-14339',
                                       'venue': 'CoRR',
                                       'volume': 'abs/2103.14339',
                                       'year': '2021'},
                              'url': 'URL#195628'},
                             {'@id': '4551466',
                              '@score': '9',
                              'info': {'authors': {'author': [{'@pid': '65/2021',
                                                               'text': 'J. '
                                                                       'Andrew '
                                                                       'Bagnell'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'https://proceedings.neurips.cc/paper/2005/hash/02180771a9b609a26dcea07f272e141f-Abstract.html',
                                       'key': 'conf/nips/BagnellN05',
                                       'pages': '91-98',
                                       'title': 'On Local Rewards and Scaling '
                                                'Distributed Reinforcement '
                                                'Learning.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/nips/BagnellN05',
                                       'venue': 'NIPS',
                                       'year': '2005'},
                              'url': 'URL#4551466'},
                             {'@id': '4804514',
                              '@score': '9',
                              'info': {'authors': {'author': [{'@pid': '65/2021',
                                                               'text': 'J. '
                                                                       'Andrew '
                                                                       'Bagnell'},
                                                              {'@pid': 's/SMKakade',
                                                               'text': 'Sham '
                                                                       'M. '
                                                                       'Kakade'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '38/247',
                                                               'text': 'Jeff '
                                                                       'G. '
                                                                       'Schneider'}]},
                                       'ee': 'https://proceedings.neurips.cc/paper/2003/hash/3837a451cd0abc5ce4069304c5442c87-Abstract.html',
                                       'key': 'conf/nips/BagnellKNS03',
                                       'pages': '831-838',
                                       'title': 'Policy Search by Dynamic '
                                                'Programming.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/nips/BagnellKNS03',
                                       'venue': 'NIPS',
                                       'year': '2003'},
                              'url': 'URL#4804514'},
                             {'@id': '1010771',
                              '@score': '8',
                              'info': {'authors': {'author': [{'@pid': '37/10718',
                                                               'text': 'David '
                                                                       'Rolnick'},
                                                              {'@pid': '198/0500',
                                                               'text': 'Priya '
                                                                       'L. '
                                                                       'Donti'},
                                                              {'@pid': '243/3048',
                                                               'text': 'Lynn '
                                                                       'H. '
                                                                       'Kaack'},
                                                              {'@pid': '243/2652',
                                                               'text': 'Kelly '
                                                                       'Kochanski'},
                                                              {'@pid': '59/6239',
                                                               'text': 'Alexandre '
                                                                       'Lacoste'},
                                                              {'@pid': '20/10451',
                                                               'text': 'Kris '
                                                                       'Sankaran'},
                                                              {'@pid': '198/1478',
                                                               'text': 'Andrew '
                                                                       'Slavin '
                                                                       'Ross'},
                                                              {'@pid': '243/3185',
                                                               'text': 'Nikola '
                                                                       'Milojevic-Dupont'},
                                                              {'@pid': '145/7732',
                                                               'text': 'Natasha '
                                                                       'Jaques'},
                                                              {'@pid': '243/3003',
                                                               'text': 'Anna '
                                                                       'Waldman-Brown'},
                                                              {'@pid': '162/5449',
                                                               'text': 'Alexandra '
                                                                       'Luccioni'},
                                                              {'@pid': '182/2285',
                                                               'text': 'Tegan '
                                                                       'Maharaj'},
                                                              {'@pid': '243/2678',
                                                               'text': 'Evan '
                                                                       'D. '
                                                                       'Sherwin'},
                                                              {'@pid': '241/5086',
                                                               'text': 'S. '
                                                                       'Karthik '
                                                                       'Mukkavilli'},
                                                              {'@pid': '93/2724',
                                                               'text': 'Konrad '
                                                                       'P. '
                                                                       'Körding'},
                                                              {'@pid': 'g/CarlaPGomes',
                                                               'text': 'Carla '
                                                                       'P. '
                                                                       'Gomes'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '86/10732',
                                                               'text': 'Demis '
                                                                       'Hassabis'},
                                                              {'@pid': '27/1418',
                                                               'text': 'John '
                                                                       'C. '
                                                                       'Platt'},
                                                              {'@pid': '33/68',
                                                               'text': 'Felix '
                                                                       'Creutzig'},
                                                              {'@pid': 'c/JenniferTChayes',
                                                               'text': 'Jennifer '
                                                                       'T. '
                                                                       'Chayes'},
                                                              {'@pid': '56/953',
                                                               'text': 'Yoshua '
                                                                       'Bengio'}]},
                                       'ee': 'http://arxiv.org/abs/1906.05433',
                                       'key': 'journals/corr/abs-1906-05433',
                                       'title': 'Tackling Climate Change with '
                                                'Machine Learning.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-1906-05433',
                                       'venue': 'CoRR',
                                       'volume': 'abs/1906.05433',
                                       'year': '2019'},
                              'url': 'URL#1010771'},
                             {'@id': '1438500',
                              '@score': '8',
                              'info': {'authors': {'author': [{'@pid': '97/1011',
                                                               'text': 'Andrew '
                                                                       'L. '
                                                                       'Maas'},
                                                              {'@pid': '59/9474-3',
                                                               'text': 'Peng '
                                                                       'Qi '
                                                                       '0003'},
                                                              {'@pid': '133/2394',
                                                               'text': 'Ziang '
                                                                       'Xie'},
                                                              {'@pid': '147/5262',
                                                               'text': 'Awni '
                                                                       'Y. '
                                                                       'Hannun'},
                                                              {'@pid': '147/4826',
                                                               'text': 'Christopher '
                                                                       'T. '
                                                                       'Lengerich'},
                                                              {'@pid': '31/985',
                                                               'text': 'Daniel '
                                                                       'Jurafsky'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1016/J.CSL.2016.06.007',
                                       'ee': 'https://doi.org/10.1016/j.csl.2016.06.007',
                                       'key': 'journals/csl/MaasQXHLJN17',
                                       'pages': '195-213',
                                       'title': 'Building DNN acoustic models '
                                                'for large vocabulary speech '
                                                'recognition.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/csl/MaasQXHLJN17',
                                       'venue': 'Comput. Speech Lang.',
                                       'volume': '41',
                                       'year': '2017'},
                              'url': 'URL#1438500'},
                             {'@id': '1620032',
                              '@score': '8',
                              'info': {'authors': {'author': [{'@pid': '78/10697',
                                                               'text': 'Sercan '
                                                                       'Ömer '
                                                                       'Arik'},
                                                              {'@pid': '173/5380',
                                                               'text': 'Mike '
                                                                       'Chrzanowski'},
                                                              {'@pid': '60/5515',
                                                               'text': 'Adam '
                                                                       'Coates'},
                                                              {'@pid': '06/1767',
                                                               'text': 'Gregory '
                                                                       'Frederick '
                                                                       'Diamos'},
                                                              {'@pid': '195/5730',
                                                               'text': 'Andrew '
                                                                       'Gibiansky'},
                                                              {'@pid': '73/1700',
                                                               'text': 'Yongguo '
                                                                       'Kang'},
                                                              {'@pid': '82/1763',
                                                               'text': 'Xian '
                                                                       'Li'},
                                                              {'@pid': '70/4606',
                                                               'text': 'John '
                                                                       'Miller'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '164/5795',
                                                               'text': 'Jonathan '
                                                                       'Raiman'},
                                                              {'@pid': '147/1220',
                                                               'text': 'Shubho '
                                                                       'Sengupta'},
                                                              {'@pid': '53/9742',
                                                               'text': 'Mohammad '
                                                                       'Shoeybi'}]},
                                       'ee': 'http://proceedings.mlr.press/v70/arik17a.html',
                                       'key': 'conf/icml/ArikCCDGKLMNRSS17',
                                       'pages': '195-204',
                                       'title': 'Deep Voice - Real-time Neural '
                                                'Text-to-Speech.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icml/ArikCCDGKLMNRSS17',
                                       'venue': 'ICML',
                                       'year': '2017'},
                              'url': 'URL#1620032'},
                             {'@id': '2283033',
                              '@score': '8',
                              'info': {'authors': {'author': [{'@pid': '97/1011',
                                                               'text': 'Andrew '
                                                                       'L. '
                                                                       'Maas'},
                                                              {'@pid': '133/2394',
                                                               'text': 'Ziang '
                                                                       'Xie'},
                                                              {'@pid': '31/985',
                                                               'text': 'Dan '
                                                                       'Jurafsky'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.3115/V1/N15-1038',
                                       'ee': 'https://doi.org/10.3115/v1/n15-1038',
                                       'key': 'conf/naacl/MaasXJN15',
                                       'pages': '345-354',
                                       'title': 'Lexicon-Free Conversational '
                                                'Speech Recognition with '
                                                'Neural Networks.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/naacl/MaasXJN15',
                                       'venue': 'HLT-NAACL',
                                       'year': '2015'},
                              'url': 'URL#2283033'},
                             {'@id': '2453204',
                              '@score': '8',
                              'info': {'authors': {'author': [{'@pid': '97/1011',
                                                               'text': 'Andrew '
                                                                       'L. '
                                                                       'Maas'},
                                                              {'@pid': '192/5217',
                                                               'text': 'Chris '
                                                                       'Heather'},
                                                              {'@pid': '58/2809',
                                                               'text': 'Chuong '
                                                                       'B. Do'},
                                                              {'@pid': '04/2083',
                                                               'text': 'Relly '
                                                                       'Brandman'},
                                                              {'@pid': 'k/DaphneKoller',
                                                               'text': 'Daphne '
                                                                       'Koller'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1145/2591684',
                                       'ee': 'https://doi.org/10.1145/2591684',
                                       'key': 'journals/ubiquity/MaasHDBKN14',
                                       'number': 'May',
                                       'pages': '2:1-2:11',
                                       'title': 'Offering Verified Credentials '
                                                'in Massive Open Online '
                                                'Courses - MOOCs and '
                                                'technology to advance '
                                                'learning and learning '
                                                'research (Ubiquity '
                                                'symposium).',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/ubiquity/MaasHDBKN14',
                                       'venue': 'Ubiquity',
                                       'volume': '2014',
                                       'year': '2014'},
                              'url': 'URL#2453204'},
                             {'@id': '2624780',
                              '@score': '8',
                              'info': {'authors': {'author': [{'@pid': '97/1011',
                                                               'text': 'Andrew '
                                                                       'L. '
                                                                       'Maas'},
                                                              {'@pid': '147/5262',
                                                               'text': 'Awni '
                                                                       'Y. '
                                                                       'Hannun'},
                                                              {'@pid': '31/985',
                                                               'text': 'Daniel '
                                                                       'Jurafsky'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'http://arxiv.org/abs/1408.2873',
                                       'key': 'journals/corr/MaasHJN14',
                                       'title': 'First-Pass Large Vocabulary '
                                                'Continuous Speech Recognition '
                                                'using Bi-Directional '
                                                'Recurrent DNNs.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/MaasHJN14',
                                       'venue': 'CoRR',
                                       'volume': 'abs/1408.2873',
                                       'year': '2014'},
                              'url': 'URL#2624780'},
                             {'@id': '2624781',
                              '@score': '8',
                              'info': {'authors': {'author': [{'@pid': '97/1011',
                                                               'text': 'Andrew '
                                                                       'L. '
                                                                       'Maas'},
                                                              {'@pid': '147/5262',
                                                               'text': 'Awni '
                                                                       'Y. '
                                                                       'Hannun'},
                                                              {'@pid': '147/4826',
                                                               'text': 'Christopher '
                                                                       'T. '
                                                                       'Lengerich'},
                                                              {'@pid': '59/9474-3',
                                                               'text': 'Peng '
                                                                       'Qi '
                                                                       '0003'},
                                                              {'@pid': '31/985',
                                                               'text': 'Daniel '
                                                                       'Jurafsky'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'http://arxiv.org/abs/1406.7806',
                                       'key': 'journals/corr/MaasHLQJN14',
                                       'title': 'Increasing Deep Neural '
                                                'Network Acoustic Model Size '
                                                'for Large Vocabulary '
                                                'Continuous Speech '
                                                'Recognition.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/MaasHLQJN14',
                                       'venue': 'CoRR',
                                       'volume': 'abs/1406.7806',
                                       'year': '2014'},
                              'url': 'URL#2624781'},
                             {'@id': '3091948',
                              '@score': '8',
                              'info': {'authors': {'author': [{'@pid': '97/1011',
                                                               'text': 'Andrew '
                                                                       'L. '
                                                                       'Maas'},
                                                              {'@pid': '29/6166',
                                                               'text': 'Quoc '
                                                                       'V. Le'},
                                                              {'@pid': '124/9120',
                                                               'text': 'Tyler '
                                                                       'M. '
                                                                       'O&apos;Neil'},
                                                              {'@pid': '05/726',
                                                               'text': 'Oriol '
                                                                       'Vinyals'},
                                                              {'@pid': '81/657',
                                                               'text': 'Patrick '
                                                                       'Nguyen'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'http://www.isca-speech.org/archive/interspeech_2012/i12_0022.html',
                                       'key': 'conf/interspeech/MaasLOVNN12',
                                       'pages': '22-25',
                                       'title': 'Recurrent Neural Networks for '
                                                'Noise Reduction in Robust '
                                                'ASR.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/interspeech/MaasLOVNN12',
                                       'venue': 'INTERSPEECH',
                                       'year': '2012'},
                              'url': 'URL#3091948'},
                             {'@id': '3117153',
                              '@score': '8',
                              'info': {'authors': {'author': [{'@pid': 'd/JeffreyDean',
                                                               'text': 'Jeffrey '
                                                                       'Dean'},
                                                              {'@pid': '05/8414',
                                                               'text': 'Greg '
                                                                       'Corrado'},
                                                              {'@pid': '99/10669',
                                                               'text': 'Rajat '
                                                                       'Monga'},
                                                              {'@pid': 'c/KaiChen10',
                                                               'text': 'Kai '
                                                                       'Chen '
                                                                       '0010'},
                                                              {'@pid': '23/2143',
                                                               'text': 'Matthieu '
                                                                       'Devin'},
                                                              {'@pid': '29/6166',
                                                               'text': 'Quoc '
                                                                       'V. Le'},
                                                              {'@pid': '64/8010',
                                                               'text': 'Mark '
                                                                       'Z. '
                                                                       'Mao'},
                                                              {'@pid': '28/1732',
                                                               'text': 'Marc&apos;Aurelio '
                                                                       'Ranzato'},
                                                              {'@pid': '88/3071',
                                                               'text': 'Andrew '
                                                                       'W. '
                                                                       'Senior'},
                                                              {'@pid': '39/814',
                                                               'text': 'Paul '
                                                                       'A. '
                                                                       'Tucker'},
                                                              {'@pid': '80/4136',
                                                               'text': 'Ke '
                                                                       'Yang'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'https://proceedings.neurips.cc/paper/2012/hash/6aca97005c68f1206823815f66102863-Abstract.html',
                                       'key': 'conf/nips/DeanCMCDLMRSTYN12',
                                       'pages': '1232-1240',
                                       'title': 'Large Scale Distributed Deep '
                                                'Networks.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/nips/DeanCMCDLMRSTYN12',
                                       'venue': 'NIPS',
                                       'year': '2012'},
                              'url': 'URL#3117153'},
                             {'@id': '3265108',
                              '@score': '8',
                              'info': {'authors': {'author': [{'@pid': '97/1011',
                                                               'text': 'Andrew '
                                                                       'L. '
                                                                       'Maas'},
                                                              {'@pid': '93/9767',
                                                               'text': 'Raymond '
                                                                       'E. '
                                                                       'Daly'},
                                                              {'@pid': '47/9768',
                                                               'text': 'Peter '
                                                                       'T. '
                                                                       'Pham'},
                                                              {'@pid': '41/3836',
                                                               'text': 'Dan '
                                                                       'Huang'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '13/2617',
                                                               'text': 'Christopher '
                                                                       'Potts'}]},
                                       'ee': 'https://aclanthology.org/P11-1015/',
                                       'key': 'conf/acl/MaasDPHNP11',
                                       'pages': '142-150',
                                       'title': 'Learning Word Vectors for '
                                                'Sentiment Analysis.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/acl/MaasDPHNP11',
                                       'venue': 'ACL',
                                       'year': '2011'},
                              'url': 'URL#3265108'},
                             {'@id': '3331714',
                              '@score': '8',
                              'info': {'authors': {'author': [{'@pid': '39/6894',
                                                               'text': 'Andrew '
                                                                       'M. '
                                                                       'Saxe'},
                                                              {'@pid': '10/10453',
                                                               'text': 'Pang '
                                                                       'Wei '
                                                                       'Koh'},
                                                              {'@pid': '88/10451',
                                                               'text': 'Zhenghao '
                                                                       'Chen'},
                                                              {'@pid': '04/10624',
                                                               'text': 'Maneesh '
                                                                       'Bhand'},
                                                              {'@pid': '93/9962',
                                                               'text': 'Bipin '
                                                                       'Suresh'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'https://icml.cc/2011/papers/551_icmlpaper.pdf',
                                       'key': 'conf/icml/SaxeKCBSN11',
                                       'pages': '1089-1096',
                                       'title': 'On Random Weights and '
                                                'Unsupervised Feature '
                                                'Learning.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icml/SaxeKCBSN11',
                                       'venue': 'ICML',
                                       'year': '2011'},
                              'url': 'URL#3331714'},
                             {'@id': '3368416',
                              '@score': '8',
                              'info': {'authors': {'author': [{'@pid': '39/6894',
                                                               'text': 'Andrew '
                                                                       'M. '
                                                                       'Saxe'},
                                                              {'@pid': '04/10624',
                                                               'text': 'Maneesh '
                                                                       'Bhand'},
                                                              {'@pid': '19/11107',
                                                               'text': 'Ritvik '
                                                                       'Mudur'},
                                                              {'@pid': '93/9962',
                                                               'text': 'Bipin '
                                                                       'Suresh'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'https://proceedings.neurips.cc/paper/2011/hash/e19347e1c3ca0c0b97de5fb3b690855a-Abstract.html',
                                       'key': 'conf/nips/SaxeBMSN11',
                                       'pages': '1971-1979',
                                       'title': 'Unsupervised learning models '
                                                'of primary cortical receptive '
                                                'fields and receptive field '
                                                'plasticity.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/nips/SaxeBMSN11',
                                       'venue': 'NIPS',
                                       'year': '2011'},
                              'url': 'URL#3368416'},
                             {'@id': '3818550',
                              '@score': '8',
                              'info': {'authors': {'author': [{'@pid': '43/7940',
                                                               'text': 'Ian J. '
                                                                       'Goodfellow'},
                                                              {'@pid': '29/6166',
                                                               'text': 'Quoc '
                                                                       'V. Le'},
                                                              {'@pid': '39/6894',
                                                               'text': 'Andrew '
                                                                       'M. '
                                                                       'Saxe'},
                                                              {'@pid': '58/2562',
                                                               'text': 'Honglak '
                                                                       'Lee'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'https://proceedings.neurips.cc/paper/2009/hash/428fca9bc1921c25c5121f9da7815cde-Abstract.html',
                                       'key': 'conf/nips/GoodfellowLSLN09',
                                       'pages': '646-654',
                                       'title': 'Measuring Invariances in Deep '
                                                'Networks.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/nips/GoodfellowLSLN09',
                                       'venue': 'NIPS',
                                       'year': '2009'},
                              'url': 'URL#3818550'},
                             {'@id': '4804630',
                              '@score': '8',
                              'info': {'authors': {'author': [{'@pid': '64/4254',
                                                               'text': 'Rajat '
                                                                       'Raina'},
                                                              {'@pid': '03/2011',
                                                               'text': 'Yirong '
                                                                       'Shen'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': 'm/AndrewMcCallum',
                                                               'text': 'Andrew '
                                                                       'McCallum'}]},
                                       'ee': 'https://proceedings.neurips.cc/paper/2003/hash/b53477c2821c1bf0da5d40e57b870d35-Abstract.html',
                                       'key': 'conf/nips/RainaSNM03',
                                       'pages': '545-552',
                                       'title': 'Classification with Hybrid '
                                                'Generative/Discriminative '
                                                'Models.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/nips/RainaSNM03',
                                       'venue': 'NIPS',
                                       'year': '2003'},
                              'url': 'URL#4804630'},
                             {'@id': '5175612',
                              '@score': '8',
                              'info': {'authors': {'author': [{'@pid': '36/4025',
                                                               'text': 'Scott '
                                                                       'Davies'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '95/2279-1',
                                                               'text': 'Andrew '
                                                                       'W. '
                                                                       'Moore '
                                                                       '0001'}]},
                                       'ee': 'http://www.aaai.org/Library/AAAI/1998/aaai98-107.php',
                                       'key': 'conf/aaai/DaviesNM98',
                                       'pages': '753-760',
                                       'title': 'Applying Online Search '
                                                'Techniques to '
                                                'Continuous-State '
                                                'Reinforcement Learning.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/aaai/DaviesNM98',
                                       'venue': 'AAAI/IAAI',
                                       'year': '1998'},
                              'url': 'URL#5175612'},
                             {'@id': '5191066',
                              '@score': '8',
                              'info': {'authors': {'author': [{'@pid': 'm/AndrewMcCallum',
                                                               'text': 'Andrew '
                                                                       'McCallum'},
                                                              {'@pid': 'r/RonaldRosenfeld',
                                                               'text': 'Ronald '
                                                                       'Rosenfeld'},
                                                              {'@pid': '81/1460',
                                                               'text': 'Tom M. '
                                                                       'Mitchell'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'key': 'conf/icml/McCallumRMN98',
                                       'pages': '359-367',
                                       'title': 'Improving Text Classification '
                                                'by Shrinkage in a Hierarchy '
                                                'of Classes.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icml/McCallumRMN98',
                                       'venue': 'ICML',
                                       'year': '1998'},
                              'url': 'URL#5191066'},
                             {'@id': '54425',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '03/1125',
                                                               'text': 'Michael '
                                                                       'Ko'},
                                                              {'@pid': '287/8997',
                                                               'text': 'Emma '
                                                                       'Chen'},
                                                              {'@pid': '288/2673',
                                                               'text': 'Ashwin '
                                                                       'Agrawal'},
                                                              {'@pid': '161/3744',
                                                               'text': 'Pranav '
                                                                       'Rajpurkar'},
                                                              {'@pid': '177/9122',
                                                               'text': 'Anand '
                                                                       'Avati'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Yan-Tak '
                                                                       'Ng'},
                                                              {'@pid': '32/6623',
                                                               'text': 'Sanjay '
                                                                       'Basu'},
                                                              {'@pid': 's/NHShah',
                                                               'text': 'Nigam '
                                                                       'H. '
                                                                       'Shah'}]},
                                       'doi': '10.1016/J.JBI.2021.103826',
                                       'ee': 'https://doi.org/10.1016/j.jbi.2021.103826',
                                       'key': 'journals/jbi/KoCARANBS21',
                                       'pages': '103826',
                                       'title': 'Improving hospital '
                                                'readmission prediction using '
                                                'individualized utility '
                                                'analysis.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/jbi/KoCARANBS21',
                                       'venue': 'J. Biomed. Informatics',
                                       'volume': '119',
                                       'year': '2021'},
                              'url': 'URL#54425'},
                             {'@id': '68190',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '179/4758',
                                                               'text': 'Sharon '
                                                                       'Zhou'},
                                                              {'@pid': '258/0993',
                                                               'text': 'Jiequan '
                                                                       'Zhang'},
                                                              {'@pid': '74/10861',
                                                               'text': 'Hang '
                                                                       'Jiang'},
                                                              {'@pid': '66/992',
                                                               'text': 'Torbjörn '
                                                                       'Lundh'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1088/2632-2153/ABD615',
                                       'ee': 'https://doi.org/10.1088/2632-2153/abd615',
                                       'key': 'journals/mlst/ZhouZJLN21',
                                       'number': '2',
                                       'pages': '25016',
                                       'title': 'Data augmentation with Mobius '
                                                'transformations.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/mlst/ZhouZJLN21',
                                       'venue': 'Mach. Learn. Sci. Technol.',
                                       'volume': '2',
                                       'year': '2021'},
                              'url': 'URL#68190'},
                             {'@id': '129446',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '188/9235',
                                                               'text': 'Saahil '
                                                                       'Jain'},
                                                              {'@pid': '263/3159',
                                                               'text': 'Akshay '
                                                                       'Smit'},
                                                              {'@pid': '286/1403',
                                                               'text': 'Steven '
                                                                       'Q. H. '
                                                                       'Truong'},
                                                              {'@pid': '286/1265',
                                                               'text': 'Chanh '
                                                                       'D. T. '
                                                                       'Nguyen'},
                                                              {'@pid': '286/0777',
                                                               'text': 'Minh-Thanh '
                                                                       'Huynh'},
                                                              {'@pid': '145/2276',
                                                               'text': 'Mudit '
                                                                       'Jain'},
                                                              {'@pid': '286/1210',
                                                               'text': 'Victoria '
                                                                       'A. '
                                                                       'Young'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '209/9732',
                                                               'text': 'Matthew '
                                                                       'P. '
                                                                       'Lungren'},
                                                              {'@pid': '161/3744',
                                                               'text': 'Pranav '
                                                                       'Rajpurkar'}]},
                                       'doi': '10.1145/3450439.3451862',
                                       'ee': 'https://doi.org/10.1145/3450439.3451862',
                                       'key': 'conf/chil/JainSTNHJYNLR21',
                                       'pages': '105-115',
                                       'title': 'VisualCheXbert - addressing '
                                                'the discrepancy between '
                                                'radiology report labels and '
                                                'image labels.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/chil/JainSTNHJYNLR21',
                                       'venue': 'CHIL',
                                       'year': '2021'},
                              'url': 'URL#129446'},
                             {'@id': '129447',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '283/5376',
                                                               'text': 'Alexander '
                                                                       'Ke'},
                                                              {'@pid': '252/5341',
                                                               'text': 'William '
                                                                       'Ellsworth'},
                                                              {'@pid': '283/5478',
                                                               'text': 'Oishi '
                                                                       'Banerjee'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '161/3744',
                                                               'text': 'Pranav '
                                                                       'Rajpurkar'}]},
                                       'doi': '10.1145/3450439.3451867',
                                       'ee': 'https://doi.org/10.1145/3450439.3451867',
                                       'key': 'conf/chil/KeEBNR21',
                                       'pages': '116-124',
                                       'title': 'CheXtransfer - performance '
                                                'and parameter efficiency of '
                                                'ImageNet models for chest '
                                                'X-Ray interpretation.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/chil/KeEBNR21',
                                       'venue': 'CHIL',
                                       'year': '2021'},
                              'url': 'URL#129447'},
                             {'@id': '129458',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '161/3744',
                                                               'text': 'Pranav '
                                                                       'Rajpurkar'},
                                                              {'@pid': '206/8409',
                                                               'text': 'Anirudh '
                                                                       'Joshi'},
                                                              {'@pid': '259/3231',
                                                               'text': 'Anuj '
                                                                       'Pareek'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '209/9732',
                                                               'text': 'Matthew '
                                                                       'P. '
                                                                       'Lungren'}]},
                                       'doi': '10.1145/3450439.3451876',
                                       'ee': 'https://doi.org/10.1145/3450439.3451876',
                                       'key': 'conf/chil/RajpurkarJPNL21',
                                       'pages': '125-132',
                                       'title': 'CheXternal - generalization '
                                                'of deep learning models for '
                                                'chest X-ray interpretation to '
                                                'photos of chest X-rays and '
                                                'external clinical settings.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/chil/RajpurkarJPNL21',
                                       'venue': 'CHIL',
                                       'year': '2021'},
                              'url': 'URL#129458'},
                             {'@id': '149975',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '179/4758',
                                                               'text': 'Sharon '
                                                                       'Zhou'},
                                                              {'@pid': '217/2378',
                                                               'text': 'Eric '
                                                                       'Zelikman'},
                                                              {'@pid': '215/9557',
                                                               'text': 'Fred '
                                                                       'Lu'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '24/6871',
                                                               'text': 'Gunnar '
                                                                       'E. '
                                                                       'Carlsson'},
                                                              {'@pid': '47/8135',
                                                               'text': 'Stefano '
                                                                       'Ermon'}]},
                                       'ee': 'https://openreview.net/forum?id=djwS0m4Ft_A',
                                       'key': 'conf/iclr/ZhouZLNCE21',
                                       'title': 'Evaluating the '
                                                'Disentanglement of Deep '
                                                'Generative Models through '
                                                'Manifold Topology.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/iclr/ZhouZLNCE21',
                                       'venue': 'ICLR',
                                       'year': '2021'},
                              'url': 'URL#149975'},
                             {'@id': '181191',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '283/5376',
                                                               'text': 'Alexander '
                                                                       'Ke'},
                                                              {'@pid': '252/5341',
                                                               'text': 'William '
                                                                       'Ellsworth'},
                                                              {'@pid': '283/5478',
                                                               'text': 'Oishi '
                                                                       'Banerjee'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '161/3744',
                                                               'text': 'Pranav '
                                                                       'Rajpurkar'}]},
                                       'ee': 'https://arxiv.org/abs/2101.06871',
                                       'key': 'journals/corr/abs-2101-06871',
                                       'title': 'CheXtransfer - Performance '
                                                'and Parameter Efficiency of '
                                                'ImageNet Models for Chest '
                                                'X-Ray Interpretation.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-2101-06871',
                                       'venue': 'CoRR',
                                       'volume': 'abs/2101.06871',
                                       'year': '2021'},
                              'url': 'URL#181191'},
                             {'@id': '187337',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '161/3744',
                                                               'text': 'Pranav '
                                                                       'Rajpurkar'},
                                                              {'@pid': '206/8409',
                                                               'text': 'Anirudh '
                                                                       'Joshi'},
                                                              {'@pid': '259/3231',
                                                               'text': 'Anuj '
                                                                       'Pareek'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '209/9732',
                                                               'text': 'Matthew '
                                                                       'P. '
                                                                       'Lungren'}]},
                                       'ee': 'https://arxiv.org/abs/2102.08660',
                                       'key': 'journals/corr/abs-2102-08660',
                                       'title': 'CheXternal - Generalization '
                                                'of Deep Learning Models for '
                                                'Chest X-ray Interpretation to '
                                                'Photos of Chest X-rays and '
                                                'External Clinical Settings.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-2102-08660',
                                       'venue': 'CoRR',
                                       'volume': 'abs/2102.08660',
                                       'year': '2021'},
                              'url': 'URL#187337'},
                             {'@id': '188144',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '136/5972',
                                                               'text': 'Soham '
                                                                       'Gadgil'},
                                                              {'@pid': '286/1492',
                                                               'text': 'Mark '
                                                                       'Endo'},
                                                              {'@pid': '261/9077',
                                                               'text': 'Emily '
                                                                       'Wen'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '161/3744',
                                                               'text': 'Pranav '
                                                                       'Rajpurkar'}]},
                                       'ee': 'https://arxiv.org/abs/2102.10484',
                                       'key': 'journals/corr/abs-2102-10484',
                                       'title': 'CheXseg - Combining Expert '
                                                'Annotations with '
                                                'DNN-generated Saliency Maps '
                                                'for X-ray Segmentation.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-2102-10484',
                                       'venue': 'CoRR',
                                       'volume': 'abs/2102.10484',
                                       'year': '2021'},
                              'url': 'URL#188144'},
                             {'@id': '188230',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '260/8693',
                                                               'text': 'Yen '
                                                                       'Nhi '
                                                                       'Truong '
                                                                       'Vu'},
                                                              {'@pid': '29/4046',
                                                               'text': 'Richard '
                                                                       'Wang'},
                                                              {'@pid': '206/6746',
                                                               'text': 'Niranjan '
                                                                       'Balachandar'},
                                                              {'@pid': '18/5099',
                                                               'text': 'Can '
                                                                       'Liu'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '161/3744',
                                                               'text': 'Pranav '
                                                                       'Rajpurkar'}]},
                                       'ee': 'https://arxiv.org/abs/2102.10663',
                                       'key': 'journals/corr/abs-2102-10663',
                                       'title': 'MedAug - Contrastive learning '
                                                'leveraging patient metadata '
                                                'improves representations for '
                                                'chest X-ray interpretation.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-2102-10663',
                                       'venue': 'CoRR',
                                       'volume': 'abs/2102.10663',
                                       'year': '2021'},
                              'url': 'URL#188230'},
                             {'@id': '188556',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '188/9235',
                                                               'text': 'Saahil '
                                                                       'Jain'},
                                                              {'@pid': '263/3159',
                                                               'text': 'Akshay '
                                                                       'Smit'},
                                                              {'@pid': '286/1403',
                                                               'text': 'Steven '
                                                                       'Q. H. '
                                                                       'Truong'},
                                                              {'@pid': '286/1265',
                                                               'text': 'Chanh '
                                                                       'D. T. '
                                                                       'Nguyen'},
                                                              {'@pid': '286/0777',
                                                               'text': 'Minh-Thanh '
                                                                       'Huynh'},
                                                              {'@pid': '145/2276',
                                                               'text': 'Mudit '
                                                                       'Jain'},
                                                              {'@pid': '286/1210',
                                                               'text': 'Victoria '
                                                                       'A. '
                                                                       'Young'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '209/9732',
                                                               'text': 'Matthew '
                                                                       'P. '
                                                                       'Lungren'},
                                                              {'@pid': '161/3744',
                                                               'text': 'Pranav '
                                                                       'Rajpurkar'}]},
                                       'ee': 'https://arxiv.org/abs/2102.11467',
                                       'key': 'journals/corr/abs-2102-11467',
                                       'title': 'VisualCheXbert - Addressing '
                                                'the Discrepancy Between '
                                                'Radiology Report Labels and '
                                                'Image Labels.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-2102-11467',
                                       'venue': 'CoRR',
                                       'volume': 'abs/2102.11467',
                                       'year': '2021'},
                              'url': 'URL#188556'},
                             {'@id': '191518',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '287/4560',
                                                               'text': 'Siyu '
                                                                       'Shi'},
                                                              {'@pid': '287/4579',
                                                               'text': 'Ishaan '
                                                                       'Malhi'},
                                                              {'@pid': '208/8162',
                                                               'text': 'Kevin '
                                                                       'Tran'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '161/3744',
                                                               'text': 'Pranav '
                                                                       'Rajpurkar'}]},
                                       'ee': 'https://arxiv.org/abs/2103.04590',
                                       'key': 'journals/corr/abs-2103-04590',
                                       'title': 'CheXseen - Unseen Disease '
                                                'Detection for Deep Learning '
                                                'Interpretation of Chest '
                                                'X-rays.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-2103-04590',
                                       'venue': 'CoRR',
                                       'volume': 'abs/2103.04590',
                                       'year': '2021'},
                              'url': 'URL#191518'},
                             {'@id': '193696',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '287/8997',
                                                               'text': 'Emma '
                                                                       'Chen'},
                                                              {'@pid': '288/0395',
                                                               'text': 'Andy '
                                                                       'Kim'},
                                                              {'@pid': '270/3249',
                                                               'text': 'Rayan '
                                                                       'Krishnan'},
                                                              {'@pid': '204/7457',
                                                               'text': 'Jin '
                                                                       'Long'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '161/3744',
                                                               'text': 'Pranav '
                                                                       'Rajpurkar'}]},
                                       'ee': 'https://arxiv.org/abs/2103.09957',
                                       'key': 'journals/corr/abs-2103-09957',
                                       'title': 'CheXbreak - Misclassification '
                                                'Identification for Deep '
                                                'Learning Models Interpreting '
                                                'Chest X-rays.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-2103-09957',
                                       'venue': 'CoRR',
                                       'volume': 'abs/2103.09957',
                                       'year': '2021'},
                              'url': 'URL#193696'},
                             {'@id': '197267',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '188/9235',
                                                               'text': 'Saahil '
                                                                       'Jain'},
                                                              {'@pid': '263/3159',
                                                               'text': 'Akshay '
                                                                       'Smit'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '161/3744',
                                                               'text': 'Pranav '
                                                                       'Rajpurkar'}]},
                                       'ee': 'https://arxiv.org/abs/2104.00793',
                                       'key': 'journals/corr/abs-2104-00793',
                                       'title': 'Effect of Radiology Report '
                                                'Labeler Quality on Deep '
                                                'Learning Models for Chest '
                                                'X-Ray Interpretation.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-2104-00793',
                                       'venue': 'CoRR',
                                       'volume': 'abs/2104.00793',
                                       'year': '2021'},
                              'url': 'URL#197267'},
                             {'@id': '204689',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '252/8283',
                                                               'text': 'Tianyuan '
                                                                       'Huang'},
                                                              {'@pid': '251/3146',
                                                               'text': 'Zhecheng '
                                                                       'Wang'},
                                                              {'@pid': '75/1078',
                                                               'text': 'Hao '
                                                                       'Sheng'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '69/3555',
                                                               'text': 'Ram '
                                                                       'Rajagopal'}]},
                                       'ee': 'https://arxiv.org/abs/2105.02489',
                                       'key': 'journals/corr/abs-2105-02489',
                                       'title': 'Learning Neighborhood '
                                                'Representation from '
                                                'Multi-Modal Multi-Graph - '
                                                'Image, Text, Mobility Graph '
                                                'and Beyond.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-2105-02489',
                                       'venue': 'CoRR',
                                       'volume': 'abs/2105.02489',
                                       'year': '2021'},
                              'url': 'URL#204689'},
                             {'@id': '212293',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '294/7059',
                                                               'text': 'Bryan '
                                                                       'Gopal'},
                                                              {'@pid': '294/7082',
                                                               'text': 'Ryan '
                                                                       'W. '
                                                                       'Han'},
                                                              {'@pid': '258/5077',
                                                               'text': 'Gautham '
                                                                       'Raghupathi'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '215/3596',
                                                               'text': 'Geoffrey '
                                                                       'H. '
                                                                       'Tison'},
                                                              {'@pid': '161/3744',
                                                               'text': 'Pranav '
                                                                       'Rajpurkar'}]},
                                       'ee': 'https://arxiv.org/abs/2106.04452',
                                       'key': 'journals/corr/abs-2106-04452',
                                       'title': '3KG - Contrastive Learning of '
                                                '12-Lead Electrocardiograms '
                                                'using '
                                                'Physiologically-Inspired '
                                                'Augmentations.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-2106-04452',
                                       'venue': 'CoRR',
                                       'volume': 'abs/2106.04452',
                                       'year': '2021'},
                              'url': 'URL#212293'},
                             {'@id': '216893',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '188/9235',
                                                               'text': 'Saahil '
                                                                       'Jain'},
                                                              {'@pid': '288/2673',
                                                               'text': 'Ashwin '
                                                                       'Agrawal'},
                                                              {'@pid': '295/9771',
                                                               'text': 'Adriel '
                                                                       'Saporta'},
                                                              {'@pid': '286/1403',
                                                               'text': 'Steven '
                                                                       'Q. H. '
                                                                       'Truong'},
                                                              {'@pid': '295/9701',
                                                               'text': 'Du '
                                                                       'Nguyen '
                                                                       'Duong'},
                                                              {'@pid': '295/9769',
                                                               'text': 'Tan '
                                                                       'Bui'},
                                                              {'@pid': '97/3995',
                                                               'text': 'Pierre '
                                                                       'Chambon'},
                                                              {'@pid': '139/5876-4',
                                                               'text': 'Yuhao '
                                                                       'Zhang '
                                                                       '0004'},
                                                              {'@pid': '209/9732',
                                                               'text': 'Matthew '
                                                                       'P. '
                                                                       'Lungren'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '12/1751',
                                                               'text': 'Curtis '
                                                                       'P. '
                                                                       'Langlotz'},
                                                              {'@pid': '161/3744',
                                                               'text': 'Pranav '
                                                                       'Rajpurkar'}]},
                                       'ee': 'https://arxiv.org/abs/2106.14463',
                                       'key': 'journals/corr/abs-2106-14463',
                                       'title': 'RadGraph - Extracting '
                                                'Clinical Entities and '
                                                'Relations from Radiology '
                                                'Reports.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-2106-14463',
                                       'venue': 'CoRR',
                                       'volume': 'abs/2106.14463',
                                       'year': '2021'},
                              'url': 'URL#216893'},
                             {'@id': '224414',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '298/7866',
                                                               'text': 'Cécile '
                                                                       'Logé'},
                                                              {'@pid': '298/7433',
                                                               'text': 'Emily '
                                                                       'Ross'},
                                                              {'@pid': '298/8182',
                                                               'text': 'David '
                                                                       'Yaw '
                                                                       'Amoah '
                                                                       'Dadey'},
                                                              {'@pid': '188/9235',
                                                               'text': 'Saahil '
                                                                       'Jain'},
                                                              {'@pid': '295/9771',
                                                               'text': 'Adriel '
                                                                       'Saporta'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '161/3744',
                                                               'text': 'Pranav '
                                                                       'Rajpurkar'}]},
                                       'ee': 'https://arxiv.org/abs/2108.01764',
                                       'key': 'journals/corr/abs-2108-01764',
                                       'title': 'Q-Pain - A Question Answering '
                                                'Dataset to Measure Social '
                                                'Bias in Pain Management.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-2108-01764',
                                       'venue': 'CoRR',
                                       'volume': 'abs/2108.01764',
                                       'year': '2021'},
                              'url': 'URL#224414'},
                             {'@id': '439036',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '239/8558',
                                                               'text': 'Mang '
                                                                       'Tik '
                                                                       'Chiu'},
                                                              {'@pid': '256/1005',
                                                               'text': 'Xingqian '
                                                                       'Xu'},
                                                              {'@pid': '78/2022',
                                                               'text': 'Kai '
                                                                       'Wang'},
                                                              {'@pid': '176/8329',
                                                               'text': 'Jennifer '
                                                                       'A. '
                                                                       'Hobbs'},
                                                              {'@pid': '38/4506',
                                                               'text': 'Naira '
                                                                       'Hovakimyan'},
                                                              {'@pid': 'h/ThomasSHuang',
                                                               'text': 'Thomas '
                                                                       'S. '
                                                                       'Huang'},
                                                              {'@pid': '176/5516',
                                                               'text': 'Honghui '
                                                                       'Shi'},
                                                              {'@pid': '118/5394',
                                                               'text': 'Yunchao '
                                                                       'Wei'},
                                                              {'@pid': '185/9199',
                                                               'text': 'Zilong '
                                                                       'Huang'},
                                                              {'@pid': '79/9775',
                                                               'text': 'Alexander '
                                                                       'G. '
                                                                       'Schwing'},
                                                              {'@pid': '71/4954',
                                                               'text': 'Robert '
                                                                       'Brunner'},
                                                              {'@pid': '256/1073',
                                                               'text': 'Ivan '
                                                                       'Dozier'},
                                                              {'@pid': '263/7357',
                                                               'text': 'Wyatt '
                                                                       'Dozier'},
                                                              {'@pid': '263/6846',
                                                               'text': 'Karen '
                                                                       'Ghandilyan'},
                                                              {'@pid': '23/794',
                                                               'text': 'David '
                                                                       'Wilson'},
                                                              {'@pid': '263/7369',
                                                               'text': 'Hyunseong '
                                                                       'Park'},
                                                              {'@pid': '11/9267',
                                                               'text': 'Jun '
                                                                       'Hee '
                                                                       'Kim'},
                                                              {'@pid': '09/623',
                                                               'text': 'Sungho '
                                                                       'Kim'},
                                                              {'@pid': '26/1065',
                                                               'text': 'Qinghui '
                                                                       'Liu'},
                                                              {'@pid': '191/9382',
                                                               'text': 'Michael '
                                                                       'C. '
                                                                       'Kampffmeyer'},
                                                              {'@pid': '45/5813',
                                                               'text': 'Robert '
                                                                       'Jenssen'},
                                                              {'@pid': '52/929',
                                                               'text': 'Arnt-Børre '
                                                                       'Salberg'},
                                                              {'@pid': '152/3081',
                                                               'text': 'Alexandre '
                                                                       'Barbosa'},
                                                              {'@pid': '205/0847',
                                                               'text': 'Rodrigo '
                                                                       'G. '
                                                                       'Trevisan'},
                                                              {'@pid': '120/3602',
                                                               'text': 'Bingchen '
                                                                       'Zhao'},
                                                              {'@pid': '263/6962',
                                                               'text': 'Shaozuo '
                                                                       'Yu'},
                                                              {'@pid': '74/1686',
                                                               'text': 'Siwei '
                                                                       'Yang'},
                                                              {'@pid': '70/4828',
                                                               'text': 'Yin '
                                                                       'Wang'},
                                                              {'@pid': '75/1078',
                                                               'text': 'Hao '
                                                                       'Sheng'},
                                                              {'@pid': '05/3054',
                                                               'text': 'Xiao '
                                                                       'Chen'},
                                                              {'@pid': '209/9853',
                                                               'text': 'Jingyi '
                                                                       'Su'},
                                                              {'@pid': '69/3555',
                                                               'text': 'Ram '
                                                                       'Rajagopal'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '251/1200',
                                                               'text': 'Van '
                                                                       'Thong '
                                                                       'Huynh'},
                                                              {'@pid': '15/5759',
                                                               'text': 'Soo-Hyung '
                                                                       'Kim'},
                                                              {'@pid': '35/11117',
                                                               'text': 'In '
                                                                       'Seop '
                                                                       'Na'},
                                                              {'@pid': '200/0516',
                                                               'text': 'Ujjwal '
                                                                       'Baid'},
                                                              {'@pid': '263/7046',
                                                               'text': 'Shubham '
                                                                       'Innani'},
                                                              {'@pid': '255/1539',
                                                               'text': 'Prasad '
                                                                       'Dutande'},
                                                              {'@pid': '219/9851',
                                                               'text': 'Bhakti '
                                                                       'Baheti'},
                                                              {'@pid': '39/7796',
                                                               'text': 'Sanjay '
                                                                       'N. '
                                                                       'Talbar'},
                                                              {'@pid': '58/6906',
                                                               'text': 'Jianyu '
                                                                       'Tang'}]},
                                       'doi': '10.1109/CVPRW50498.2020.00032',
                                       'ee': 'https://doi.org/10.1109/CVPRW50498.2020.00032',
                                       'key': 'conf/cvpr/ChiuXWHHHSWHSBD20',
                                       'pages': '212-218',
                                       'title': 'The 1st Agriculture-Vision '
                                                'Challenge - Methods and '
                                                'Results.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/cvpr/ChiuXWHHHSWHSBD20',
                                       'venue': 'CVPR Workshops',
                                       'year': '2020'},
                              'url': 'URL#439036'},
                             {'@id': '440116',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '75/1078',
                                                               'text': 'Hao '
                                                                       'Sheng'},
                                                              {'@pid': '05/3054',
                                                               'text': 'Xiao '
                                                                       'Chen'},
                                                              {'@pid': '209/9853',
                                                               'text': 'Jingyi '
                                                                       'Su'},
                                                              {'@pid': '69/3555',
                                                               'text': 'Ram '
                                                                       'Rajagopal'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1109/CVPRW50498.2020.00038',
                                       'ee': 'https://doi.org/10.1109/CVPRW50498.2020.00038',
                                       'key': 'conf/cvpr/ShengCSRN20',
                                       'pages': '267-276',
                                       'title': 'Effective Data Fusion with '
                                                'Generalized Vegetation Index '
                                                '- Evidence from Land Cover '
                                                'Segmentation in Agriculture.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/cvpr/ShengCSRN20',
                                       'venue': 'CVPR Workshops',
                                       'year': '2020'},
                              'url': 'URL#440116'},
                             {'@id': '452196',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '263/3159',
                                                               'text': 'Akshay '
                                                                       'Smit'},
                                                              {'@pid': '188/9235',
                                                               'text': 'Saahil '
                                                                       'Jain'},
                                                              {'@pid': '161/3744',
                                                               'text': 'Pranav '
                                                                       'Rajpurkar'},
                                                              {'@pid': '259/3231',
                                                               'text': 'Anuj '
                                                                       'Pareek'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '209/9732',
                                                               'text': 'Matthew '
                                                                       'P. '
                                                                       'Lungren'}]},
                                       'doi': '10.18653/V1/2020.EMNLP-MAIN.117',
                                       'ee': 'https://doi.org/10.18653/v1/2020.emnlp-main.117',
                                       'key': 'conf/emnlp/SmitJRPNL20',
                                       'pages': '1500-1519',
                                       'title': 'Combining Automatic Labelers '
                                                'and Expert Annotations for '
                                                'Accurate Radiology Report '
                                                'Labeling Using BERT.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/emnlp/SmitJRPNL20',
                                       'venue': 'EMNLP',
                                       'year': '2020'},
                              'url': 'URL#452196'},
                             {'@id': '486012',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '209/9775',
                                                               'text': 'Tony '
                                                                       'Duan'},
                                                              {'@pid': '280/1697',
                                                               'text': 'Avati '
                                                                       'Anand'},
                                                              {'@pid': '225/6343',
                                                               'text': 'Daisy '
                                                                       'Yi '
                                                                       'Ding'},
                                                              {'@pid': '280/1620',
                                                               'text': 'Khanh '
                                                                       'K. '
                                                                       'Thai'},
                                                              {'@pid': '32/6623',
                                                               'text': 'Sanjay '
                                                                       'Basu'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '199/4820',
                                                               'text': 'Alejandro '
                                                                       'Schuler'}]},
                                       'ee': 'http://proceedings.mlr.press/v119/duan20a.html',
                                       'key': 'conf/icml/DuanADTBNS20',
                                       'pages': '2690-2700',
                                       'title': 'NGBoost - Natural Gradient '
                                                'Boosting for Probabilistic '
                                                'Prediction.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icml/DuanADTBNS20',
                                       'venue': 'ICML',
                                       'year': '2020'},
                              'url': 'URL#486012'},
                             {'@id': '573378',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '179/4758',
                                                               'text': 'Sharon '
                                                                       'Zhou'},
                                                              {'@pid': '258/0993',
                                                               'text': 'Jiequan '
                                                                       'Zhang'},
                                                              {'@pid': '74/10861',
                                                               'text': 'Hang '
                                                                       'Jiang'},
                                                              {'@pid': '66/992',
                                                               'text': 'Torbjörn '
                                                                       'Lundh'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'https://arxiv.org/abs/2002.02917',
                                       'key': 'journals/corr/abs-2002-02917',
                                       'title': 'Data augmentation with Möbius '
                                                'transformations.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-2002-02917',
                                       'venue': 'CoRR',
                                       'volume': 'abs/2002.02917',
                                       'year': '2020'},
                              'url': 'URL#573378'},
                             {'@id': '576908',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '161/3744',
                                                               'text': 'Pranav '
                                                                       'Rajpurkar'},
                                                              {'@pid': '206/8409',
                                                               'text': 'Anirudh '
                                                                       'Joshi'},
                                                              {'@pid': '259/3231',
                                                               'text': 'Anuj '
                                                                       'Pareek'},
                                                              {'@pid': '259/3229',
                                                               'text': 'Phil '
                                                                       'Chen'},
                                                              {'@pid': '118/6084',
                                                               'text': 'Amirhossein '
                                                                       'Kiani'},
                                                              {'@pid': '209/9633',
                                                               'text': 'Jeremy '
                                                                       'Irvin'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '209/9732',
                                                               'text': 'Matthew '
                                                                       'P. '
                                                                       'Lungren'}]},
                                       'ee': 'https://arxiv.org/abs/2002.11379',
                                       'key': 'journals/corr/abs-2002-11379',
                                       'title': 'CheXpedition - Investigating '
                                                'Generalization Challenges for '
                                                'Translation of Chest X-Ray '
                                                'Algorithms to the Clinical '
                                                'Setting.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-2002-11379',
                                       'venue': 'CoRR',
                                       'volume': 'abs/2002.11379',
                                       'year': '2020'},
                              'url': 'URL#576908'},
                             {'@id': '586678',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '263/3159',
                                                               'text': 'Akshay '
                                                                       'Smit'},
                                                              {'@pid': '188/9235',
                                                               'text': 'Saahil '
                                                                       'Jain'},
                                                              {'@pid': '161/3744',
                                                               'text': 'Pranav '
                                                                       'Rajpurkar'},
                                                              {'@pid': '259/3231',
                                                               'text': 'Anuj '
                                                                       'Pareek'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '209/9732',
                                                               'text': 'Matthew '
                                                                       'P. '
                                                                       'Lungren'}]},
                                       'ee': 'https://arxiv.org/abs/2004.09167',
                                       'key': 'journals/corr/abs-2004-09167',
                                       'title': 'CheXbert - Combining '
                                                'Automatic Labelers and Expert '
                                                'Annotations for Accurate '
                                                'Radiology Report Labeling '
                                                'Using BERT.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-2004-09167',
                                       'venue': 'CoRR',
                                       'volume': 'abs/2004.09167',
                                       'year': '2020'},
                              'url': 'URL#586678'},
                             {'@id': '586908',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '239/8558',
                                                               'text': 'Mang '
                                                                       'Tik '
                                                                       'Chiu'},
                                                              {'@pid': '256/1005',
                                                               'text': 'Xingqian '
                                                                       'Xu'},
                                                              {'@pid': '78/2022',
                                                               'text': 'Kai '
                                                                       'Wang'},
                                                              {'@pid': '176/8329',
                                                               'text': 'Jennifer '
                                                                       'A. '
                                                                       'Hobbs'},
                                                              {'@pid': '38/4506',
                                                               'text': 'Naira '
                                                                       'Hovakimyan'},
                                                              {'@pid': 'h/ThomasSHuang',
                                                               'text': 'Thomas '
                                                                       'S. '
                                                                       'Huang'},
                                                              {'@pid': '176/5516',
                                                               'text': 'Honghui '
                                                                       'Shi'},
                                                              {'@pid': '118/5394',
                                                               'text': 'Yunchao '
                                                                       'Wei'},
                                                              {'@pid': '185/9199',
                                                               'text': 'Zilong '
                                                                       'Huang'},
                                                              {'@pid': '79/9775',
                                                               'text': 'Alexander '
                                                                       'G. '
                                                                       'Schwing'},
                                                              {'@pid': '71/4954',
                                                               'text': 'Robert '
                                                                       'Brunner'},
                                                              {'@pid': '256/1073',
                                                               'text': 'Ivan '
                                                                       'Dozier'},
                                                              {'@pid': '263/7357',
                                                               'text': 'Wyatt '
                                                                       'Dozier'},
                                                              {'@pid': '263/6846',
                                                               'text': 'Karen '
                                                                       'Ghandilyan'},
                                                              {'@pid': '23/794',
                                                               'text': 'David '
                                                                       'Wilson'},
                                                              {'@pid': '263/7369',
                                                               'text': 'Hyunseong '
                                                                       'Park'},
                                                              {'@pid': '11/9267',
                                                               'text': 'Jun '
                                                                       'Hee '
                                                                       'Kim'},
                                                              {'@pid': '09/623',
                                                               'text': 'Sungho '
                                                                       'Kim'},
                                                              {'@pid': '26/1065',
                                                               'text': 'Qinghui '
                                                                       'Liu'},
                                                              {'@pid': '191/9382',
                                                               'text': 'Michael '
                                                                       'C. '
                                                                       'Kampffmeyer'},
                                                              {'@pid': '45/5813',
                                                               'text': 'Robert '
                                                                       'Jenssen'},
                                                              {'@pid': '52/929',
                                                               'text': 'Arnt-Børre '
                                                                       'Salberg'},
                                                              {'@pid': '152/3081',
                                                               'text': 'Alexandre '
                                                                       'Barbosa'},
                                                              {'@pid': '205/0847',
                                                               'text': 'Rodrigo '
                                                                       'G. '
                                                                       'Trevisan'},
                                                              {'@pid': '120/3602',
                                                               'text': 'Bingchen '
                                                                       'Zhao'},
                                                              {'@pid': '263/6962',
                                                               'text': 'Shaozuo '
                                                                       'Yu'},
                                                              {'@pid': '74/1686',
                                                               'text': 'Siwei '
                                                                       'Yang'},
                                                              {'@pid': '70/4828',
                                                               'text': 'Yin '
                                                                       'Wang'},
                                                              {'@pid': '75/1078',
                                                               'text': 'Hao '
                                                                       'Sheng'},
                                                              {'@pid': '05/3054',
                                                               'text': 'Xiao '
                                                                       'Chen'},
                                                              {'@pid': '209/9853',
                                                               'text': 'Jingyi '
                                                                       'Su'},
                                                              {'@pid': '69/3555',
                                                               'text': 'Ram '
                                                                       'Rajagopal'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '251/1200',
                                                               'text': 'Van '
                                                                       'Thong '
                                                                       'Huynh'},
                                                              {'@pid': '15/5759',
                                                               'text': 'Soo-Hyung '
                                                                       'Kim'},
                                                              {'@pid': '35/11117',
                                                               'text': 'In '
                                                                       'Seop '
                                                                       'Na'},
                                                              {'@pid': '200/0516',
                                                               'text': 'Ujjwal '
                                                                       'Baid'},
                                                              {'@pid': '263/7046',
                                                               'text': 'Shubham '
                                                                       'Innani'},
                                                              {'@pid': '255/1539',
                                                               'text': 'Prasad '
                                                                       'Dutande'},
                                                              {'@pid': '219/9851',
                                                               'text': 'Bhakti '
                                                                       'Baheti'},
                                                              {'@pid': '39/7796',
                                                               'text': 'Sanjay '
                                                                       'N. '
                                                                       'Talbar'},
                                                              {'@pid': '58/6906',
                                                               'text': 'Jianyu '
                                                                       'Tang'}]},
                                       'ee': 'https://arxiv.org/abs/2004.09754',
                                       'key': 'journals/corr/abs-2004-09754',
                                       'title': 'The 1st Agriculture-Vision '
                                                'Challenge - Methods and '
                                                'Results.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-2004-09754',
                                       'venue': 'CoRR',
                                       'volume': 'abs/2004.09754',
                                       'year': '2020'},
                              'url': 'URL#586908'},
                             {'@id': '590522',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '75/1078',
                                                               'text': 'Hao '
                                                                       'Sheng'},
                                                              {'@pid': '05/3054',
                                                               'text': 'Xiao '
                                                                       'Chen'},
                                                              {'@pid': '209/9853',
                                                               'text': 'Jingyi '
                                                                       'Su'},
                                                              {'@pid': '69/3555',
                                                               'text': 'Ram '
                                                                       'Rajagopal'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'https://arxiv.org/abs/2005.03743',
                                       'key': 'journals/corr/abs-2005-03743',
                                       'title': 'Effective Data Fusion with '
                                                'Generalized Vegetation Index '
                                                '- Evidence from Land Cover '
                                                'Segmentation in Agriculture.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-2005-03743',
                                       'venue': 'CoRR',
                                       'volume': 'abs/2005.03743',
                                       'year': '2020'},
                              'url': 'URL#590522'},
                             {'@id': '596146',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '179/4758',
                                                               'text': 'Sharon '
                                                                       'Zhou'},
                                                              {'@pid': '217/2378',
                                                               'text': 'Eric '
                                                                       'Zelikman'},
                                                              {'@pid': '215/9557',
                                                               'text': 'Fred '
                                                                       'Lu'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '47/8135',
                                                               'text': 'Stefano '
                                                                       'Ermon'}]},
                                       'ee': 'https://arxiv.org/abs/2006.03680',
                                       'key': 'journals/corr/abs-2006-03680',
                                       'title': 'Evaluating the '
                                                'Disentanglement of Deep '
                                                'Generative Models through '
                                                'Manifold Topology.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-2006-03680',
                                       'venue': 'CoRR',
                                       'volume': 'abs/2006.03680',
                                       'year': '2020'},
                              'url': 'URL#596146'},
                             {'@id': '604337',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '270/3658',
                                                               'text': 'Nick '
                                                                       'A. '
                                                                       'Phillips'},
                                                              {'@pid': '161/3744',
                                                               'text': 'Pranav '
                                                                       'Rajpurkar'},
                                                              {'@pid': '225/5451',
                                                               'text': 'Mark '
                                                                       'Sabini'},
                                                              {'@pid': '270/3249',
                                                               'text': 'Rayan '
                                                                       'Krishnan'},
                                                              {'@pid': '179/4758',
                                                               'text': 'Sharon '
                                                                       'Zhou'},
                                                              {'@pid': '259/3231',
                                                               'text': 'Anuj '
                                                                       'Pareek'},
                                                              {'@pid': '270/3406',
                                                               'text': 'Nguyet '
                                                                       'Minh '
                                                                       'Phu'},
                                                              {'@pid': '50/8382',
                                                               'text': 'Chris '
                                                                       'Wang'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '209/9732',
                                                               'text': 'Matthew '
                                                                       'P. '
                                                                       'Lungren'}]},
                                       'ee': 'https://arxiv.org/abs/2007.06199',
                                       'key': 'journals/corr/abs-2007-06199',
                                       'title': 'CheXphoto - 10, 000+ '
                                                'Smartphone Photos and '
                                                'Synthetic Photographic '
                                                'Transformations of Chest '
                                                'X-rays for Benchmarking Deep '
                                                'Learning Robustness.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-2007-06199',
                                       'venue': 'CoRR',
                                       'volume': 'abs/2007.06199',
                                       'year': '2020'},
                              'url': 'URL#604337'},
                             {'@id': '616681',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '257/3291',
                                                               'text': 'Damir '
                                                                       'Vrabac'},
                                                              {'@pid': '263/3159',
                                                               'text': 'Akshay '
                                                                       'Smit'},
                                                              {'@pid': '274/6848',
                                                               'text': 'Rebecca '
                                                                       'Rojansky'},
                                                              {'@pid': '83/6930',
                                                               'text': 'Yasodha '
                                                                       'Natkunam'},
                                                              {'@pid': '274/7261',
                                                               'text': 'Ranjana '
                                                                       'H. '
                                                                       'Advani'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '274/7073',
                                                               'text': 'Sebastian '
                                                                       'Fernandez-Pol'},
                                                              {'@pid': '161/3744',
                                                               'text': 'Pranav '
                                                                       'Rajpurkar'}]},
                                       'ee': 'https://arxiv.org/abs/2009.08123',
                                       'key': 'journals/corr/abs-2009-08123',
                                       'title': 'DLBCL-Morph - Morphological '
                                                'features computed using deep '
                                                'learning for an annotated '
                                                'digital DLBCL image set.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-2009-08123',
                                       'venue': 'CoRR',
                                       'volume': 'abs/2009.08123',
                                       'year': '2020'},
                              'url': 'URL#616681'},
                             {'@id': '621361',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '217/2378',
                                                               'text': 'Eric '
                                                                       'Zelikman'},
                                                              {'@pid': '179/4758',
                                                               'text': 'Sharon '
                                                                       'Zhou'},
                                                              {'@pid': '209/9633',
                                                               'text': 'Jeremy '
                                                                       'Irvin'},
                                                              {'@pid': '276/1291',
                                                               'text': 'Cooper '
                                                                       'Raterink'},
                                                              {'@pid': '75/1078',
                                                               'text': 'Hao '
                                                                       'Sheng'},
                                                              {'@pid': '143/7497',
                                                               'text': 'Jack '
                                                                       'Kelly'},
                                                              {'@pid': '69/3555',
                                                               'text': 'Ram '
                                                                       'Rajagopal'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '276/0940',
                                                               'text': 'David '
                                                                       'Gagne'}]},
                                       'ee': 'https://arxiv.org/abs/2010.04715',
                                       'key': 'journals/corr/abs-2010-04715',
                                       'title': 'Short-Term Solar Irradiance '
                                                'Forecasting Using Calibrated '
                                                'Probabilistic Models.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-2010-04715',
                                       'venue': 'CoRR',
                                       'volume': 'abs/2010.04715',
                                       'year': '2020'},
                              'url': 'URL#621361'},
                             {'@id': '621668',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '276/5671',
                                                               'text': 'Hari '
                                                                       'Sowrirajan'},
                                                              {'@pid': '79/6095',
                                                               'text': 'Jingbo '
                                                                       'Yang'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '161/3744',
                                                               'text': 'Pranav '
                                                                       'Rajpurkar'}]},
                                       'ee': 'https://arxiv.org/abs/2010.05352',
                                       'key': 'journals/corr/abs-2010-05352',
                                       'title': 'MoCo Pretraining Improves '
                                                'Representation and '
                                                'Transferability of Chest '
                                                'X-ray Models.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-2010-05352',
                                       'venue': 'CoRR',
                                       'volume': 'abs/2010.05352',
                                       'year': '2020'},
                              'url': 'URL#621668'},
                             {'@id': '626188',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '277/5525',
                                                               'text': 'Viswesh '
                                                                       'Krishna'},
                                                              {'@pid': '206/8409',
                                                               'text': 'Anirudh '
                                                                       'Joshi'},
                                                              {'@pid': '277/5628',
                                                               'text': 'Philip '
                                                                       'L. '
                                                                       'Bulterys'},
                                                              {'@pid': '76/6653',
                                                               'text': 'Eric '
                                                                       'Yang'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '161/3744',
                                                               'text': 'Pranav '
                                                                       'Rajpurkar'}]},
                                       'ee': 'https://arxiv.org/abs/2010.15269',
                                       'key': 'journals/corr/abs-2010-15269',
                                       'title': 'GloFlow - Global Image '
                                                'Alignment for Creation of '
                                                'Whole Slide Images for '
                                                'Pathology from Video.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-2010-15269',
                                       'venue': 'CoRR',
                                       'volume': 'abs/2010.15269',
                                       'year': '2020'},
                              'url': 'URL#626188'},
                             {'@id': '629033',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '209/9633',
                                                               'text': 'Jeremy '
                                                                       'Irvin'},
                                                              {'@pid': '75/1078',
                                                               'text': 'Hao '
                                                                       'Sheng'},
                                                              {'@pid': '278/3129',
                                                               'text': 'Neel '
                                                                       'Ramachandran'},
                                                              {'@pid': '278/3293',
                                                               'text': 'Sonja '
                                                                       'Johnson-Yu'},
                                                              {'@pid': '179/4758',
                                                               'text': 'Sharon '
                                                                       'Zhou'},
                                                              {'@pid': '278/2653',
                                                               'text': 'Kyle '
                                                                       'Story'},
                                                              {'@pid': '278/2714',
                                                               'text': 'Rose '
                                                                       'Rustowicz'},
                                                              {'@pid': '278/3047',
                                                               'text': 'Cooper '
                                                                       'Elsworth'},
                                                              {'@pid': '278/2911',
                                                               'text': 'Kemen '
                                                                       'Austin'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'https://arxiv.org/abs/2011.05479',
                                       'key': 'journals/corr/abs-2011-05479',
                                       'title': 'ForestNet - Classifying '
                                                'Drivers of Deforestation in '
                                                'Indonesia using Deep Learning '
                                                'on Satellite Imagery.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-2011-05479',
                                       'venue': 'CoRR',
                                       'volume': 'abs/2011.05479',
                                       'year': '2020'},
                              'url': 'URL#629033'},
                             {'@id': '629309',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '161/3744',
                                                               'text': 'Pranav '
                                                                       'Rajpurkar'},
                                                              {'@pid': '206/8409',
                                                               'text': 'Anirudh '
                                                                       'Joshi'},
                                                              {'@pid': '259/3231',
                                                               'text': 'Anuj '
                                                                       'Pareek'},
                                                              {'@pid': '209/9633',
                                                               'text': 'Jeremy '
                                                                       'Irvin'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '209/9732',
                                                               'text': 'Matthew '
                                                                       'P. '
                                                                       'Lungren'}]},
                                       'ee': 'https://arxiv.org/abs/2011.06129',
                                       'key': 'journals/corr/abs-2011-06129',
                                       'title': 'CheXphotogenic - '
                                                'Generalization of Deep '
                                                'Learning Models for Chest '
                                                'X-ray Interpretation to '
                                                'Photos of Chest X-rays.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-2011-06129',
                                       'venue': 'CoRR',
                                       'volume': 'abs/2011.06129',
                                       'year': '2020'},
                              'url': 'URL#629309'},
                             {'@id': '629754',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '75/1078',
                                                               'text': 'Hao '
                                                                       'Sheng'},
                                                              {'@pid': '209/9633',
                                                               'text': 'Jeremy '
                                                                       'Irvin'},
                                                              {'@pid': '278/7868',
                                                               'text': 'Sasankh '
                                                                       'Munukutla'},
                                                              {'@pid': '23/1084',
                                                               'text': 'Shawn '
                                                                       'Zhang'},
                                                              {'@pid': '278/8467',
                                                               'text': 'Christopher '
                                                                       'Cross'},
                                                              {'@pid': '278/2653',
                                                               'text': 'Kyle '
                                                                       'Story'},
                                                              {'@pid': '278/2714',
                                                               'text': 'Rose '
                                                                       'Rustowicz'},
                                                              {'@pid': '278/3047',
                                                               'text': 'Cooper '
                                                                       'Elsworth'},
                                                              {'@pid': '278/8455',
                                                               'text': 'Zutao '
                                                                       'Yang'},
                                                              {'@pid': '278/8377',
                                                               'text': 'Mark '
                                                                       'Omara'},
                                                              {'@pid': '187/5049',
                                                               'text': 'Ritesh '
                                                                       'Gautam'},
                                                              {'@pid': '81/6773',
                                                               'text': 'Robert '
                                                                       'B. '
                                                                       'Jackson'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'https://arxiv.org/abs/2011.07227',
                                       'key': 'journals/corr/abs-2011-07227',
                                       'title': 'OGNet - Towards a Global Oil '
                                                'and Gas Infrastructure '
                                                'Database using Deep Learning '
                                                'on Remotely Sensed Imagery.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-2011-07227',
                                       'venue': 'CoRR',
                                       'volume': 'abs/2011.07227',
                                       'year': '2020'},
                              'url': 'URL#629754'},
                             {'@id': '805258',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '209/9633',
                                                               'text': 'Jeremy '
                                                                       'Irvin'},
                                                              {'@pid': '161/3744',
                                                               'text': 'Pranav '
                                                                       'Rajpurkar'},
                                                              {'@pid': '03/1125',
                                                               'text': 'Michael '
                                                                       'Ko'},
                                                              {'@pid': '67/3150',
                                                               'text': 'Yifan '
                                                                       'Yu'},
                                                              {'@pid': '234/7825',
                                                               'text': 'Silviana '
                                                                       'Ciurea-Ilcus'},
                                                              {'@pid': '234/7903',
                                                               'text': 'Chris '
                                                                       'Chute'},
                                                              {'@pid': '234/7535',
                                                               'text': 'Henrik '
                                                                       'Marklund'},
                                                              {'@pid': '234/7782',
                                                               'text': 'Behzad '
                                                                       'Haghgoo'},
                                                              {'@pid': '19/11264',
                                                               'text': 'Robyn '
                                                                       'L. '
                                                                       'Ball'},
                                                              {'@pid': '115/9205',
                                                               'text': 'Katie '
                                                                       'S. '
                                                                       'Shpanskaya'},
                                                              {'@pid': '234/8025',
                                                               'text': 'Jayne '
                                                                       'Seekins'},
                                                              {'@pid': '191/4960',
                                                               'text': 'David '
                                                                       'A. '
                                                                       'Mong'},
                                                              {'@pid': '181/0313',
                                                               'text': 'Safwan '
                                                                       'S. '
                                                                       'Halabi'},
                                                              {'@pid': '09/7425',
                                                               'text': 'Jesse '
                                                                       'K. '
                                                                       'Sandberg'},
                                                              {'@pid': '234/7859',
                                                               'text': 'Ricky '
                                                                       'Jones'},
                                                              {'@pid': '234/7965',
                                                               'text': 'David '
                                                                       'B. '
                                                                       'Larson'},
                                                              {'@pid': '12/1751',
                                                               'text': 'Curtis '
                                                                       'P. '
                                                                       'Langlotz'},
                                                              {'@pid': '234/7876',
                                                               'text': 'Bhavik '
                                                                       'N. '
                                                                       'Patel'},
                                                              {'@pid': '209/9732',
                                                               'text': 'Matthew '
                                                                       'P. '
                                                                       'Lungren'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1609/AAAI.V33I01.3301590',
                                       'ee': 'https://doi.org/10.1609/aaai.v33i01.3301590',
                                       'key': 'conf/aaai/IrvinRKYCCMHBSS19',
                                       'pages': '590-597',
                                       'title': 'CheXpert - A Large Chest '
                                                'Radiograph Dataset with '
                                                'Uncertainty Labels and Expert '
                                                'Comparison.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/aaai/IrvinRKYCCMHBSS19',
                                       'venue': 'AAAI',
                                       'year': '2019'},
                              'url': 'URL#805258'},
                             {'@id': '930944',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '192/1315',
                                                               'text': 'Yichen '
                                                                       'Shen'},
                                                              {'@pid': '188/6009',
                                                               'text': 'Maxime '
                                                                       'Voisin'},
                                                              {'@pid': '79/9895',
                                                               'text': 'Alireza '
                                                                       'Aliamiri'},
                                                              {'@pid': '177/9122',
                                                               'text': 'Anand '
                                                                       'Avati'},
                                                              {'@pid': '147/5262',
                                                               'text': 'Awni '
                                                                       'Y. '
                                                                       'Hannun'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1145/3292500.3330657',
                                       'ee': 'https://doi.org/10.1145/3292500.3330657',
                                       'key': 'conf/kdd/ShenVAAHN19',
                                       'pages': '1909-1916',
                                       'title': 'Ambulatory Atrial '
                                                'Fibrillation Monitoring Using '
                                                'Wearable Photoplethysmography '
                                                'with Deep Learning.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/kdd/ShenVAAHN19',
                                       'venue': 'KDD',
                                       'year': '2019'},
                              'url': 'URL#930944'},
                             {'@id': '970853',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '177/9122',
                                                               'text': 'Anand '
                                                                       'Avati'},
                                                              {'@pid': '209/9775',
                                                               'text': 'Tony '
                                                                       'Duan'},
                                                              {'@pid': '179/4758',
                                                               'text': 'Sharon '
                                                                       'Zhou'},
                                                              {'@pid': '120/6526',
                                                               'text': 'Kenneth '
                                                                       'Jung'},
                                                              {'@pid': 's/NHShah',
                                                               'text': 'Nigam '
                                                                       'H. '
                                                                       'Shah'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'http://proceedings.mlr.press/v115/avati20a.html',
                                       'key': 'conf/uai/AvatiDZJSN19',
                                       'pages': '145-155',
                                       'title': 'Countdown Regression - Sharp '
                                                'and Calibrated Survival '
                                                'Predictions.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/uai/AvatiDZJSN19',
                                       'venue': 'UAI',
                                       'year': '2019'},
                              'url': 'URL#970853'},
                             {'@id': '990073',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '209/9633',
                                                               'text': 'Jeremy '
                                                                       'Irvin'},
                                                              {'@pid': '161/3744',
                                                               'text': 'Pranav '
                                                                       'Rajpurkar'},
                                                              {'@pid': '03/1125',
                                                               'text': 'Michael '
                                                                       'Ko'},
                                                              {'@pid': '67/3150',
                                                               'text': 'Yifan '
                                                                       'Yu'},
                                                              {'@pid': '234/7825',
                                                               'text': 'Silviana '
                                                                       'Ciurea-Ilcus'},
                                                              {'@pid': '234/7903',
                                                               'text': 'Chris '
                                                                       'Chute'},
                                                              {'@pid': '234/7535',
                                                               'text': 'Henrik '
                                                                       'Marklund'},
                                                              {'@pid': '234/7782',
                                                               'text': 'Behzad '
                                                                       'Haghgoo'},
                                                              {'@pid': '19/11264',
                                                               'text': 'Robyn '
                                                                       'L. '
                                                                       'Ball'},
                                                              {'@pid': '115/9205',
                                                               'text': 'Katie '
                                                                       'S. '
                                                                       'Shpanskaya'},
                                                              {'@pid': '234/8025',
                                                               'text': 'Jayne '
                                                                       'Seekins'},
                                                              {'@pid': '191/4960',
                                                               'text': 'David '
                                                                       'A. '
                                                                       'Mong'},
                                                              {'@pid': '181/0313',
                                                               'text': 'Safwan '
                                                                       'S. '
                                                                       'Halabi'},
                                                              {'@pid': '09/7425',
                                                               'text': 'Jesse '
                                                                       'K. '
                                                                       'Sandberg'},
                                                              {'@pid': '234/7859',
                                                               'text': 'Ricky '
                                                                       'Jones'},
                                                              {'@pid': '234/7965',
                                                               'text': 'David '
                                                                       'B. '
                                                                       'Larson'},
                                                              {'@pid': '12/1751',
                                                               'text': 'Curtis '
                                                                       'P. '
                                                                       'Langlotz'},
                                                              {'@pid': '234/7876',
                                                               'text': 'Bhavik '
                                                                       'N. '
                                                                       'Patel'},
                                                              {'@pid': '209/9732',
                                                               'text': 'Matthew '
                                                                       'P. '
                                                                       'Lungren'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'http://arxiv.org/abs/1901.07031',
                                       'key': 'journals/corr/abs-1901-07031',
                                       'title': 'CheXpert - A Large Chest '
                                                'Radiograph Dataset with '
                                                'Uncertainty Labels and Expert '
                                                'Comparison.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-1901-07031',
                                       'venue': 'CoRR',
                                       'volume': 'abs/1901.07031',
                                       'year': '2019'},
                              'url': 'URL#990073'},
                             {'@id': '1028684',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '209/9775',
                                                               'text': 'Tony '
                                                                       'Duan'},
                                                              {'@pid': '177/9122',
                                                               'text': 'Anand '
                                                                       'Avati'},
                                                              {'@pid': '225/6343',
                                                               'text': 'Daisy '
                                                                       'Yi '
                                                                       'Ding'},
                                                              {'@pid': '32/6623',
                                                               'text': 'Sanjay '
                                                                       'Basu'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '199/4820',
                                                               'text': 'Alejandro '
                                                                       'Schuler'}]},
                                       'ee': 'http://arxiv.org/abs/1910.03225',
                                       'key': 'journals/corr/abs-1910-03225',
                                       'title': 'NGBoost - Natural Gradient '
                                                'Boosting for Probabilistic '
                                                'Prediction.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-1910-03225',
                                       'venue': 'CoRR',
                                       'volume': 'abs/1910.03225',
                                       'year': '2019'},
                              'url': 'URL#1028684'},
                             {'@id': '1135801',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '177/9122',
                                                               'text': 'Anand '
                                                                       'Avati'},
                                                              {'@pid': '120/6526',
                                                               'text': 'Kenneth '
                                                                       'Jung'},
                                                              {'@pid': '210/0822',
                                                               'text': 'Stephanie '
                                                                       'Harman'},
                                                              {'@pid': '210/0909',
                                                               'text': 'Lance '
                                                                       'Downing'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': 's/NHShah',
                                                               'text': 'Nigam '
                                                                       'H. '
                                                                       'Shah'}]},
                                       'doi': '10.1186/S12911-018-0677-8',
                                       'ee': 'https://doi.org/10.1186/s12911-018-0677-8',
                                       'key': 'journals/midm/AvatiJHDNS18',
                                       'number': 'S-4',
                                       'pages': '55-64',
                                       'title': 'Improving palliative care '
                                                'with deep learning.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/midm/AvatiJHDNS18',
                                       'venue': 'BMC Medical Informatics '
                                                'Decis. Mak.',
                                       'volume': '18',
                                       'year': '2018'},
                              'url': 'URL#1135801'},
                             {'@id': '1319953',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '133/2394',
                                                               'text': 'Ziang '
                                                                       'Xie'},
                                                              {'@pid': '220/2047',
                                                               'text': 'Guillaume '
                                                                       'Genthial'},
                                                              {'@pid': '220/2028',
                                                               'text': 'Stanley '
                                                                       'Xie'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '31/985',
                                                               'text': 'Dan '
                                                                       'Jurafsky'}]},
                                       'doi': '10.18653/V1/N18-1057',
                                       'ee': 'https://doi.org/10.18653/v1/n18-1057',
                                       'key': 'conf/naacl/XieGXNJ18',
                                       'pages': '619-628',
                                       'title': 'Noising and Denoising Natural '
                                                'Language - Diverse '
                                                'Backtranslation for Grammar '
                                                'Correction.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/naacl/XieGXNJ18',
                                       'venue': 'NAACL-HLT',
                                       'year': '2018'},
                              'url': 'URL#1319953'},
                             {'@id': '1385725',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '177/9122',
                                                               'text': 'Anand '
                                                                       'Avati'},
                                                              {'@pid': '209/9775',
                                                               'text': 'Tony '
                                                                       'Duan'},
                                                              {'@pid': '120/6526',
                                                               'text': 'Kenneth '
                                                                       'Jung'},
                                                              {'@pid': 's/NHShah',
                                                               'text': 'Nigam '
                                                                       'H. '
                                                                       'Shah'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'http://arxiv.org/abs/1806.08324',
                                       'key': 'journals/corr/abs-1806-08324',
                                       'title': 'Countdown Regression - Sharp '
                                                'and Calibrated Survival '
                                                'Predictions.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-1806-08324',
                                       'venue': 'CoRR',
                                       'volume': 'abs/1806.08324',
                                       'year': '2018'},
                              'url': 'URL#1385725'},
                             {'@id': '1404693',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '177/9122',
                                                               'text': 'Anand '
                                                                       'Avati'},
                                                              {'@pid': '225/6445',
                                                               'text': 'Stephen '
                                                                       'Pfohl'},
                                                              {'@pid': '163/4747',
                                                               'text': 'Chris '
                                                                       'Lin'},
                                                              {'@pid': '77/2922',
                                                               'text': 'Thao '
                                                                       'Nguyen'},
                                                              {'@pid': '04/6901',
                                                               'text': 'Meng '
                                                                       'Zhang'},
                                                              {'@pid': '182/4073',
                                                               'text': 'Philip '
                                                                       'Hwang'},
                                                              {'@pid': '232/1667',
                                                               'text': 'Jessica '
                                                                       'Wetstone'},
                                                              {'@pid': '120/6526',
                                                               'text': 'Kenneth '
                                                                       'Jung'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': 's/NHShah',
                                                               'text': 'Nigam '
                                                                       'H. '
                                                                       'Shah'}]},
                                       'ee': 'http://arxiv.org/abs/1812.00371',
                                       'key': 'journals/corr/abs-1812-00371',
                                       'title': 'Predicting Inpatient '
                                                'Discharge Prioritization With '
                                                'Electronic Health Records.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-1812-00371',
                                       'venue': 'CoRR',
                                       'volume': 'abs/1812.00371',
                                       'year': '2018'},
                              'url': 'URL#1404693'},
                             {'@id': '1468677',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '185/0954',
                                                               'text': 'Sherry '
                                                                       'Ruan'},
                                                              {'@pid': '18/6907',
                                                               'text': 'Jacob '
                                                                       'O. '
                                                                       'Wobbrock'},
                                                              {'@pid': '185/0692',
                                                               'text': 'Kenny '
                                                                       'Liou'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': 'l/JamesALanday',
                                                               'text': 'James '
                                                                       'A. '
                                                                       'Landay'}]},
                                       'doi': '10.1145/3161187',
                                       'ee': 'https://doi.org/10.1145/3161187',
                                       'key': 'journals/imwut/RuanWLNL17',
                                       'number': '4',
                                       'pages': '159:1-159:23',
                                       'title': 'Comparing Speech and Keyboard '
                                                'Text Entry for Short Messages '
                                                'in Two Languages on '
                                                'Touchscreen Phones.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/imwut/RuanWLNL17',
                                       'venue': 'Proc. ACM Interact. Mob. '
                                                'Wearable Ubiquitous Technol.',
                                       'volume': '1',
                                       'year': '2017'},
                              'url': 'URL#1468677'},
                             {'@id': '1555128',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '177/9122',
                                                               'text': 'Anand '
                                                                       'Avati'},
                                                              {'@pid': '120/6526',
                                                               'text': 'Kenneth '
                                                                       'Jung'},
                                                              {'@pid': '210/0822',
                                                               'text': 'Stephanie '
                                                                       'Harman'},
                                                              {'@pid': '210/0909',
                                                               'text': 'Lance '
                                                                       'Downing'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': 's/NHShah',
                                                               'text': 'Nigam '
                                                                       'H. '
                                                                       'Shah'}]},
                                       'doi': '10.1109/BIBM.2017.8217669',
                                       'ee': 'https://doi.org/10.1109/BIBM.2017.8217669',
                                       'key': 'conf/bibm/AvatiJHDNS17',
                                       'pages': '311-316',
                                       'title': 'Improving palliative care '
                                                'with deep learning.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/bibm/AvatiJHDNS17',
                                       'venue': 'BIBM',
                                       'year': '2017'},
                              'url': 'URL#1555128'},
                             {'@id': '1619148',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '133/2394',
                                                               'text': 'Ziang '
                                                                       'Xie'},
                                                              {'@pid': '153/9609',
                                                               'text': 'Sida '
                                                                       'I. '
                                                                       'Wang'},
                                                              {'@pid': '73/5746',
                                                               'text': 'Jiwei '
                                                                       'Li'},
                                                              {'@pid': '192/1660',
                                                               'text': 'Daniel '
                                                                       'Lévy'},
                                                              {'@pid': '198/1357',
                                                               'text': 'Aiming '
                                                                       'Nie'},
                                                              {'@pid': '31/985',
                                                               'text': 'Dan '
                                                                       'Jurafsky'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'https://openreview.net/forum?id=H1VyHY9gg',
                                       'key': 'conf/iclr/XieWLLNJN17',
                                       'title': 'Data Noising as Smoothing in '
                                                'Neural Network Language '
                                                'Models.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/iclr/XieWLLNJN17',
                                       'venue': 'ICLR',
                                       'year': '2017'},
                              'url': 'URL#1619148'},
                             {'@id': '1707988',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': 'a/PieterAbbeel',
                                                               'text': 'Pieter '
                                                                       'Abbeel'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1007/978-1-4899-7687-1_142',
                                       'ee': 'https://doi.org/10.1007/978-1-4899-7687-1_142',
                                       'key': 'reference/ml/AbbeelN17',
                                       'pages': '678-682',
                                       'title': 'Inverse Reinforcement '
                                                'Learning.',
                                       'type': 'Reference Works',
                                       'url': 'https://dblp.org/rec/reference/ml/AbbeelN17',
                                       'venue': 'Encyclopedia of Machine '
                                                'Learning and Data Mining',
                                       'year': '2017'},
                              'url': 'URL#1707988'},
                             {'@id': '1708022',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '60/5515',
                                                               'text': 'Adam '
                                                                       'Coates'},
                                                              {'@pid': 'a/PieterAbbeel',
                                                               'text': 'Pieter '
                                                                       'Abbeel'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1007/978-1-4899-7687-1_16',
                                       'ee': 'https://doi.org/10.1007/978-1-4899-7687-1_16',
                                       'key': 'reference/ml/CoatesAN17',
                                       'pages': '75-85',
                                       'title': 'Autonomous Helicopter Flight '
                                                'Using Reinforcement Learning.',
                                       'type': 'Reference Works',
                                       'url': 'https://dblp.org/rec/reference/ml/CoatesAN17',
                                       'venue': 'Encyclopedia of Machine '
                                                'Learning and Data Mining',
                                       'year': '2017'},
                              'url': 'URL#1708022'},
                             {'@id': '1721551',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '161/3744',
                                                               'text': 'Pranav '
                                                                       'Rajpurkar'},
                                                              {'@pid': '147/5262',
                                                               'text': 'Awni '
                                                                       'Y. '
                                                                       'Hannun'},
                                                              {'@pid': '29/2940',
                                                               'text': 'Masoumeh '
                                                                       'Haghpanahi'},
                                                              {'@pid': '203/8375',
                                                               'text': 'Codie '
                                                                       'Bourn'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'http://arxiv.org/abs/1707.01836',
                                       'key': 'journals/corr/RajpurkarHHBN17',
                                       'title': 'Cardiologist-Level Arrhythmia '
                                                'Detection with Convolutional '
                                                'Neural Networks.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/RajpurkarHHBN17',
                                       'venue': 'CoRR',
                                       'volume': 'abs/1707.01836',
                                       'year': '2017'},
                              'url': 'URL#1721551'},
                             {'@id': '1724993',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '133/2394',
                                                               'text': 'Ziang '
                                                                       'Xie'},
                                                              {'@pid': '153/9609',
                                                               'text': 'Sida '
                                                                       'I. '
                                                                       'Wang'},
                                                              {'@pid': '73/5746',
                                                               'text': 'Jiwei '
                                                                       'Li'},
                                                              {'@pid': '192/1660',
                                                               'text': 'Daniel '
                                                                       'Lévy'},
                                                              {'@pid': '198/1357',
                                                               'text': 'Aiming '
                                                                       'Nie'},
                                                              {'@pid': '31/985',
                                                               'text': 'Dan '
                                                                       'Jurafsky'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'http://arxiv.org/abs/1703.02573',
                                       'key': 'journals/corr/XieWLLNJN17',
                                       'title': 'Data Noising as Smoothing in '
                                                'Neural Network Language '
                                                'Models.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/XieWLLNJN17',
                                       'venue': 'CoRR',
                                       'volume': 'abs/1703.02573',
                                       'year': '2017'},
                              'url': 'URL#1724993'},
                             {'@id': '1735326',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '161/3744',
                                                               'text': 'Pranav '
                                                                       'Rajpurkar'},
                                                              {'@pid': '209/9633',
                                                               'text': 'Jeremy '
                                                                       'Irvin'},
                                                              {'@pid': '209/9616',
                                                               'text': 'Kaylie '
                                                                       'Zhu'},
                                                              {'@pid': '209/9594',
                                                               'text': 'Brandon '
                                                                       'Yang'},
                                                              {'@pid': '209/9650',
                                                               'text': 'Hershel '
                                                                       'Mehta'},
                                                              {'@pid': '209/9775',
                                                               'text': 'Tony '
                                                                       'Duan'},
                                                              {'@pid': '225/6343',
                                                               'text': 'Daisy '
                                                                       'Yi '
                                                                       'Ding'},
                                                              {'@pid': '209/9532',
                                                               'text': 'Aarti '
                                                                       'Bagul'},
                                                              {'@pid': '12/1751',
                                                               'text': 'Curtis '
                                                                       'Langlotz'},
                                                              {'@pid': '115/9205',
                                                               'text': 'Katie '
                                                                       'S. '
                                                                       'Shpanskaya'},
                                                              {'@pid': '209/9732',
                                                               'text': 'Matthew '
                                                                       'P. '
                                                                       'Lungren'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'http://arxiv.org/abs/1711.05225',
                                       'key': 'journals/corr/abs-1711-05225',
                                       'title': 'CheXNet - Radiologist-Level '
                                                'Pneumonia Detection on Chest '
                                                'X-Rays with Deep Learning.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-1711-05225',
                                       'venue': 'CoRR',
                                       'volume': 'abs/1711.05225',
                                       'year': '2017'},
                              'url': 'URL#1735326'},
                             {'@id': '1735638',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '177/9122',
                                                               'text': 'Anand '
                                                                       'Avati'},
                                                              {'@pid': '120/6526',
                                                               'text': 'Kenneth '
                                                                       'Jung'},
                                                              {'@pid': '210/0822',
                                                               'text': 'Stephanie '
                                                                       'Harman'},
                                                              {'@pid': '210/0909',
                                                               'text': 'Lance '
                                                                       'Downing'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': 's/NHShah',
                                                               'text': 'Nigam '
                                                                       'H. '
                                                                       'Shah'}]},
                                       'ee': 'http://arxiv.org/abs/1711.06402',
                                       'key': 'journals/corr/abs-1711-06402',
                                       'title': 'Improving Palliative Care '
                                                'with Deep Learning.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-1711-06402',
                                       'venue': 'CoRR',
                                       'volume': 'abs/1711.06402',
                                       'year': '2017'},
                              'url': 'URL#1735638'},
                             {'@id': '1738696',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '161/3744',
                                                               'text': 'Pranav '
                                                                       'Rajpurkar'},
                                                              {'@pid': '209/9633',
                                                               'text': 'Jeremy '
                                                                       'Irvin'},
                                                              {'@pid': '209/9532',
                                                               'text': 'Aarti '
                                                                       'Bagul'},
                                                              {'@pid': '225/6343',
                                                               'text': 'Daisy '
                                                                       'Yi '
                                                                       'Ding'},
                                                              {'@pid': '209/9775',
                                                               'text': 'Tony '
                                                                       'Duan'},
                                                              {'@pid': '209/9650',
                                                               'text': 'Hershel '
                                                                       'Mehta'},
                                                              {'@pid': '209/9594',
                                                               'text': 'Brandon '
                                                                       'Yang'},
                                                              {'@pid': '209/9616',
                                                               'text': 'Kaylie '
                                                                       'Zhu'},
                                                              {'@pid': '155/1932',
                                                               'text': 'Dillon '
                                                                       'Laird'},
                                                              {'@pid': '19/11264',
                                                               'text': 'Robyn '
                                                                       'L. '
                                                                       'Ball'},
                                                              {'@pid': '12/1751',
                                                               'text': 'Curtis '
                                                                       'Langlotz'},
                                                              {'@pid': '115/9205',
                                                               'text': 'Katie '
                                                                       'S. '
                                                                       'Shpanskaya'},
                                                              {'@pid': '209/9732',
                                                               'text': 'Matthew '
                                                                       'P. '
                                                                       'Lungren'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'http://arxiv.org/abs/1712.06957',
                                       'key': 'journals/corr/abs-1712-06957',
                                       'title': 'MURA Dataset - Towards '
                                                'Radiologist-Level Abnormality '
                                                'Detection in Musculoskeletal '
                                                'Radiographs.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-1712-06957',
                                       'venue': 'CoRR',
                                       'volume': 'abs/1712.06957',
                                       'year': '2017'},
                              'url': 'URL#1738696'},
                             {'@id': '1852471',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '25/6501',
                                                               'text': 'Michiel '
                                                                       'Kallenberg'},
                                                              {'@pid': '42/3393',
                                                               'text': 'Kersten '
                                                                       'Petersen'},
                                                              {'@pid': '80/1754',
                                                               'text': 'Mads '
                                                                       'Nielsen'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '147/2100',
                                                               'text': 'Pengfei '
                                                                       'Diao'},
                                                              {'@pid': '38/6146',
                                                               'text': 'Christian '
                                                                       'Igel'},
                                                              {'@pid': '136/6040',
                                                               'text': 'Celine '
                                                                       'M. '
                                                                       'Vachon'},
                                                              {'@pid': '147/2300',
                                                               'text': 'Katharina '
                                                                       'Holland'},
                                                              {'@pid': '179/4129',
                                                               'text': 'Rikke '
                                                                       'Rass '
                                                                       'Winkel'},
                                                              {'@pid': '09/93',
                                                               'text': 'Nico '
                                                                       'Karssemeijer'},
                                                              {'@pid': '90/4942',
                                                               'text': 'Martin '
                                                                       'Lillholm'}]},
                                       'doi': '10.1109/TMI.2016.2532122',
                                       'ee': 'https://doi.org/10.1109/TMI.2016.2532122',
                                       'key': 'journals/tmi/KallenbergPNNDI16',
                                       'number': '5',
                                       'pages': '1322-1331',
                                       'title': 'Unsupervised Deep Learning '
                                                'Applied to Breast Density '
                                                'Segmentation and Mammographic '
                                                'Risk Scoring.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/tmi/KallenbergPNNDI16',
                                       'venue': 'IEEE Trans. Medical Imaging',
                                       'volume': '35',
                                       'year': '2016'},
                              'url': 'URL#1852471'},
                             {'@id': '1874135',
                              '@score': '7',
                              'info': {'authors': {'author': {'@pid': 'n/AndrewYNg',
                                                              'text': 'Andrew '
                                                                      'Y. Ng'}},
                                       'ee': 'http://dl.acm.org/citation.cfm?id=2936926',
                                       'key': 'conf/atal/Ng16',
                                       'pages': '1',
                                       'title': 'Deep Learning - What&apos;s '
                                                'Next.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/atal/Ng16',
                                       'venue': 'AAMAS',
                                       'year': '2016'},
                              'url': 'URL#1874135'},
                             {'@id': '1895542',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '164/5990',
                                                               'text': 'Russell '
                                                                       'Stewart'},
                                                              {'@pid': '54/4495',
                                                               'text': 'Mykhaylo '
                                                                       'Andriluka'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1109/CVPR.2016.255',
                                       'ee': 'https://doi.org/10.1109/CVPR.2016.255',
                                       'key': 'conf/cvpr/StewartAN16',
                                       'pages': '2325-2333',
                                       'title': 'End-to-End People Detection '
                                                'in Crowded Scenes.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/cvpr/StewartAN16',
                                       'venue': 'CVPR',
                                       'year': '2016'},
                              'url': 'URL#1895542'},
                             {'@id': '1937857',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '155/3328',
                                                               'text': 'Dario '
                                                                       'Amodei'},
                                                              {'@pid': '80/10926',
                                                               'text': 'Sundaram '
                                                                       'Ananthanarayanan'},
                                                              {'@pid': '119/7727',
                                                               'text': 'Rishita '
                                                                       'Anubhai'},
                                                              {'@pid': '229/2257',
                                                               'text': 'Jingliang '
                                                                       'Bai'},
                                                              {'@pid': '82/9955',
                                                               'text': 'Eric '
                                                                       'Battenberg'},
                                                              {'@pid': '69/9967',
                                                               'text': 'Carl '
                                                                       'Case'},
                                                              {'@pid': '23/6529',
                                                               'text': 'Jared '
                                                                       'Casper'},
                                                              {'@pid': '14/4826',
                                                               'text': 'Bryan '
                                                                       'Catanzaro'},
                                                              {'@pid': '33/5656',
                                                               'text': 'Jingdong '
                                                                       'Chen'},
                                                              {'@pid': '173/5380',
                                                               'text': 'Mike '
                                                                       'Chrzanowski'},
                                                              {'@pid': '60/5515',
                                                               'text': 'Adam '
                                                                       'Coates'},
                                                              {'@pid': '06/1767',
                                                               'text': 'Greg '
                                                                       'Diamos'},
                                                              {'@pid': '94/3606',
                                                               'text': 'Erich '
                                                                       'Elsen'},
                                                              {'@pid': '173/5298',
                                                               'text': 'Jesse '
                                                                       'H. '
                                                                       'Engel'},
                                                              {'@pid': '154/6778',
                                                               'text': 'Linxi '
                                                                       'Fan'},
                                                              {'@pid': '173/5319',
                                                               'text': 'Christopher '
                                                                       'Fougner'},
                                                              {'@pid': '147/5262',
                                                               'text': 'Awni '
                                                                       'Y. '
                                                                       'Hannun'},
                                                              {'@pid': '173/5259',
                                                               'text': 'Billy '
                                                                       'Jun'},
                                                              {'@pid': '52/6805',
                                                               'text': 'Tony '
                                                                       'Han'},
                                                              {'@pid': '73/7575',
                                                               'text': 'Patrick '
                                                                       'LeGresley'},
                                                              {'@pid': '124/9046',
                                                               'text': 'Xiangang '
                                                                       'Li'},
                                                              {'@pid': '173/4944',
                                                               'text': 'Libby '
                                                                       'Lin'},
                                                              {'@pid': '173/5215',
                                                               'text': 'Sharan '
                                                                       'Narang'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '139/0736',
                                                               'text': 'Sherjil '
                                                                       'Ozair'},
                                                              {'@pid': '117/0712',
                                                               'text': 'Ryan '
                                                                       'Prenger'},
                                                              {'@pid': '165/9577',
                                                               'text': 'Sheng '
                                                                       'Qian'},
                                                              {'@pid': '164/5795',
                                                               'text': 'Jonathan '
                                                                       'Raiman'},
                                                              {'@pid': '46/7573',
                                                               'text': 'Sanjeev '
                                                                       'Satheesh'},
                                                              {'@pid': '51/5445',
                                                               'text': 'David '
                                                                       'Seetapun'},
                                                              {'@pid': '147/1220',
                                                               'text': 'Shubho '
                                                                       'Sengupta'},
                                                              {'@pid': 'w/ChongWang2',
                                                               'text': 'Chong '
                                                                       'Wang '
                                                                       '0002'},
                                                              {'@pid': '17/221',
                                                               'text': 'Yi '
                                                                       'Wang'},
                                                              {'@pid': '90/4036',
                                                               'text': 'Zhiqian '
                                                                       'Wang'},
                                                              {'@pid': '92/6046',
                                                               'text': 'Bo '
                                                                       'Xiao'},
                                                              {'@pid': '62/6285',
                                                               'text': 'Yan '
                                                                       'Xie'},
                                                              {'@pid': '08/8178',
                                                               'text': 'Dani '
                                                                       'Yogatama'},
                                                              {'@pid': '05/7814',
                                                               'text': 'Jun '
                                                                       'Zhan'},
                                                              {'@pid': '142/2453',
                                                               'text': 'Zhenyao '
                                                                       'Zhu'}]},
                                       'ee': 'http://proceedings.mlr.press/v48/amodei16.html',
                                       'key': 'conf/icml/AmodeiABCCCCCCD16',
                                       'pages': '173-182',
                                       'title': 'Deep Speech 2 - End-to-End '
                                                'Speech Recognition in English '
                                                'and Mandarin.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icml/AmodeiABCCCCCCD16',
                                       'venue': 'ICML',
                                       'year': '2016'},
                              'url': 'URL#1937857'},
                             {'@id': '2041154',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '185/0954',
                                                               'text': 'Sherry '
                                                                       'Ruan'},
                                                              {'@pid': '18/6907',
                                                               'text': 'Jacob '
                                                                       'O. '
                                                                       'Wobbrock'},
                                                              {'@pid': '185/0692',
                                                               'text': 'Kenny '
                                                                       'Liou'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': 'l/JamesALanday',
                                                               'text': 'James '
                                                                       'A. '
                                                                       'Landay'}]},
                                       'ee': 'http://arxiv.org/abs/1608.07323',
                                       'key': 'journals/corr/RuanWLNL16',
                                       'title': 'Speech Is 3x Faster than '
                                                'Typing for English and '
                                                'Mandarin Text Entry on Mobile '
                                                'Devices.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/RuanWLNL16',
                                       'venue': 'CoRR',
                                       'volume': 'abs/1608.07323',
                                       'year': '2016'},
                              'url': 'URL#2041154'},
                             {'@id': '2045408',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '133/2394',
                                                               'text': 'Ziang '
                                                                       'Xie'},
                                                              {'@pid': '177/9122',
                                                               'text': 'Anand '
                                                                       'Avati'},
                                                              {'@pid': '177/8974',
                                                               'text': 'Naveen '
                                                                       'Arivazhagan'},
                                                              {'@pid': '31/985',
                                                               'text': 'Dan '
                                                                       'Jurafsky'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'http://arxiv.org/abs/1603.09727',
                                       'key': 'journals/corr/XieAAJN16',
                                       'title': 'Neural Language Correction '
                                                'with Character-Based '
                                                'Attention.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/XieAAJN16',
                                       'venue': 'CoRR',
                                       'volume': 'abs/1603.09727',
                                       'year': '2016'},
                              'url': 'URL#2045408'},
                             {'@id': '2326151',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '155/3328',
                                                               'text': 'Dario '
                                                                       'Amodei'},
                                                              {'@pid': '119/7727',
                                                               'text': 'Rishita '
                                                                       'Anubhai'},
                                                              {'@pid': '82/9955',
                                                               'text': 'Eric '
                                                                       'Battenberg'},
                                                              {'@pid': '69/9967',
                                                               'text': 'Carl '
                                                                       'Case'},
                                                              {'@pid': '23/6529',
                                                               'text': 'Jared '
                                                                       'Casper'},
                                                              {'@pid': '14/4826',
                                                               'text': 'Bryan '
                                                                       'Catanzaro'},
                                                              {'@pid': '33/5656',
                                                               'text': 'Jingdong '
                                                                       'Chen'},
                                                              {'@pid': '173/5380',
                                                               'text': 'Mike '
                                                                       'Chrzanowski'},
                                                              {'@pid': '60/5515',
                                                               'text': 'Adam '
                                                                       'Coates'},
                                                              {'@pid': '06/1767',
                                                               'text': 'Greg '
                                                                       'Diamos'},
                                                              {'@pid': '94/3606',
                                                               'text': 'Erich '
                                                                       'Elsen'},
                                                              {'@pid': '173/5298',
                                                               'text': 'Jesse '
                                                                       'H. '
                                                                       'Engel'},
                                                              {'@pid': '154/6778',
                                                               'text': 'Linxi '
                                                                       'Fan'},
                                                              {'@pid': '173/5319',
                                                               'text': 'Christopher '
                                                                       'Fougner'},
                                                              {'@pid': '52/6805',
                                                               'text': 'Tony '
                                                                       'Han'},
                                                              {'@pid': '147/5262',
                                                               'text': 'Awni '
                                                                       'Y. '
                                                                       'Hannun'},
                                                              {'@pid': '173/5259',
                                                               'text': 'Billy '
                                                                       'Jun'},
                                                              {'@pid': '73/7575',
                                                               'text': 'Patrick '
                                                                       'LeGresley'},
                                                              {'@pid': '173/4944',
                                                               'text': 'Libby '
                                                                       'Lin'},
                                                              {'@pid': '173/5215',
                                                               'text': 'Sharan '
                                                                       'Narang'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '139/0736',
                                                               'text': 'Sherjil '
                                                                       'Ozair'},
                                                              {'@pid': '117/0712',
                                                               'text': 'Ryan '
                                                                       'Prenger'},
                                                              {'@pid': '164/5795',
                                                               'text': 'Jonathan '
                                                                       'Raiman'},
                                                              {'@pid': '46/7573',
                                                               'text': 'Sanjeev '
                                                                       'Satheesh'},
                                                              {'@pid': '51/5445',
                                                               'text': 'David '
                                                                       'Seetapun'},
                                                              {'@pid': '147/1220',
                                                               'text': 'Shubho '
                                                                       'Sengupta'},
                                                              {'@pid': '17/221',
                                                               'text': 'Yi '
                                                                       'Wang'},
                                                              {'@pid': '90/4036',
                                                               'text': 'Zhiqian '
                                                                       'Wang'},
                                                              {'@pid': 'w/ChongWang2',
                                                               'text': 'Chong '
                                                                       'Wang '
                                                                       '0002'},
                                                              {'@pid': '92/6046',
                                                               'text': 'Bo '
                                                                       'Xiao'},
                                                              {'@pid': '08/8178',
                                                               'text': 'Dani '
                                                                       'Yogatama'},
                                                              {'@pid': '05/7814',
                                                               'text': 'Jun '
                                                                       'Zhan'},
                                                              {'@pid': '142/2453',
                                                               'text': 'Zhenyao '
                                                                       'Zhu'}]},
                                       'ee': 'http://arxiv.org/abs/1512.02595',
                                       'key': 'journals/corr/AmodeiABCCCCCCD15',
                                       'title': 'Deep Speech 2 - End-to-End '
                                                'Speech Recognition in English '
                                                'and Mandarin.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/AmodeiABCCCCCCD15',
                                       'venue': 'CoRR',
                                       'volume': 'abs/1512.02595',
                                       'year': '2015'},
                              'url': 'URL#2326151'},
                             {'@id': '2332902',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '117/4058',
                                                               'text': 'Brody '
                                                                       'Huval'},
                                                              {'@pid': '12/5838',
                                                               'text': 'Tao '
                                                                       'Wang'},
                                                              {'@pid': '03/9969',
                                                               'text': 'Sameep '
                                                                       'Tandon'},
                                                              {'@pid': '161/9966',
                                                               'text': 'Jeff '
                                                                       'Kiske'},
                                                              {'@pid': '162/0144',
                                                               'text': 'Will '
                                                                       'Song'},
                                                              {'@pid': '162/0124',
                                                               'text': 'Joel '
                                                                       'Pazhayampallil'},
                                                              {'@pid': '54/4495',
                                                               'text': 'Mykhaylo '
                                                                       'Andriluka'},
                                                              {'@pid': '161/3744',
                                                               'text': 'Pranav '
                                                                       'Rajpurkar'},
                                                              {'@pid': '162/0225',
                                                               'text': 'Toki '
                                                                       'Migimatsu'},
                                                              {'@pid': '162/0088',
                                                               'text': 'Royce '
                                                                       'Cheng-Yue'},
                                                              {'@pid': '27/1360',
                                                               'text': 'Fernando '
                                                                       'A. '
                                                                       'Mujica'},
                                                              {'@pid': '60/5515',
                                                               'text': 'Adam '
                                                                       'Coates'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'http://arxiv.org/abs/1504.01716',
                                       'key': 'journals/corr/HuvalWTKSPARMCM15',
                                       'title': 'An Empirical Evaluation of '
                                                'Deep Learning on Highway '
                                                'Driving.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/HuvalWTKSPARMCM15',
                                       'venue': 'CoRR',
                                       'volume': 'abs/1504.01716',
                                       'year': '2015'},
                              'url': 'URL#2332902'},
                             {'@id': '2338605',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '161/3744',
                                                               'text': 'Pranav '
                                                                       'Rajpurkar'},
                                                              {'@pid': '162/0225',
                                                               'text': 'Toki '
                                                                       'Migimatsu'},
                                                              {'@pid': '161/9966',
                                                               'text': 'Jeff '
                                                                       'Kiske'},
                                                              {'@pid': '162/0088',
                                                               'text': 'Royce '
                                                                       'Cheng-Yue'},
                                                              {'@pid': '03/9969',
                                                               'text': 'Sameep '
                                                                       'Tandon'},
                                                              {'@pid': '12/5838',
                                                               'text': 'Tao '
                                                                       'Wang'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'http://arxiv.org/abs/1512.01872',
                                       'key': 'journals/corr/RajpurkarMKCTWN15',
                                       'title': 'Driverseat - Crowdstrapping '
                                                'Learning Tasks for Autonomous '
                                                'Driving.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/RajpurkarMKCTWN15',
                                       'venue': 'CoRR',
                                       'volume': 'abs/1512.01872',
                                       'year': '2015'},
                              'url': 'URL#2338605'},
                             {'@id': '2393868',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '78/1197',
                                                               'text': 'Morgan '
                                                                       'Quigley'},
                                                              {'@pid': '35/7809',
                                                               'text': 'Curt '
                                                                       'Salisbury'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': 's/JohnKennethSalisburyJr',
                                                               'text': 'J. '
                                                                       'Kenneth '
                                                                       'Salisbury'}]},
                                       'doi': '10.1177/0278364913515032',
                                       'ee': 'https://doi.org/10.1177/0278364913515032',
                                       'key': 'journals/ijrr/QuigleySNS14',
                                       'number': '5',
                                       'pages': '706-720',
                                       'title': 'Mechatronic design of an '
                                                'integrated robotic hand.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/ijrr/QuigleySNS14',
                                       'venue': 'Int. J. Robotics Res.',
                                       'volume': '33',
                                       'year': '2014'},
                              'url': 'URL#2393868'},
                             {'@id': '2438567',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '79/128',
                                                               'text': 'Richard '
                                                                       'Socher'},
                                                              {'@pid': '04/9925',
                                                               'text': 'Andrej '
                                                                       'Karpathy'},
                                                              {'@pid': '29/6166',
                                                               'text': 'Quoc '
                                                                       'V. Le'},
                                                              {'@pid': 'm/ChristopherDManning',
                                                               'text': 'Christopher '
                                                                       'D. '
                                                                       'Manning'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'https://tacl2013.cs.columbia.edu/ojs/index.php/tacl/article/view/325',
                                       'key': 'journals/tacl/SocherKLMN14',
                                       'pages': '207-218',
                                       'title': 'Grounded Compositional '
                                                'Semantics for Finding and '
                                                'Describing Images with '
                                                'Sentences.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/tacl/SocherKLMN14',
                                       'venue': 'Trans. Assoc. Comput. '
                                                'Linguistics',
                                       'volume': '2',
                                       'year': '2014'},
                              'url': 'URL#2438567'},
                             {'@id': '2607157',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '117/4058',
                                                               'text': 'Brody '
                                                                       'Huval'},
                                                              {'@pid': '60/5515',
                                                               'text': 'Adam '
                                                                       'Coates'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'http://arxiv.org/abs/1312.6885',
                                       'key': 'journals/corr/HuvalCN13',
                                       'title': 'Deep learning for '
                                                'class-generic object '
                                                'detection.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/journals/corr/HuvalCN13',
                                       'venue': 'ICLR',
                                       'year': '2014'},
                              'url': 'URL#2607157'},
                             {'@id': '2621612',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '147/5262',
                                                               'text': 'Awni '
                                                                       'Y. '
                                                                       'Hannun'},
                                                              {'@pid': '69/9967',
                                                               'text': 'Carl '
                                                                       'Case'},
                                                              {'@pid': '23/6529',
                                                               'text': 'Jared '
                                                                       'Casper'},
                                                              {'@pid': '14/4826',
                                                               'text': 'Bryan '
                                                                       'Catanzaro'},
                                                              {'@pid': '06/1767',
                                                               'text': 'Greg '
                                                                       'Diamos'},
                                                              {'@pid': '94/3606',
                                                               'text': 'Erich '
                                                                       'Elsen'},
                                                              {'@pid': '117/0712',
                                                               'text': 'Ryan '
                                                                       'Prenger'},
                                                              {'@pid': '46/7573',
                                                               'text': 'Sanjeev '
                                                                       'Satheesh'},
                                                              {'@pid': '147/1220',
                                                               'text': 'Shubho '
                                                                       'Sengupta'},
                                                              {'@pid': '60/5515',
                                                               'text': 'Adam '
                                                                       'Coates'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'http://arxiv.org/abs/1412.5567',
                                       'key': 'journals/corr/HannunCCCDEPSSCN14',
                                       'title': 'Deep Speech - Scaling up '
                                                'end-to-end speech '
                                                'recognition.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/HannunCCCDEPSSCN14',
                                       'venue': 'CoRR',
                                       'volume': 'abs/1412.5567',
                                       'year': '2014'},
                              'url': 'URL#2621612'},
                             {'@id': '2740450',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '79/128',
                                                               'text': 'Richard '
                                                                       'Socher'},
                                                              {'@pid': '07/7435',
                                                               'text': 'John '
                                                                       'Bauer'},
                                                              {'@pid': 'm/ChristopherDManning',
                                                               'text': 'Christopher '
                                                                       'D. '
                                                                       'Manning'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'https://aclanthology.org/P13-1045/',
                                       'key': 'conf/acl/SocherBMN13',
                                       'pages': '455-465',
                                       'title': 'Parsing with Compositional '
                                                'Vector Grammars.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/acl/SocherBMN13',
                                       'venue': 'ACL',
                                       'year': '2013'},
                              'url': 'URL#2740450'},
                             {'@id': '2761822',
                              '@score': '7',
                              'info': {'authors': {'author': {'@pid': 'n/AndrewYNg',
                                                              'text': 'Andrew '
                                                                      'Y. Ng'}},
                                       'doi': '10.1145/2505515.2514698',
                                       'ee': 'https://doi.org/10.1145/2505515.2514698',
                                       'key': 'conf/cikm/Ng13',
                                       'pages': '1913-1914',
                                       'title': 'The online revolution - '
                                                'education for everyone.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/cikm/Ng13',
                                       'venue': 'CIKM',
                                       'year': '2013'},
                              'url': 'URL#2761822'},
                             {'@id': '2775822',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '35/10987',
                                                               'text': 'Chris '
                                                                       'Piech'},
                                                              {'@pid': '55/2421',
                                                               'text': 'Jonathan '
                                                                       'Huang'},
                                                              {'@pid': '88/10451',
                                                               'text': 'Zhenghao '
                                                                       'Chen'},
                                                              {'@pid': '58/2809',
                                                               'text': 'Chuong '
                                                                       'B. Do'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': 'k/DaphneKoller',
                                                               'text': 'Daphne '
                                                                       'Koller'}]},
                                       'ee': 'http://www.educationaldatamining.org/EDM2013/papers/rn_paper_23.pdf',
                                       'key': 'conf/edm/PiechHCDNK13',
                                       'pages': '153-160',
                                       'title': 'Tuned Models of Peer '
                                                'Assessment in MOOCs.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/edm/PiechHCDNK13',
                                       'venue': 'EDM',
                                       'year': '2013'},
                              'url': 'URL#2775822'},
                             {'@id': '2778961',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '79/128',
                                                               'text': 'Richard '
                                                                       'Socher'},
                                                              {'@pid': '225/4948',
                                                               'text': 'Alex '
                                                                       'Perelygin'},
                                                              {'@pid': '153/9509',
                                                               'text': 'Jean '
                                                                       'Wu'},
                                                              {'@pid': '03/9138',
                                                               'text': 'Jason '
                                                                       'Chuang'},
                                                              {'@pid': 'm/ChristopherDManning',
                                                               'text': 'Christopher '
                                                                       'D. '
                                                                       'Manning'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '13/2617',
                                                               'text': 'Christopher '
                                                                       'Potts'}]},
                                       'ee': 'https://aclanthology.org/D13-1170/',
                                       'key': 'conf/emnlp/SocherPWCMNP13',
                                       'pages': '1631-1642',
                                       'title': 'Recursive Deep Models for '
                                                'Semantic Compositionality '
                                                'Over a Sentiment Treebank.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/emnlp/SocherPWCMNP13',
                                       'venue': 'EMNLP',
                                       'year': '2013'},
                              'url': 'URL#2778961'},
                             {'@id': '2813997',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '60/5515',
                                                               'text': 'Adam '
                                                                       'Coates'},
                                                              {'@pid': '117/4058',
                                                               'text': 'Brody '
                                                                       'Huval'},
                                                              {'@pid': '12/5838',
                                                               'text': 'Tao '
                                                                       'Wang'},
                                                              {'@pid': '32/10400',
                                                               'text': 'David '
                                                                       'J. Wu'},
                                                              {'@pid': '14/4826',
                                                               'text': 'Bryan '
                                                                       'Catanzaro'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'http://proceedings.mlr.press/v28/coates13.html',
                                       'key': 'conf/icml/CoatesHWWCN13',
                                       'pages': '1337-1345',
                                       'title': 'Deep learning with COTS HPC '
                                                'systems.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icml/CoatesHWWCN13',
                                       'venue': 'ICML',
                                       'year': '2013'},
                              'url': 'URL#2813997'},
                             {'@id': '2843047',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': 'k/DaphneKoller',
                                                               'text': 'Daphne '
                                                                       'Koller'}]},
                                       'doi': '10.1145/2487575.2492148',
                                       'ee': 'https://doi.org/10.1145/2487575.2492148',
                                       'key': 'conf/kdd/NgK13',
                                       'pages': '2',
                                       'title': 'The online revolution - '
                                                'education for everyone.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/kdd/NgK13',
                                       'venue': 'KDD',
                                       'year': '2013'},
                              'url': 'URL#2843047'},
                             {'@id': '2854469',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '79/128',
                                                               'text': 'Richard '
                                                                       'Socher'},
                                                              {'@pid': '87/7949',
                                                               'text': 'Danqi '
                                                                       'Chen'},
                                                              {'@pid': 'm/ChristopherDManning',
                                                               'text': 'Christopher '
                                                                       'D. '
                                                                       'Manning'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'https://proceedings.neurips.cc/paper/2013/hash/b337e84de8752b27eda3a12363109e80-Abstract.html',
                                       'key': 'conf/nips/SocherCMN13',
                                       'pages': '926-934',
                                       'title': 'Reasoning With Neural Tensor '
                                                'Networks for Knowledge Base '
                                                'Completion.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/nips/SocherCMN13',
                                       'venue': 'NIPS',
                                       'year': '2013'},
                              'url': 'URL#2854469'},
                             {'@id': '2854470',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '79/128',
                                                               'text': 'Richard '
                                                                       'Socher'},
                                                              {'@pid': '125/1966',
                                                               'text': 'Milind '
                                                                       'Ganjoo'},
                                                              {'@pid': 'm/ChristopherDManning',
                                                               'text': 'Christopher '
                                                                       'D. '
                                                                       'Manning'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'https://proceedings.neurips.cc/paper/2013/hash/2d6cc4b2d139a53512fb8cbb3086ae2e-Abstract.html',
                                       'key': 'conf/nips/SocherGMN13',
                                       'pages': '935-943',
                                       'title': 'Zero-Shot Learning Through '
                                                'Cross-Modal Transfer.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/nips/SocherGMN13',
                                       'venue': 'NIPS',
                                       'year': '2013'},
                              'url': 'URL#2854470'},
                             {'@id': '2887036',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '87/7949',
                                                               'text': 'Danqi '
                                                                       'Chen'},
                                                              {'@pid': '79/128',
                                                               'text': 'Richard '
                                                                       'Socher'},
                                                              {'@pid': 'm/ChristopherDManning',
                                                               'text': 'Christopher '
                                                                       'D. '
                                                                       'Manning'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'http://arxiv.org/abs/1301.3618',
                                       'key': 'journals/corr/abs-1301-3618',
                                       'title': 'Learning New Facts From '
                                                'Knowledge Bases With Neural '
                                                'Tensor Networks and Semantic '
                                                'Word Vectors',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-1301-3618',
                                       'venue': 'ICLR',
                                       'year': '2013'},
                              'url': 'URL#2887036'},
                             {'@id': '2887040',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '79/128',
                                                               'text': 'Richard '
                                                                       'Socher'},
                                                              {'@pid': '125/1966',
                                                               'text': 'Milind '
                                                                       'Ganjoo'},
                                                              {'@pid': '125/1978',
                                                               'text': 'Hamsa '
                                                                       'Sridhar'},
                                                              {'@pid': '21/11275',
                                                               'text': 'Osbert '
                                                                       'Bastani'},
                                                              {'@pid': 'm/ChristopherDManning',
                                                               'text': 'Christopher '
                                                                       'D. '
                                                                       'Manning'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'http://arxiv.org/abs/1301.3666',
                                       'key': 'journals/corr/abs-1301-3666',
                                       'title': 'Zero-Shot Learning Through '
                                                'Cross-Modal Transfer',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-1301-3666',
                                       'venue': 'ICLR',
                                       'year': '2013'},
                              'url': 'URL#2887040'},
                             {'@id': '2899069',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '35/10987',
                                                               'text': 'Chris '
                                                                       'Piech'},
                                                              {'@pid': '55/2421',
                                                               'text': 'Jonathan '
                                                                       'Huang'},
                                                              {'@pid': '88/10451',
                                                               'text': 'Zhenghao '
                                                                       'Chen'},
                                                              {'@pid': '58/2809',
                                                               'text': 'Chuong '
                                                                       'B. Do'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': 'k/DaphneKoller',
                                                               'text': 'Daphne '
                                                                       'Koller'}]},
                                       'ee': 'http://arxiv.org/abs/1307.2579',
                                       'key': 'journals/corr/PiechHCDNK13',
                                       'title': 'Tuned Models of Peer '
                                                'Assessment in MOOCs.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/PiechHCDNK13',
                                       'venue': 'CoRR',
                                       'volume': 'abs/1307.2579',
                                       'year': '2013'},
                              'url': 'URL#2899069'},
                             {'@id': '2901826',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': 'j/MichaelIJordan',
                                                               'text': 'Michael '
                                                                       'I. '
                                                                       'Jordan'}]},
                                       'ee': 'http://arxiv.org/abs/1301.3878',
                                       'key': 'journals/corr/abs-1301-3878',
                                       'title': 'PEGASUS - A Policy Search '
                                                'Method for Large MDPs and '
                                                'POMDPs',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-1301-3878',
                                       'venue': 'CoRR',
                                       'volume': 'abs/1301.3878',
                                       'year': '2013'},
                              'url': 'URL#2901826'},
                             {'@id': '2902756',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '78/6858',
                                                               'text': 'Michael '
                                                                       'J. '
                                                                       'Kearns'},
                                                              {'@pid': 'm/YishayMansour',
                                                               'text': 'Yishay '
                                                                       'Mansour'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'http://arxiv.org/abs/1302.1552',
                                       'key': 'journals/corr/abs-1302-1552',
                                       'title': 'An Information-Theoretic '
                                                'Analysis of Hard and Soft '
                                                'Assignment Methods for '
                                                'Clustering',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-1302-1552',
                                       'venue': 'CoRR',
                                       'volume': 'abs/1302.1552',
                                       'year': '2013'},
                              'url': 'URL#2902756'},
                             {'@id': '3011599',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '63/10489',
                                                               'text': 'Eric '
                                                                       'H. '
                                                                       'Huang'},
                                                              {'@pid': '79/128',
                                                               'text': 'Richard '
                                                                       'Socher'},
                                                              {'@pid': 'm/ChristopherDManning',
                                                               'text': 'Christopher '
                                                                       'D. '
                                                                       'Manning'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'https://aclanthology.org/P12-1092/',
                                       'key': 'conf/acl/HuangSMN12',
                                       'pages': '873-882',
                                       'title': 'Improving Word '
                                                'Representations via Global '
                                                'Context and Multiple Word '
                                                'Prototypes.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/acl/HuangSMN12',
                                       'venue': 'ACL',
                                       'year': '2012'},
                              'url': 'URL#3011599'},
                             {'@id': '3047476',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '79/128',
                                                               'text': 'Richard '
                                                                       'Socher'},
                                                              {'@pid': '117/4058',
                                                               'text': 'Brody '
                                                                       'Huval'},
                                                              {'@pid': 'm/ChristopherDManning',
                                                               'text': 'Christopher '
                                                                       'D. '
                                                                       'Manning'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'https://aclanthology.org/D12-1110/',
                                       'key': 'conf/emnlp/SocherHMN12',
                                       'pages': '1201-1211',
                                       'title': 'Semantic Compositionality '
                                                'through Recursive '
                                                'Matrix-Vector Spaces.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/emnlp/SocherHMN12',
                                       'venue': 'EMNLP-CoNLL',
                                       'year': '2012'},
                              'url': 'URL#3047476'},
                             {'@id': '3076443',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '29/6166',
                                                               'text': 'Quoc '
                                                                       'V. Le'},
                                                              {'@pid': '28/1732',
                                                               'text': 'Marc&apos;Aurelio '
                                                                       'Ranzato'},
                                                              {'@pid': '99/10669',
                                                               'text': 'Rajat '
                                                                       'Monga'},
                                                              {'@pid': '23/2143',
                                                               'text': 'Matthieu '
                                                                       'Devin'},
                                                              {'@pid': '05/8414',
                                                               'text': 'Greg '
                                                                       'Corrado'},
                                                              {'@pid': 'c/KaiChen10',
                                                               'text': 'Kai '
                                                                       'Chen '
                                                                       '0010'},
                                                              {'@pid': 'd/JeffreyDean',
                                                               'text': 'Jeffrey '
                                                                       'Dean'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'http://icml.cc/2012/papers/73.pdf',
                                       'key': 'conf/icml/LeRMDCCDN12',
                                       'title': 'Building high-level features '
                                                'using large scale '
                                                'unsupervised learning.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icml/LeRMDCCDN12',
                                       'venue': 'ICML',
                                       'year': '2012'},
                              'url': 'URL#3076443'},
                             {'@id': '3079728',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '12/5838',
                                                               'text': 'Tao '
                                                                       'Wang'},
                                                              {'@pid': '32/10400',
                                                               'text': 'David '
                                                                       'J. Wu'},
                                                              {'@pid': '60/5515',
                                                               'text': 'Adam '
                                                                       'Coates'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'https://ieeexplore.ieee.org/document/6460871/',
                                       'key': 'conf/icpr/WangWCN12',
                                       'pages': '3304-3308',
                                       'title': 'End-to-end text recognition '
                                                'with convolutional neural '
                                                'networks.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icpr/WangWCN12',
                                       'venue': 'ICPR',
                                       'year': '2012'},
                              'url': 'URL#3079728'},
                             {'@id': '3117143',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '60/5515',
                                                               'text': 'Adam '
                                                                       'Coates'},
                                                              {'@pid': '04/9925',
                                                               'text': 'Andrej '
                                                                       'Karpathy'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'https://proceedings.neurips.cc/paper/2012/hash/39e4973ba3321b80f37d9b55f63ed8b8-Abstract.html',
                                       'key': 'conf/nips/CoatesKN12',
                                       'pages': '2690-2698',
                                       'title': 'Emergence of Object-Selective '
                                                'Features in Unsupervised '
                                                'Feature Learning.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/nips/CoatesKN12',
                                       'venue': 'NIPS',
                                       'year': '2012'},
                              'url': 'URL#3117143'},
                             {'@id': '3117369',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '79/128',
                                                               'text': 'Richard '
                                                                       'Socher'},
                                                              {'@pid': '117/4058',
                                                               'text': 'Brody '
                                                                       'Huval'},
                                                              {'@pid': '126/1701',
                                                               'text': 'Bharath '
                                                                       'Putta '
                                                                       'Bath'},
                                                              {'@pid': 'm/ChristopherDManning',
                                                               'text': 'Christopher '
                                                                       'D. '
                                                                       'Manning'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'https://proceedings.neurips.cc/paper/2012/hash/3eae62bba9ddf64f69d49dc48e2dd214-Abstract.html',
                                       'key': 'conf/nips/SocherHBMN12',
                                       'pages': '665-673',
                                       'title': 'Convolutional-Recursive Deep '
                                                'Learning for 3D Object '
                                                'Classification.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/nips/SocherHBMN12',
                                       'venue': 'NIPS',
                                       'year': '2012'},
                              'url': 'URL#3117369'},
                             {'@id': '3117445',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '95/9989',
                                                               'text': 'Will '
                                                                       'Y. '
                                                                       'Zou'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '81/4341',
                                                               'text': 'Shenghuo '
                                                                       'Zhu'},
                                                              {'@pid': 'y/KaiYu',
                                                               'text': 'Kai Yu '
                                                                       '0001'}]},
                                       'ee': 'https://proceedings.neurips.cc/paper/2012/hash/13d7dc096493e1f77fb4ccf3eaf79df1-Abstract.html',
                                       'key': 'conf/nips/ZouNZY12',
                                       'pages': '3212-3220',
                                       'title': 'Deep Learning of Invariant '
                                                'Features via Simulated '
                                                'Fixations in Video.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/nips/ZouNZY12',
                                       'venue': 'NIPS',
                                       'year': '2012'},
                              'url': 'URL#3117445'},
                             {'@id': '3152563',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '60/5515',
                                                               'text': 'Adam '
                                                                       'Coates'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1007/978-3-642-35289-8_30',
                                       'ee': 'https://doi.org/10.1007/978-3-642-35289-8_30',
                                       'key': 'series/lncs/CoatesN12',
                                       'pages': '561-580',
                                       'title': 'Learning Feature '
                                                'Representations with K-Means.',
                                       'type': 'Parts in Books or Collections',
                                       'url': 'https://dblp.org/rec/series/lncs/CoatesN12',
                                       'venue': 'Neural Networks - Tricks of '
                                                'the Trade',
                                       'year': '2012'},
                              'url': 'URL#3152563'},
                             {'@id': '3161443',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': 'b/JeffABilmes',
                                                               'text': 'Jeff '
                                                                       'A. '
                                                                       'Bilmes'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'http://arxiv.org/abs/1206.3959',
                                       'key': 'journals/corr/abs-1206-3959',
                                       'title': 'Proceedings of the '
                                                'Twenty-Fifth Conference on '
                                                'Uncertainty in Artificial '
                                                'Intelligence (2009)',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-1206-3959',
                                       'venue': 'CoRR',
                                       'volume': 'abs/1206.3959',
                                       'year': '2012'},
                              'url': 'URL#3161443'},
                             {'@id': '3161677',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '26/7058',
                                                               'text': 'Roger '
                                                                       'B. '
                                                                       'Grosse'},
                                                              {'@pid': '64/4254',
                                                               'text': 'Rajat '
                                                                       'Raina'},
                                                              {'@pid': '48/7442',
                                                               'text': 'Helen '
                                                                       'Kwong'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'http://arxiv.org/abs/1206.5241',
                                       'key': 'journals/corr/abs-1206-5241',
                                       'title': 'Shift-Invariance Sparse '
                                                'Coding for Audio '
                                                'Classification',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-1206-5241',
                                       'venue': 'CoRR',
                                       'volume': 'abs/1206.5241',
                                       'year': '2012'},
                              'url': 'URL#3161677'},
                             {'@id': '3162116',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': 'a/PieterAbbeel',
                                                               'text': 'Pieter '
                                                                       'Abbeel'},
                                                              {'@pid': 'k/DaphneKoller',
                                                               'text': 'Daphne '
                                                                       'Koller'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'http://arxiv.org/abs/1207.1366',
                                       'key': 'journals/corr/abs-1207-1366',
                                       'title': 'Learning Factor Graphs in '
                                                'Polynomial Time &amp; Sample '
                                                'Complexity',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-1207-1366',
                                       'venue': 'CoRR',
                                       'volume': 'abs/1207.1366',
                                       'year': '2012'},
                              'url': 'URL#3162116'},
                             {'@id': '3182035',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '58/2562',
                                                               'text': 'Honglak '
                                                                       'Lee'},
                                                              {'@pid': '26/7058',
                                                               'text': 'Roger '
                                                                       'B. '
                                                                       'Grosse'},
                                                              {'@pid': '97/7057',
                                                               'text': 'Rajesh '
                                                                       'Ranganath'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1145/2001269.2001295',
                                       'ee': 'https://doi.org/10.1145/2001269.2001295',
                                       'key': 'journals/cacm/LeeGRN11',
                                       'number': '10',
                                       'pages': '95-103',
                                       'title': 'Unsupervised learning of '
                                                'hierarchical representations '
                                                'with convolutional deep '
                                                'belief networks.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/cacm/LeeGRN11',
                                       'venue': 'Commun. ACM',
                                       'volume': '54',
                                       'year': '2011'},
                              'url': 'URL#3182035'},
                             {'@id': '3211921',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '67/2526',
                                                               'text': 'J. '
                                                                       'Zico '
                                                                       'Kolter'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1177/0278364910390537',
                                       'ee': 'https://doi.org/10.1177/0278364910390537',
                                       'key': 'journals/ijrr/KolterN11',
                                       'number': '2',
                                       'pages': '150-174',
                                       'title': 'The Stanford LittleDog - A '
                                                'learning and rapid replanning '
                                                'approach to quadruped '
                                                'locomotion.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/ijrr/KolterN11',
                                       'venue': 'Int. J. Robotics Res.',
                                       'volume': '30',
                                       'year': '2011'},
                              'url': 'URL#3211921'},
                             {'@id': '3289973',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '29/6166',
                                                               'text': 'Quoc '
                                                                       'V. Le'},
                                                              {'@pid': '95/9989',
                                                               'text': 'Will '
                                                                       'Y. '
                                                                       'Zou'},
                                                              {'@pid': '11/9990',
                                                               'text': 'Serena '
                                                                       'Y. '
                                                                       'Yeung'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1109/CVPR.2011.5995496',
                                       'ee': 'https://doi.org/10.1109/CVPR.2011.5995496',
                                       'key': 'conf/cvpr/LeZYN11',
                                       'pages': '3361-3368',
                                       'title': 'Learning hierarchical '
                                                'invariant spatio-temporal '
                                                'features for action '
                                                'recognition with independent '
                                                'subspace analysis.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/cvpr/LeZYN11',
                                       'venue': 'CVPR',
                                       'year': '2011'},
                              'url': 'URL#3289973'},
                             {'@id': '3299862',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '79/128',
                                                               'text': 'Richard '
                                                                       'Socher'},
                                                              {'@pid': '57/10489',
                                                               'text': 'Jeffrey '
                                                                       'Pennington'},
                                                              {'@pid': '63/10489',
                                                               'text': 'Eric '
                                                                       'H. '
                                                                       'Huang'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': 'm/ChristopherDManning',
                                                               'text': 'Christopher '
                                                                       'D. '
                                                                       'Manning'}]},
                                       'ee': 'https://aclanthology.org/D11-1014/',
                                       'key': 'conf/emnlp/SocherPHNM11',
                                       'pages': '151-161',
                                       'title': 'Semi-Supervised Recursive '
                                                'Autoencoders for Predicting '
                                                'Sentiment Distributions.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/emnlp/SocherPHNM11',
                                       'venue': 'EMNLP',
                                       'year': '2011'},
                              'url': 'URL#3299862'},
                             {'@id': '3323855',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '60/5515',
                                                               'text': 'Adam '
                                                                       'Coates'},
                                                              {'@pid': '72/8365',
                                                               'text': 'Blake '
                                                                       'Carpenter'},
                                                              {'@pid': '69/9967',
                                                               'text': 'Carl '
                                                                       'Case'},
                                                              {'@pid': '46/7573',
                                                               'text': 'Sanjeev '
                                                                       'Satheesh'},
                                                              {'@pid': '93/9962',
                                                               'text': 'Bipin '
                                                                       'Suresh'},
                                                              {'@pid': '12/5838',
                                                               'text': 'Tao '
                                                                       'Wang'},
                                                              {'@pid': '32/10400',
                                                               'text': 'David '
                                                                       'J. Wu'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1109/ICDAR.2011.95',
                                       'ee': 'https://doi.org/10.1109/ICDAR.2011.95',
                                       'key': 'conf/icdar/CoatesCCSSWWN11',
                                       'pages': '440-445',
                                       'title': 'Text Detection and Character '
                                                'Recognition in Scene Images '
                                                'with Unsupervised Feature '
                                                'Learning.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icdar/CoatesCCSSWWN11',
                                       'venue': 'ICDAR',
                                       'year': '2011'},
                              'url': 'URL#3323855'},
                             {'@id': '3331617',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '60/5515',
                                                               'text': 'Adam '
                                                                       'Coates'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'https://icml.cc/2011/papers/485_icmlpaper.pdf',
                                       'key': 'conf/icml/CoatesN11',
                                       'pages': '921-928',
                                       'title': 'The Importance of Encoding '
                                                'Versus Training with Sparse '
                                                'Coding and Vector '
                                                'Quantization.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icml/CoatesN11',
                                       'venue': 'ICML',
                                       'year': '2011'},
                              'url': 'URL#3331617'},
                             {'@id': '3331673',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '29/6166',
                                                               'text': 'Quoc '
                                                                       'V. Le'},
                                                              {'@pid': '72/8781',
                                                               'text': 'Jiquan '
                                                                       'Ngiam'},
                                                              {'@pid': '60/5515',
                                                               'text': 'Adam '
                                                                       'Coates'},
                                                              {'@pid': '85/10622',
                                                               'text': 'Ahbik '
                                                                       'Lahiri'},
                                                              {'@pid': '19/10624',
                                                               'text': 'Bobby '
                                                                       'Prochnow'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'https://icml.cc/2011/papers/210_icmlpaper.pdf',
                                       'key': 'conf/icml/LeNCLPN11',
                                       'pages': '265-272',
                                       'title': 'On optimization methods for '
                                                'deep learning.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icml/LeNCLPN11',
                                       'venue': 'ICML',
                                       'year': '2011'},
                              'url': 'URL#3331673'},
                             {'@id': '3331695',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '72/8781',
                                                               'text': 'Jiquan '
                                                                       'Ngiam'},
                                                              {'@pid': '88/10451',
                                                               'text': 'Zhenghao '
                                                                       'Chen'},
                                                              {'@pid': '10/10453',
                                                               'text': 'Pang '
                                                                       'Wei '
                                                                       'Koh'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'https://icml.cc/2011/papers/557_icmlpaper.pdf',
                                       'key': 'conf/icml/NgiamCKN11',
                                       'pages': '1105-1112',
                                       'title': 'Learning Deep Energy Models.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icml/NgiamCKN11',
                                       'venue': 'ICML',
                                       'year': '2011'},
                              'url': 'URL#3331695'},
                             {'@id': '3331696',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '72/8781',
                                                               'text': 'Jiquan '
                                                                       'Ngiam'},
                                                              {'@pid': '01/8315',
                                                               'text': 'Aditya '
                                                                       'Khosla'},
                                                              {'@pid': '64/10624',
                                                               'text': 'Mingyu '
                                                                       'Kim'},
                                                              {'@pid': '16/8308',
                                                               'text': 'Juhan '
                                                                       'Nam'},
                                                              {'@pid': '58/2562',
                                                               'text': 'Honglak '
                                                                       'Lee'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'https://icml.cc/2011/papers/399_icmlpaper.pdf',
                                       'key': 'conf/icml/NgiamKKNLN11',
                                       'pages': '689-696',
                                       'title': 'Multimodal Deep Learning.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icml/NgiamKKNLN11',
                                       'venue': 'ICML',
                                       'year': '2011'},
                              'url': 'URL#3331696'},
                             {'@id': '3331720',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '79/128',
                                                               'text': 'Richard '
                                                                       'Socher'},
                                                              {'@pid': '31/7450',
                                                               'text': 'Cliff '
                                                                       'Chiung-Yu '
                                                                       'Lin'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': 'm/ChristopherDManning',
                                                               'text': 'Christopher '
                                                                       'D. '
                                                                       'Manning'}]},
                                       'ee': 'https://icml.cc/2011/papers/125_icmlpaper.pdf',
                                       'key': 'conf/icml/SocherLNM11',
                                       'pages': '129-136',
                                       'title': 'Parsing Natural Scenes and '
                                                'Natural Language with '
                                                'Recursive Neural Networks.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icml/SocherLNM11',
                                       'venue': 'ICML',
                                       'year': '2011'},
                              'url': 'URL#3331720'},
                             {'@id': '3334586',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '69/9967',
                                                               'text': 'Carl '
                                                                       'Case'},
                                                              {'@pid': '93/9962',
                                                               'text': 'Bipin '
                                                                       'Suresh'},
                                                              {'@pid': '60/5515',
                                                               'text': 'Adam '
                                                                       'Coates'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1109/ICRA.2011.5980523',
                                       'ee': 'https://doi.org/10.1109/ICRA.2011.5980523',
                                       'key': 'conf/icra/CaseSCN11',
                                       'pages': '3297-3303',
                                       'title': 'Autonomous sign reading for '
                                                'semantic mapping.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icra/CaseSCN11',
                                       'venue': 'ICRA',
                                       'year': '2011'},
                              'url': 'URL#3334586'},
                             {'@id': '3334866',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '48/7792',
                                                               'text': 'Ellen '
                                                                       'Klingbeil'},
                                                              {'@pid': '50/9966',
                                                               'text': 'Deepak '
                                                                       'Rao'},
                                                              {'@pid': '72/8365',
                                                               'text': 'Blake '
                                                                       'Carpenter'},
                                                              {'@pid': '73/3944',
                                                               'text': 'Varun '
                                                                       'Ganapathi'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '77/811',
                                                               'text': 'Oussama '
                                                                       'Khatib'}]},
                                       'doi': '10.1109/ICRA.2011.5980287',
                                       'ee': 'https://doi.org/10.1109/ICRA.2011.5980287',
                                       'key': 'conf/icra/KlingbeilRCGNK11',
                                       'pages': '2837-2844',
                                       'title': 'Grasping with application to '
                                                'an autonomous checkout robot.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icra/KlingbeilRCGNK11',
                                       'venue': 'ICRA',
                                       'year': '2011'},
                              'url': 'URL#3334866'},
                             {'@id': '3335184',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '78/1197',
                                                               'text': 'Morgan '
                                                                       'Quigley'},
                                                              {'@pid': '42/6120',
                                                               'text': 'Alan '
                                                                       'T. '
                                                                       'Asbeck'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1109/ICRA.2011.5980332',
                                       'ee': 'https://doi.org/10.1109/ICRA.2011.5980332',
                                       'key': 'conf/icra/QuigleyAN11',
                                       'pages': '6051-6058',
                                       'title': 'A low-cost compliant 7-DOF '
                                                'robotic manipulator.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icra/QuigleyAN11',
                                       'venue': 'ICRA',
                                       'year': '2011'},
                              'url': 'URL#3335184'},
                             {'@id': '3368222',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '60/5515',
                                                               'text': 'Adam '
                                                                       'Coates'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'https://proceedings.neurips.cc/paper/2011/hash/6c1da886822c67822bcf3679d04369fa-Abstract.html',
                                       'key': 'conf/nips/CoatesN11',
                                       'pages': '2528-2536',
                                       'title': 'Selecting Receptive Fields in '
                                                'Deep Networks.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/nips/CoatesN11',
                                       'venue': 'NIPS',
                                       'year': '2011'},
                              'url': 'URL#3368222'},
                             {'@id': '3368336',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '29/6166',
                                                               'text': 'Quoc '
                                                                       'V. Le'},
                                                              {'@pid': '27/3000',
                                                               'text': 'Alexandre '
                                                                       'Karpenko'},
                                                              {'@pid': '72/8781',
                                                               'text': 'Jiquan '
                                                                       'Ngiam'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'https://proceedings.neurips.cc/paper/2011/hash/233509073ed3432027d48b1a83f5fbd2-Abstract.html',
                                       'key': 'conf/nips/LeKNN11',
                                       'pages': '1017-1025',
                                       'title': 'ICA with Reconstruction Cost '
                                                'for Efficient Overcomplete '
                                                'Feature Learning.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/nips/LeKNN11',
                                       'venue': 'NIPS',
                                       'year': '2011'},
                              'url': 'URL#3368336'},
                             {'@id': '3368377',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '72/8781',
                                                               'text': 'Jiquan '
                                                                       'Ngiam'},
                                                              {'@pid': '10/10453',
                                                               'text': 'Pang '
                                                                       'Wei '
                                                                       'Koh'},
                                                              {'@pid': '88/10451',
                                                               'text': 'Zhenghao '
                                                                       'Chen'},
                                                              {'@pid': '06/11107',
                                                               'text': 'Sonia '
                                                                       'A. '
                                                                       'Bhaskar'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'https://proceedings.neurips.cc/paper/2011/hash/192fc044e74dffea144f9ac5dc9f3395-Abstract.html',
                                       'key': 'conf/nips/NgiamKCBN11',
                                       'pages': '1125-1133',
                                       'title': 'Sparse Filtering.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/nips/NgiamKCBN11',
                                       'venue': 'NIPS',
                                       'year': '2011'},
                              'url': 'URL#3368377'},
                             {'@id': '3368432',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '79/128',
                                                               'text': 'Richard '
                                                                       'Socher'},
                                                              {'@pid': '63/10489',
                                                               'text': 'Eric '
                                                                       'H. '
                                                                       'Huang'},
                                                              {'@pid': '57/10489',
                                                               'text': 'Jeffrey '
                                                                       'Pennington'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': 'm/ChristopherDManning',
                                                               'text': 'Christopher '
                                                                       'D. '
                                                                       'Manning'}]},
                                       'ee': 'https://proceedings.neurips.cc/paper/2011/hash/3335881e06d4d23091389226225e17c7-Abstract.html',
                                       'key': 'conf/nips/SocherHPNM11',
                                       'pages': '801-809',
                                       'title': 'Dynamic Pooling and Unfolding '
                                                'Recursive Autoencoders for '
                                                'Paraphrase Detection.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/nips/SocherHPNM11',
                                       'venue': 'NIPS',
                                       'year': '2011'},
                              'url': 'URL#3368432'},
                             {'@id': '3396604',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '60/5515',
                                                               'text': 'Adam '
                                                                       'Coates'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '58/2562',
                                                               'text': 'Honglak '
                                                                       'Lee'}]},
                                       'ee': 'http://proceedings.mlr.press/v15/coates11a/coates11a.pdf',
                                       'key': 'journals/jmlr/CoatesNL11',
                                       'pages': '215-223',
                                       'title': 'An Analysis of Single-Layer '
                                                'Networks in Unsupervised '
                                                'Feature Learning.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/journals/jmlr/CoatesNL11',
                                       'venue': 'AISTATS',
                                       'year': '2011'},
                              'url': 'URL#3396604'},
                             {'@id': '3414726',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '29/6166',
                                                               'text': 'Quoc '
                                                                       'V. Le'},
                                                              {'@pid': '99/10669',
                                                               'text': 'Rajat '
                                                                       'Monga'},
                                                              {'@pid': '23/2143',
                                                               'text': 'Matthieu '
                                                                       'Devin'},
                                                              {'@pid': '05/8414',
                                                               'text': 'Greg '
                                                                       'Corrado'},
                                                              {'@pid': 'c/KaiChen10',
                                                               'text': 'Kai '
                                                                       'Chen '
                                                                       '0010'},
                                                              {'@pid': '28/1732',
                                                               'text': 'Marc&apos;Aurelio '
                                                                       'Ranzato'},
                                                              {'@pid': 'd/JeffreyDean',
                                                               'text': 'Jeffrey '
                                                                       'Dean'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'http://arxiv.org/abs/1112.6209',
                                       'key': 'journals/corr/abs-1112-6209',
                                       'title': 'Building high-level features '
                                                'using large scale '
                                                'unsupervised learning',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-1112-6209',
                                       'venue': 'CoRR',
                                       'volume': 'abs/1112.6209',
                                       'year': '2011'},
                              'url': 'URL#3414726'},
                             {'@id': '3456317',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': 'a/PieterAbbeel',
                                                               'text': 'Pieter '
                                                                       'Abbeel'},
                                                              {'@pid': '60/5515',
                                                               'text': 'Adam '
                                                                       'Coates'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1177/0278364910371999',
                                       'ee': 'https://doi.org/10.1177/0278364910371999',
                                       'key': 'journals/ijrr/AbbeelCN10',
                                       'number': '13',
                                       'pages': '1608-1639',
                                       'title': 'Autonomous Helicopter '
                                                'Aerobatics through '
                                                'Apprenticeship Learning.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/ijrr/AbbeelCN10',
                                       'venue': 'Int. J. Robotics Res.',
                                       'volume': '29',
                                       'year': '2010'},
                              'url': 'URL#3456317'},
                             {'@id': '3505331',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '78/1197',
                                                               'text': 'Morgan '
                                                                       'Quigley'},
                                                              {'@pid': '42/6120',
                                                               'text': 'Alan '
                                                                       'T. '
                                                                       'Asbeck'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'http://www.aaai.org/ocs/index.php/WS/ROBOT10/paper/view/2343',
                                       'key': 'conf/aaai/QuigleyAN10',
                                       'title': 'Low-Cost Manipulation Powered '
                                                'by ROS.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/aaai/QuigleyAN10',
                                       'venue': 'Enabling Intelligence through '
                                                'Middleware',
                                       'year': '2010'},
                              'url': 'URL#3505331'},
                             {'@id': '3527763',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '52/6883',
                                                               'text': 'Olga '
                                                                       'Russakovsky'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1109/CVPR.2010.5540097',
                                       'ee': 'https://doi.org/10.1109/CVPR.2010.5540097',
                                       'key': 'conf/cvpr/RussakovskyN10',
                                       'pages': '1070-1077',
                                       'title': 'A Steiner tree approach to '
                                                'efficient object detection.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/cvpr/RussakovskyN10',
                                       'venue': 'CVPR',
                                       'year': '2010'},
                              'url': 'URL#3527763'},
                             {'@id': '3565778',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '60/5515',
                                                               'text': 'Adam '
                                                                       'Coates'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1109/ROBOT.2010.5509644',
                                       'ee': 'https://doi.org/10.1109/ROBOT.2010.5509644',
                                       'key': 'conf/icra/CoatesN10',
                                       'pages': '412-419',
                                       'title': 'Multi-camera object detection '
                                                'for robotics.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icra/CoatesN10',
                                       'venue': 'ICRA',
                                       'year': '2010'},
                              'url': 'URL#3565778'},
                             {'@id': '3566017',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '48/7792',
                                                               'text': 'Ellen '
                                                                       'Klingbeil'},
                                                              {'@pid': '72/8365',
                                                               'text': 'Blake '
                                                                       'Carpenter'},
                                                              {'@pid': '52/6883',
                                                               'text': 'Olga '
                                                                       'Russakovsky'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1109/ROBOT.2010.5509466',
                                       'ee': 'https://doi.org/10.1109/ROBOT.2010.5509466',
                                       'key': 'conf/icra/KlingbeilCRN10',
                                       'pages': '751-758',
                                       'title': 'Autonomous operation of novel '
                                                'elevators for robot '
                                                'navigation.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icra/KlingbeilCRN10',
                                       'venue': 'ICRA',
                                       'year': '2010'},
                              'url': 'URL#3566017'},
                             {'@id': '3566026',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '67/2526',
                                                               'text': 'J. '
                                                                       'Zico '
                                                                       'Kolter'},
                                                              {'@pid': '00/5624',
                                                               'text': 'Christian '
                                                                       'Plagemann'},
                                                              {'@pid': '58/8368',
                                                               'text': 'David '
                                                                       'T. '
                                                                       'Jackson'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': 't/SebastianThrun',
                                                               'text': 'Sebastian '
                                                                       'Thrun'}]},
                                       'doi': '10.1109/ROBOT.2010.5509562',
                                       'ee': 'https://doi.org/10.1109/ROBOT.2010.5509562',
                                       'key': 'conf/icra/KolterPJNT10',
                                       'pages': '839-845',
                                       'title': 'A probabilistic approach to '
                                                'mixed open-loop and '
                                                'closed-loop control, with '
                                                'application to extreme '
                                                'autonomous driving.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icra/KolterPJNT10',
                                       'venue': 'ICRA',
                                       'year': '2010'},
                              'url': 'URL#3566026'},
                             {'@id': '3566058',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '29/6166',
                                                               'text': 'Quoc '
                                                                       'V. Le'},
                                                              {'@pid': '41/8370',
                                                               'text': 'David '
                                                                       'Kamm'},
                                                              {'@pid': '87/8368',
                                                               'text': 'A. F. '
                                                                       'Kara'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1109/ROBOT.2010.5509508',
                                       'ee': 'https://doi.org/10.1109/ROBOT.2010.5509508',
                                       'key': 'conf/icra/LeKKN10',
                                       'pages': '5062-5069',
                                       'title': 'Learning to grasp objects '
                                                'with multiple contact points.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icra/LeKKN10',
                                       'venue': 'ICRA',
                                       'year': '2010'},
                              'url': 'URL#3566058'},
                             {'@id': '3578673',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '48/7792',
                                                               'text': 'Ellen '
                                                                       'Klingbeil'},
                                                              {'@pid': '82/6189',
                                                               'text': 'Ashutosh '
                                                                       'Saxena'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1109/IROS.2010.5649847',
                                       'ee': 'https://doi.org/10.1109/IROS.2010.5649847',
                                       'key': 'conf/iros/KlingbeilSN10',
                                       'pages': '2751-2757',
                                       'title': 'Learning to open new doors.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/iros/KlingbeilSN10',
                                       'venue': 'IROS',
                                       'year': '2010'},
                              'url': 'URL#3578673'},
                             {'@id': '3578944',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '78/1197',
                                                               'text': 'Morgan '
                                                                       'Quigley'},
                                                              {'@pid': '40/8366',
                                                               'text': 'Reuben '
                                                                       'D. '
                                                                       'Brewer'},
                                                              {'@pid': '87/7743',
                                                               'text': 'Sai '
                                                                       'Prashanth '
                                                                       'Soundararaj'},
                                                              {'@pid': '48/7441',
                                                               'text': 'Vijay '
                                                                       'Pradeep'},
                                                              {'@pid': '29/6166',
                                                               'text': 'Quoc '
                                                                       'V. Le'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1109/IROS.2010.5649804',
                                       'ee': 'https://doi.org/10.1109/IROS.2010.5649804',
                                       'key': 'conf/iros/QuigleyBSPLN10',
                                       'pages': '6168-6174',
                                       'title': 'Low-cost accelerometers for '
                                                'robotic manipulator '
                                                'perception.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/iros/QuigleyBSPLN10',
                                       'venue': 'IROS',
                                       'year': '2010'},
                              'url': 'URL#3578944'},
                             {'@id': '3578954',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '50/9966',
                                                               'text': 'Deepak '
                                                                       'Rao'},
                                                              {'@pid': '29/6166',
                                                               'text': 'Quoc '
                                                                       'V. Le'},
                                                              {'@pid': '80/1165',
                                                               'text': 'Thanathorn '
                                                                       'Phoka'},
                                                              {'@pid': '78/1197',
                                                               'text': 'Morgan '
                                                                       'Quigley'},
                                                              {'@pid': '87/5655',
                                                               'text': 'Attawith '
                                                                       'Sudsang'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1109/IROS.2010.5650493',
                                       'ee': 'https://doi.org/10.1109/IROS.2010.5650493',
                                       'key': 'conf/iros/RaoLPQSN10',
                                       'pages': '2578-2585',
                                       'title': 'Grasping novel objects with '
                                                'depth segmentation.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/iros/RaoLPQSN10',
                                       'venue': 'IROS',
                                       'year': '2010'},
                              'url': 'URL#3578954'},
                             {'@id': '3598231',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '67/2526',
                                                               'text': 'J. '
                                                                       'Zico '
                                                                       'Kolter'},
                                                              {'@pid': '65/7464',
                                                               'text': 'Siddharth '
                                                                       'Batra'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'https://proceedings.neurips.cc/paper/2010/hash/7810ccd41bf26faaa2c4e1f20db70a71-Abstract.html',
                                       'key': 'conf/nips/KolterBN10',
                                       'pages': '1153-1161',
                                       'title': 'Energy Disaggregation via '
                                                'Discriminative Sparse Coding.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/nips/KolterBN10',
                                       'venue': 'NIPS',
                                       'year': '2010'},
                              'url': 'URL#3598231'},
                             {'@id': '3598244',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '29/6166',
                                                               'text': 'Quoc '
                                                                       'V. Le'},
                                                              {'@pid': '72/8781',
                                                               'text': 'Jiquan '
                                                                       'Ngiam'},
                                                              {'@pid': '88/10451',
                                                               'text': 'Zhenghao '
                                                                       'Chen'},
                                                              {'@pid': '57/10453',
                                                               'text': 'Daniel '
                                                                       'Jin '
                                                                       'hao '
                                                                       'Chia'},
                                                              {'@pid': '10/10453',
                                                               'text': 'Pang '
                                                                       'Wei '
                                                                       'Koh'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'https://proceedings.neurips.cc/paper/2010/hash/01f78be6f7cad02658508fe4616098a9-Abstract.html',
                                       'key': 'conf/nips/LeNCCKN10',
                                       'pages': '1279-1287',
                                       'title': 'Tiled convolutional neural '
                                                'networks.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/nips/LeNCCKN10',
                                       'venue': 'NIPS',
                                       'year': '2010'},
                              'url': 'URL#3598244'},
                             {'@id': '3631460',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': 'a/PieterAbbeel',
                                                               'text': 'Pieter '
                                                                       'Abbeel'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1007/978-0-387-30164-8_417',
                                       'ee': 'https://doi.org/10.1007/978-0-387-30164-8_417',
                                       'key': 'reference/ml/AbbeelN10',
                                       'pages': '554-558',
                                       'title': 'Inverse Reinforcement '
                                                'Learning.',
                                       'type': 'Reference Works',
                                       'url': 'https://dblp.org/rec/reference/ml/AbbeelN10',
                                       'venue': 'Encyclopedia of Machine '
                                                'Learning',
                                       'year': '2010'},
                              'url': 'URL#3631460'},
                             {'@id': '3631489',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '60/5515',
                                                               'text': 'Adam '
                                                                       'Coates'},
                                                              {'@pid': 'a/PieterAbbeel',
                                                               'text': 'Pieter '
                                                                       'Abbeel'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1007/978-0-387-30164-8_45',
                                       'ee': 'https://doi.org/10.1007/978-0-387-30164-8_45',
                                       'key': 'reference/ml/CoatesAN10',
                                       'pages': '53-61',
                                       'title': 'Autonomous Helicopter Flight '
                                                'Using Reinforcement Learning.',
                                       'type': 'Reference Works',
                                       'url': 'https://dblp.org/rec/reference/ml/CoatesAN10',
                                       'venue': 'Encyclopedia of Machine '
                                                'Learning',
                                       'year': '2010'},
                              'url': 'URL#3631489'},
                             {'@id': '3649135',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': 'p/JanPeters1',
                                                               'text': 'Jan '
                                                                       'Peters '
                                                                       '0001'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1007/S10514-009-9122-2',
                                       'ee': 'https://doi.org/10.1007/s10514-009-9122-2',
                                       'key': 'journals/arobots/PetersN09',
                                       'number': '1',
                                       'pages': '1-2',
                                       'title': 'Guest editorial - Special '
                                                'issue on robot learning, Part '
                                                'A.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/arobots/PetersN09',
                                       'venue': 'Auton. Robots',
                                       'volume': '27',
                                       'year': '2009'},
                              'url': 'URL#3649135'},
                             {'@id': '3649136',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': 'p/JanPeters1',
                                                               'text': 'Jan '
                                                                       'Peters '
                                                                       '0001'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1007/S10514-009-9131-1',
                                       'ee': 'https://doi.org/10.1007/s10514-009-9131-1',
                                       'key': 'journals/arobots/PetersN09a',
                                       'number': '2',
                                       'pages': '91-92',
                                       'title': 'Guest editorial - Special '
                                                'issue on robot learning, Part '
                                                'B.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/arobots/PetersN09a',
                                       'venue': 'Auton. Robots',
                                       'volume': '27',
                                       'year': '2009'},
                              'url': 'URL#3649136'},
                             {'@id': '3652564',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '60/5515',
                                                               'text': 'Adam '
                                                                       'Coates'},
                                                              {'@pid': 'a/PieterAbbeel',
                                                               'text': 'Pieter '
                                                                       'Abbeel'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1145/1538788.1538812',
                                       'ee': 'https://doi.org/10.1145/1538788.1538812',
                                       'key': 'journals/cacm/CoatesAN09',
                                       'number': '7',
                                       'pages': '97-105',
                                       'title': 'Apprenticeship learning for '
                                                'helicopter control.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/cacm/CoatesAN09',
                                       'venue': 'Commun. ACM',
                                       'volume': '52',
                                       'year': '2009'},
                              'url': 'URL#3652564'},
                             {'@id': '3701990',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '82/6189',
                                                               'text': 'Ashutosh '
                                                                       'Saxena'},
                                                              {'@pid': '62/2750',
                                                               'text': 'Min '
                                                                       'Sun'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1109/TPAMI.2008.132',
                                       'ee': 'https://doi.org/10.1109/TPAMI.2008.132',
                                       'key': 'journals/pami/SaxenaSN09',
                                       'number': '5',
                                       'pages': '824-840',
                                       'title': 'Make3D - Learning 3D Scene '
                                                'Structure from a Single Still '
                                                'Image.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/pami/SaxenaSN09',
                                       'venue': 'IEEE Trans. Pattern Anal. '
                                                'Mach. Intell.',
                                       'volume': '31',
                                       'year': '2009'},
                              'url': 'URL#3701990'},
                             {'@id': '3786014',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '73/1823',
                                                               'text': 'Chuan-Sheng '
                                                                       'Foo'},
                                                              {'@pid': '58/2809',
                                                               'text': 'Chuong '
                                                                       'B. Do'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1145/1553374.1553415',
                                       'ee': 'https://doi.org/10.1145/1553374.1553415',
                                       'key': 'conf/icml/FooDN09',
                                       'pages': '321-328',
                                       'title': 'A majorization-minimization '
                                                'algorithm for (multiple) '
                                                'hyperparameter learning.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icml/FooDN09',
                                       'venue': 'ICML',
                                       'year': '2009'},
                              'url': 'URL#3786014'},
                             {'@id': '3786038',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '67/2526',
                                                               'text': 'J. '
                                                                       'Zico '
                                                                       'Kolter'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1145/1553374.1553441',
                                       'ee': 'https://doi.org/10.1145/1553374.1553441',
                                       'key': 'conf/icml/KolterN09',
                                       'pages': '513-520',
                                       'title': 'Near-Bayesian exploration in '
                                                'polynomial time.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icml/KolterN09',
                                       'venue': 'ICML',
                                       'year': '2009'},
                              'url': 'URL#3786038'},
                             {'@id': '3786039',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '67/2526',
                                                               'text': 'J. '
                                                                       'Zico '
                                                                       'Kolter'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1145/1553374.1553442',
                                       'ee': 'https://doi.org/10.1145/1553374.1553442',
                                       'key': 'conf/icml/KolterN09a',
                                       'pages': '521-528',
                                       'title': 'Regularization and feature '
                                                'selection in least-squares '
                                                'temporal difference learning.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icml/KolterN09a',
                                       'venue': 'ICML',
                                       'year': '2009'},
                              'url': 'URL#3786039'},
                             {'@id': '3786050',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '58/2562',
                                                               'text': 'Honglak '
                                                                       'Lee'},
                                                              {'@pid': '26/7058',
                                                               'text': 'Roger '
                                                                       'B. '
                                                                       'Grosse'},
                                                              {'@pid': '97/7057',
                                                               'text': 'Rajesh '
                                                                       'Ranganath'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1145/1553374.1553453',
                                       'ee': 'https://doi.org/10.1145/1553374.1553453',
                                       'key': 'conf/icml/LeeGRN09',
                                       'pages': '609-616',
                                       'title': 'Convolutional deep belief '
                                                'networks for scalable '
                                                'unsupervised learning of '
                                                'hierarchical representations.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icml/LeeGRN09',
                                       'venue': 'ICML',
                                       'year': '2009'},
                              'url': 'URL#3786050'},
                             {'@id': '3786087',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '64/4254',
                                                               'text': 'Rajat '
                                                                       'Raina'},
                                                              {'@pid': '62/7056',
                                                               'text': 'Anand '
                                                                       'Madhavan'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1145/1553374.1553486',
                                       'ee': 'https://doi.org/10.1145/1553374.1553486',
                                       'key': 'conf/icml/RainaMN09',
                                       'pages': '873-880',
                                       'title': 'Large-scale deep unsupervised '
                                                'learning using graphics '
                                                'processors.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icml/RainaMN09',
                                       'venue': 'ICML',
                                       'year': '2009'},
                              'url': 'URL#3786087'},
                             {'@id': '3788376',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '43/6738',
                                                               'text': 'Kaijen '
                                                                       'Hsiao'},
                                                              {'@pid': '35/7793',
                                                               'text': 'Paul '
                                                                       'Nangeroni'},
                                                              {'@pid': '81/682',
                                                               'text': 'Manfred '
                                                                       'Huber'},
                                                              {'@pid': '82/6189',
                                                               'text': 'Ashutosh '
                                                                       'Saxena'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1109/ROBOT.2009.5152849',
                                       'ee': 'https://doi.org/10.1109/ROBOT.2009.5152849',
                                       'key': 'conf/icra/HsiaoNHSN09',
                                       'pages': '2098-2105',
                                       'title': 'Reactive grasping using '
                                                'optical proximity sensors.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icra/HsiaoNHSN09',
                                       'venue': 'ICRA',
                                       'year': '2009'},
                              'url': 'URL#3788376'},
                             {'@id': '3788456',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '67/2526',
                                                               'text': 'J. '
                                                                       'Zico '
                                                                       'Kolter'},
                                                              {'@pid': '34/3252',
                                                               'text': 'Youngjun '
                                                                       'Kim'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1109/ROBOT.2009.5152795',
                                       'ee': 'https://doi.org/10.1109/ROBOT.2009.5152795',
                                       'key': 'conf/icra/KolterKN09',
                                       'pages': '1557-1564',
                                       'title': 'Stereo vision and terrain '
                                                'modeling for quadruped '
                                                'robots.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icra/KolterKN09',
                                       'venue': 'ICRA',
                                       'year': '2009'},
                              'url': 'URL#3788456'},
                             {'@id': '3788457',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '67/2526',
                                                               'text': 'J. '
                                                                       'Zico '
                                                                       'Kolter'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1109/ROBOT.2009.5152554',
                                       'ee': 'https://doi.org/10.1109/ROBOT.2009.5152554',
                                       'key': 'conf/icra/KolterN09',
                                       'pages': '1675-1682',
                                       'title': 'Task-space trajectories via '
                                                'cubic spline optimization.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icra/KolterN09',
                                       'venue': 'ICRA',
                                       'year': '2009'},
                              'url': 'URL#3788457'},
                             {'@id': '3788646',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '78/1197',
                                                               'text': 'Morgan '
                                                                       'Quigley'},
                                                              {'@pid': '65/7464',
                                                               'text': 'Siddharth '
                                                                       'Batra'},
                                                              {'@pid': '89/1569',
                                                               'text': 'Stephen '
                                                                       'Gould'},
                                                              {'@pid': '48/7792',
                                                               'text': 'Ellen '
                                                                       'Klingbeil'},
                                                              {'@pid': '29/6166',
                                                               'text': 'Quoc '
                                                                       'V. Le'},
                                                              {'@pid': '77/7793',
                                                               'text': 'Ashley '
                                                                       'Wellman'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1109/ROBOT.2009.5152750',
                                       'ee': 'https://doi.org/10.1109/ROBOT.2009.5152750',
                                       'key': 'conf/icra/QuigleyBGKLWN09',
                                       'pages': '2816-2822',
                                       'title': 'High-accuracy 3D sensing for '
                                                'mobile manipulation - '
                                                'Improving object detection '
                                                'and door opening.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icra/QuigleyBGKLWN09',
                                       'venue': 'ICRA',
                                       'year': '2009'},
                              'url': 'URL#3788646'},
                             {'@id': '3788681',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '82/6189',
                                                               'text': 'Ashutosh '
                                                                       'Saxena'},
                                                              {'@pid': '88/6457',
                                                               'text': 'Justin '
                                                                       'Driemeyer'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1109/ROBOT.2009.5152855',
                                       'ee': 'https://doi.org/10.1109/ROBOT.2009.5152855',
                                       'key': 'conf/icra/SaxenaDN09',
                                       'pages': '794-800',
                                       'title': 'Learning 3-D object '
                                                'orientation from images.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icra/SaxenaDN09',
                                       'venue': 'ICRA',
                                       'year': '2009'},
                              'url': 'URL#3788681'},
                             {'@id': '3788682',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '82/6189',
                                                               'text': 'Ashutosh '
                                                                       'Saxena'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1109/ROBOT.2009.5152861',
                                       'ee': 'https://doi.org/10.1109/ROBOT.2009.5152861',
                                       'key': 'conf/icra/SaxenaN09',
                                       'pages': '1737-1742',
                                       'title': 'Learning sound location from '
                                                'a single microphone.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icra/SaxenaN09',
                                       'venue': 'ICRA',
                                       'year': '2009'},
                              'url': 'URL#3788682'},
                             {'@id': '3794780',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '58/2562',
                                                               'text': 'Honglak '
                                                                       'Lee'},
                                                              {'@pid': '64/4254',
                                                               'text': 'Rajat '
                                                                       'Raina'},
                                                              {'@pid': '50/7395',
                                                               'text': 'Alex '
                                                                       'Teichman'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'http://ijcai.org/Proceedings/09/Papers/188.pdf',
                                       'key': 'conf/ijcai/LeeRTN09',
                                       'pages': '1113-1119',
                                       'title': 'Exponential Family Sparse '
                                                'Coding with Application to '
                                                'Self-taught Learning.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/ijcai/LeeRTN09',
                                       'venue': 'IJCAI',
                                       'year': '2009'},
                              'url': 'URL#3794780'},
                             {'@id': '3799785',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '60/5515',
                                                               'text': 'Adam '
                                                                       'Coates'},
                                                              {'@pid': '47/3568',
                                                               'text': 'Paul '
                                                                       'Baumstarck'},
                                                              {'@pid': '29/6166',
                                                               'text': 'Quoc '
                                                                       'V. Le'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1109/IROS.2009.5354084',
                                       'ee': 'https://doi.org/10.1109/IROS.2009.5354084',
                                       'key': 'conf/iros/CoatesBLN09',
                                       'pages': '4287-4293',
                                       'title': 'Scalable learning for object '
                                                'detection with GPU hardware.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/iros/CoatesBLN09',
                                       'venue': 'IROS',
                                       'year': '2009'},
                              'url': 'URL#3799785'},
                             {'@id': '3800072',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '29/6166',
                                                               'text': 'Quoc '
                                                                       'V. Le'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1109/IROS.2009.5354272',
                                       'ee': 'https://doi.org/10.1109/IROS.2009.5354272',
                                       'key': 'conf/iros/LeN09',
                                       'pages': '3651-3658',
                                       'title': 'Joint calibration of multiple '
                                                'sensors.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/iros/LeN09',
                                       'venue': 'IROS',
                                       'year': '2009'},
                              'url': 'URL#3800072'},
                             {'@id': '3818598',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '58/2562',
                                                               'text': 'Honglak '
                                                                       'Lee'},
                                                              {'@pid': '47/9768',
                                                               'text': 'Peter '
                                                                       'T. '
                                                                       'Pham'},
                                                              {'@pid': '48/10432',
                                                               'text': 'Yan '
                                                                       'Largman'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'https://proceedings.neurips.cc/paper/2009/hash/a113c1ecd3cace2237256f4c712f61b5-Abstract.html',
                                       'key': 'conf/nips/LeePLN09',
                                       'pages': '1096-1104',
                                       'title': 'Unsupervised feature learning '
                                                'for audio classification '
                                                'using convolutional deep '
                                                'belief networks.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/nips/LeePLN09',
                                       'venue': 'NIPS',
                                       'year': '2009'},
                              'url': 'URL#3818598'},
                             {'@id': '3825825',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '67/2526',
                                                               'text': 'J. '
                                                                       'Zico '
                                                                       'Kolter'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.15607/RSS.2009.V.027',
                                       'ee': 'http://www.roboticsproceedings.org/rss05/p27.html',
                                       'key': 'conf/rss/KolterN09',
                                       'title': 'Policy search via the signed '
                                                'derivative.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/rss/KolterN09',
                                       'venue': 'Robotics - Science and '
                                                'Systems',
                                       'year': '2009'},
                              'url': 'URL#3825825'},
                             {'@id': '3837619',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '12/7983',
                                                               'text': 'Savil '
                                                                       'Srivastava'},
                                                              {'@pid': '82/6189',
                                                               'text': 'Ashutosh '
                                                                       'Saxena'},
                                                              {'@pid': '55/3346',
                                                               'text': 'Christian '
                                                                       'Theobalt'},
                                                              {'@pid': 't/SebastianThrun',
                                                               'text': 'Sebastian '
                                                                       'Thrun'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'key': 'conf/vmv/SrivastavaSTTN09',
                                       'pages': '19-28',
                                       'title': 'i23 - Rapid Interactive 3D '
                                                'Reconstruction from a Single '
                                                'Image.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/vmv/SrivastavaSTTN09',
                                       'venue': 'VMV',
                                       'year': '2009'},
                              'url': 'URL#3837619'},
                             {'@id': '3849057',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': 'b/JeffABilmes',
                                                               'text': 'Jeff '
                                                                       'A. '
                                                                       'Bilmes'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'https://dslpitt.org/uai/displayArticles.jsp?mmnu=1&amp;smnu=1&amp;proceeding_id=25',
                                       'key': 'conf/uai/2009',
                                       'publisher': 'AUAI Press',
                                       'title': 'UAI 2009, Proceedings of the '
                                                'Twenty-Fifth Conference on '
                                                'Uncertainty in Artificial '
                                                'Intelligence, Montreal, QC, '
                                                'Canada, June 18-21, 2009',
                                       'type': 'Editorship',
                                       'url': 'https://dblp.org/rec/conf/uai/2009',
                                       'venue': 'UAI',
                                       'year': '2009'},
                              'url': 'URL#3849057'},
                             {'@id': '3894194',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '82/6189',
                                                               'text': 'Ashutosh '
                                                                       'Saxena'},
                                                              {'@pid': '37/4573',
                                                               'text': 'Sung '
                                                                       'H. '
                                                                       'Chung'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1007/S11263-007-0071-Y',
                                       'ee': 'https://doi.org/10.1007/s11263-007-0071-y',
                                       'key': 'journals/ijcv/SaxenaCN08',
                                       'number': '1',
                                       'pages': '53-69',
                                       'title': '3-D Depth Reconstruction from '
                                                'a Single Still Image.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/ijcv/SaxenaCN08',
                                       'venue': 'Int. J. Comput. Vis.',
                                       'volume': '76',
                                       'year': '2008'},
                              'url': 'URL#3894194'},
                             {'@id': '3897362',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '82/6189',
                                                               'text': 'Ashutosh '
                                                                       'Saxena'},
                                                              {'@pid': '88/6457',
                                                               'text': 'Justin '
                                                                       'Driemeyer'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1177/0278364907087172',
                                       'ee': 'https://doi.org/10.1177/0278364907087172',
                                       'key': 'journals/ijrr/SaxenaDN08',
                                       'number': '2',
                                       'pages': '157-173',
                                       'title': 'Robotic Grasping of Novel '
                                                'Objects using Vision.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/ijrr/SaxenaDN08',
                                       'venue': 'Int. J. Robotics Res.',
                                       'volume': '27',
                                       'year': '2008'},
                              'url': 'URL#3897362'},
                             {'@id': '3939268',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '54/5582',
                                                               'text': 'Benjamin '
                                                                       'Sapp'},
                                                              {'@pid': '82/6189',
                                                               'text': 'Ashutosh '
                                                                       'Saxena'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'http://www.aaai.org/Library/AAAI/2008/aaai08-222.php',
                                       'key': 'conf/aaai/SappSN08',
                                       'pages': '1402-1408',
                                       'title': 'A Fast Data Collection and '
                                                'Augmentation Procedure for '
                                                'Object Recognition.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/aaai/SappSN08',
                                       'venue': 'AAAI',
                                       'year': '2008'},
                              'url': 'URL#3939268'},
                             {'@id': '3939269',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '82/6189',
                                                               'text': 'Ashutosh '
                                                                       'Saxena'},
                                                              {'@pid': '62/2750',
                                                               'text': 'Min '
                                                                       'Sun'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'http://www.aaai.org/Library/AAAI/2008/aaai08-265.php',
                                       'key': 'conf/aaai/SaxenaSN08',
                                       'pages': '1571-1576',
                                       'title': 'Make3D - Depth Perception '
                                                'from a Single Still Image.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/aaai/SaxenaSN08',
                                       'venue': 'AAAI',
                                       'year': '2008'},
                              'url': 'URL#3939269'},
                             {'@id': '3939270',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '82/6189',
                                                               'text': 'Ashutosh '
                                                                       'Saxena'},
                                                              {'@pid': '35/2573',
                                                               'text': 'Lawson '
                                                                       'L. S. '
                                                                       'Wong'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'http://www.aaai.org/Library/AAAI/2008/aaai08-246.php',
                                       'key': 'conf/aaai/SaxenaWN08',
                                       'pages': '1491-1494',
                                       'title': 'Learning Grasp Strategies '
                                                'with Partial Shape '
                                                'Information.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/aaai/SaxenaWN08',
                                       'venue': 'AAAI',
                                       'year': '2008'},
                              'url': 'URL#3939270'},
                             {'@id': '3969010',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '42/1066',
                                                               'text': 'Rion '
                                                                       'Snow'},
                                                              {'@pid': '10/1481',
                                                               'text': 'Brendan '
                                                                       'O&apos;Connor'},
                                                              {'@pid': '31/985',
                                                               'text': 'Daniel '
                                                                       'Jurafsky'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'https://aclanthology.org/D08-1027/',
                                       'key': 'conf/emnlp/SnowOJN08',
                                       'pages': '254-263',
                                       'title': 'Cheap and Fast - But is it '
                                                'Good? Evaluating Non-Expert '
                                                'Annotations for Natural '
                                                'Language Tasks.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/emnlp/SnowOJN08',
                                       'venue': 'EMNLP',
                                       'year': '2008'},
                              'url': 'URL#3969010'},
                             {'@id': '3993283',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '60/5515',
                                                               'text': 'Adam '
                                                                       'Coates'},
                                                              {'@pid': 'a/PieterAbbeel',
                                                               'text': 'Pieter '
                                                                       'Abbeel'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1145/1390156.1390175',
                                       'ee': 'https://doi.org/10.1145/1390156.1390175',
                                       'key': 'conf/icml/CoatesAN08',
                                       'pages': '144-151',
                                       'title': 'Learning for control from '
                                                'multiple demonstrations.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icml/CoatesAN08',
                                       'venue': 'ICML',
                                       'year': '2008'},
                              'url': 'URL#3993283'},
                             {'@id': '3993326',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '67/2526',
                                                               'text': 'J. '
                                                                       'Zico '
                                                                       'Kolter'},
                                                              {'@pid': '60/5515',
                                                               'text': 'Adam '
                                                                       'Coates'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '83/5894',
                                                               'text': 'Yi Gu'},
                                                              {'@pid': '00/5982',
                                                               'text': 'Charles '
                                                                       'DuHadway'}]},
                                       'doi': '10.1145/1390156.1390218',
                                       'ee': 'https://doi.org/10.1145/1390156.1390218',
                                       'key': 'conf/icml/KolterCNGD08',
                                       'pages': '488-495',
                                       'title': 'Space-indexed dynamic '
                                                'programming - learning to '
                                                'follow trajectories.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icml/KolterCNGD08',
                                       'venue': 'ICML',
                                       'year': '2008'},
                              'url': 'URL#3993326'},
                             {'@id': '3997237',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '67/2526',
                                                               'text': 'J. '
                                                                       'Zico '
                                                                       'Kolter'},
                                                              {'@pid': '68/3999',
                                                               'text': 'Mike '
                                                                       'P. '
                                                                       'Rodgers'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1109/ROBOT.2008.4543305',
                                       'ee': 'https://doi.org/10.1109/ROBOT.2008.4543305',
                                       'key': 'conf/icra/KolterRN08',
                                       'pages': '811-818',
                                       'title': 'A control architecture for '
                                                'quadruped locomotion over '
                                                'rough terrain.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icra/KolterRN08',
                                       'venue': 'ICRA',
                                       'year': '2008'},
                              'url': 'URL#3997237'},
                             {'@id': '4007637',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': 'a/PieterAbbeel',
                                                               'text': 'Pieter '
                                                                       'Abbeel'},
                                                              {'@pid': '01/5878',
                                                               'text': 'Dmitri '
                                                                       'Dolgov'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': 't/SebastianThrun',
                                                               'text': 'Sebastian '
                                                                       'Thrun'}]},
                                       'doi': '10.1109/IROS.2008.4651222',
                                       'ee': 'https://doi.org/10.1109/IROS.2008.4651222',
                                       'key': 'conf/iros/AbbeelDNT08',
                                       'pages': '1083-1090',
                                       'title': 'Apprenticeship learning for '
                                                'motion planning with '
                                                'application to parking lot '
                                                'navigation.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/iros/AbbeelDNT08',
                                       'venue': 'IROS',
                                       'year': '2008'},
                              'url': 'URL#4007637'},
                             {'@id': '4011241',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': 'a/PieterAbbeel',
                                                               'text': 'Pieter '
                                                                       'Abbeel'},
                                                              {'@pid': '60/5515',
                                                               'text': 'Adam '
                                                                       'Coates'},
                                                              {'@pid': '01/877',
                                                               'text': 'Timothy '
                                                                       'Hunter'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1007/978-3-642-00196-3_45',
                                       'ee': 'https://doi.org/10.1007/978-3-642-00196-3_45',
                                       'key': 'conf/iser/AbbeelCHN08',
                                       'pages': '385-394',
                                       'title': 'Autonomous Autorotation of an '
                                                'RC Helicopter.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/iser/AbbeelCHN08',
                                       'venue': 'ISER',
                                       'year': '2008'},
                              'url': 'URL#4011241'},
                             {'@id': '4095839',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '84/4724',
                                                               'text': 'Masayoshi '
                                                                       'Matsuoka'},
                                                              {'@pid': '82/2010',
                                                               'text': 'Alan '
                                                                       'Chen '
                                                                       '0001'},
                                                              {'@pid': '03/1138',
                                                               'text': 'Surya '
                                                                       'P. N. '
                                                                       'Singh'},
                                                              {'@pid': '60/5515',
                                                               'text': 'Adam '
                                                                       'Coates'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': 't/SebastianThrun',
                                                               'text': 'Sebastian '
                                                                       'Thrun'}]},
                                       'doi': '10.1177/0278364906074898',
                                       'ee': 'https://doi.org/10.1177/0278364906074898',
                                       'key': 'journals/ijrr/MatsuokaCSCNT07',
                                       'number': '2',
                                       'pages': '205-215',
                                       'title': 'Autonomous Helicopter '
                                                'Tracking and Localization '
                                                'Using a Self-surveying Camera '
                                                'Array.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/ijrr/MatsuokaCSCNT07',
                                       'venue': 'Int. J. Robotics Res.',
                                       'volume': '26',
                                       'year': '2007'},
                              'url': 'URL#4095839'},
                             {'@id': '4161356',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '42/1066',
                                                               'text': 'Rion '
                                                                       'Snow'},
                                                              {'@pid': '15/8160',
                                                               'text': 'Sushant '
                                                                       'Prakash'},
                                                              {'@pid': '31/985',
                                                               'text': 'Daniel '
                                                                       'Jurafsky'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'https://aclanthology.org/D07-1107/',
                                       'key': 'conf/emnlp/SnowPJN07',
                                       'pages': '1005-1014',
                                       'title': 'Learning to Merge Word '
                                                'Senses.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/emnlp/SnowPJN07',
                                       'venue': 'EMNLP-CoNLL',
                                       'year': '2007'},
                              'url': 'URL#4161356'},
                             {'@id': '4181387',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '82/6189',
                                                               'text': 'Ashutosh '
                                                                       'Saxena'},
                                                              {'@pid': '62/2750',
                                                               'text': 'Min '
                                                                       'Sun'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1109/ICCV.2007.4408828',
                                       'ee': 'https://doi.org/10.1109/ICCV.2007.4408828',
                                       'key': 'conf/iccv/SaxenaSN07',
                                       'pages': '1-8',
                                       'title': 'Learning 3-D Scene Structure '
                                                'from a Single Still Image.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/iccv/SaxenaSN07',
                                       'venue': 'ICCV',
                                       'year': '2007'},
                              'url': 'URL#4181387'},
                             {'@id': '4181388',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '82/6189',
                                                               'text': 'Ashutosh '
                                                                       'Saxena'},
                                                              {'@pid': '62/2750',
                                                               'text': 'Min '
                                                                       'Sun'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1109/ICCV.2007.4409219',
                                       'ee': 'https://doi.org/10.1109/ICCV.2007.4409219',
                                       'key': 'conf/iccv/SaxenaSN07a',
                                       'pages': '1-8',
                                       'title': '3-D Reconstruction from '
                                                'Sparse Views using Monocular '
                                                'Vision.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/iccv/SaxenaSN07a',
                                       'venue': 'ICCV',
                                       'year': '2007'},
                              'url': 'URL#4181388'},
                             {'@id': '4187592',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '64/4254',
                                                               'text': 'Rajat '
                                                                       'Raina'},
                                                              {'@pid': '75/5304',
                                                               'text': 'Alexis '
                                                                       'Battle'},
                                                              {'@pid': '58/2562',
                                                               'text': 'Honglak '
                                                                       'Lee'},
                                                              {'@pid': '56/5290',
                                                               'text': 'Benjamin '
                                                                       'Packer'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1145/1273496.1273592',
                                       'ee': 'https://doi.org/10.1145/1273496.1273592',
                                       'key': 'conf/icml/RainaBLPN07',
                                       'pages': '759-766',
                                       'title': 'Self-taught learning - '
                                                'transfer learning from '
                                                'unlabeled data.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icml/RainaBLPN07',
                                       'venue': 'ICML',
                                       'year': '2007'},
                              'url': 'URL#4187592'},
                             {'@id': '4196350',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '89/1569',
                                                               'text': 'Stephen '
                                                                       'Gould'},
                                                              {'@pid': '11/1327',
                                                               'text': 'Joakim '
                                                                       'Arfvidsson'},
                                                              {'@pid': '05/6550',
                                                               'text': 'Adrian '
                                                                       'Kaehler'},
                                                              {'@pid': '54/5582',
                                                               'text': 'Benjamin '
                                                                       'Sapp'},
                                                              {'@pid': '57/1971',
                                                               'text': 'Marius '
                                                                       'Messner'},
                                                              {'@pid': 'b/GaryRBradski',
                                                               'text': 'Gary '
                                                                       'R. '
                                                                       'Bradski'},
                                                              {'@pid': '47/3568',
                                                               'text': 'Paul '
                                                                       'Baumstarck'},
                                                              {'@pid': '01/2799',
                                                               'text': 'Sukwon '
                                                                       'Chung'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'http://ijcai.org/Proceedings/07/Papers/341.pdf',
                                       'key': 'conf/ijcai/GouldAKSMBBCN07',
                                       'pages': '2115-2121',
                                       'title': 'Peripheral-Foveal Vision for '
                                                'Real-time Object Recognition '
                                                'and Tracking in Video.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/ijcai/GouldAKSMBBCN07',
                                       'venue': 'IJCAI',
                                       'year': '2007'},
                              'url': 'URL#4196350'},
                             {'@id': '4196416',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '62/4095',
                                                               'text': 'Ted '
                                                                       'Kremenek'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': 'e/DREngler',
                                                               'text': 'Dawson '
                                                                       'R. '
                                                                       'Engler'}]},
                                       'ee': 'http://ijcai.org/Proceedings/07/Papers/404.pdf',
                                       'key': 'conf/ijcai/KremenekNE07',
                                       'pages': '2510-2516',
                                       'title': 'A Factor Graph Model for '
                                                'Software Bug Finding.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/ijcai/KremenekNE07',
                                       'venue': 'IJCAI',
                                       'year': '2007'},
                              'url': 'URL#4196416'},
                             {'@id': '4196522',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '31/1310',
                                                               'text': 'Anna '
                                                                       'Petrovskaya'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'http://ijcai.org/Proceedings/07/Papers/351.pdf',
                                       'key': 'conf/ijcai/PetrovskayaN07',
                                       'pages': '2178-2184',
                                       'title': 'Probabilistic Mobile '
                                                'Manipulation in Dynamic '
                                                'Environments, with '
                                                'Application to Opening Doors.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/ijcai/PetrovskayaN07',
                                       'venue': 'IJCAI',
                                       'year': '2007'},
                              'url': 'URL#4196522'},
                             {'@id': '4196566',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '82/6189',
                                                               'text': 'Ashutosh '
                                                                       'Saxena'},
                                                              {'@pid': '37/2776',
                                                               'text': 'Jamie '
                                                                       'Schulte'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'http://ijcai.org/Proceedings/07/Papers/354.pdf',
                                       'key': 'conf/ijcai/SaxenaSN07',
                                       'pages': '2197-2203',
                                       'title': 'Depth Estimation Using '
                                                'Monocular and Stereo Cues.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/ijcai/SaxenaSN07',
                                       'venue': 'IJCAI',
                                       'year': '2007'},
                              'url': 'URL#4196566'},
                             {'@id': '4206117',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '82/6189',
                                                               'text': 'Ashutosh '
                                                                       'Saxena'},
                                                              {'@pid': '35/2573',
                                                               'text': 'Lawson '
                                                                       'L. S. '
                                                                       'Wong'},
                                                              {'@pid': '78/1197',
                                                               'text': 'Morgan '
                                                                       'Quigley'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1007/978-3-642-14743-2_28',
                                       'ee': 'https://doi.org/10.1007/978-3-642-14743-2_28',
                                       'key': 'conf/isrr/SaxenaWQN07',
                                       'pages': '337-348',
                                       'title': 'A Vision-Based System for '
                                                'Grasping Novel Objects in '
                                                'Cluttered Environments.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/isrr/SaxenaWQN07',
                                       'venue': 'ISRR',
                                       'year': '2007'},
                              'url': 'URL#4206117'},
                             {'@id': '4217581',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '58/2809',
                                                               'text': 'Chuong '
                                                                       'B. Do'},
                                                              {'@pid': '73/1823',
                                                               'text': 'Chuan-Sheng '
                                                                       'Foo'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'https://proceedings.neurips.cc/paper/2007/hash/851ddf5058cf22df63d3344ad89919cf-Abstract.html',
                                       'key': 'conf/nips/DoFN07',
                                       'pages': '377-384',
                                       'title': 'Efficient multiple '
                                                'hyperparameter learning for '
                                                'log-linear models.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/nips/DoFN07',
                                       'venue': 'NIPS',
                                       'year': '2007'},
                              'url': 'URL#4217581'},
                             {'@id': '4217629',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '67/2526',
                                                               'text': 'J. '
                                                                       'Zico '
                                                                       'Kolter'},
                                                              {'@pid': 'a/PieterAbbeel',
                                                               'text': 'Pieter '
                                                                       'Abbeel'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'https://proceedings.neurips.cc/paper/2007/hash/54a367d629152b720749e187b3eaa11b-Abstract.html',
                                       'key': 'conf/nips/KolterAN07',
                                       'pages': '769-776',
                                       'title': 'Hierarchical Apprenticeship '
                                                'Learning with Application to '
                                                'Quadruped Locomotion.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/nips/KolterAN07',
                                       'venue': 'NIPS',
                                       'year': '2007'},
                              'url': 'URL#4217629'},
                             {'@id': '4217640',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '58/2562',
                                                               'text': 'Honglak '
                                                                       'Lee'},
                                                              {'@pid': '20/614',
                                                               'text': 'Chaitanya '
                                                                       'Ekanadham'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'https://proceedings.neurips.cc/paper/2007/hash/4daa3db355ef2b0e64b472968cb70f0d-Abstract.html',
                                       'key': 'conf/nips/LeeEN07',
                                       'pages': '873-880',
                                       'title': 'Sparse deep belief net model '
                                                'for visual area V2.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/nips/LeeEN07',
                                       'venue': 'NIPS',
                                       'year': '2007'},
                              'url': 'URL#4217640'},
                             {'@id': '4224449',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '67/2526',
                                                               'text': 'J. '
                                                                       'Zico '
                                                                       'Kolter'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.15607/RSS.2007.III.033',
                                       'ee': 'http://www.roboticsproceedings.org/rss03/p33.html',
                                       'key': 'conf/rss/KolterN07',
                                       'title': 'Learning omnidirectional path '
                                                'following using '
                                                'dimensionality reduction.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/rss/KolterN07',
                                       'venue': 'Robotics - Science and '
                                                'Systems',
                                       'year': '2007'},
                              'url': 'URL#4224449'},
                             {'@id': '4235393',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '26/7058',
                                                               'text': 'Roger '
                                                                       'B. '
                                                                       'Grosse'},
                                                              {'@pid': '64/4254',
                                                               'text': 'Rajat '
                                                                       'Raina'},
                                                              {'@pid': '48/7442',
                                                               'text': 'Helen '
                                                                       'Kwong'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.5555/3020488.3020507',
                                       'ee': 'https://dl.acm.org/doi/abs/10.5555/3020488.3020507',
                                       'key': 'conf/uai/GrosseRKN07',
                                       'pages': '149-158',
                                       'title': 'Shift-Invariance Sparse '
                                                'Coding for Audio '
                                                'Classification.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/uai/GrosseRKN07',
                                       'venue': 'UAI',
                                       'year': '2007'},
                              'url': 'URL#4235393'},
                             {'@id': '4288932',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': 'a/PieterAbbeel',
                                                               'text': 'Pieter '
                                                                       'Abbeel'},
                                                              {'@pid': 'k/DaphneKoller',
                                                               'text': 'Daphne '
                                                                       'Koller'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'http://jmlr.org/papers/v7/abbeel06a.html',
                                       'key': 'journals/jmlr/AbbeelKN06',
                                       'pages': '1743-1788',
                                       'title': 'Learning Factor Graphs in '
                                                'Polynomial Time and Sample '
                                                'Complexity.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/jmlr/AbbeelKN06',
                                       'venue': 'J. Mach. Learn. Res.',
                                       'volume': '7',
                                       'year': '2006'},
                              'url': 'URL#4288932'},
                             {'@id': '4317209',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '17/1784',
                                                               'text': 'Su-In '
                                                                       'Lee'},
                                                              {'@pid': '58/2562',
                                                               'text': 'Honglak '
                                                                       'Lee'},
                                                              {'@pid': 'a/PieterAbbeel',
                                                               'text': 'Pieter '
                                                                       'Abbeel'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'http://www.aaai.org/Library/AAAI/2006/aaai06-064.php',
                                       'key': 'conf/aaai/LeeLAN06',
                                       'pages': '401-408',
                                       'title': 'Efficient L1 Regularized '
                                                'Logistic Regression.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/aaai/LeeLAN06',
                                       'venue': 'AAAI',
                                       'year': '2006'},
                              'url': 'URL#4317209'},
                             {'@id': '4318513',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '42/1066',
                                                               'text': 'Rion '
                                                                       'Snow'},
                                                              {'@pid': '31/985',
                                                               'text': 'Daniel '
                                                                       'Jurafsky'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.3115/1220175.1220276',
                                       'ee': 'https://aclanthology.org/P06-1101/',
                                       'key': 'conf/acl/SnowJN06',
                                       'title': 'Semantic Taxonomy Induction '
                                                'from Heterogenous Evidence.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/acl/SnowJN06',
                                       'venue': 'ACL',
                                       'year': '2006'},
                              'url': 'URL#4318513'},
                             {'@id': '4320854',
                              '@score': '7',
                              'info': {'authors': {'author': {'@pid': 'n/AndrewYNg',
                                                              'text': 'Andrew '
                                                                      'Y. Ng'}},
                                       'doi': '10.1007/11894841_6',
                                       'ee': 'https://doi.org/10.1007/11894841_6',
                                       'key': 'conf/alt/Ng06',
                                       'pages': '29-31',
                                       'title': 'Reinforcement Learning and '
                                                'Apprenticeship Learning for '
                                                'Robotic Control.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/alt/Ng06',
                                       'venue': 'ALT',
                                       'year': '2006'},
                              'url': 'URL#4320854'},
                             {'@id': '4331315',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '42/1918',
                                                               'text': 'Mike '
                                                                       'Brzozowski'},
                                                              {'@pid': '09/5193',
                                                               'text': 'Kendra '
                                                                       'Carattini'},
                                                              {'@pid': '97/4414',
                                                               'text': 'Scott '
                                                                       'R. '
                                                                       'Klemmer'},
                                                              {'@pid': '70/5679',
                                                               'text': 'Patrick '
                                                                       'Mihelich'},
                                                              {'@pid': '20/5455',
                                                               'text': 'Jiang '
                                                                       'Hu'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1145/1124772.1124929',
                                       'ee': 'https://doi.org/10.1145/1124772.1124929',
                                       'key': 'conf/chi/BrzozowskiCKMHN06',
                                       'pages': '1047-1056',
                                       'title': 'groupTime - preference based '
                                                'group scheduling.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/chi/BrzozowskiCKMHN06',
                                       'venue': 'CHI',
                                       'year': '2006'},
                              'url': 'URL#4331315'},
                             {'@id': '4336263',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '26/1546',
                                                               'text': 'Erick '
                                                                       'Delage'},
                                                              {'@pid': '58/2562',
                                                               'text': 'Honglak '
                                                                       'Lee'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1109/CVPR.2006.23',
                                       'ee': 'https://doi.org/10.1109/CVPR.2006.23',
                                       'key': 'conf/cvpr/DelageLN06',
                                       'pages': '2418-2428',
                                       'title': 'A Dynamic Bayesian Network '
                                                'Model for Autonomous 3D '
                                                'Reconstruction from a Single '
                                                'Indoor Image.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/cvpr/DelageLN06',
                                       'venue': 'CVPR',
                                       'year': '2006'},
                              'url': 'URL#4336263'},
                             {'@id': '4339063',
                              '@score': '7',
                              'info': {'authors': {'author': {'@pid': 'n/AndrewYNg',
                                                              'text': 'Andrew '
                                                                      'Y. Ng'}},
                                       'doi': '10.1007/11893318_3',
                                       'ee': 'https://doi.org/10.1007/11893318_3',
                                       'key': 'conf/dis/Ng06',
                                       'pages': '14',
                                       'title': 'Reinforcement Learning and '
                                                'Apprenticeship Learning for '
                                                'Robotic Control.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/dis/Ng06',
                                       'venue': 'Discovery Science',
                                       'year': '2006'},
                              'url': 'URL#4339063'},
                             {'@id': '4343889',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '16/5422',
                                                               'text': 'Jenny '
                                                                       'Rose '
                                                                       'Finkel'},
                                                              {'@pid': 'm/ChristopherDManning',
                                                               'text': 'Christopher '
                                                                       'D. '
                                                                       'Manning'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'https://aclanthology.org/W06-1673/',
                                       'key': 'conf/emnlp/FinkelMN06',
                                       'pages': '618-626',
                                       'title': 'Solving the Problem of '
                                                'Cascading Errors - '
                                                'Approximate Bayesian '
                                                'Inference for Linguistic '
                                                'Annotation Pipelines.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/emnlp/FinkelMN06',
                                       'venue': 'EMNLP',
                                       'year': '2006'},
                              'url': 'URL#4343889'},
                             {'@id': '4366907',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': 'a/PieterAbbeel',
                                                               'text': 'Pieter '
                                                                       'Abbeel'},
                                                              {'@pid': '78/1197',
                                                               'text': 'Morgan '
                                                                       'Quigley'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1145/1143844.1143845',
                                       'ee': 'https://doi.org/10.1145/1143844.1143845',
                                       'key': 'conf/icml/AbbeelQN06',
                                       'pages': '1-8',
                                       'title': 'Using inaccurate models in '
                                                'reinforcement learning.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icml/AbbeelQN06',
                                       'venue': 'ICML',
                                       'year': '2006'},
                              'url': 'URL#4366907'},
                             {'@id': '4367005',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '64/4254',
                                                               'text': 'Rajat '
                                                                       'Raina'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': 'k/DaphneKoller',
                                                               'text': 'Daphne '
                                                                       'Koller'}]},
                                       'doi': '10.1145/1143844.1143934',
                                       'ee': 'https://doi.org/10.1145/1143844.1143934',
                                       'key': 'conf/icml/RainaNK06',
                                       'pages': '713-720',
                                       'title': 'Constructing informative '
                                                'priors using transfer '
                                                'learning.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icml/RainaNK06',
                                       'venue': 'ICML',
                                       'year': '2006'},
                              'url': 'URL#4367005'},
                             {'@id': '4370180',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '58/2562',
                                                               'text': 'Honglak '
                                                                       'Lee'},
                                                              {'@pid': '03/2011',
                                                               'text': 'Yirong '
                                                                       'Shen'},
                                                              {'@pid': '16/1142',
                                                               'text': 'Chih-Han '
                                                                       'Yu'},
                                                              {'@pid': '34/810',
                                                               'text': 'Gurjeet '
                                                                       'Singh'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1109/ROBOT.2006.1642158',
                                       'ee': 'https://doi.org/10.1109/ROBOT.2006.1642158',
                                       'key': 'conf/icra/LeeSYSN06',
                                       'pages': '3003-3010',
                                       'title': 'Quadruped Robot Obstacle '
                                                'Negotiation via Reinforcement '
                                                'Learning.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icra/LeeSYSN06',
                                       'venue': 'ICRA',
                                       'year': '2006'},
                              'url': 'URL#4370180'},
                             {'@id': '4370316',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '31/1310',
                                                               'text': 'Anna '
                                                                       'Petrovskaya'},
                                                              {'@pid': '77/811',
                                                               'text': 'Oussama '
                                                                       'Khatib'},
                                                              {'@pid': 't/SebastianThrun',
                                                               'text': 'Sebastian '
                                                                       'Thrun'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1109/ROBOT.2006.1641793',
                                       'ee': 'https://doi.org/10.1109/ROBOT.2006.1641793',
                                       'key': 'conf/icra/PetrovskayaKTN06',
                                       'pages': '707-714',
                                       'title': 'Bayesian Estimation for '
                                                'Autonomous Object '
                                                'Manipulation based on Tactile '
                                                'Sensors.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icra/PetrovskayaKTN06',
                                       'venue': 'ICRA',
                                       'year': '2006'},
                              'url': 'URL#4370316'},
                             {'@id': '4377293',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '50/9261',
                                                               'text': 'Filip '
                                                                       'Krsmanovic'},
                                                              {'@pid': '75/9262',
                                                               'text': 'Curtis '
                                                                       'Spencer'},
                                                              {'@pid': '31/985',
                                                               'text': 'Daniel '
                                                                       'Jurafsky'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'http://www.isca-speech.org/archive/interspeech_2006/i06_1193.html',
                                       'key': 'conf/interspeech/KrsmanovicSJN06',
                                       'title': 'Have we met? MDP based '
                                                'speaker ID for robot '
                                                'dialogue.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/interspeech/KrsmanovicSJN06',
                                       'venue': 'INTERSPEECH',
                                       'year': '2006'},
                              'url': 'URL#4377293'},
                             {'@id': '4382719',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '82/6189',
                                                               'text': 'Ashutosh '
                                                                       'Saxena'},
                                                              {'@pid': '88/6457',
                                                               'text': 'Justin '
                                                                       'Driemeyer'},
                                                              {'@pid': '25/6216',
                                                               'text': 'Justin '
                                                                       'Kearns'},
                                                              {'@pid': '88/5870',
                                                               'text': 'Chioma '
                                                                       'Osondu'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1007/978-3-540-77457-0_4',
                                       'ee': 'https://doi.org/10.1007/978-3-540-77457-0_4',
                                       'key': 'conf/iser/SaxenaDKON06',
                                       'pages': '33-42',
                                       'title': 'Learning to Grasp Novel '
                                                'Objects Using Vision.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/iser/SaxenaDKON06',
                                       'venue': 'ISER',
                                       'year': '2006'},
                              'url': 'URL#4382719'},
                             {'@id': '4395761',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': 'a/PieterAbbeel',
                                                               'text': 'Pieter '
                                                                       'Abbeel'},
                                                              {'@pid': '60/5515',
                                                               'text': 'Adam '
                                                                       'Coates'},
                                                              {'@pid': '78/1197',
                                                               'text': 'Morgan '
                                                                       'Quigley'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'https://proceedings.neurips.cc/paper/2006/hash/98c39996bf1543e974747a2549b3107c-Abstract.html',
                                       'key': 'conf/nips/AbbeelCQN06',
                                       'pages': '1-8',
                                       'title': 'An Application of '
                                                'Reinforcement Learning to '
                                                'Aerobatic Helicopter Flight.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/nips/AbbeelCQN06',
                                       'venue': 'NIPS',
                                       'year': '2006'},
                              'url': 'URL#4395761'},
                             {'@id': '4395795',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '35/6348',
                                                               'text': 'Cheng-Tao '
                                                                       'Chu'},
                                                              {'@pid': '15/1867',
                                                               'text': 'Sang '
                                                                       'Kyun '
                                                                       'Kim'},
                                                              {'@pid': '27/2290',
                                                               'text': 'Yi-An '
                                                                       'Lin'},
                                                              {'@pid': '85/3095',
                                                               'text': 'YuanYuan '
                                                                       'Yu'},
                                                              {'@pid': 'b/GaryRBradski',
                                                               'text': 'Gary '
                                                                       'R. '
                                                                       'Bradski'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': 'o/KunleOlukotun',
                                                               'text': 'Kunle '
                                                                       'Olukotun'}]},
                                       'ee': 'https://proceedings.neurips.cc/paper/2006/hash/77ee3bc58ce560b86c2b59363281e914-Abstract.html',
                                       'key': 'conf/nips/ChuKLYBNO06',
                                       'pages': '281-288',
                                       'title': 'Map-Reduce for Machine '
                                                'Learning on Multicore.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/nips/ChuKLYBNO06',
                                       'venue': 'NIPS',
                                       'year': '2006'},
                              'url': 'URL#4395795'},
                             {'@id': '4395859',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '58/2562',
                                                               'text': 'Honglak '
                                                                       'Lee'},
                                                              {'@pid': '75/5304',
                                                               'text': 'Alexis '
                                                                       'Battle'},
                                                              {'@pid': '64/4254',
                                                               'text': 'Rajat '
                                                                       'Raina'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'https://proceedings.neurips.cc/paper/2006/hash/2d71b2ae158c7c5912cc0bbde2bb9d95-Abstract.html',
                                       'key': 'conf/nips/LeeBRN06',
                                       'pages': '801-808',
                                       'title': 'Efficient sparse coding '
                                                'algorithms.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/nips/LeeBRN06',
                                       'venue': 'NIPS',
                                       'year': '2006'},
                              'url': 'URL#4395859'},
                             {'@id': '4395911',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '82/6189',
                                                               'text': 'Ashutosh '
                                                                       'Saxena'},
                                                              {'@pid': '88/6457',
                                                               'text': 'Justin '
                                                                       'Driemeyer'},
                                                              {'@pid': '25/6216',
                                                               'text': 'Justin '
                                                                       'Kearns'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'https://proceedings.neurips.cc/paper/2006/hash/22722a343513ed45f14905eb07621686-Abstract.html',
                                       'key': 'conf/nips/SaxenaDKN06',
                                       'pages': '1209-1216',
                                       'title': 'Robotic Grasping of Novel '
                                                'Objects.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/nips/SaxenaDKN06',
                                       'venue': 'NIPS',
                                       'year': '2006'},
                              'url': 'URL#4395911'},
                             {'@id': '4396757',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '62/4095',
                                                               'text': 'Ted '
                                                                       'Kremenek'},
                                                              {'@pid': '09/2839',
                                                               'text': 'Paul '
                                                                       'Twohey'},
                                                              {'@pid': '47/2634',
                                                               'text': 'Godmar '
                                                                       'Back'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': 'e/DREngler',
                                                               'text': 'Dawson '
                                                                       'R. '
                                                                       'Engler'}]},
                                       'ee': 'http://www.usenix.org/events/osdi06/tech/kremenek.html',
                                       'key': 'conf/osdi/KremenekTBNE06',
                                       'pages': '161-176',
                                       'title': 'From Uncertainty to Belief - '
                                                'Inferring the Specification '
                                                'Within.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/osdi/KremenekTBNE06',
                                       'venue': 'OSDI',
                                       'year': '2006'},
                              'url': 'URL#4396757'},
                             {'@id': '4407448',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '25/559',
                                                               'text': 'Einat '
                                                                       'Minkov'},
                                                              {'@pid': 'c/WWCohen',
                                                               'text': 'William '
                                                                       'W. '
                                                                       'Cohen'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1145/1148170.1148179',
                                       'ee': 'https://doi.org/10.1145/1148170.1148179',
                                       'key': 'conf/sigir/MinkovCN06',
                                       'pages': '27-34',
                                       'title': 'Contextual search and name '
                                                'disambiguation in email using '
                                                'graphs.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/sigir/MinkovCN06',
                                       'venue': 'SIGIR',
                                       'year': '2006'},
                              'url': 'URL#4407448'},
                             {'@id': '4428367',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': 'h/DavidHeckerman',
                                                               'text': 'David '
                                                                       'Heckerman'},
                                                              {'@pid': '77/5178',
                                                               'text': 'Tom '
                                                                       'Berson'},
                                                              {'@pid': 'g/JoshuaGoodman',
                                                               'text': 'Joshua '
                                                                       'Goodman '
                                                                       '0001'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1609/AIMAG.V26I1.1803',
                                       'ee': 'https://doi.org/10.1609/aimag.v26i1.1803',
                                       'key': 'journals/aim/HeckermanBGN05',
                                       'number': '1',
                                       'pages': '96',
                                       'title': 'The First Conference on '
                                                'E-mail and Anti-Spam.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/aim/HeckermanBGN05',
                                       'venue': 'AI Mag.',
                                       'volume': '26',
                                       'year': '2005'},
                              'url': 'URL#4428367'},
                             {'@id': '4483168',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '64/4254',
                                                               'text': 'Rajat '
                                                                       'Raina'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': 'm/ChristopherDManning',
                                                               'text': 'Christopher '
                                                                       'D. '
                                                                       'Manning'}]},
                                       'ee': 'http://www.aaai.org/Library/AAAI/2005/aaai05-174.php',
                                       'key': 'conf/aaai/RainaNM05',
                                       'pages': '1099-1105',
                                       'title': 'Robust Textual Inference Via '
                                                'Learning and Abductive '
                                                'Reasoning.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/aaai/RainaNM05',
                                       'venue': 'AAAI',
                                       'year': '2005'},
                              'url': 'URL#4483168'},
                             {'@id': '4492917',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '58/2562',
                                                               'text': 'Honglak '
                                                                       'Lee'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'http://www.ceas.cc/papers-2005/166.pdf',
                                       'key': 'conf/ceas/LeeN05',
                                       'title': 'Spam Deobfuscation using a '
                                                'Hidden Markov Model.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/ceas/LeeN05',
                                       'venue': 'CEAS',
                                       'year': '2005'},
                              'url': 'URL#4492917'},
                             {'@id': '4499531',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': 'a/DragomirAnguelov',
                                                               'text': 'Dragomir '
                                                                       'Anguelov'},
                                                              {'@pid': 't/BenjaminTaskar',
                                                               'text': 'Benjamin '
                                                                       'Taskar'},
                                                              {'@pid': '39/2976',
                                                               'text': 'Vassil '
                                                                       'Chatalbashev'},
                                                              {'@pid': 'k/DaphneKoller',
                                                               'text': 'Daphne '
                                                                       'Koller'},
                                                              {'@pid': '45/1448',
                                                               'text': 'Dinkar '
                                                                       'Gupta'},
                                                              {'@pid': '19/2592',
                                                               'text': 'Geremy '
                                                                       'Heitz'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1109/CVPR.2005.133',
                                       'ee': 'https://doi.org/10.1109/CVPR.2005.133',
                                       'key': 'conf/cvpr/AnguelovTCKGHN05',
                                       'pages': '169-176',
                                       'title': 'Discriminative Learning of '
                                                'Markov Random Fields for '
                                                'Segmentation of 3D Scan Data.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/cvpr/AnguelovTCKGHN05',
                                       'venue': 'CVPR',
                                       'year': '2005'},
                              'url': 'URL#4499531'},
                             {'@id': '4510438',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '84/4724',
                                                               'text': 'Masayoshi '
                                                                       'Matsuoka'},
                                                              {'@pid': '82/2010',
                                                               'text': 'Alan '
                                                                       'Chen '
                                                                       '0001'},
                                                              {'@pid': '03/1138',
                                                               'text': 'Surya '
                                                                       'P. N. '
                                                                       'Singh'},
                                                              {'@pid': '60/5515',
                                                               'text': 'Adam '
                                                                       'Coates'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': 't/SebastianThrun',
                                                               'text': 'Sebastian '
                                                                       'Thrun'}]},
                                       'doi': '10.1007/978-3-540-33453-8_3',
                                       'ee': 'https://doi.org/10.1007/978-3-540-33453-8_3',
                                       'key': 'conf/fsr/MatsuokaCSCNT05',
                                       'pages': '19-30',
                                       'title': 'Autonomous Helicopter '
                                                'Tracking and Localization '
                                                'Using a Self-Surveying Camera '
                                                'Array.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/fsr/MatsuokaCSCNT05',
                                       'venue': 'FSR',
                                       'year': '2005'},
                              'url': 'URL#4510438'},
                             {'@id': '4527029',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': 'a/PieterAbbeel',
                                                               'text': 'Pieter '
                                                                       'Abbeel'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1145/1102351.1102352',
                                       'ee': 'https://doi.org/10.1145/1102351.1102352',
                                       'key': 'conf/icml/AbbeelN05',
                                       'pages': '1-8',
                                       'title': 'Exploration and '
                                                'apprenticeship learning in '
                                                'reinforcement learning.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icml/AbbeelN05',
                                       'venue': 'ICML',
                                       'year': '2005'},
                              'url': 'URL#4527029'},
                             {'@id': '4527102',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '82/5735',
                                                               'text': 'Jeff '
                                                                       'Michels'},
                                                              {'@pid': '82/6189',
                                                               'text': 'Ashutosh '
                                                                       'Saxena'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1145/1102351.1102426',
                                       'ee': 'https://doi.org/10.1145/1102351.1102426',
                                       'key': 'conf/icml/MichelsSN05',
                                       'pages': '593-600',
                                       'title': 'High speed obstacle avoidance '
                                                'using monocular vision and '
                                                'reinforcement learning.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icml/MichelsSN05',
                                       'venue': 'ICML',
                                       'year': '2005'},
                              'url': 'URL#4527102'},
                             {'@id': '4542023',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '26/1546',
                                                               'text': 'Erick '
                                                                       'Delage'},
                                                              {'@pid': '58/2562',
                                                               'text': 'Honglak '
                                                                       'Lee'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1007/978-3-540-48113-3_28',
                                       'ee': 'https://doi.org/10.1007/978-3-540-48113-3_28',
                                       'key': 'conf/isrr/DelageLN05',
                                       'pages': '305-321',
                                       'title': 'Automatic Single-Image 3d '
                                                'Reconstructions of Indoor '
                                                'Manhattan World Scenes.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/isrr/DelageLN05',
                                       'venue': 'ISRR',
                                       'year': '2005'},
                              'url': 'URL#4542023'},
                             {'@id': '4551043',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '13/1739',
                                                               'text': 'Aria '
                                                                       'Haghighi'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': 'm/ChristopherDManning',
                                                               'text': 'Christopher '
                                                                       'D. '
                                                                       'Manning'}]},
                                       'ee': 'https://aclanthology.org/H05-1049/',
                                       'key': 'conf/naacl/HaghighiNM05',
                                       'pages': '387-394',
                                       'title': 'Robust Textual Inference via '
                                                'Graph Matching.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/naacl/HaghighiNM05',
                                       'venue': 'HLT/EMNLP',
                                       'year': '2005'},
                              'url': 'URL#4551043'},
                             {'@id': '4551455',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': 'a/PieterAbbeel',
                                                               'text': 'Pieter '
                                                                       'Abbeel'},
                                                              {'@pid': '73/3944',
                                                               'text': 'Varun '
                                                                       'Ganapathi'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'https://proceedings.neurips.cc/paper/2005/hash/09b69adcd7cbae914c6204984097d2da-Abstract.html',
                                       'key': 'conf/nips/AbbeelGN05',
                                       'pages': '1-8',
                                       'title': 'Learning vehicular dynamics, '
                                                'with application to modeling '
                                                'helicopters.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/nips/AbbeelGN05',
                                       'venue': 'NIPS',
                                       'year': '2005'},
                              'url': 'URL#4551455'},
                             {'@id': '4551491',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '58/2809',
                                                               'text': 'Chuong '
                                                                       'B. Do'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'https://proceedings.neurips.cc/paper/2005/hash/bf2fb7d1825a1df3ca308ad0bf48591e-Abstract.html',
                                       'key': 'conf/nips/DoN05',
                                       'pages': '299-306',
                                       'title': 'Transfer learning for text '
                                                'classification.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/nips/DoN05',
                                       'venue': 'NIPS',
                                       'year': '2005'},
                              'url': 'URL#4551491'},
                             {'@id': '4551601',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '82/6189',
                                                               'text': 'Ashutosh '
                                                                       'Saxena'},
                                                              {'@pid': '37/4573',
                                                               'text': 'Sung '
                                                                       'H. '
                                                                       'Chung'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'https://proceedings.neurips.cc/paper/2005/hash/17d8da815fa21c57af9829fb0a869602-Abstract.html',
                                       'key': 'conf/nips/SaxenaCN05',
                                       'pages': '1161-1168',
                                       'title': 'Learning Depth from Single '
                                                'Monocular Images.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/nips/SaxenaCN05',
                                       'venue': 'NIPS',
                                       'year': '2005'},
                              'url': 'URL#4551601'},
                             {'@id': '4551610',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '03/2011',
                                                               'text': 'Yirong '
                                                                       'Shen'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '43/5832',
                                                               'text': 'Matthias '
                                                                       'W. '
                                                                       'Seeger'}]},
                                       'ee': 'https://proceedings.neurips.cc/paper/2005/hash/6775a0635c302542da2c32aa19d86be0-Abstract.html',
                                       'key': 'conf/nips/ShenNS05',
                                       'pages': '1225-1232',
                                       'title': 'Fast Gaussian Process '
                                                'Regression using KD-Trees.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/nips/ShenNS05',
                                       'venue': 'NIPS',
                                       'year': '2005'},
                              'url': 'URL#4551610'},
                             {'@id': '4557306',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': 'a/PieterAbbeel',
                                                               'text': 'Pieter '
                                                                       'Abbeel'},
                                                              {'@pid': '60/5515',
                                                               'text': 'Adam '
                                                                       'Coates'},
                                                              {'@pid': '31/1116',
                                                               'text': 'Michael '
                                                                       'Montemerlo'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': 't/SebastianThrun',
                                                               'text': 'Sebastian '
                                                                       'Thrun'}]},
                                       'doi': '10.15607/RSS.2005.I.038',
                                       'ee': 'http://www.roboticsproceedings.org/rss01/p38.html',
                                       'key': 'conf/rss/AbbeelCMNT05',
                                       'pages': '289-296',
                                       'title': 'Discriminative Training of '
                                                'Kalman Filters.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/rss/AbbeelCMNT05',
                                       'venue': 'Robotics - Science and '
                                                'Systems',
                                       'year': '2005'},
                              'url': 'URL#4557306'},
                             {'@id': '4565254',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': 'a/PieterAbbeel',
                                                               'text': 'Pieter '
                                                                       'Abbeel'},
                                                              {'@pid': 'k/DaphneKoller',
                                                               'text': 'Daphne '
                                                                       'Koller'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'https://dslpitt.org/uai/displayArticleDetails.jsp?mmnu=1&amp;smnu=2&amp;article_id=1199&amp;proceeding_id=21',
                                       'key': 'conf/uai/AbbeelKN05',
                                       'pages': '1-9',
                                       'title': 'Learning Factor Graphs in '
                                                'Polynomial Time &amp; Sample '
                                                'Complexity.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/uai/AbbeelKN05',
                                       'venue': 'UAI',
                                       'year': '2005'},
                              'url': 'URL#4565254'},
                             {'@id': '4600259',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': 't/SebastianThrun',
                                                               'text': 'Sebastian '
                                                                       'Thrun'},
                                                              {'@pid': '07/6778',
                                                               'text': 'Yufeng '
                                                                       'Liu'},
                                                              {'@pid': 'k/DaphneKoller',
                                                               'text': 'Daphne '
                                                                       'Koller'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': 'g/ZoubinGhahramani',
                                                               'text': 'Zoubin '
                                                                       'Ghahramani'},
                                                              {'@pid': '13/6852',
                                                               'text': 'Hugh '
                                                                       'F. '
                                                                       'Durrant-Whyte'}]},
                                       'doi': '10.1177/0278364904045479',
                                       'ee': 'https://doi.org/10.1177/0278364904045479',
                                       'key': 'journals/ijrr/ThrunLKNGD04',
                                       'number': '7-8',
                                       'pages': '693-716',
                                       'title': 'Simultaneous Localization and '
                                                'Mapping with Sparse Extended '
                                                'Information Filters.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/ijrr/ThrunLKNGD04',
                                       'venue': 'Int. J. Robotics Res.',
                                       'volume': '23',
                                       'year': '2004'},
                              'url': 'URL#4600259'},
                             {'@id': '4665215',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': 'a/PieterAbbeel',
                                                               'text': 'Pieter '
                                                                       'Abbeel'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1145/1015330.1015430',
                                       'ee': 'https://doi.org/10.1145/1015330.1015430',
                                       'key': 'conf/icml/PieterN04',
                                       'title': 'Apprenticeship learning via '
                                                'inverse reinforcement '
                                                'learning.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icml/PieterN04',
                                       'venue': 'ICML',
                                       'year': '2004'},
                              'url': 'URL#4665215'},
                             {'@id': '4665226',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '95/2750',
                                                               'text': 'Shai '
                                                                       'Shalev-Shwartz'},
                                                              {'@pid': 's/YoramSinger',
                                                               'text': 'Yoram '
                                                                       'Singer'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1145/1015330.1015376',
                                       'ee': 'https://doi.org/10.1145/1015330.1015376',
                                       'key': 'conf/icml/Shalev-ShwartzSN04',
                                       'title': 'Online and batch learning of '
                                                'pseudo-metrics.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icml/Shalev-ShwartzSN04',
                                       'venue': 'ICML',
                                       'year': '2004'},
                              'url': 'URL#4665226'},
                             {'@id': '4665235',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '25/1520',
                                                               'text': 'Kristina '
                                                                       'Toutanova'},
                                                              {'@pid': 'm/ChristopherDManning',
                                                               'text': 'Christopher '
                                                                       'D. '
                                                                       'Manning'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1145/1015330.1015442',
                                       'ee': 'https://doi.org/10.1145/1015330.1015442',
                                       'key': 'conf/icml/ToutanovaMN04',
                                       'title': 'Learning random walk models '
                                                'for inducing word dependency '
                                                'distributions.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icml/ToutanovaMN04',
                                       'venue': 'ICML',
                                       'year': '2004'},
                              'url': 'URL#4665235'},
                             {'@id': '4677475',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '60/5515',
                                                               'text': 'Adam '
                                                                       'Coates'},
                                                              {'@pid': '73/5524',
                                                               'text': 'Mark '
                                                                       'Diel'},
                                                              {'@pid': '73/3944',
                                                               'text': 'Varun '
                                                                       'Ganapathi'},
                                                              {'@pid': '37/2776',
                                                               'text': 'Jamie '
                                                                       'Schulte'},
                                                              {'@pid': '22/4488',
                                                               'text': 'Ben '
                                                                       'Tse'},
                                                              {'@pid': '89/1455',
                                                               'text': 'Eric '
                                                                       'Berger'},
                                                              {'@pid': '29/2973',
                                                               'text': 'Eric '
                                                                       'Liang'}]},
                                       'doi': '10.1007/11552246_35',
                                       'ee': 'https://doi.org/10.1007/11552246_35',
                                       'key': 'conf/iser/NgCDGSTBL04',
                                       'pages': '363-372',
                                       'title': 'Autonomous Inverted '
                                                'Helicopter Flight via '
                                                'Reinforcement Learning.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/iser/NgCDGSTBL04',
                                       'venue': 'ISER',
                                       'year': '2004'},
                              'url': 'URL#4677475'},
                             {'@id': '4688090',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': 'a/PieterAbbeel',
                                                               'text': 'Pieter '
                                                                       'Abbeel'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'https://proceedings.neurips.cc/paper/2004/hash/02f657d55eaf1c4840ce8d66fcdaf90c-Abstract.html',
                                       'key': 'conf/nips/AbbeelN04',
                                       'pages': '1-8',
                                       'title': 'Learning first-order Markov '
                                                'models for control.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/nips/AbbeelN04',
                                       'venue': 'NIPS',
                                       'year': '2004'},
                              'url': 'URL#4688090'},
                             {'@id': '4688169',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': 's/SMKakade',
                                                               'text': 'Sham '
                                                                       'M. '
                                                                       'Kakade'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'https://proceedings.neurips.cc/paper/2004/hash/c60d870eaad6a3946ab3e8734466e532-Abstract.html',
                                       'key': 'conf/nips/KakadeN04',
                                       'pages': '641-648',
                                       'title': 'Online Bounds for Bayesian '
                                                'Algorithms.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/nips/KakadeN04',
                                       'venue': 'NIPS',
                                       'year': '2004'},
                              'url': 'URL#4688169'},
                             {'@id': '4688211',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '91/5753',
                                                               'text': 'H. Jin '
                                                                       'Kim'}]},
                                       'ee': 'https://proceedings.neurips.cc/paper/2004/hash/8e68c3c7bf14ad0bcaba52babfa470bd-Abstract.html',
                                       'key': 'conf/nips/NgK04',
                                       'pages': '977-984',
                                       'title': 'Stable adaptive control with '
                                                'online learning.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/nips/NgK04',
                                       'venue': 'NIPS',
                                       'year': '2004'},
                              'url': 'URL#4688211'},
                             {'@id': '4688251',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '42/1066',
                                                               'text': 'Rion '
                                                                       'Snow'},
                                                              {'@pid': '31/985',
                                                               'text': 'Daniel '
                                                                       'Jurafsky'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'https://proceedings.neurips.cc/paper/2004/hash/358aee4cc897452c00244351e4d91f69-Abstract.html',
                                       'key': 'conf/nips/SnowJN04',
                                       'pages': '1297-1304',
                                       'title': 'Learning Syntactic Patterns '
                                                'for Automatic Hypernym '
                                                'Discovery.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/nips/SnowJN04',
                                       'venue': 'NIPS',
                                       'year': '2004'},
                              'url': 'URL#4688251'},
                             {'@id': '4736234',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '86/1910',
                                                               'text': 'David '
                                                                       'M. '
                                                                       'Blei'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': 'j/MichaelIJordan',
                                                               'text': 'Michael '
                                                                       'I. '
                                                                       'Jordan'}]},
                                       'ee': 'http://jmlr.org/papers/v3/blei03a.html',
                                       'key': 'journals/jmlr/BleiNJ03',
                                       'pages': '993-1022',
                                       'title': 'Latent Dirichlet Allocation.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/jmlr/BleiNJ03',
                                       'venue': 'J. Mach. Learn. Res.',
                                       'volume': '3',
                                       'year': '2003'},
                              'url': 'URL#4736234'},
                             {'@id': '4804613',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '91/5753',
                                                               'text': 'H. Jin '
                                                                       'Kim'},
                                                              {'@pid': 'j/MichaelIJordan',
                                                               'text': 'Michael '
                                                                       'I. '
                                                                       'Jordan'},
                                                              {'@pid': 's/ShankarSastry',
                                                               'text': 'Shankar '
                                                                       'Sastry'}]},
                                       'ee': 'https://proceedings.neurips.cc/paper/2003/hash/b427426b8acd2c2e53827970f2c2f526-Abstract.html',
                                       'key': 'conf/nips/NgKJS03',
                                       'pages': '799-806',
                                       'title': 'Autonomous Helicopter Flight '
                                                'via Reinforcement Learning.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/nips/NgKJS03',
                                       'venue': 'NIPS',
                                       'year': '2003'},
                              'url': 'URL#4804613'},
                             {'@id': '4847224',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '78/6858',
                                                               'text': 'Michael '
                                                                       'J. '
                                                                       'Kearns'},
                                                              {'@pid': 'm/YishayMansour',
                                                               'text': 'Yishay '
                                                                       'Mansour'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1023/A:1017932429737',
                                       'ee': 'https://doi.org/10.1023/A:1017932429737',
                                       'key': 'journals/ml/KearnsMN02',
                                       'number': '2-3',
                                       'pages': '193-208',
                                       'title': 'A Sparse Sampling Algorithm '
                                                'for Near-Optimal Planning in '
                                                'Large Markov Decision '
                                                'Processes.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/ml/KearnsMN02',
                                       'venue': 'Mach. Learn.',
                                       'volume': '49',
                                       'year': '2002'},
                              'url': 'URL#4847224'},
                             {'@id': '4901896',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '36/3855',
                                                               'text': 'Eric '
                                                                       'P. '
                                                                       'Xing'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': 'j/MichaelIJordan',
                                                               'text': 'Michael '
                                                                       'I. '
                                                                       'Jordan'},
                                                              {'@pid': 'r/SJRussell',
                                                               'text': 'Stuart '
                                                                       'J. '
                                                                       'Russell'}]},
                                       'ee': 'https://proceedings.neurips.cc/paper/2002/hash/c3e4035af2a1cde9f21e1ae1951ac80b-Abstract.html',
                                       'key': 'conf/nips/XingNJR02',
                                       'pages': '505-512',
                                       'title': 'Distance Metric Learning with '
                                                'Application to Clustering '
                                                'with Side-Information.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/nips/XingNJR02',
                                       'venue': 'NIPS',
                                       'year': '2002'},
                              'url': 'URL#4901896'},
                             {'@id': '4908236',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': 'd/SusanTDumais',
                                                               'text': 'Susan '
                                                                       'T. '
                                                                       'Dumais'},
                                                              {'@pid': '34/5010',
                                                               'text': 'Michele '
                                                                       'Banko'},
                                                              {'@pid': '18/3677',
                                                               'text': 'Eric '
                                                                       'Brill'},
                                                              {'@pid': '00/7739',
                                                               'text': 'Jimmy '
                                                                       'J. '
                                                                       'Lin'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1145/564376.564428',
                                       'ee': 'https://doi.org/10.1145/564376.564428',
                                       'key': 'conf/sigir/DumaisBBLN02',
                                       'pages': '291-298',
                                       'title': 'Web question answering - is '
                                                'more always better?.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/sigir/DumaisBBLN02',
                                       'venue': 'SIGIR',
                                       'year': '2002'},
                              'url': 'URL#4908236'},
                             {'@id': '4912339',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': 't/SebastianThrun',
                                                               'text': 'Sebastian '
                                                                       'Thrun'},
                                                              {'@pid': 'k/DaphneKoller',
                                                               'text': 'Daphne '
                                                                       'Koller'},
                                                              {'@pid': 'g/ZoubinGhahramani',
                                                               'text': 'Zoubin '
                                                                       'Ghahramani'},
                                                              {'@pid': '13/6852',
                                                               'text': 'Hugh '
                                                                       'F. '
                                                                       'Durrant-Whyte'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1007/978-3-540-45058-0_22',
                                       'ee': 'https://doi.org/10.1007/978-3-540-45058-0_22',
                                       'key': 'conf/wafr/ThrunKGDN02',
                                       'pages': '363-380',
                                       'title': 'Simultaneous Mapping and '
                                                'Localization with Sparse '
                                                'Extended Information Filters '
                                                '- Theory and Initial Results.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/wafr/ThrunKGDN02',
                                       'venue': 'WAFR',
                                       'year': '2002'},
                              'url': 'URL#4912339'},
                             {'@id': '4974946',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': 'j/MichaelIJordan',
                                                               'text': 'Michael '
                                                                       'I. '
                                                                       'Jordan'}]},
                                       'key': 'conf/icml/NgJ01',
                                       'pages': '377-384',
                                       'title': 'Convergence rates of the '
                                                'Voting Gibbs classifier, with '
                                                'application to Bayesian '
                                                'feature selection.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icml/NgJ01',
                                       'venue': 'ICML',
                                       'year': '2001'},
                              'url': 'URL#4974946'},
                             {'@id': '4977301',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '79/3207',
                                                               'text': 'Alice '
                                                                       'X. '
                                                                       'Zheng'},
                                                              {'@pid': 'j/MichaelIJordan',
                                                               'text': 'Michael '
                                                                       'I. '
                                                                       'Jordan'}]},
                                       'key': 'conf/ijcai/NgZJ01',
                                       'pages': '903-910',
                                       'title': 'Link Analysis, Eigenvectors '
                                                'and Stability.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/ijcai/NgZJ01',
                                       'venue': 'IJCAI',
                                       'year': '2001'},
                              'url': 'URL#4977301'},
                             {'@id': '4987025',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '86/1910',
                                                               'text': 'David '
                                                                       'M. '
                                                                       'Blei'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': 'j/MichaelIJordan',
                                                               'text': 'Michael '
                                                                       'I. '
                                                                       'Jordan'}]},
                                       'ee': 'https://proceedings.neurips.cc/paper/2001/hash/296472c9542ad4d4788d543508116cbc-Abstract.html',
                                       'key': 'conf/nips/BleiNJ01',
                                       'pages': '601-608',
                                       'title': 'Latent Dirichlet Allocation.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/nips/BleiNJ01',
                                       'venue': 'NIPS',
                                       'year': '2001'},
                              'url': 'URL#4987025'},
                             {'@id': '4987127',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': 'j/MichaelIJordan',
                                                               'text': 'Michael '
                                                                       'I. '
                                                                       'Jordan'}]},
                                       'ee': 'https://proceedings.neurips.cc/paper/2001/hash/7b7a53e239400a13bd6be6c91c4f6c4e-Abstract.html',
                                       'key': 'conf/nips/NgJ01',
                                       'pages': '841-848',
                                       'title': 'On Discriminative vs. '
                                                'Generative Classifiers - A '
                                                'comparison of logistic '
                                                'regression and naive Bayes.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/nips/NgJ01',
                                       'venue': 'NIPS',
                                       'year': '2001'},
                              'url': 'URL#4987127'},
                             {'@id': '4987128',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': 'j/MichaelIJordan',
                                                               'text': 'Michael '
                                                                       'I. '
                                                                       'Jordan'},
                                                              {'@pid': '44/1092',
                                                               'text': 'Yair '
                                                                       'Weiss'}]},
                                       'ee': 'https://proceedings.neurips.cc/paper/2001/hash/801272ee79cfde7fa5960571fee36b9b-Abstract.html',
                                       'key': 'conf/nips/NgJW01',
                                       'pages': '849-856',
                                       'title': 'On Spectral Clustering - '
                                                'Analysis and an algorithm.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/nips/NgJW01',
                                       'venue': 'NIPS',
                                       'year': '2001'},
                              'url': 'URL#4987128'},
                             {'@id': '4991395',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '79/3207',
                                                               'text': 'Alice '
                                                                       'X. '
                                                                       'Zheng'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': 'j/MichaelIJordan',
                                                               'text': 'Michael '
                                                                       'I. '
                                                                       'Jordan'}]},
                                       'doi': '10.1145/383952.384003',
                                       'ee': 'https://doi.org/10.1145/383952.384003',
                                       'key': 'conf/sigir/ZhengNJ01',
                                       'pages': '258-266',
                                       'title': 'Stable Algorithms for Link '
                                                'Analysis.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/sigir/ZhengNJ01',
                                       'venue': 'SIGIR',
                                       'year': '2001'},
                              'url': 'URL#4991395'},
                             {'@id': '4993736',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '18/3677',
                                                               'text': 'Eric '
                                                                       'Brill'},
                                                              {'@pid': '00/7739',
                                                               'text': 'Jimmy '
                                                                       'J. '
                                                                       'Lin'},
                                                              {'@pid': '34/5010',
                                                               'text': 'Michele '
                                                                       'Banko'},
                                                              {'@pid': 'd/SusanTDumais',
                                                               'text': 'Susan '
                                                                       'T. '
                                                                       'Dumais'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'http://trec.nist.gov/pubs/trec10/papers/Trec2001Notebook.AskMSRFinal.pdf',
                                       'key': 'conf/trec/BrillLBDN01',
                                       'title': 'Data-Intensive Question '
                                                'Answering.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/trec/BrillLBDN01',
                                       'venue': 'TREC',
                                       'year': '2001'},
                              'url': 'URL#4993736'},
                             {'@id': '5053245',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': 'r/SJRussell',
                                                               'text': 'Stuart '
                                                                       'J. '
                                                                       'Russell'}]},
                                       'key': 'conf/icml/NgR00',
                                       'pages': '663-670',
                                       'title': 'Algorithms for Inverse '
                                                'Reinforcement Learning.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icml/NgR00',
                                       'venue': 'ICML',
                                       'year': '2000'},
                              'url': 'URL#5053245'},
                             {'@id': '5072716',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': 'j/MichaelIJordan',
                                                               'text': 'Michael '
                                                                       'I. '
                                                                       'Jordan'}]},
                                       'ee': 'https://dslpitt.org/uai/displayArticleDetails.jsp?mmnu=1&amp;smnu=2&amp;article_id=48&amp;proceeding_id=16',
                                       'key': 'conf/uai/NgJ00',
                                       'pages': '406-415',
                                       'title': 'PEGASUS - A policy search '
                                                'method for large MDPs and '
                                                'POMDPs.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/uai/NgJ00',
                                       'venue': 'UAI',
                                       'year': '2000'},
                              'url': 'URL#5072716'},
                             {'@id': '5126266',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '67/3618',
                                                               'text': 'Daishi '
                                                                       'Harada'},
                                                              {'@pid': 'r/SJRussell',
                                                               'text': 'Stuart '
                                                                       'J. '
                                                                       'Russell'}]},
                                       'key': 'conf/icml/NgHR99',
                                       'pages': '278-287',
                                       'title': 'Policy Invariance Under '
                                                'Reward Transformations - '
                                                'Theory and Application to '
                                                'Reward Shaping.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icml/NgHR99',
                                       'venue': 'ICML',
                                       'year': '1999'},
                              'url': 'URL#5126266'},
                             {'@id': '5128235',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '78/6858',
                                                               'text': 'Michael '
                                                                       'J. '
                                                                       'Kearns'},
                                                              {'@pid': 'm/YishayMansour',
                                                               'text': 'Yishay '
                                                                       'Mansour'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'http://ijcai.org/Proceedings/99-2/Papers/093.pdf',
                                       'key': 'conf/ijcai/KearnsMN99',
                                       'pages': '1324-1231',
                                       'title': 'A Sparse Sampling Algorithm '
                                                'for Near-Optimal Planning in '
                                                'Large Markov Decision '
                                                'Processes.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/ijcai/KearnsMN99',
                                       'venue': 'IJCAI',
                                       'year': '1999'},
                              'url': 'URL#5128235'},
                             {'@id': '5136728',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '78/6858',
                                                               'text': 'Michael '
                                                                       'J. '
                                                                       'Kearns'},
                                                              {'@pid': 'm/YishayMansour',
                                                               'text': 'Yishay '
                                                                       'Mansour'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'http://papers.nips.cc/paper/1664-approximate-planning-in-large-pomdps-via-reusable-trajectories',
                                       'key': 'conf/nips/KearnsMN99',
                                       'pages': '1001-1007',
                                       'title': 'Approximate Planning in Large '
                                                'POMDPs via Reusable '
                                                'Trajectories.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/nips/KearnsMN99',
                                       'venue': 'NIPS',
                                       'year': '1999'},
                              'url': 'URL#5136728'},
                             {'@id': '5136755',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': 'j/MichaelIJordan',
                                                               'text': 'Michael '
                                                                       'I. '
                                                                       'Jordan'}]},
                                       'ee': 'http://papers.nips.cc/paper/1640-approximate-inference-a-lgorithms-for-two-layer-bayesian-networks',
                                       'key': 'conf/nips/NgJ99',
                                       'pages': '533-539',
                                       'title': 'Approximate Inference A '
                                                'lgorithms for Two-Layer '
                                                'Bayesian Networks.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/nips/NgJ99',
                                       'venue': 'NIPS',
                                       'year': '1999'},
                              'url': 'URL#5136755'},
                             {'@id': '5136756',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '26/4670',
                                                               'text': 'Ronald '
                                                                       'Parr'},
                                                              {'@pid': 'k/DaphneKoller',
                                                               'text': 'Daphne '
                                                                       'Koller'}]},
                                       'ee': 'http://papers.nips.cc/paper/1748-policy-search-via-density-estimation',
                                       'key': 'conf/nips/NgPK99',
                                       'pages': '1022-1028',
                                       'title': 'Policy Search via Density '
                                                'Estimation.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/nips/NgPK99',
                                       'venue': 'NIPS',
                                       'year': '1999'},
                              'url': 'URL#5136756'},
                             {'@id': '5191071',
                              '@score': '7',
                              'info': {'authors': {'author': {'@pid': 'n/AndrewYNg',
                                                              'text': 'Andrew '
                                                                      'Y. Ng'}},
                                       'key': 'conf/icml/Ng98',
                                       'pages': '404-412',
                                       'title': 'On Feature Selection - '
                                                'Learning with Exponentially '
                                                'Many Irrelevant Features as '
                                                'Training Examples.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icml/Ng98',
                                       'venue': 'ICML',
                                       'year': '1998'},
                              'url': 'URL#5191071'},
                             {'@id': '5208723',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '78/6858',
                                                               'text': 'Michael '
                                                                       'J. '
                                                                       'Kearns'},
                                                              {'@pid': 'm/YishayMansour',
                                                               'text': 'Yishay '
                                                                       'Mansour'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1007/978-94-011-5014-9_18',
                                       'ee': 'https://doi.org/10.1007/978-94-011-5014-9_18',
                                       'key': 'books/sp/12/KearnsMN98',
                                       'pages': '495-520',
                                       'title': 'An Information-Theoretic '
                                                'Analysis of Hard and Soft '
                                                'Assignment Methods for '
                                                'Clustering.',
                                       'type': 'Parts in Books or Collections',
                                       'url': 'https://dblp.org/rec/books/sp/12/KearnsMN98',
                                       'venue': 'Learning in Graphical Models',
                                       'year': '1998'},
                              'url': 'URL#5208723'},
                             {'@id': '5226991',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '78/6858',
                                                               'text': 'Michael '
                                                                       'J. '
                                                                       'Kearns'},
                                                              {'@pid': 'm/YishayMansour',
                                                               'text': 'Yishay '
                                                                       'Mansour'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '85/4800',
                                                               'text': 'Dana '
                                                                       'Ron'}]},
                                       'doi': '10.1023/A:1007344726582',
                                       'ee': 'https://doi.org/10.1023/A:1007344726582',
                                       'key': 'journals/ml/KearnsMNR97',
                                       'number': '1',
                                       'pages': '7-50',
                                       'title': 'An Experimental and '
                                                'Theoretical Comparison of '
                                                'Model Selection Methods.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/ml/KearnsMNR97',
                                       'venue': 'Mach. Learn.',
                                       'volume': '27',
                                       'year': '1997'},
                              'url': 'URL#5226991'},
                             {'@id': '5250596',
                              '@score': '7',
                              'info': {'authors': {'author': {'@pid': 'n/AndrewYNg',
                                                              'text': 'Andrew '
                                                                      'Y. Ng'}},
                                       'key': 'conf/icml/Ng97',
                                       'pages': '245-253',
                                       'title': 'Preventing '
                                                '&quot;Overfitting&quot; of '
                                                'Cross-Validation Data.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icml/Ng97',
                                       'venue': 'ICML',
                                       'year': '1997'},
                              'url': 'URL#5250596'},
                             {'@id': '5262945',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '78/6858',
                                                               'text': 'Michael '
                                                                       'J. '
                                                                       'Kearns'},
                                                              {'@pid': 'm/YishayMansour',
                                                               'text': 'Yishay '
                                                                       'Mansour'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Ng'}]},
                                       'ee': 'https://dslpitt.org/uai/displayArticleDetails.jsp?mmnu=1&amp;smnu=2&amp;article_id=322&amp;proceeding_id=13',
                                       'key': 'conf/uai/KearnsMN97',
                                       'pages': '282-293',
                                       'title': 'An Information-Theoretic '
                                                'Analysis of Hard and Soft '
                                                'Assignment Methods for '
                                                'Clustering.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/uai/KearnsMN97',
                                       'venue': 'UAI',
                                       'year': '1997'},
                              'url': 'URL#5262945'},
                             {'@id': '5342231',
                              '@score': '7',
                              'info': {'authors': {'author': [{'@pid': '78/6858',
                                                               'text': 'Michael '
                                                                       'J. '
                                                                       'Kearns'},
                                                              {'@pid': 'm/YishayMansour',
                                                               'text': 'Yishay '
                                                                       'Mansour'},
                                                              {'@pid': 'n/AndrewYNg',
                                                               'text': 'Andrew '
                                                                       'Y. Ng'},
                                                              {'@pid': '85/4800',
                                                               'text': 'Dana '
                                                                       'Ron'}]},
                                       'doi': '10.1145/225298.225301',
                                       'ee': 'https://doi.org/10.1145/225298.225301',
                                       'key': 'conf/colt/KearnsMNR95',
                                       'pages': '21-30',
                                       'title': 'An Experimental and '
                                                'Theoretical Comparison of '
                                                'Model Selection Methods.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/colt/KearnsMNR95',
                                       'venue': 'COLT',
                                       'year': '1995'},
                              'url': 'URL#5342231'},
                             {'@id': '1259382',
                              '@score': '6',
                              'info': {'authors': {'author': [{'@pid': '233/6452',
                                                               'text': 'Andrew '
                                                                       'Luke'},
                                                              {'@pid': '22/410',
                                                               'text': 'Joseph '
                                                                       'Johnson'},
                                                              {'@pid': '08/4453',
                                                               'text': 'Yiu-Kai '
                                                                       'Ng'}]},
                                       'doi': '10.1109/ICBK.2018.00024',
                                       'ee': 'https://doi.org/10.1109/ICBK.2018.00024',
                                       'key': 'conf/icbk/LukeJN18',
                                       'pages': '123-130',
                                       'title': 'Recommending Long-Tail Items '
                                                'Using Extended Tripartite '
                                                'Graphs.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icbk/LukeJN18',
                                       'venue': 'ICBK',
                                       'year': '2018'},
                              'url': 'URL#1259382'},
                             {'@id': '2533941',
                              '@score': '6',
                              'info': {'authors': {'author': [{'@pid': '136/9458',
                                                               'text': 'Ruibin '
                                                                       'Feng'},
                                                              {'@pid': 'l/AndrewChiSingLeung',
                                                               'text': 'Chi-Sing '
                                                                       'Leung'},
                                                              {'@pid': '39/6890',
                                                               'text': 'Kai-Tat '
                                                                       'Ng'},
                                                              {'@pid': 's/JohnSum',
                                                               'text': 'John '
                                                                       'Sum'}]},
                                       'doi': '10.1007/978-3-319-12637-1_35',
                                       'ee': 'https://doi.org/10.1007/978-3-319-12637-1_35',
                                       'key': 'conf/iconip/FengLNS14',
                                       'pages': '279-286',
                                       'title': 'The Performance of the '
                                                'Stochastic DNN-kWTA Network.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/iconip/FengLNS14',
                                       'venue': 'ICONIP',
                                       'year': '2014'},
                              'url': 'URL#2533941'},
                             {'@id': '3078235',
                              '@score': '6',
                              'info': {'authors': {'author': [{'@pid': 'l/AndrewChiSingLeung',
                                                               'text': 'Chi-Sing '
                                                                       'Leung'},
                                                              {'@pid': 's/JohnSum',
                                                               'text': 'Pui-Fai '
                                                                       'Sum'},
                                                              {'@pid': '39/6890',
                                                               'text': 'Kai-Tat '
                                                                       'Ng'}]},
                                       'doi': '10.1007/978-3-642-34487-9_26',
                                       'ee': 'https://doi.org/10.1007/978-3-642-34487-9_26',
                                       'key': 'conf/iconip/LeungSN12',
                                       'pages': '208-216',
                                       'title': 'On the Objective Function and '
                                                'Learning Algorithm for '
                                                'Concurrent Open Node Fault.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/iconip/LeungSN12',
                                       'venue': 'ICONIP',
                                       'year': '2012'},
                              'url': 'URL#3078235'},
                             {'@id': '3078394',
                              '@score': '6',
                              'info': {'authors': {'author': [{'@pid': 't/PeterWaiMingTsang',
                                                               'text': 'Peter '
                                                                       'Wai-Ming '
                                                                       'Tsang'},
                                                              {'@pid': '19/8017',
                                                               'text': 'W. C. '
                                                                       'Situ'},
                                                              {'@pid': 'l/AndrewChiSingLeung',
                                                               'text': 'Chi-Sing '
                                                                       'Leung'},
                                                              {'@pid': '39/6890',
                                                               'text': 'Kai-Tat '
                                                                       'Ng'}]},
                                       'doi': '10.1007/978-3-642-34478-7_26',
                                       'ee': 'https://doi.org/10.1007/978-3-642-34478-7_26',
                                       'key': 'conf/iconip/TsangSLN12',
                                       'pages': '204-211',
                                       'title': 'Fast Affine Invariant Shape '
                                                'Matching from 3D Images Based '
                                                'on the Distance Association '
                                                'Map and the Genetic '
                                                'Algorithm.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/iconip/TsangSLN12',
                                       'venue': 'ICONIP',
                                       'year': '2012'},
                              'url': 'URL#3078394'},
                             {'@id': '239424',
                              '@score': '5',
                              'info': {'authors': {'author': [{'@pid': '151/4270',
                                                               'text': 'Man-Fai '
                                                                       'Leung'},
                                                              {'@pid': '43/7183',
                                                               'text': 'Carlos '
                                                                       'Artemio '
                                                                       'Coello '
                                                                       'Coello'},
                                                              {'@pid': '40/3667',
                                                               'text': 'Chi-Chung '
                                                                       'Cheung'},
                                                              {'@pid': '58/6491',
                                                               'text': 'Sin '
                                                                       'Chun '
                                                                       'Ng'},
                                                              {'@pid': '61/489',
                                                               'text': 'Andrew '
                                                                       'Kwok-Fai '
                                                                       'Lui'}]},
                                       'doi': '10.1109/ACCESS.2020.3031002',
                                       'ee': 'https://doi.org/10.1109/ACCESS.2020.3031002',
                                       'key': 'journals/access/LeungCCNL20',
                                       'pages': '189527-189545',
                                       'title': 'A Hybrid Leader Selection '
                                                'Strategy for Many-Objective '
                                                'Particle Swarm Optimization.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/access/LeungCCNL20',
                                       'venue': 'IEEE Access',
                                       'volume': '8',
                                       'year': '2020'},
                              'url': 'URL#239424'},
                             {'@id': '550986',
                              '@score': '5',
                              'info': {'authors': {'author': [{'@pid': '61/489',
                                                               'text': 'Andrew '
                                                                       'Kwok-Fai '
                                                                       'Lui'},
                                                              {'@pid': '58/6491',
                                                               'text': 'Sin '
                                                                       'Chun '
                                                                       'Ng'},
                                                              {'@pid': '282/7739',
                                                               'text': 'Stella '
                                                                       'Wing-Nga '
                                                                       'Cheung'}]},
                                       'doi': '10.1109/SSCI47803.2020.9308137',
                                       'ee': 'https://doi.org/10.1109/SSCI47803.2020.9308137',
                                       'key': 'conf/ssci/LuiNC20',
                                       'pages': '3091-3098',
                                       'title': 'Entropy-based Recognition of '
                                                'Anomalous Answers for '
                                                'Efficient Grading of Short '
                                                'Answers with an Evolutionary '
                                                'Clustering Algorithm.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/ssci/LuiNC20',
                                       'venue': 'SSCI',
                                       'year': '2020'},
                              'url': 'URL#550986'},
                             {'@id': '1259429',
                              '@score': '5',
                              'info': {'authors': {'author': [{'@pid': '61/489',
                                                               'text': 'Andrew '
                                                                       'Kwok-Fai '
                                                                       'Lui'},
                                                              {'@pid': '223/4921',
                                                               'text': 'Maria '
                                                                       'Hiu '
                                                                       'Man '
                                                                       'Poon'},
                                                              {'@pid': '58/6491',
                                                               'text': 'Sin '
                                                                       'Chun '
                                                                       'Ng'}]},
                                       'doi': '10.1007/978-3-319-94505-7_11',
                                       'ee': 'https://doi.org/10.1007/978-3-319-94505-7_11',
                                       'key': 'conf/icbl/LuiPN18',
                                       'pages': '136-147',
                                       'title': 'A Digital Storytelling Group '
                                                'Assignment for Fostering '
                                                'Sense of Belonging of '
                                                'First-Year Students.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icbl/LuiPN18',
                                       'venue': 'ICBL',
                                       'year': '2018'},
                              'url': 'URL#1259429'},
                             {'@id': '1275600',
                              '@score': '5',
                              'info': {'authors': {'author': [{'@pid': '230/8640',
                                                               'text': 'Chun-Wa '
                                                                       'Leung'},
                                                              {'@pid': '58/6491',
                                                               'text': 'Sin '
                                                                       'Chun '
                                                                       'Ng'},
                                                              {'@pid': '61/489',
                                                               'text': 'Andrew '
                                                                       'K. '
                                                                       'Lui'}]},
                                       'doi': '10.1007/978-3-030-04179-3_50',
                                       'ee': 'https://doi.org/10.1007/978-3-030-04179-3_50',
                                       'key': 'conf/iconip/LeungNL18',
                                       'pages': '564-576',
                                       'title': 'Combining Two-Phase Local '
                                                'Search with Multi-objective '
                                                'Ant Colony Optimization.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/iconip/LeungNL18',
                                       'venue': 'ICONIP',
                                       'year': '2018'},
                              'url': 'URL#1275600'},
                             {'@id': '1341517',
                              '@score': '5',
                              'info': {'authors': {'author': [{'@pid': '190/2587',
                                                               'text': 'Hiu-Hin '
                                                                       'Tam'},
                                                              {'@pid': '58/6491',
                                                               'text': 'Sin '
                                                                       'Chun '
                                                                       'Ng'},
                                                              {'@pid': '61/489',
                                                               'text': 'Andrew '
                                                                       'K. '
                                                                       'Lui'}]},
                                       'doi': '10.1109/SMC.2018.00269',
                                       'ee': 'https://doi.org/10.1109/SMC.2018.00269',
                                       'key': 'conf/smc/TamNL18',
                                       'pages': '1552-1557',
                                       'title': 'Accommodating Perturbation of '
                                                'Cluster Memberships in '
                                                'Optimal Trend by Multi-model '
                                                'Evolutionary Clustering.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/smc/TamNL18',
                                       'venue': 'SMC',
                                       'year': '2018'},
                              'url': 'URL#1341517'},
                             {'@id': '1563886',
                              '@score': '5',
                              'info': {'authors': {'author': [{'@pid': '190/2587',
                                                               'text': 'Hiu-Hin '
                                                                       'Tam'},
                                                              {'@pid': '58/6491',
                                                               'text': 'Sin '
                                                                       'Chun '
                                                                       'Ng'},
                                                              {'@pid': '61/489',
                                                               'text': 'Andrew '
                                                                       'K. '
                                                                       'Lui'},
                                                              {'@pid': '151/4270',
                                                               'text': 'Man-Fai '
                                                                       'Leung'}]},
                                       'doi': '10.1109/CEC.2017.7969513',
                                       'ee': 'https://doi.org/10.1109/CEC.2017.7969513',
                                       'key': 'conf/cec/TamNLL17',
                                       'pages': '1749-1756',
                                       'title': 'Improved activation schema on '
                                                'Automatic Clustering using '
                                                'Differential Evolution '
                                                'algorithm.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/cec/TamNLL17',
                                       'venue': 'CEC',
                                       'year': '2017'},
                              'url': 'URL#1563886'},
                             {'@id': '1884306',
                              '@score': '5',
                              'info': {'authors': {'author': [{'@pid': '190/2587',
                                                               'text': 'Hiu-Hin '
                                                                       'Tam'},
                                                              {'@pid': '151/4270',
                                                               'text': 'Man-Fai '
                                                                       'Leung'},
                                                              {'@pid': '96/9114',
                                                               'text': 'Zhenkun '
                                                                       'Wang'},
                                                              {'@pid': '58/6491',
                                                               'text': 'Sin '
                                                                       'Chun '
                                                                       'Ng'},
                                                              {'@pid': '40/3667',
                                                               'text': 'Chi-Chung '
                                                                       'Cheung'},
                                                              {'@pid': '61/489',
                                                               'text': 'Andrew '
                                                                       'K. '
                                                                       'Lui'}]},
                                       'doi': '10.1109/CEC.2016.7744054',
                                       'ee': 'https://doi.org/10.1109/CEC.2016.7744054',
                                       'key': 'conf/cec/TamLWNCL16',
                                       'pages': '2153-2160',
                                       'title': 'Improved adaptive global '
                                                'replacement scheme for '
                                                'MOEA/D-AGR.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/cec/TamLWNCL16',
                                       'venue': 'CEC',
                                       'year': '2016'},
                              'url': 'URL#1884306'},
                             {'@id': '2185926',
                              '@score': '5',
                              'info': {'authors': {'author': [{'@pid': '151/4270',
                                                               'text': 'Man-Fai '
                                                                       'Leung'},
                                                              {'@pid': '58/6491',
                                                               'text': 'Sin '
                                                                       'Chun '
                                                                       'Ng'},
                                                              {'@pid': '40/3667',
                                                               'text': 'Chi-Chung '
                                                                       'Cheung'},
                                                              {'@pid': '61/489',
                                                               'text': 'Andrew '
                                                                       'K. '
                                                                       'Lui'}]},
                                       'doi': '10.1109/CEC.2015.7257283',
                                       'ee': 'https://doi.org/10.1109/CEC.2015.7257283',
                                       'key': 'conf/cec/LeungNCL15',
                                       'pages': '3156-3162',
                                       'title': 'A new algorithm based on PSO '
                                                'for Multi-Objective '
                                                'Optimization.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/cec/LeungNCL15',
                                       'venue': 'CEC',
                                       'year': '2015'},
                              'url': 'URL#2185926'},
                             {'@id': '2476517',
                              '@score': '5',
                              'info': {'authors': {'author': [{'@pid': '151/4270',
                                                               'text': 'Man-Fai '
                                                                       'Leung'},
                                                              {'@pid': '58/6491',
                                                               'text': 'Sin '
                                                                       'Chun '
                                                                       'Ng'},
                                                              {'@pid': '40/3667',
                                                               'text': 'Chi-Chung '
                                                                       'Cheung'},
                                                              {'@pid': '61/489',
                                                               'text': 'Andrew '
                                                                       'K. '
                                                                       'Lui'}]},
                                       'doi': '10.1109/CEC.2014.6900449',
                                       'ee': 'https://doi.org/10.1109/CEC.2014.6900449',
                                       'key': 'conf/cec/LeungNCL14',
                                       'pages': '1990-1997',
                                       'title': 'A new strategy for finding '
                                                'good local guides in MOPSO.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/cec/LeungNCL14',
                                       'venue': 'IEEE Congress on Evolutionary '
                                                'Computation',
                                       'year': '2014'},
                              'url': 'URL#2476517'},
                             {'@id': '2545095',
                              '@score': '5',
                              'info': {'authors': {'author': [{'@pid': '40/3667',
                                                               'text': 'Chi-Chung '
                                                                       'Cheung'},
                                                              {'@pid': '58/6491',
                                                               'text': 'Sin '
                                                                       'Chun '
                                                                       'Ng'},
                                                              {'@pid': '61/489',
                                                               'text': 'Andrew '
                                                                       'K. '
                                                                       'Lui'},
                                                              {'@pid': '15/10068',
                                                               'text': 'Sean '
                                                                       'Shensheng '
                                                                       'Xu'}]},
                                       'doi': '10.1109/IJCNN.2014.6889622',
                                       'ee': 'https://doi.org/10.1109/IJCNN.2014.6889622',
                                       'key': 'conf/ijcnn/CheungNLX14',
                                       'pages': '1225-1230',
                                       'title': 'Further enhancements in WOM '
                                                'algorithm to solve the local '
                                                'minimum and flat-spot problem '
                                                'in feed-forward neural '
                                                'networks.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/ijcnn/CheungNLX14',
                                       'venue': 'IJCNN',
                                       'year': '2014'},
                              'url': 'URL#2545095'},
                             {'@id': '2826970',
                              '@score': '5',
                              'info': {'authors': {'author': [{'@pid': '40/3667',
                                                               'text': 'Chi-Chung '
                                                                       'Cheung'},
                                                              {'@pid': '58/6491',
                                                               'text': 'Sin '
                                                                       'Chun '
                                                                       'Ng'},
                                                              {'@pid': '61/489',
                                                               'text': 'Andrew '
                                                                       'K. '
                                                                       'Lui'},
                                                              {'@pid': '15/10068',
                                                               'text': 'Sean '
                                                                       'Shensheng '
                                                                       'Xu'}]},
                                       'doi': '10.1109/IJCNN.2013.6707006',
                                       'ee': 'https://doi.org/10.1109/IJCNN.2013.6707006',
                                       'key': 'conf/ijcnn/CheungNLX13',
                                       'pages': '1-6',
                                       'title': 'A new fast learning algorithm '
                                                'with promising global '
                                                'convergence capability for '
                                                'feed-forward neural networks.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/ijcnn/CheungNLX13',
                                       'venue': 'IJCNN',
                                       'year': '2013'},
                              'url': 'URL#2826970'},
                             {'@id': '3070744',
                              '@score': '5',
                              'info': {'authors': {'author': [{'@pid': '61/489',
                                                               'text': 'Andrew '
                                                                       'Kwok-Fai '
                                                                       'Lui'},
                                                              {'@pid': '126/7534',
                                                               'text': 'Ka-Fai '
                                                                       'Wong'},
                                                              {'@pid': '58/6491',
                                                               'text': 'Sin '
                                                                       'Chun '
                                                                       'Ng'},
                                                              {'@pid': '126/7545',
                                                               'text': 'Ka-Hing '
                                                                       'Law'}]},
                                       'ee': 'https://ieeexplore.ieee.org/document/6470123/',
                                       'key': 'conf/icdsc/LuiWNL12',
                                       'pages': '1-6',
                                       'title': 'Development of a mental '
                                                'stress relaxation tool based '
                                                'on guided imagery and '
                                                'Microsoft Kinect.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icdsc/LuiWNL12',
                                       'venue': 'ICDSC',
                                       'year': '2012'},
                              'url': 'URL#3070744'},
                             {'@id': '3089351',
                              '@score': '5',
                              'info': {'authors': {'author': [{'@pid': '40/3667',
                                                               'text': 'Chi-Chung '
                                                                       'Cheung'},
                                                              {'@pid': '58/6491',
                                                               'text': 'Sin '
                                                                       'Chun '
                                                                       'Ng'},
                                                              {'@pid': '61/489',
                                                               'text': 'Andrew '
                                                                       'K. '
                                                                       'Lui'}]},
                                       'doi': '10.1109/IJCNN.2012.6252546',
                                       'ee': 'https://doi.org/10.1109/IJCNN.2012.6252546',
                                       'key': 'conf/ijcnn/CheungNL12',
                                       'pages': '1-6',
                                       'title': 'Improving the Quickprop '
                                                'algorithm.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/ijcnn/CheungNL12',
                                       'venue': 'IJCNN',
                                       'year': '2012'},
                              'url': 'URL#3089351'},
                             {'@id': '3100140',
                              '@score': '5',
                              'info': {'authors': {'author': [{'@pid': '40/3667',
                                                               'text': 'Chi-Chung '
                                                                       'Cheung'},
                                                              {'@pid': '58/6491',
                                                               'text': 'Sin '
                                                                       'Chun '
                                                                       'Ng'},
                                                              {'@pid': '61/489',
                                                               'text': 'Andrew '
                                                                       'Kwok-Fai '
                                                                       'Lui'}]},
                                       'doi': '10.1007/978-3-642-31346-2_65',
                                       'ee': 'https://doi.org/10.1007/978-3-642-31346-2_65',
                                       'key': 'conf/isnn/CheungNL12',
                                       'pages': '580-589',
                                       'title': 'Multi-phase Fast Learning '
                                                'Algorithms for Solving the '
                                                'Local Minimum Problem in '
                                                'Feed-Forward Neural Networks.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/isnn/CheungNL12',
                                       'venue': 'ISNN',
                                       'year': '2012'},
                              'url': 'URL#3100140'},
                             {'@id': '3100198',
                              '@score': '5',
                              'info': {'authors': {'author': [{'@pid': '58/6491',
                                                               'text': 'Sin '
                                                                       'Chun '
                                                                       'Ng'},
                                                              {'@pid': '40/3667',
                                                               'text': 'Chi-Chung '
                                                                       'Cheung'},
                                                              {'@pid': '61/489',
                                                               'text': 'Andrew '
                                                                       'Kwok-Fai '
                                                                       'Lui'},
                                                              {'@pid': '117/3062',
                                                               'text': 'Hau-Ting '
                                                                       'Tse'}]},
                                       'doi': '10.1007/978-3-642-31346-2_24',
                                       'ee': 'https://doi.org/10.1007/978-3-642-31346-2_24',
                                       'key': 'conf/isnn/NgCLT12',
                                       'pages': '206-216',
                                       'title': 'Addressing the Local Minima '
                                                'Problem by Output Monitoring '
                                                'and Modification Algorithms.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/isnn/NgCLT12',
                                       'venue': 'ISNN',
                                       'year': '2012'},
                              'url': 'URL#3100198'},
                             {'@id': '3100199',
                              '@score': '5',
                              'info': {'authors': {'author': [{'@pid': '58/6491',
                                                               'text': 'Sin '
                                                                       'Chun '
                                                                       'Ng'},
                                                              {'@pid': '40/3667',
                                                               'text': 'Chi-Chung '
                                                                       'Cheung'},
                                                              {'@pid': '61/489',
                                                               'text': 'Andrew '
                                                                       'Kwok-Fai '
                                                                       'Lui'},
                                                              {'@pid': '15/10068',
                                                               'text': 'Sean '
                                                                       'Shensheng '
                                                                       'Xu'}]},
                                       'doi': '10.1007/978-3-642-31346-2_51',
                                       'ee': 'https://doi.org/10.1007/978-3-642-31346-2_51',
                                       'key': 'conf/isnn/NgCLX12',
                                       'pages': '448-457',
                                       'title': 'Magnified Gradient Function '
                                                'to Improve First-Order '
                                                'Gradient-Based Learning '
                                                'Algorithms.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/isnn/NgCLX12',
                                       'venue': 'ISNN',
                                       'year': '2012'},
                              'url': 'URL#3100199'},
                             {'@id': '3343208',
                              '@score': '5',
                              'info': {'authors': {'author': [{'@pid': '40/3667',
                                                               'text': 'Chi-Chung '
                                                                       'Cheung'},
                                                              {'@pid': '58/6491',
                                                               'text': 'Sin '
                                                                       'Chun '
                                                                       'Ng'},
                                                              {'@pid': '61/489',
                                                               'text': 'Andrew '
                                                                       'K. '
                                                                       'Lui'},
                                                              {'@pid': '15/10068',
                                                               'text': 'Sean '
                                                                       'Shensheng '
                                                                       'Xu'}]},
                                       'doi': '10.1109/IJCNN.2011.6033323',
                                       'ee': 'https://doi.org/10.1109/IJCNN.2011.6033323',
                                       'key': 'conf/ijcnn/CheungNLX11',
                                       'pages': '937-942',
                                       'title': 'A fast learning algorithm '
                                                'with Promising Convergence '
                                                'Capability.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/ijcnn/CheungNLX11',
                                       'venue': 'IJCNN',
                                       'year': '2011'},
                              'url': 'URL#3343208'},
                             {'@id': '3458263',
                              '@score': '5',
                              'info': {'authors': {'author': [{'@pid': '61/489',
                                                               'text': 'Andrew '
                                                                       'K. '
                                                                       'Lui'},
                                                              {'@pid': '58/6491',
                                                               'text': 'Sin '
                                                                       'Chun '
                                                                       'Ng'},
                                                              {'@pid': '46/1712',
                                                               'text': 'Yannie '
                                                                       'H. Y. '
                                                                       'Cheung'},
                                                              {'@pid': '162/8386',
                                                               'text': 'Prabhat '
                                                                       'Gurung'}]},
                                       'doi': '10.1145/1869746.1869762',
                                       'ee': 'https://doi.org/10.1145/1869746.1869762',
                                       'key': 'journals/inroads/LuiNCG10',
                                       'number': '4',
                                       'pages': '49-53',
                                       'title': 'Facilitating independent '
                                                'learning with Lego Mindstorms '
                                                'robots.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/inroads/LuiNCG10',
                                       'venue': 'Inroads',
                                       'volume': '1',
                                       'year': '2010'},
                              'url': 'URL#3458263'},
                             {'@id': '3573756',
                              '@score': '5',
                              'info': {'authors': {'author': [{'@pid': '40/3667',
                                                               'text': 'Chi-Chung '
                                                                       'Cheung'},
                                                              {'@pid': '58/6491',
                                                               'text': 'Sin '
                                                                       'Chun '
                                                                       'Ng'},
                                                              {'@pid': '61/489',
                                                               'text': 'Andrew '
                                                                       'K. '
                                                                       'Lui'},
                                                              {'@pid': '15/10068',
                                                               'text': 'Sean '
                                                                       'Shensheng '
                                                                       'Xu'}]},
                                       'doi': '10.1109/IJCNN.2010.5596519',
                                       'ee': 'https://doi.org/10.1109/IJCNN.2010.5596519',
                                       'key': 'conf/ijcnn/CheungNLX10',
                                       'pages': '1-7',
                                       'title': 'Enhanced Two-Phase method in '
                                                'fast learning algorithms.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/ijcnn/CheungNLX10',
                                       'venue': 'IJCNN',
                                       'year': '2010'},
                              'url': 'URL#3573756'},
                             {'@id': '4072210',
                              '@score': '5',
                              'info': {'authors': {'author': [{'@pid': '61/489',
                                                               'text': 'Andrew '
                                                                       'K. '
                                                                       'Lui'},
                                                              {'@pid': '29/7464',
                                                               'text': 'Philip '
                                                                       'M. '
                                                                       'Tsang'},
                                                              {'@pid': '43/5628',
                                                               'text': 'Reggie '
                                                                       'Kwan'},
                                                              {'@pid': '58/6491',
                                                               'text': 'Sin '
                                                                       'Chun '
                                                                       'Ng'},
                                                              {'@pid': '46/1712',
                                                               'text': 'Yannie '
                                                                       'H. Y. '
                                                                       'Cheung'},
                                                              {'@pid': '71/509',
                                                               'text': 'Sheung-On '
                                                                       'Choy'}]},
                                       'doi': '10.1111/J.1467-8535.2006.00690.X',
                                       'ee': 'https://doi.org/10.1111/j.1467-8535.2006.00690.x',
                                       'key': 'journals/bjet/LuiTKNCC07',
                                       'number': '6',
                                       'pages': '1020-1036',
                                       'title': 'An evaluation framework of '
                                                'expertise presence in '
                                                'computer conferences.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/bjet/LuiTKNCC07',
                                       'venue': 'Br. J. Educ. Technol.',
                                       'volume': '38',
                                       'year': '2007'},
                              'url': 'URL#4072210'},
                             {'@id': '493343',
                              '@score': '4',
                              'info': {'authors': {'author': [{'@pid': '58/7703',
                                                               'text': 'Qingqing '
                                                                       'Cheng'},
                                                              {'@pid': '204/8317-1',
                                                               'text': 'Zhipeng '
                                                                       'Lin '
                                                                       '0001'},
                                                              {'@pid': '07/314-a',
                                                               'text': 'J. '
                                                                       'Andrew '
                                                                       'Zhang'},
                                                              {'@pid': '95/10112',
                                                               'text': 'Diep '
                                                                       'N. '
                                                                       'Nguyen'},
                                                              {'@pid': '18/6096-1',
                                                               'text': 'Xiaojing '
                                                                       'Huang '
                                                                       '0001'},
                                                              {'@pid': '210/6676',
                                                               'text': 'Asanka '
                                                                       'Kekirigoda'},
                                                              {'@pid': '62/1745',
                                                               'text': 'Kin-Ping '
                                                                       'Hui'}]},
                                       'doi': '10.1109/ICSPCS50536.2020.9310062',
                                       'ee': 'https://doi.org/10.1109/ICSPCS50536.2020.9310062',
                                       'key': 'conf/icspcs/ChengLZNHKH20',
                                       'pages': '1-6',
                                       'title': 'Multi-user MIMO with Jamming '
                                                'Suppression for '
                                                'Spectrum-Efficient Tactical '
                                                'Communications.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icspcs/ChengLZNHKH20',
                                       'venue': 'ICSPCS',
                                       'year': '2020'},
                              'url': 'URL#493343'},
                             {'@id': '493398',
                              '@score': '4',
                              'info': {'authors': {'author': [{'@pid': '07/314-a',
                                                               'text': 'J. '
                                                                       'Andrew '
                                                                       'Zhang'},
                                                              {'@pid': '98/730',
                                                               'text': 'Linh '
                                                                       'Hoang'},
                                                              {'@pid': '95/10112',
                                                               'text': 'Diep '
                                                                       'N. '
                                                                       'Nguyen'},
                                                              {'@pid': '18/6096-1',
                                                               'text': 'Xiaojing '
                                                                       'Huang '
                                                                       '0001'},
                                                              {'@pid': '210/6676',
                                                               'text': 'Asanka '
                                                                       'Kekirigoda'},
                                                              {'@pid': '62/1745',
                                                               'text': 'Kin-Ping '
                                                                       'Hui'}]},
                                       'doi': '10.1109/ICSPCS50536.2020.9310055',
                                       'ee': 'https://doi.org/10.1109/ICSPCS50536.2020.9310055',
                                       'key': 'conf/icspcs/ZhangHNHKH20',
                                       'pages': '1-7',
                                       'title': 'Multi-user MIMO '
                                                'Communications with '
                                                'Interference Mitigation in '
                                                'Time-varying Channels.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icspcs/ZhangHNHKH20',
                                       'venue': 'ICSPCS',
                                       'year': '2020'},
                              'url': 'URL#493398'},
                             {'@id': '749657',
                              '@score': '4',
                              'info': {'authors': {'author': [{'@pid': '213/6879',
                                                               'text': 'Floris '
                                                                       'P. '
                                                                       'Barthel'},
                                                              {'@pid': '184/4954',
                                                               'text': 'Kevin '
                                                                       'C. '
                                                                       'Johnson'},
                                                              {'@pid': '163/6674',
                                                               'text': 'Frederick '
                                                                       'S. '
                                                                       'Varn'},
                                                              {'@pid': '270/7866',
                                                               'text': 'Anzhela '
                                                                       'D. '
                                                                       'Moskalik'},
                                                              {'@pid': '247/1792',
                                                               'text': 'Georgette '
                                                                       'Tanner'},
                                                              {'@pid': '270/8845',
                                                               'text': 'Emre '
                                                                       'Kocakavuk'},
                                                              {'@pid': '06/5221',
                                                               'text': 'Kevin '
                                                                       'J. '
                                                                       'Anderson'},
                                                              {'@pid': '270/9203',
                                                               'text': 'Olajide '
                                                                       'Abiola'},
                                                              {'@pid': '16/8659',
                                                               'text': 'Kenneth '
                                                                       'D. '
                                                                       'Aldape'},
                                                              {'@pid': '270/9501',
                                                               'text': 'Kristin '
                                                                       'D. '
                                                                       'Alfaro'},
                                                              {'@pid': '270/8003',
                                                               'text': 'Donat '
                                                                       'Alpar'},
                                                              {'@pid': '46/9331',
                                                               'text': 'Samirkumar '
                                                                       'B. '
                                                                       'Amin'},
                                                              {'@pid': '270/8534',
                                                               'text': 'David '
                                                                       'M. '
                                                                       'Ashley'},
                                                              {'@pid': '270/8071',
                                                               'text': 'Pratiti '
                                                                       'Bandopadhayay'},
                                                              {'@pid': '123/8538',
                                                               'text': 'Jill '
                                                                       'S. '
                                                                       'Barnholtz-Sloan'},
                                                              {'@pid': '75/7109',
                                                               'text': 'Rameen '
                                                                       'Beroukhim'},
                                                              {'@pid': '87/6748',
                                                               'text': 'Christoph '
                                                                       'Bock'},
                                                              {'@pid': '270/9339',
                                                               'text': 'Priscilla '
                                                                       'K. '
                                                                       'Brastianos'},
                                                              {'@pid': '07/8760',
                                                               'text': 'Daniel '
                                                                       'J. '
                                                                       'Brat'},
                                                              {'@pid': '270/7950',
                                                               'text': 'Andrew '
                                                                       'R. '
                                                                       'Brodbelt'},
                                                              {'@pid': '270/9247',
                                                               'text': 'Alexander '
                                                                       'F. '
                                                                       'Bruns'},
                                                              {'@pid': '82/6452',
                                                               'text': 'Ketan '
                                                                       'R. '
                                                                       'Bulsara'},
                                                              {'@pid': '270/8695',
                                                               'text': 'Aruna '
                                                                       'Chakrabarty'},
                                                              {'@pid': '270/9371',
                                                               'text': 'Arnab '
                                                                       'Chakravarti'},
                                                              {'@pid': '77/3008',
                                                               'text': 'Jeffrey '
                                                                       'H. '
                                                                       'Chuang'},
                                                              {'@pid': '270/8452',
                                                               'text': 'Elizabeth '
                                                                       'B. '
                                                                       'Claus'},
                                                              {'@pid': '270/8978',
                                                               'text': 'Elizabeth '
                                                                       'J. '
                                                                       'Cochran'},
                                                              {'@pid': '270/9170',
                                                               'text': 'Jennifer '
                                                                       'Connelly'},
                                                              {'@pid': '126/9739',
                                                               'text': 'Joseph '
                                                                       'F. '
                                                                       'Costello'},
                                                              {'@pid': '270/9104',
                                                               'text': 'Gaetano '
                                                                       'Finocchiaro'},
                                                              {'@pid': '270/9197',
                                                               'text': 'Michael '
                                                                       'N. '
                                                                       'Fletcher'},
                                                              {'@pid': '270/8165',
                                                               'text': 'Pim J. '
                                                                       'French'},
                                                              {'@pid': '270/8816',
                                                               'text': 'Hui K. '
                                                                       'Gan'},
                                                              {'@pid': '270/8427',
                                                               'text': 'Mark '
                                                                       'R. '
                                                                       'Gilbert'},
                                                              {'@pid': '270/9279',
                                                               'text': 'Peter '
                                                                       'V. '
                                                                       'Gould'},
                                                              {'@pid': '270/8248',
                                                               'text': 'Matthew '
                                                                       'R. '
                                                                       'Grimmer'},
                                                              {'@pid': '151/8088',
                                                               'text': 'Antonio '
                                                                       'Iavarone'},
                                                              {'@pid': '270/8068',
                                                               'text': 'Azzam '
                                                                       'Ismail'},
                                                              {'@pid': '150/2055',
                                                               'text': 'Michael '
                                                                       'D. '
                                                                       'Jenkinson'},
                                                              {'@pid': '270/9045',
                                                               'text': 'Mustafa '
                                                                       'Khasraw'},
                                                              {'@pid': '52/589',
                                                               'text': 'Hoon '
                                                                       'Kim'},
                                                              {'@pid': '270/8812',
                                                               'text': 'Mathilde '
                                                                       'C. M. '
                                                                       'Kouwenhoven'},
                                                              {'@pid': '232/4093',
                                                               'text': 'Peter '
                                                                       'S. '
                                                                       'LaViolette'},
                                                              {'@pid': '136/3484',
                                                               'text': 'Meihong '
                                                                       'Li'},
                                                              {'@pid': '35/6392',
                                                               'text': 'Peter '
                                                                       'Lichter'},
                                                              {'@pid': '270/7884',
                                                               'text': 'Keith '
                                                                       'L. '
                                                                       'Ligon'},
                                                              {'@pid': '249/3270',
                                                               'text': 'Allison '
                                                                       'K. '
                                                                       'Lowman'},
                                                              {'@pid': '270/7885',
                                                               'text': 'Tathiane '
                                                                       'M. '
                                                                       'Malta'},
                                                              {'@pid': '16/11009',
                                                               'text': 'Tali '
                                                                       'Mazor'},
                                                              {'@pid': '270/8161',
                                                               'text': 'Kerrie '
                                                                       'L. '
                                                                       'McDonald'},
                                                              {'@pid': '23/1755',
                                                               'text': 'Annette '
                                                                       'M. '
                                                                       'Molinaro'},
                                                              {'@pid': '56/6433',
                                                               'text': 'Do-Hyun '
                                                                       'Nam'},
                                                              {'@pid': '270/8930',
                                                               'text': 'Naema '
                                                                       'Nayyar'},
                                                              {'@pid': '270/8962',
                                                               'text': 'Ho '
                                                                       'Keung '
                                                                       'Ng'},
                                                              {'@pid': '270/7911',
                                                               'text': 'Chew '
                                                                       'Yee '
                                                                       'Ngan'},
                                                              {'@pid': '270/9253',
                                                               'text': 'Simone '
                                                                       'P. '
                                                                       'Niclou'},
                                                              {'@pid': '270/9317',
                                                               'text': 'Johanna '
                                                                       'M. '
                                                                       'Niers'},
                                                              {'@pid': '242/5334',
                                                               'text': 'Houtan '
                                                                       'Noushmehr'},
                                                              {'@pid': '157/3305',
                                                               'text': 'Javad '
                                                                       'Noorbakhsh'},
                                                              {'@pid': '270/8707',
                                                               'text': 'D. '
                                                                       'Ryan '
                                                                       'Ormond'},
                                                              {'@pid': '220/5389',
                                                               'text': 'Chul-Kee '
                                                                       'Park'},
                                                              {'@pid': '123/6052',
                                                               'text': 'Laila '
                                                                       'M. '
                                                                       'Poisson'},
                                                              {'@pid': '01/11007',
                                                               'text': 'Raul '
                                                                       'Rabadan'},
                                                              {'@pid': '270/4536',
                                                               'text': 'Bernhard '
                                                                       'Radlwimmer'},
                                                              {'@pid': '141/2058',
                                                               'text': 'Ganesh '
                                                                       'Rao'},
                                                              {'@pid': '270/4750',
                                                               'text': 'Guido '
                                                                       'Reifenberger'},
                                                              {'@pid': '270/8232',
                                                               'text': 'Jason '
                                                                       'K. Sa'},
                                                              {'@pid': '62/4798',
                                                               'text': 'Michael '
                                                                       'Schuster'},
                                                              {'@pid': '270/8386',
                                                               'text': 'Brian '
                                                                       'L. '
                                                                       'Shaw'},
                                                              {'@pid': '270/8030',
                                                               'text': 'Susan '
                                                                       'C. '
                                                                       'Short'},
                                                              {'@pid': '42/7106',
                                                               'text': 'Peter '
                                                                       'A. E. '
                                                                       'Sillevis '
                                                                       'Smitt'},
                                                              {'@pid': '155/2547',
                                                               'text': 'Andrew '
                                                                       'E. '
                                                                       'Sloan'},
                                                              {'@pid': '25/11382',
                                                               'text': 'Marion '
                                                                       'Smits'},
                                                              {'@pid': '66/1389',
                                                               'text': 'Hiromichi '
                                                                       'Suzuki'},
                                                              {'@pid': '270/8142',
                                                               'text': 'Ghazaleh '
                                                                       'Tabatabai'},
                                                              {'@pid': '07/10560',
                                                               'text': 'Erwin '
                                                                       'G. Van '
                                                                       'Meir'},
                                                              {'@pid': '270/9036',
                                                               'text': 'Colin '
                                                                       'Watts'},
                                                              {'@pid': '68/6465',
                                                               'text': 'Michael '
                                                                       'Weller'},
                                                              {'@pid': '35/3865',
                                                               'text': 'Pieter '
                                                                       'Wesseling'},
                                                              {'@pid': '270/7934',
                                                               'text': 'Bart '
                                                                       'A. '
                                                                       'Westerman'},
                                                              {'@pid': '07/11397',
                                                               'text': 'Georg '
                                                                       'Widhalm'},
                                                              {'@pid': '270/8370',
                                                               'text': 'Adelheid '
                                                                       'Woehrer'},
                                                              {'@pid': '270/8393',
                                                               'text': 'W. K. '
                                                                       'Alfred '
                                                                       'Yung'},
                                                              {'@pid': '270/8291',
                                                               'text': 'Gelareh '
                                                                       'Zadeh'},
                                                              {'@pid': '270/7904',
                                                               'text': 'Jason '
                                                                       'T. '
                                                                       'Huse'},
                                                              {'@pid': '270/8272',
                                                               'text': 'John '
                                                                       'F. De '
                                                                       'Groot'},
                                                              {'@pid': '32/9983',
                                                               'text': 'Lucy '
                                                                       'F. '
                                                                       'Stead'},
                                                              {'@pid': '24/2254',
                                                               'text': 'Roel '
                                                                       'G. W. '
                                                                       'Verhaak'}]},
                                       'doi': '10.1038/S41586-019-1775-1',
                                       'ee': 'https://doi.org/10.1038/s41586-019-1775-1',
                                       'key': 'journals/nature/BarthelJVMTKAAA19',
                                       'number': '7785',
                                       'pages': '112-120',
                                       'title': 'Longitudinal molecular '
                                                'trajectories of diffuse '
                                                'glioma in adults.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/nature/BarthelJVMTKAAA19',
                                       'venue': 'Nat.',
                                       'volume': '576',
                                       'year': '2019'},
                              'url': 'URL#749657'},
                             {'@id': '785144',
                              '@score': '4',
                              'info': {'authors': {'author': [{'@pid': '65/3050',
                                                               'text': 'Cheng-Yaw '
                                                                       'Low'},
                                                              {'@pid': 't/AndrewTeohBengJin',
                                                               'text': 'Andrew '
                                                                       'Beng '
                                                                       'Jin '
                                                                       'Teoh'},
                                                              {'@pid': '152/5634',
                                                               'text': 'Cong '
                                                                       'Jie '
                                                                       'Ng'}]},
                                       'doi': '10.1109/TCSVT.2017.2761829',
                                       'ee': 'https://doi.org/10.1109/TCSVT.2017.2761829',
                                       'key': 'journals/tcsv/LowTN19',
                                       'number': '1',
                                       'pages': '115-129',
                                       'title': 'Multi-Fold Gabor, PCA, and '
                                                'ICA Filter Convolution '
                                                'Descriptor for Face '
                                                'Recognition.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/tcsv/LowTN19',
                                       'venue': 'IEEE Trans. Circuits Syst. '
                                                'Video Technol.',
                                       'volume': '29',
                                       'year': '2019'},
                              'url': 'URL#785144'},
                             {'@id': '937774',
                              '@score': '4',
                              'info': {'authors': {'author': [{'@pid': '210/6676',
                                                               'text': 'Asanka '
                                                                       'Kekirigoda'},
                                                              {'@pid': '62/1745',
                                                               'text': 'Kin-Ping '
                                                                       'Hui'},
                                                              {'@pid': '58/7703',
                                                               'text': 'Qingqing '
                                                                       'Cheng'},
                                                              {'@pid': '204/8317-1',
                                                               'text': 'Zhipeng '
                                                                       'Lin '
                                                                       '0001'},
                                                              {'@pid': '07/314-a',
                                                               'text': 'J. '
                                                                       'Andrew '
                                                                       'Zhang'},
                                                              {'@pid': '95/10112',
                                                               'text': 'Diep '
                                                                       'N. '
                                                                       'Nguyen'},
                                                              {'@pid': '18/6096-1',
                                                               'text': 'Xiaojing '
                                                                       'Huang '
                                                                       '0001'}]},
                                       'doi': '10.1109/MILCOM47813.2019.9020756',
                                       'ee': 'https://doi.org/10.1109/MILCOM47813.2019.9020756',
                                       'key': 'conf/milcom/KekirigodaHCLZN19',
                                       'pages': '658-663',
                                       'title': 'Massive MIMO for Tactical '
                                                'Ad-hoc Networks in RF '
                                                'Contested Environments.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/milcom/KekirigodaHCLZN19',
                                       'venue': 'MILCOM',
                                       'year': '2019'},
                              'url': 'URL#937774'},
                             {'@id': '1132522',
                              '@score': '4',
                              'info': {'authors': {'author': [{'@pid': '152/5634',
                                                               'text': 'Cong '
                                                                       'Jie '
                                                                       'Ng'},
                                                              {'@pid': '65/3050',
                                                               'text': 'Cheng-Yaw '
                                                                       'Low'},
                                                              {'@pid': '18/1519',
                                                               'text': 'Kar-Ann '
                                                                       'Toh'},
                                                              {'@pid': '37/6321',
                                                               'text': 'Jaihie '
                                                                       'Kim'},
                                                              {'@pid': 't/AndrewTeohBengJin',
                                                               'text': 'Andrew '
                                                                       'Beng '
                                                                       'Jin '
                                                                       'Teoh'}]},
                                       'doi': '10.1016/J.JVCIR.2018.07.002',
                                       'ee': 'https://doi.org/10.1016/j.jvcir.2018.07.002',
                                       'key': 'journals/jvcir/NgLTKT18',
                                       'pages': '548-560',
                                       'title': 'Orthogonal filter banks with '
                                                'region Log-TiedRank '
                                                'covariance matrices for face '
                                                'recognition.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/jvcir/NgLTKT18',
                                       'venue': 'J. Vis. Commun. Image '
                                                'Represent.',
                                       'volume': '55',
                                       'year': '2018'},
                              'url': 'URL#1132522'},
                             {'@id': '1215655',
                              '@score': '4',
                              'info': {'authors': {'author': [{'@pid': '31/7727',
                                                               'text': 'Jie '
                                                                       'Qi'},
                                                              {'@pid': '25/6737',
                                                               'text': 'Leah '
                                                                       'Buechley'},
                                                              {'@pid': '217/9243',
                                                               'text': 'Andrew '
                                                                       '&quot;bunnie&quot; '
                                                                       'Huang'},
                                                              {'@pid': '217/9477',
                                                               'text': 'Patricia '
                                                                       'Ng'},
                                                              {'@pid': '217/9274',
                                                               'text': 'Sean '
                                                                       'Cross'},
                                                              {'@pid': '46/4069',
                                                               'text': 'Joseph '
                                                                       'A. '
                                                                       'Paradiso'}]},
                                       'doi': '10.1145/3173574.3173826',
                                       'ee': 'https://doi.org/10.1145/3173574.3173826',
                                       'key': 'conf/chi/QiBHNCP18',
                                       'pages': '252',
                                       'title': 'Chibitronics in the Wild - '
                                                'Engaging New Communities in '
                                                'Creating Technology with '
                                                'Paper Electronics.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/chi/QiBHNCP18',
                                       'venue': 'CHI',
                                       'year': '2018'},
                              'url': 'URL#1215655'},
                             {'@id': '1809354',
                              '@score': '4',
                              'info': {'authors': {'author': [{'@pid': '30/10935',
                                                               'text': 'Luca '
                                                                       'Saba'},
                                                              {'@pid': '135/5024',
                                                               'text': 'Joel '
                                                                       'Chia '
                                                                       'Ming '
                                                                       'Than'},
                                                              {'@pid': '38/9160',
                                                               'text': 'Norliza '
                                                                       'Mohd. '
                                                                       'Noor'},
                                                              {'@pid': '09/9448',
                                                               'text': 'Omar '
                                                                       'Mohd. '
                                                                       'Rijal'},
                                                              {'@pid': '135/5233',
                                                               'text': 'Rosminah '
                                                                       'M. '
                                                                       'Kassim'},
                                                              {'@pid': '41/9160',
                                                               'text': 'Ashari '
                                                                       'Yunus'},
                                                              {'@pid': '176/7645',
                                                               'text': 'Chuen '
                                                                       'Rue '
                                                                       'Ng'},
                                                              {'@pid': '48/4080',
                                                               'text': 'Jasjit '
                                                                       'S. '
                                                                       'Suri'}]},
                                       'doi': '10.1007/S10916-016-0504-7',
                                       'ee': 'https://doi.org/10.1007/s10916-016-0504-7',
                                       'key': 'journals/jms/SabaTNRKYNS16',
                                       'number': '6',
                                       'pages': '142:1-142:18',
                                       'title': 'Inter-observer Variability '
                                                'Analysis of Automatic Lung '
                                                'Delineation in Normal and '
                                                'Disease Patients.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/jms/SabaTNRKYNS16',
                                       'venue': 'J. Medical Syst.',
                                       'volume': '40',
                                       'year': '2016'},
                              'url': 'URL#1809354'},
                             {'@id': '1925604',
                              '@score': '4',
                              'info': {'authors': {'author': [{'@pid': '65/3050',
                                                               'text': 'Cheng-Yaw '
                                                                       'Low'},
                                                              {'@pid': 't/AndrewTeohBengJin',
                                                               'text': 'Andrew '
                                                                       'Beng '
                                                                       'Jin '
                                                                       'Teoh'},
                                                              {'@pid': '152/5634',
                                                               'text': 'Cong '
                                                                       'Jie '
                                                                       'Ng'}]},
                                       'doi': '10.1109/ICASSP.2016.7472046',
                                       'ee': 'https://doi.org/10.1109/ICASSP.2016.7472046',
                                       'key': 'conf/icassp/LowTN16',
                                       'pages': '2094-2098',
                                       'title': 'Multi-fold Gabor filter '
                                                'convolution descriptor for '
                                                'face recognition.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icassp/LowTN16',
                                       'venue': 'ICASSP',
                                       'year': '2016'},
                              'url': 'URL#1925604'},
                             {'@id': '1925708',
                              '@score': '4',
                              'info': {'authors': {'author': [{'@pid': '152/5634',
                                                               'text': 'Cong '
                                                                       'Jie '
                                                                       'Ng'},
                                                              {'@pid': 't/AndrewTeohBengJin',
                                                               'text': 'Andrew '
                                                                       'Beng '
                                                                       'Jin '
                                                                       'Teoh'},
                                                              {'@pid': '65/3050',
                                                               'text': 'Cheng-Yaw '
                                                                       'Low'}]},
                                       'doi': '10.1109/ICASSP.2016.7472047',
                                       'ee': 'https://doi.org/10.1109/ICASSP.2016.7472047',
                                       'key': 'conf/icassp/NgTL16',
                                       'pages': '2099-2103',
                                       'title': 'DCT based region log-tiedrank '
                                                'covariance matrices for face '
                                                'recognition.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icassp/NgTL16',
                                       'venue': 'ICASSP',
                                       'year': '2016'},
                              'url': 'URL#1925708'},
                             {'@id': '2036883',
                              '@score': '4',
                              'info': {'authors': {'author': [{'@pid': '65/3050',
                                                               'text': 'Cheng-Yaw '
                                                                       'Low'},
                                                              {'@pid': 't/AndrewTeohBengJin',
                                                               'text': 'Andrew '
                                                                       'Beng '
                                                                       'Jin '
                                                                       'Teoh'},
                                                              {'@pid': '152/5634',
                                                               'text': 'Cong '
                                                                       'Jie '
                                                                       'Ng'}]},
                                       'ee': 'http://arxiv.org/abs/1604.07057',
                                       'key': 'journals/corr/LowTN16',
                                       'title': 'Multi-Fold Gabor, PCA and ICA '
                                                'Filter Convolution Descriptor '
                                                'for Face Recognition.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/LowTN16',
                                       'venue': 'CoRR',
                                       'volume': 'abs/1604.07057',
                                       'year': '2016'},
                              'url': 'URL#2036883'},
                             {'@id': '2173926',
                              '@score': '4',
                              'info': {'authors': {'author': [{'@pid': '152/5634',
                                                               'text': 'Cong '
                                                                       'Jie '
                                                                       'Ng'},
                                                              {'@pid': 't/AndrewTeohBengJin',
                                                               'text': 'Andrew '
                                                                       'Beng '
                                                                       'Jin '
                                                                       'Teoh'}]},
                                       'doi': '10.1109/APSIPA.2015.7415375',
                                       'ee': 'https://doi.org/10.1109/APSIPA.2015.7415375',
                                       'key': 'conf/apsipa/NgT15',
                                       'pages': '761-768',
                                       'title': 'DCTNet - A simple '
                                                'learning-free approach for '
                                                'face recognition.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/apsipa/NgT15',
                                       'venue': 'APSIPA',
                                       'year': '2015'},
                              'url': 'URL#2173926'},
                             {'@id': '2247283',
                              '@score': '4',
                              'info': {'authors': {'author': [{'@pid': '176/7645',
                                                               'text': 'Chuen '
                                                                       'Rue '
                                                                       'Ng'},
                                                              {'@pid': '135/5024',
                                                               'text': 'Joel '
                                                                       'Chia '
                                                                       'Ming '
                                                                       'Than'},
                                                              {'@pid': '38/9160',
                                                               'text': 'Norliza '
                                                                       'Mohd. '
                                                                       'Noor'},
                                                              {'@pid': '09/9448',
                                                               'text': 'Omar '
                                                                       'Mohd. '
                                                                       'Rijal'}]},
                                       'doi': '10.1109/ICSIPA.2015.7412232',
                                       'ee': 'https://doi.org/10.1109/ICSIPA.2015.7412232',
                                       'key': 'conf/icsipa/NgTNR15',
                                       'pages': '443-446',
                                       'title': 'Double segmentation method '
                                                'for brain region using FCM '
                                                'and graph cut for CT scan '
                                                'images.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icsipa/NgTNR15',
                                       'venue': 'ICSIPA',
                                       'year': '2015'},
                              'url': 'URL#2247283'},
                             {'@id': '2337304',
                              '@score': '4',
                              'info': {'authors': {'author': [{'@pid': '152/5634',
                                                               'text': 'Cong '
                                                                       'Jie '
                                                                       'Ng'},
                                                              {'@pid': 't/AndrewTeohBengJin',
                                                               'text': 'Andrew '
                                                                       'Beng '
                                                                       'Jin '
                                                                       'Teoh'}]},
                                       'ee': 'http://arxiv.org/abs/1507.02049',
                                       'key': 'journals/corr/NgT15',
                                       'title': 'DCTNet - A Simple '
                                                'Learning-free Approach for '
                                                'Face Recognition.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/NgT15',
                                       'venue': 'CoRR',
                                       'volume': 'abs/1507.02049',
                                       'year': '2015'},
                              'url': 'URL#2337304'},
                             {'@id': '2360128',
                              '@score': '4',
                              'info': {'authors': {'author': [{'@pid': '176/7645',
                                                               'text': 'C. R. '
                                                                       'Andrew '
                                                                       'Ng'},
                                                              {'@pid': '40/3571',
                                                               'text': 'Wai '
                                                                       'Yie '
                                                                       'Leong'}]},
                                       'doi': '10.1016/J.BSPC.2014.01.005',
                                       'ee': 'https://doi.org/10.1016/j.bspc.2014.01.005',
                                       'key': 'journals/bspc/NgL14',
                                       'pages': '92-101',
                                       'title': 'An EEG-based approach for '
                                                'left-handedness detection.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/bspc/NgL14',
                                       'venue': 'Biomed. Signal Process. '
                                                'Control.',
                                       'volume': '10',
                                       'year': '2014'},
                              'url': 'URL#2360128'},
                             {'@id': '2379111',
                              '@score': '4',
                              'info': {'authors': {'author': [{'@pid': '35/5229',
                                                               'text': 'Wojtek '
                                                                       'Goscinski'},
                                                              {'@pid': '38/3008',
                                                               'text': 'Paul '
                                                                       'McIntosh'},
                                                              {'@pid': '155/6870',
                                                               'text': 'Ulrich '
                                                                       'Claus '
                                                                       'Felzmann'},
                                                              {'@pid': '04/3929',
                                                               'text': 'Anton '
                                                                       'Maksimenko'},
                                                              {'@pid': '58/8698',
                                                               'text': 'Christopher '
                                                                       'Hall'},
                                                              {'@pid': '124/2215',
                                                               'text': 'Timur '
                                                                       'Gureyev'},
                                                              {'@pid': '92/8911',
                                                               'text': 'Darren '
                                                                       'Thompson'},
                                                              {'@pid': '64/2690',
                                                               'text': 'Andrew '
                                                                       'L. '
                                                                       'Janke'},
                                                              {'@pid': '23/10742',
                                                               'text': 'Graham '
                                                                       'J. '
                                                                       'Galloway'},
                                                              {'@pid': '124/2310',
                                                               'text': 'Neil '
                                                                       'E. B. '
                                                                       'Killeen'},
                                                              {'@pid': '86/4709',
                                                               'text': 'Parnesh '
                                                                       'Raniga'},
                                                              {'@pid': '136/7372',
                                                               'text': 'Owen '
                                                                       'Kaluza'},
                                                              {'@pid': '155/6506',
                                                               'text': 'Amanda '
                                                                       'Ng'},
                                                              {'@pid': '138/6518',
                                                               'text': 'Govinda '
                                                                       'R. '
                                                                       'Poudel'},
                                                              {'@pid': '16/6684',
                                                               'text': 'David '
                                                                       'G. '
                                                                       'Barnes'},
                                                              {'@pid': '188/5663',
                                                               'text': 'Toàn '
                                                                       'D. '
                                                                       'Nguyên'},
                                                              {'@pid': '28/2316',
                                                               'text': 'C. '
                                                                       'Paul '
                                                                       'Bonnington'},
                                                              {'@pid': '01/6937',
                                                               'text': 'Gary '
                                                                       'F. '
                                                                       'Egan'}]},
                                       'doi': '10.3389/FNINF.2014.00030',
                                       'ee': 'https://doi.org/10.3389/fninf.2014.00030',
                                       'key': 'journals/fini/GoscinskiMFMHGTJGKRKNPBNBE14',
                                       'pages': '30',
                                       'title': 'The multi-modal Australian '
                                                'ScienceS Imaging and '
                                                'Visualization Environment '
                                                '(MASSIVE) high performance '
                                                'computing infrastructure - '
                                                'applications in neuroscience '
                                                'and neuroinformatics '
                                                'research.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/fini/GoscinskiMFMHGTJGKRKNPBNBE14',
                                       'venue': 'Frontiers Neuroinformatics',
                                       'volume': '8',
                                       'year': '2014'},
                              'url': 'URL#2379111'},
                             {'@id': '3180934',
                              '@score': '4',
                              'info': {'authors': {'author': [{'@pid': '82/7122',
                                                               'text': 'Yan '
                                                                       'Jiao'},
                                                              {'@pid': '28/10305',
                                                               'text': 'Katherine '
                                                                       'Lawler'},
                                                              {'@pid': '20/10306',
                                                               'text': 'Gargi '
                                                                       'S. '
                                                                       'Patel'},
                                                              {'@pid': '23/10306',
                                                               'text': 'Arnie '
                                                                       'Purushotham'},
                                                              {'@pid': '31/10306',
                                                               'text': 'Annete '
                                                                       'F. '
                                                                       'Jones'},
                                                              {'@pid': '34/10305',
                                                               'text': 'Anita '
                                                                       'Grigoriadis'},
                                                              {'@pid': '15/10305',
                                                               'text': 'Andrew '
                                                                       'Tutt'},
                                                              {'@pid': '64/5029',
                                                               'text': 'Tony '
                                                                       'C. Ng'},
                                                              {'@pid': '01/2543',
                                                               'text': 'Andrew '
                                                                       'E. '
                                                                       'Teschendorff'}]},
                                       'doi': '10.1186/1471-2105-12-403',
                                       'ee': 'https://doi.org/10.1186/1471-2105-12-403',
                                       'key': 'journals/bmcbi/JiaoLPPJGTNT11',
                                       'pages': '403',
                                       'title': 'DART - Denoising Algorithm '
                                                'based on Relevance network '
                                                'Topology improves molecular '
                                                'pathway activity inference.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/bmcbi/JiaoLPPJGTNT11',
                                       'venue': 'BMC Bioinform.',
                                       'volume': '12',
                                       'year': '2011'},
                              'url': 'URL#3180934'},
                             {'@id': '3276628',
                              '@score': '4',
                              'info': {'authors': {'author': [{'@pid': '96/295',
                                                               'text': 'Madalin '
                                                                       'Mihailescu'},
                                                              {'@pid': '128/2541',
                                                               'text': 'Andres '
                                                                       'Rodriguez '
                                                                       '0003'},
                                                              {'@pid': 'a/CristianaAmza',
                                                               'text': 'Cristiana '
                                                                       'Amza'},
                                                              {'@pid': '128/2544',
                                                               'text': 'Dmitrijs '
                                                                       'Palcikovs'},
                                                              {'@pid': '14/108',
                                                               'text': 'Gabriel '
                                                                       'Iszlai'},
                                                              {'@pid': '128/2503',
                                                               'text': 'Andrew '
                                                                       'Trossman'},
                                                              {'@pid': '63/8816',
                                                               'text': 'Joanna '
                                                                       'Ng'}]},
                                       'ee': 'http://dl.acm.org/citation.cfm?id=2093906',
                                       'key': 'conf/cascon/MihailescuRAPITN11',
                                       'pages': '133-147',
                                       'title': 'Enhancing application '
                                                'robustness in cloud data '
                                                'centers.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/cascon/MihailescuRAPITN11',
                                       'venue': 'CASCON',
                                       'year': '2011'},
                              'url': 'URL#3276628'},
                             {'@id': '3716942',
                              '@score': '4',
                              'info': {'authors': {'author': [{'@pid': '01/8981',
                                                               'text': 'Sing '
                                                                       'K. Ng'},
                                                              {'@pid': '29/1805',
                                                               'text': 'Andrew '
                                                                       'Gibson'},
                                                              {'@pid': '65/8980',
                                                               'text': 'Graham '
                                                                       'Parkinson'},
                                                              {'@pid': '26/8982',
                                                               'text': 'Arthur '
                                                                       'Haigh'},
                                                              {'@pid': '52/8982',
                                                               'text': 'Paul '
                                                                       'Ainsworth'},
                                                              {'@pid': '39/8979',
                                                               'text': 'Andrew '
                                                                       'Plunkett'}]},
                                       'doi': '10.1109/TIM.2009.2019717',
                                       'ee': 'https://doi.org/10.1109/TIM.2009.2019717',
                                       'key': 'journals/tim/NgGPHAP09',
                                       'number': '10',
                                       'pages': '3778-3787',
                                       'title': 'Bimodal Method of Determining '
                                                'Fat and Salt Content in Beef '
                                                'Products by Microwave '
                                                'Techniques.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/tim/NgGPHAP09',
                                       'venue': 'IEEE Trans. Instrum. Meas.',
                                       'volume': '58',
                                       'year': '2009'},
                              'url': 'URL#3716942'},
                             {'@id': '4715946',
                              '@score': '4',
                              'info': {'authors': {'author': [{'@pid': '74/6782',
                                                               'text': 'Andrew '
                                                                       'Tae-Jun '
                                                                       'Kwon'},
                                                              {'@pid': 'h/HolgerHHoos',
                                                               'text': 'Holger '
                                                                       'H. '
                                                                       'Hoos'},
                                                              {'@pid': 'n/RTNg',
                                                               'text': 'Raymond '
                                                                       'T. '
                                                                       'Ng'}]},
                                       'doi': '10.1093/BIOINFORMATICS/BTG106',
                                       'ee': 'https://doi.org/10.1093/bioinformatics/btg106',
                                       'key': 'journals/bioinformatics/KwonHN03',
                                       'number': '8',
                                       'pages': '905-912',
                                       'title': 'Inference of Transcriptional '
                                                'Regulation Relationships from '
                                                'Gene Expression Data.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/bioinformatics/KwonHN03',
                                       'venue': 'Bioinform.',
                                       'volume': '19',
                                       'year': '2003'},
                              'url': 'URL#4715946'},
                             {'@id': '4808944',
                              '@score': '4',
                              'info': {'authors': {'author': [{'@pid': '74/6782',
                                                               'text': 'Andrew '
                                                                       'Tae-Jun '
                                                                       'Kwon'},
                                                              {'@pid': 'h/HolgerHHoos',
                                                               'text': 'Holger '
                                                                       'H. '
                                                                       'Hoos'},
                                                              {'@pid': 'n/RTNg',
                                                               'text': 'Raymond '
                                                                       'T. '
                                                                       'Ng'}]},
                                       'doi': '10.1145/952532.952561',
                                       'ee': 'https://doi.org/10.1145/952532.952561',
                                       'key': 'conf/sac/KwonHN03',
                                       'pages': '135-140',
                                       'title': 'Inference of Transcriptional '
                                                'Regulation Relationships from '
                                                'Gene Expression Data.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/sac/KwonHN03',
                                       'venue': 'SAC',
                                       'year': '2003'},
                              'url': 'URL#4808944'},
                             {'@id': '5129327',
                              '@score': '4',
                              'info': {'authors': {'author': [{'@pid': '15/5550',
                                                               'text': 'Walfrey '
                                                                       'Ng'},
                                                              {'@pid': '05/10082',
                                                               'text': 'Andrew '
                                                                       'Do-Sung '
                                                                       'Jun'},
                                                              {'@pid': '20/3978',
                                                               'text': 'HungKei '
                                                                       'Keith '
                                                                       'Chow'},
                                                              {'@pid': 'b/RaoufBoutaba',
                                                               'text': 'Raouf '
                                                                       'Boutaba'},
                                                              {'@pid': '58/4358',
                                                               'text': 'Alberto '
                                                                       'Leon-Garcia'}]},
                                       'doi': '10.1109/INM.1999.770684',
                                       'ee': 'https://doi.org/10.1109/INM.1999.770684',
                                       'key': 'conf/im/NgJCBL99',
                                       'pages': '201-216',
                                       'title': 'MIBlets - A Practical '
                                                'Approach to Virtual Network '
                                                'Management.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/im/NgJCBL99',
                                       'venue': 'Integrated Network Management',
                                       'year': '1999'},
                              'url': 'URL#5129327'},
                             {'@id': '5356506',
                              '@score': '4',
                              'info': {'authors': {'author': [{'@pid': 'a/DerekAbbott',
                                                               'text': 'Derek '
                                                                       'Abbott'},
                                                              {'@pid': '74/1291',
                                                               'text': 'Andre '
                                                                       'Yakovleff'},
                                                              {'@pid': '23/6703',
                                                               'text': 'Alireza '
                                                                       'Moini'},
                                                              {'@pid': '74/6952',
                                                               'text': 'X. '
                                                                       'Thong '
                                                                       'Nguyen'},
                                                              {'@pid': '24/103',
                                                               'text': 'Andrew '
                                                                       'J. '
                                                                       'Blanksby'},
                                                              {'@pid': '24/5917',
                                                               'text': 'Richard '
                                                                       'Beare'},
                                                              {'@pid': '26/2327',
                                                               'text': 'Andrew '
                                                                       'Beaumont-Smith'},
                                                              {'@pid': '97/7003',
                                                               'text': 'Gyudong '
                                                                       'Kim'},
                                                              {'@pid': '00/5421',
                                                               'text': 'Abdesselam '
                                                                       'Bouzerdoum'},
                                                              {'@pid': '44/3381',
                                                               'text': 'Robert '
                                                                       'E. '
                                                                       'Bogner'},
                                                              {'@pid': '184/4409',
                                                               'text': 'Kamran '
                                                                       'Eshraghian'}]},
                                       'doi': '10.1117/12.228964',
                                       'ee': 'https://doi.org/10.1117/12.228964',
                                       'key': 'conf/mr/AbbottYMNBBBKBBE95',
                                       'pages': '2-12',
                                       'title': 'Biologically inspired '
                                                'obstacle avoidance - a '
                                                'technology independent '
                                                'paradigm.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/mr/AbbottYMNBBBKBBE95',
                                       'venue': 'Mobile Robots',
                                       'year': '1995'},
                              'url': 'URL#5356506'},
                             {'@id': '22088',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '198/8599',
                                                               'text': 'Yuqiang '
                                                                       'Heng'},
                                                              {'@pid': '84/4900',
                                                               'text': 'Jeffrey '
                                                                       'G. '
                                                                       'Andrews'},
                                                              {'@pid': '61/8397',
                                                               'text': 'Jianhua '
                                                                       'Mo '
                                                                       '0001'},
                                                              {'@pid': '122/5649',
                                                               'text': 'Vutha '
                                                                       'Va'},
                                                              {'@pid': '127/4757',
                                                               'text': 'Anum '
                                                                       'Ali'},
                                                              {'@pid': '32/300',
                                                               'text': 'Boon '
                                                                       'Loong '
                                                                       'Ng'},
                                                              {'@pid': '78/6091-2',
                                                               'text': 'Jianzhong '
                                                                       'Charlie '
                                                                       'Zhang'}]},
                                       'doi': '10.1109/MCOM.001.2001184',
                                       'ee': 'https://doi.org/10.1109/MCOM.001.2001184',
                                       'key': 'journals/cm/HengAMVANZ21',
                                       'number': '7',
                                       'pages': '74-79',
                                       'title': 'Six Key Challenges for Beam '
                                                'Management in 5.5G and 6G '
                                                'Systems.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/cm/HengAMVANZ21',
                                       'venue': 'IEEE Commun. Mag.',
                                       'volume': '59',
                                       'year': '2021'},
                              'url': 'URL#22088'},
                             {'@id': '36059',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '286/6246',
                                                               'text': 'Ayman '
                                                                       'Alkhalifah'},
                                                              {'@pid': '16/3523',
                                                               'text': 'Alex '
                                                                       'Ng'},
                                                              {'@pid': '85/10911',
                                                               'text': 'Paul '
                                                                       'A. '
                                                                       'Watters'},
                                                              {'@pid': '116/7137',
                                                               'text': 'A. S. '
                                                                       'M. '
                                                                       'Kayes'}]},
                                       'doi': '10.3389/FCOMP.2021.598780',
                                       'ee': 'https://doi.org/10.3389/fcomp.2021.598780',
                                       'key': 'journals/fcomp/AlkhalifahNWK21',
                                       'pages': '598780',
                                       'title': 'A Mechanism to Detect and '
                                                'Prevent Ethereum Blockchain '
                                                'Smart Contract Reentrancy '
                                                'Attacks.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/fcomp/AlkhalifahNWK21',
                                       'venue': 'Frontiers Comput. Sci.',
                                       'volume': '3',
                                       'year': '2021'},
                              'url': 'URL#36059'},
                             {'@id': '36625',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '231/1041',
                                                               'text': 'Timothy '
                                                                       'R. '
                                                                       'McIntosh'},
                                                              {'@pid': '85/10911',
                                                               'text': 'Paul '
                                                                       'A. '
                                                                       'Watters'},
                                                              {'@pid': '116/7137',
                                                               'text': 'A. S. '
                                                                       'M. '
                                                                       'Kayes'},
                                                              {'@pid': '16/3523',
                                                               'text': 'Alex '
                                                                       'Ng'},
                                                              {'@pid': 'c/YPPhoebeChen',
                                                               'text': 'Yi-Ping '
                                                                       'Phoebe '
                                                                       'Chen'}]},
                                       'doi': '10.1016/J.FUTURE.2020.09.035',
                                       'ee': 'https://doi.org/10.1016/j.future.2020.09.035',
                                       'key': 'journals/fgcs/McIntoshWKNC21',
                                       'pages': '568-582',
                                       'title': 'Enforcing situation-aware '
                                                'access control to build '
                                                'malware-resilient file '
                                                'systems.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/fgcs/McIntoshWKNC21',
                                       'venue': 'Future Gener. Comput. Syst.',
                                       'volume': '115',
                                       'year': '2021'},
                              'url': 'URL#36625'},
                             {'@id': '54625',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '41/6828',
                                                               'text': 'Yuk-Ming '
                                                                       'Tang'},
                                                              {'@pid': '289/2701',
                                                               'text': 'George '
                                                                       'Wing '
                                                                       'Yiu '
                                                                       'Ng'},
                                                              {'@pid': '289/2556',
                                                               'text': 'Nam '
                                                                       'Hung '
                                                                       'Chia'},
                                                              {'@pid': '289/2641',
                                                               'text': 'Eric '
                                                                       'Hang '
                                                                       'Kwong '
                                                                       'So'},
                                                              {'@pid': '70/6889',
                                                               'text': 'Chun-Ho '
                                                                       'Wu'},
                                                              {'@pid': '36/2935',
                                                               'text': 'Wai-Hung '
                                                                       'Ip'}]},
                                       'doi': '10.1111/JCAL.12494',
                                       'ee': 'https://doi.org/10.1111/jcal.12494',
                                       'key': 'journals/jcal/TangNCSWI21',
                                       'number': '2',
                                       'pages': '359-369',
                                       'title': 'Application of virtual '
                                                'reality (VR) technology for '
                                                'medical practitioners in type '
                                                'and screen (T&amp;S) '
                                                'training.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/jcal/TangNCSWI21',
                                       'venue': 'J. Comput. Assist. Learn.',
                                       'volume': '37',
                                       'year': '2021'},
                              'url': 'URL#54625'},
                             {'@id': '77631',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '238/1254',
                                                               'text': 'Melanie '
                                                                       'Florine '
                                                                       'Simons'},
                                                              {'@pid': '204/1113',
                                                               'text': 'Krishna '
                                                                       'Manaswi '
                                                                       'Digumarti'},
                                                              {'@pid': '288/7955',
                                                               'text': 'Nguyen '
                                                                       'Hao '
                                                                       'Le'},
                                                              {'@pid': '115/6237',
                                                               'text': 'Hsing-Yu '
                                                                       'Chen'},
                                                              {'@pid': '288/8089',
                                                               'text': 'Sara '
                                                                       'Correia '
                                                                       'Carreira'},
                                                              {'@pid': '288/8229',
                                                               'text': 'Nouf '
                                                                       'S. S. '
                                                                       'Zaghloul'},
                                                              {'@pid': '223/6394',
                                                               'text': 'Richard '
                                                                       'Suphapol '
                                                                       'Diteesawat'},
                                                              {'@pid': '195/0221',
                                                               'text': 'Martin '
                                                                       'Stephen '
                                                                       'Garrad'},
                                                              {'@pid': '70/7377',
                                                               'text': 'Andrew '
                                                                       'T. '
                                                                       'Conn'},
                                                              {'@pid': '182/9007',
                                                               'text': 'Christopher '
                                                                       'Kent'},
                                                              {'@pid': '43/4360',
                                                               'text': 'Jonathan '
                                                                       'Rossiter'}]},
                                       'doi': '10.1109/LRA.2021.3064269',
                                       'ee': 'https://doi.org/10.1109/LRA.2021.3064269',
                                       'key': 'journals/ral/SimonsDLCCZDGCK21',
                                       'number': '2',
                                       'pages': '3311-3316',
                                       'title': 'B - Ionic Glove - A Soft '
                                                'Smart Wearable Sensory '
                                                'Feedback Device for Upper '
                                                'Limb Robotic Prostheses.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/ral/SimonsDLCCZDGCK21',
                                       'venue': 'IEEE Robotics Autom. Lett.',
                                       'volume': '6',
                                       'year': '2021'},
                              'url': 'URL#77631'},
                             {'@id': '86323',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '292/1461',
                                                               'text': 'Anna '
                                                                       'B. N. '
                                                                       'Nguyen'},
                                                              {'@pid': '136/2460',
                                                               'text': 'Marcos '
                                                                       'Maldonado'},
                                                              {'@pid': '292/1774',
                                                               'text': 'Dylan '
                                                                       'Poch'},
                                                              {'@pid': '292/1216',
                                                               'text': 'Tyler '
                                                                       'Sodia'},
                                                              {'@pid': '87/1676',
                                                               'text': 'Andrew '
                                                                       'Smith'},
                                                              {'@pid': '292/1248',
                                                               'text': 'Teisha '
                                                                       'J. '
                                                                       'Rowland'},
                                                              {'@pid': '292/1034',
                                                               'text': 'Andrew '
                                                                       'J. '
                                                                       'Bonham'}]},
                                       'doi': '10.3390/S21082671',
                                       'ee': 'https://doi.org/10.3390/s21082671',
                                       'key': 'journals/sensors/NguyenMPSSRB21',
                                       'number': '8',
                                       'pages': '2671',
                                       'title': 'Electrochemical DNA Biosensor '
                                                'That Detects Early Celiac '
                                                'Disease Autoantibodies.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/sensors/NguyenMPSSRB21',
                                       'venue': 'Sensors',
                                       'volume': '21',
                                       'year': '2021'},
                              'url': 'URL#86323'},
                             {'@id': '120146',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '79/3190-1',
                                                               'text': 'Yifan '
                                                                       'Gao '
                                                                       '0001'},
                                                              {'@pid': '150/4170',
                                                               'text': 'Henghui '
                                                                       'Zhu'},
                                                              {'@pid': '92/3908',
                                                               'text': 'Patrick '
                                                                       'Ng'},
                                                              {'@pid': '14/5278',
                                                               'text': 'Cícero '
                                                                       'Nogueira '
                                                                       'dos '
                                                                       'Santos'},
                                                              {'@pid': '80/709',
                                                               'text': 'Zhiguo '
                                                                       'Wang'},
                                                              {'@pid': '126/6412',
                                                               'text': 'Feng '
                                                                       'Nan'},
                                                              {'@pid': '131/6876',
                                                               'text': 'Dejiao '
                                                                       'Zhang'},
                                                              {'@pid': '59/4797',
                                                               'text': 'Ramesh '
                                                                       'Nallapati'},
                                                              {'@pid': '254/1112',
                                                               'text': 'Andrew '
                                                                       'O. '
                                                                       'Arnold'},
                                                              {'@pid': '82/5456',
                                                               'text': 'Bing '
                                                                       'Xiang'}]},
                                       'doi': '10.18653/V1/2021.ACL-LONG.253',
                                       'ee': 'https://doi.org/10.18653/v1/2021.acl-long.253',
                                       'key': 'conf/acl/GaoZNSWNZNAX20',
                                       'pages': '3263-3276',
                                       'title': 'Answering Ambiguous Questions '
                                                'through Generative Evidence '
                                                'Fusion and Round-Trip '
                                                'Prediction.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/acl/GaoZNSWNZNAX20',
                                       'venue': 'ACL/IJCNLP',
                                       'year': '2021'},
                              'url': 'URL#120146'},
                             {'@id': '120517',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '126/6412',
                                                               'text': 'Feng '
                                                                       'Nan'},
                                                              {'@pid': '14/5278',
                                                               'text': 'Cícero '
                                                                       'Nogueira '
                                                                       'dos '
                                                                       'Santos'},
                                                              {'@pid': '150/4170',
                                                               'text': 'Henghui '
                                                                       'Zhu'},
                                                              {'@pid': '92/3908',
                                                               'text': 'Patrick '
                                                                       'Ng'},
                                                              {'@pid': 'm/KathleenMcKeown',
                                                               'text': 'Kathleen '
                                                                       'R. '
                                                                       'McKeown'},
                                                              {'@pid': '59/4797',
                                                               'text': 'Ramesh '
                                                                       'Nallapati'},
                                                              {'@pid': '131/6876',
                                                               'text': 'Dejiao '
                                                                       'Zhang'},
                                                              {'@pid': '80/709',
                                                               'text': 'Zhiguo '
                                                                       'Wang'},
                                                              {'@pid': '254/1112',
                                                               'text': 'Andrew '
                                                                       'O. '
                                                                       'Arnold'},
                                                              {'@pid': '82/5456',
                                                               'text': 'Bing '
                                                                       'Xiang'}]},
                                       'doi': '10.18653/V1/2021.ACL-LONG.536',
                                       'ee': 'https://doi.org/10.18653/v1/2021.acl-long.536',
                                       'key': 'conf/acl/NanSZNMNZWAX20',
                                       'pages': '6881-6894',
                                       'title': 'Improving Factual Consistency '
                                                'of Abstractive Summarization '
                                                'via Question Answering.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/acl/NanSZNMNZWAX20',
                                       'venue': 'ACL/IJCNLP',
                                       'year': '2021'},
                              'url': 'URL#120517'},
                             {'@id': '205609',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '126/6412',
                                                               'text': 'Feng '
                                                                       'Nan'},
                                                              {'@pid': '14/5278',
                                                               'text': 'Cícero '
                                                                       'Nogueira '
                                                                       'dos '
                                                                       'Santos'},
                                                              {'@pid': '150/4170',
                                                               'text': 'Henghui '
                                                                       'Zhu'},
                                                              {'@pid': '92/3908',
                                                               'text': 'Patrick '
                                                                       'Ng'},
                                                              {'@pid': 'm/KathleenMcKeown',
                                                               'text': 'Kathleen '
                                                                       'R. '
                                                                       'McKeown'},
                                                              {'@pid': '59/4797',
                                                               'text': 'Ramesh '
                                                                       'Nallapati'},
                                                              {'@pid': '131/6876',
                                                               'text': 'Dejiao '
                                                                       'Zhang'},
                                                              {'@pid': '80/709',
                                                               'text': 'Zhiguo '
                                                                       'Wang'},
                                                              {'@pid': '254/1112',
                                                               'text': 'Andrew '
                                                                       'O. '
                                                                       'Arnold'},
                                                              {'@pid': '82/5456',
                                                               'text': 'Bing '
                                                                       'Xiang'}]},
                                       'ee': 'https://arxiv.org/abs/2105.04623',
                                       'key': 'journals/corr/abs-2105-04623',
                                       'title': 'Improving Factual Consistency '
                                                'of Abstractive Summarization '
                                                'via Question Answering.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-2105-04623',
                                       'venue': 'CoRR',
                                       'volume': 'abs/2105.04623',
                                       'year': '2021'},
                              'url': 'URL#205609'},
                             {'@id': '218329',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '120/7266',
                                                               'text': 'Raj '
                                                                       'Thilak '
                                                                       'Rajan'},
                                                              {'@pid': '296/3656',
                                                               'text': 'Shoshana '
                                                                       'Ben-Maor'},
                                                              {'@pid': '296/4311',
                                                               'text': 'Shaziana '
                                                                       'Kaderali'},
                                                              {'@pid': '296/3775',
                                                               'text': 'Calum '
                                                                       'Turner'},
                                                              {'@pid': '296/4222',
                                                               'text': 'Mohammed '
                                                                       'Milhim'},
                                                              {'@pid': '296/4108',
                                                               'text': 'Catrina '
                                                                       'Melograna'},
                                                              {'@pid': '296/3720',
                                                               'text': 'Dawn '
                                                                       'Haken'},
                                                              {'@pid': '296/4240',
                                                               'text': 'Gary '
                                                                       'Paul'},
                                                              {'@pid': '296/4339',
                                                               'text': 'Vedant'},
                                                              {'@pid': '296/3646',
                                                               'text': 'Sreekumar '
                                                                       'V'},
                                                              {'@pid': '296/4280',
                                                               'text': 'Johannes '
                                                                       'Weppler'},
                                                              {'@pid': '212/1478',
                                                               'text': 'Yosephine '
                                                                       'Gumulya'},
                                                              {'@pid': '296/3954',
                                                               'text': 'Riccardo '
                                                                       'Bunt'},
                                                              {'@pid': '296/3956',
                                                               'text': 'Asia '
                                                                       'Bulgarini'},
                                                              {'@pid': '296/3733',
                                                               'text': 'Maurice '
                                                                       'Marnat'},
                                                              {'@pid': '296/3706',
                                                               'text': 'Kadri '
                                                                       'Bussov'},
                                                              {'@pid': '296/3822',
                                                               'text': 'Frederick '
                                                                       'Pringle'},
                                                              {'@pid': '296/4193',
                                                               'text': 'Jusha '
                                                                       'Ma'},
                                                              {'@pid': '296/3856',
                                                               'text': 'Rushanka '
                                                                       'Amrutkar'},
                                                              {'@pid': '296/3985',
                                                               'text': 'Miguel '
                                                                       'Coto'},
                                                              {'@pid': '54/2545',
                                                               'text': 'Jiang '
                                                                       'He'},
                                                              {'@pid': '224/0531',
                                                               'text': 'Zijian '
                                                                       'Shi'},
                                                              {'@pid': '296/3748',
                                                               'text': 'Shahd '
                                                                       'Hayder'},
                                                              {'@pid': '296/4206',
                                                               'text': 'Dina '
                                                                       'Saad '
                                                                       'Fayez '
                                                                       'Jaber'},
                                                              {'@pid': '296/4012',
                                                               'text': 'Junchao '
                                                                       'Zuo'},
                                                              {'@pid': '296/3685',
                                                               'text': 'Mohammad '
                                                                       'Alsukour'},
                                                              {'@pid': '296/3968',
                                                               'text': 'Cecile '
                                                                       'Renaud'},
                                                              {'@pid': '272/2289',
                                                               'text': 'Matthew '
                                                                       'Christie'},
                                                              {'@pid': '296/3648',
                                                               'text': 'Neta '
                                                                       'Engad'},
                                                              {'@pid': '173/5563',
                                                               'text': 'Yu '
                                                                       'Lian'},
                                                              {'@pid': '272/9730',
                                                               'text': 'Jie '
                                                                       'Wen'},
                                                              {'@pid': '296/3764',
                                                               'text': 'Ruth '
                                                                       'McAvinia'},
                                                              {'@pid': '296/4039',
                                                               'text': 'Andrew '
                                                                       'Simon-Butler'},
                                                              {'@pid': '52/5285',
                                                               'text': 'Anh '
                                                                       'Nguyen'},
                                                              {'@pid': '162/2468',
                                                               'text': 'Jacob '
                                                                       'Cohen'}]},
                                       'ee': 'https://arxiv.org/abs/2107.01601',
                                       'key': 'journals/corr/abs-2107-01601',
                                       'title': 'Applications And Potentials '
                                                'Of Intelligent Swarms For '
                                                'Magnetospheric Studies.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-2107-01601',
                                       'venue': 'CoRR',
                                       'volume': 'abs/2107.01601',
                                       'year': '2021'},
                              'url': 'URL#218329'},
                             {'@id': '251114',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '217/4047',
                                                               'text': 'Samuel '
                                                                       'Hislop'},
                                                              {'@pid': '86/7547',
                                                               'text': 'Andrew '
                                                                       'Haywood'},
                                                              {'@pid': '142/6114',
                                                               'text': 'Simon '
                                                                       'D. '
                                                                       'Jones'},
                                                              {'@pid': '142/6204',
                                                               'text': 'Mariela '
                                                                       'Soto-Berelov'},
                                                              {'@pid': '97/4491',
                                                               'text': 'Andrew '
                                                                       'K. '
                                                                       'Skidmore'},
                                                              {'@pid': '217/4094',
                                                               'text': 'Trung '
                                                                       'H. '
                                                                       'Nguyen'}]},
                                       'doi': '10.1016/J.JAG.2019.102034',
                                       'ee': 'https://doi.org/10.1016/j.jag.2019.102034',
                                       'key': 'journals/aeog/HislopHJSSN20',
                                       'pages': '102034',
                                       'title': 'A satellite data driven '
                                                'approach to monitoring and '
                                                'reporting fire disturbance '
                                                'and recovery across boreal '
                                                'and temperate forests.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/aeog/HislopHJSSN20',
                                       'venue': 'Int. J. Appl. Earth Obs. '
                                                'Geoinformation',
                                       'volume': '87',
                                       'year': '2020'},
                              'url': 'URL#251114'},
                             {'@id': '261792',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '214/9186',
                                                               'text': 'Julia '
                                                                       'Liang'},
                                                              {'@pid': '272/2662',
                                                               'text': 'Chris '
                                                                       'Karagiannis'},
                                                              {'@pid': '267/2211',
                                                               'text': 'Eleni '
                                                                       'Pitsillou'},
                                                              {'@pid': '272/2656',
                                                               'text': 'Kevion '
                                                                       'K. '
                                                                       'Darmawan'},
                                                              {'@pid': '272/2759',
                                                               'text': 'Ken '
                                                                       'Ng'},
                                                              {'@pid': '214/9416',
                                                               'text': 'Andrew '
                                                                       'Hung'},
                                                              {'@pid': '214/8990',
                                                               'text': 'Tom C. '
                                                                       'Karagiannis'}]},
                                       'doi': '10.1016/J.COMPBIOLCHEM.2020.107372',
                                       'ee': 'https://doi.org/10.1016/j.compbiolchem.2020.107372',
                                       'key': 'journals/candc/LiangKPDNHK20',
                                       'pages': '107372',
                                       'title': 'Site mapping and small '
                                                'molecule blind docking reveal '
                                                'a possible target site on the '
                                                'SARS-CoV-2 main protease '
                                                'dimer interface.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/candc/LiangKPDNHK20',
                                       'venue': 'Comput. Biol. Chem.',
                                       'volume': '89',
                                       'year': '2020'},
                              'url': 'URL#261792'},
                             {'@id': '261793',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '214/9186',
                                                               'text': 'Julia '
                                                                       'Liang'},
                                                              {'@pid': '267/2211',
                                                               'text': 'Eleni '
                                                                       'Pitsillou'},
                                                              {'@pid': '272/2662',
                                                               'text': 'Chris '
                                                                       'Karagiannis'},
                                                              {'@pid': '272/2656',
                                                               'text': 'Kevion '
                                                                       'K. '
                                                                       'Darmawan'},
                                                              {'@pid': '272/2759',
                                                               'text': 'Ken '
                                                                       'Ng'},
                                                              {'@pid': '214/9416',
                                                               'text': 'Andrew '
                                                                       'Hung'},
                                                              {'@pid': '214/8990',
                                                               'text': 'Tom C. '
                                                                       'Karagiannis'}]},
                                       'doi': '10.1016/J.COMPBIOLCHEM.2020.107292',
                                       'ee': 'https://doi.org/10.1016/j.compbiolchem.2020.107292',
                                       'key': 'journals/candc/LiangPKDNHK20',
                                       'pages': '107292',
                                       'title': 'Interaction of the '
                                                'prototypical α-ketoamide '
                                                'inhibitor with the SARS-CoV-2 '
                                                'main protease active site in '
                                                'silico - Molecular dynamic '
                                                'simulations highlight the '
                                                'stability of the '
                                                'ligand-protein complex.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/candc/LiangPKDNHK20',
                                       'venue': 'Comput. Biol. Chem.',
                                       'volume': '87',
                                       'year': '2020'},
                              'url': 'URL#261793'},
                             {'@id': '261830',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '267/2211',
                                                               'text': 'Eleni '
                                                                       'Pitsillou'},
                                                              {'@pid': '214/9186',
                                                               'text': 'Julia '
                                                                       'Liang'},
                                                              {'@pid': '272/2662',
                                                               'text': 'Chris '
                                                                       'Karagiannis'},
                                                              {'@pid': '282/7703',
                                                               'text': 'Katherine '
                                                                       'Ververis'},
                                                              {'@pid': '272/2656',
                                                               'text': 'Kevion '
                                                                       'K. '
                                                                       'Darmawan'},
                                                              {'@pid': '272/2759',
                                                               'text': 'Ken '
                                                                       'Ng'},
                                                              {'@pid': '214/9416',
                                                               'text': 'Andrew '
                                                                       'Hung'},
                                                              {'@pid': '214/8990',
                                                               'text': 'Tom C. '
                                                                       'Karagiannis'}]},
                                       'doi': '10.1016/J.COMPBIOLCHEM.2020.107408',
                                       'ee': 'https://doi.org/10.1016/j.compbiolchem.2020.107408',
                                       'key': 'journals/candc/PitsillouLKVDNH20',
                                       'pages': '107408',
                                       'title': 'Interaction of small '
                                                'molecules with the SARS-CoV-2 '
                                                'main protease in silico and '
                                                'in vitro validation of '
                                                'potential lead compounds '
                                                'using an enzyme-linked '
                                                'immunosorbent assay.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/candc/PitsillouLKVDNH20',
                                       'venue': 'Comput. Biol. Chem.',
                                       'volume': '89',
                                       'year': '2020'},
                              'url': 'URL#261830'},
                             {'@id': '286438',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '277/7530',
                                                               'text': 'Yosephine '
                                                                       'Susanto'},
                                                              {'@pid': '230/6563',
                                                               'text': 'Andrew '
                                                                       'G. '
                                                                       'Livingstone'},
                                                              {'@pid': '134/8389',
                                                               'text': 'Ng Bee '
                                                                       'Chin'},
                                                              {'@pid': '80/7421',
                                                               'text': 'Erik '
                                                                       'Cambria'}]},
                                       'doi': '10.1109/MIS.2020.2992799',
                                       'ee': 'https://doi.org/10.1109/MIS.2020.2992799',
                                       'key': 'journals/expert/SusantoLCC20',
                                       'number': '5',
                                       'pages': '96-102',
                                       'title': 'The Hourglass Model '
                                                'Revisited.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/expert/SusantoLCC20',
                                       'venue': 'IEEE Intell. Syst.',
                                       'volume': '35',
                                       'year': '2020'},
                              'url': 'URL#286438'},
                             {'@id': '311164',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '89/89',
                                                               'text': 'Christian '
                                                                       'P. '
                                                                       'Janssen'},
                                                              {'@pid': '66/5901',
                                                               'text': 'Ronald '
                                                                       'Schroeter'},
                                                              {'@pid': 'b/NicolaJBidwell',
                                                               'text': 'Nicola '
                                                                       'J. '
                                                                       'Bidwell'},
                                                              {'@pid': '51/107',
                                                               'text': 'Yong '
                                                                       'Gu Ji'},
                                                              {'@pid': '220/7783',
                                                               'text': 'Ignacio '
                                                                       'J. '
                                                                       'Alvarez'},
                                                              {'@pid': '120/9946',
                                                               'text': 'Shan '
                                                                       'Bao'},
                                                              {'@pid': '24/7521',
                                                               'text': 'Myounghoon '
                                                                       'Jeon'},
                                                              {'@pid': '64/7918',
                                                               'text': 'Linda '
                                                                       'Ng '
                                                                       'Boyle'},
                                                              {'@pid': '226/7550',
                                                               'text': 'Stella '
                                                                       'F. '
                                                                       'Donker'},
                                                              {'@pid': '51/2008',
                                                               'text': 'Lewis '
                                                                       'L. '
                                                                       'Chuang'},
                                                              {'@pid': '04/4068',
                                                               'text': 'Wendy '
                                                                       'Ju'},
                                                              {'@pid': '21/4153',
                                                               'text': 'Andrew '
                                                                       'L. '
                                                                       'Kun'}]},
                                       'doi': '10.1145/3429265',
                                       'ee': 'https://doi.org/10.1145/3429265',
                                       'key': 'journals/interactions/JanssenSBJABJBD20',
                                       'number': '6',
                                       'pages': '7-9',
                                       'title': 'Auto-UI - global '
                                                'perspectives.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/interactions/JanssenSBJABJBD20',
                                       'venue': 'Interactions',
                                       'volume': '27',
                                       'year': '2020'},
                              'url': 'URL#311164'},
                             {'@id': '317587',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '132/9105',
                                                               'text': 'Iqbal '
                                                                       'H. '
                                                                       'Sarker'},
                                                              {'@pid': '116/7137',
                                                               'text': 'A. S. '
                                                                       'M. '
                                                                       'Kayes'},
                                                              {'@pid': '122/3123',
                                                               'text': 'Shahriar '
                                                                       'Badsha'},
                                                              {'@pid': '230/3850',
                                                               'text': 'Hamed '
                                                                       'AlQahtani'},
                                                              {'@pid': '85/10911',
                                                               'text': 'Paul '
                                                                       'A. '
                                                                       'Watters'},
                                                              {'@pid': '16/3523',
                                                               'text': 'Alex '
                                                                       'Ng'}]},
                                       'doi': '10.1186/S40537-020-00318-5',
                                       'ee': 'https://doi.org/10.1186/s40537-020-00318-5',
                                       'key': 'journals/jbd/SarkerKBAWN20',
                                       'number': '1',
                                       'pages': '41',
                                       'title': 'Cybersecurity data science - '
                                                'an overview from machine '
                                                'learning perspective.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/jbd/SarkerKBAWN20',
                                       'venue': 'J. Big Data',
                                       'volume': '7',
                                       'year': '2020'},
                              'url': 'URL#317587'},
                             {'@id': '341201',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '140/2422-2',
                                                               'text': 'James '
                                                                       'J. '
                                                                       'Davis '
                                                                       '0002'},
                                                              {'@pid': '42/5958',
                                                               'text': 'Alice '
                                                                       'R. '
                                                                       'Wattam'},
                                                              {'@pid': '64/4403',
                                                               'text': 'Ramy '
                                                                       'K. '
                                                                       'Aziz'},
                                                              {'@pid': '81/5091',
                                                               'text': 'Thomas '
                                                                       'S. '
                                                                       'Brettin'},
                                                              {'@pid': 'b/RalphMButler',
                                                               'text': 'Ralph '
                                                                       'Butler'},
                                                              {'@pid': '144/9989',
                                                               'text': 'Rory '
                                                                       'Butler'},
                                                              {'@pid': '250/6177',
                                                               'text': 'Philippe '
                                                                       'Chlenski'},
                                                              {'@pid': '197/3622',
                                                               'text': 'Neal '
                                                                       'Conrad'},
                                                              {'@pid': '79/5503',
                                                               'text': 'Allan '
                                                                       'Dickerman'},
                                                              {'@pid': '197/3777',
                                                               'text': 'Emily '
                                                                       'M. '
                                                                       'Dietrich'},
                                                              {'@pid': '64/6646',
                                                               'text': 'Joseph '
                                                                       'L. '
                                                                       'Gabbard'},
                                                              {'@pid': '41/2155',
                                                               'text': 'Svetlana '
                                                                       'Gerdes'},
                                                              {'@pid': '290/7631',
                                                               'text': 'Andrew '
                                                                       'Guard'},
                                                              {'@pid': '16/6446',
                                                               'text': 'Ronald '
                                                                       'W. '
                                                                       'Kenyon'},
                                                              {'@pid': '141/5357',
                                                               'text': 'Dustin '
                                                                       'Machi'},
                                                              {'@pid': '01/6524',
                                                               'text': 'Chunhong '
                                                                       'Mao'},
                                                              {'@pid': '161/6614',
                                                               'text': 'Daniel '
                                                                       'E. '
                                                                       'Murphy-Olson'},
                                                              {'@pid': '290/7811',
                                                               'text': 'Marcus '
                                                                       'Nguyen'},
                                                              {'@pid': '92/3041',
                                                               'text': 'Eric '
                                                                       'K. '
                                                                       'Nordberg'},
                                                              {'@pid': '23/5018',
                                                               'text': 'Gary '
                                                                       'J. '
                                                                       'Olsen'},
                                                              {'@pid': 'o/RobertOlson',
                                                               'text': 'Robert '
                                                                       'Olson'},
                                                              {'@pid': '250/6036',
                                                               'text': 'Jamie '
                                                                       'C. '
                                                                       'Overbeek'},
                                                              {'@pid': 'o/RossAOverbeek',
                                                               'text': 'Ross '
                                                                       'A. '
                                                                       'Overbeek'},
                                                              {'@pid': '78/160',
                                                               'text': 'Bruce '
                                                                       'D. '
                                                                       'Parrello'},
                                                              {'@pid': '26/1801',
                                                               'text': 'Gordon '
                                                                       'D. '
                                                                       'Pusch'},
                                                              {'@pid': '44/2562',
                                                               'text': 'Maulik '
                                                                       'Shukla'},
                                                              {'@pid': '39/183',
                                                               'text': 'Chris '
                                                                       'Thomas'},
                                                              {'@pid': '254/3355',
                                                               'text': 'Margo '
                                                                       'VanOeffelen'},
                                                              {'@pid': '43/83',
                                                               'text': 'Veronika '
                                                                       'Vonstein'},
                                                              {'@pid': '11/7235',
                                                               'text': 'Andrew '
                                                                       'S. '
                                                                       'Warren'},
                                                              {'@pid': '90/6711',
                                                               'text': 'Fangfang '
                                                                       'Xia'},
                                                              {'@pid': '42/383',
                                                               'text': 'Dawen '
                                                                       'Xie'},
                                                              {'@pid': '14/10531',
                                                               'text': 'Hyun '
                                                                       'Seung '
                                                                       'Yoo'},
                                                              {'@pid': 's/RickLStevens',
                                                               'text': 'Rick '
                                                                       'Stevens'}]},
                                       'doi': '10.1093/NAR/GKZ943',
                                       'ee': 'https://doi.org/10.1093/nar/gkz943',
                                       'key': 'journals/nar/0002WABBBCCDDGG20',
                                       'number': 'Database-Issue',
                                       'pages': 'D606-D612',
                                       'title': 'The PATRIC Bioinformatics '
                                                'Resource Center - expanding '
                                                'data and analysis '
                                                'capabilities.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/nar/0002WABBBCCDDGG20',
                                       'venue': 'Nucleic Acids Res.',
                                       'volume': '48',
                                       'year': '2020'},
                              'url': 'URL#341201'},
                             {'@id': '341207',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '197/3663',
                                                               'text': 'Brian '
                                                                       'P. '
                                                                       'Alcock'},
                                                              {'@pid': '197/3945',
                                                               'text': 'Amogelang '
                                                                       'R. '
                                                                       'Raphenya'},
                                                              {'@pid': '290/7743',
                                                               'text': 'Tammy '
                                                                       'T. Y. '
                                                                       'Lau'},
                                                              {'@pid': '197/4128',
                                                               'text': 'Kara '
                                                                       'K. '
                                                                       'Tsang'},
                                                              {'@pid': '290/7555',
                                                               'text': 'Mégane '
                                                                       'Bouchard'},
                                                              {'@pid': '290/7419',
                                                               'text': 'Arman '
                                                                       'Edalatmand'},
                                                              {'@pid': '290/7331',
                                                               'text': 'William '
                                                                       'Huynh'},
                                                              {'@pid': '290/8046',
                                                               'text': 'Anna-Lisa '
                                                                       'V. '
                                                                       'Nguyen'},
                                                              {'@pid': '290/7317',
                                                               'text': 'Annie '
                                                                       'A. '
                                                                       'Cheng'},
                                                              {'@pid': '47/8958',
                                                               'text': 'Sihan '
                                                                       'Liu'},
                                                              {'@pid': '290/7185',
                                                               'text': 'Sally '
                                                                       'Y. '
                                                                       'Min'},
                                                              {'@pid': '290/7248',
                                                               'text': 'Anatoly '
                                                                       'Miroshnichenko'},
                                                              {'@pid': '290/7494',
                                                               'text': 'Hiu-Ki '
                                                                       'Tran'},
                                                              {'@pid': '290/7606',
                                                               'text': 'Rafik '
                                                                       'E. '
                                                                       'Werfalli'},
                                                              {'@pid': '290/8092',
                                                               'text': 'Jalees '
                                                                       'A. '
                                                                       'Nasir'},
                                                              {'@pid': '290/8201',
                                                               'text': 'Martins '
                                                                       'Oloni'},
                                                              {'@pid': '290/7223',
                                                               'text': 'David '
                                                                       'J. '
                                                                       'Speicher'},
                                                              {'@pid': '290/7686',
                                                               'text': 'Alexandra '
                                                                       'Florescu'},
                                                              {'@pid': '290/7590',
                                                               'text': 'Bhavya '
                                                                       'Singh'},
                                                              {'@pid': '290/8047',
                                                               'text': 'Mateusz '
                                                                       'Faltyn'},
                                                              {'@pid': '175/2136',
                                                               'text': 'Anastasia '
                                                                       'Hernández-Koutoucheva'},
                                                              {'@pid': '217/0203',
                                                               'text': 'Arjun '
                                                                       'N. '
                                                                       'Sharma'},
                                                              {'@pid': '290/8175',
                                                               'text': 'Emily '
                                                                       'Bordeleau'},
                                                              {'@pid': '197/4043',
                                                               'text': 'Andrew '
                                                                       'C. '
                                                                       'Pawlowski'},
                                                              {'@pid': '290/8017',
                                                               'text': 'Haley '
                                                                       'L. '
                                                                       'Zubyk'},
                                                              {'@pid': '178/7743',
                                                               'text': 'Damion '
                                                                       'M. '
                                                                       'Dooley'},
                                                              {'@pid': '175/2052',
                                                               'text': 'Emma '
                                                                       'J. '
                                                                       'Griffiths'},
                                                              {'@pid': '276/1267',
                                                               'text': 'Finlay '
                                                                       'Maguire'},
                                                              {'@pid': '18/4393',
                                                               'text': 'Geoffrey '
                                                                       'L. '
                                                                       'Winsor'},
                                                              {'@pid': '57/5209',
                                                               'text': 'Robert '
                                                                       'G. '
                                                                       'Beiko'},
                                                              {'@pid': '44/663',
                                                               'text': 'Fiona '
                                                                       'S. L. '
                                                                       'Brinkman'},
                                                              {'@pid': '75/7111',
                                                               'text': 'William '
                                                                       'W. L. '
                                                                       'Hsiao'},
                                                              {'@pid': '57/3721',
                                                               'text': 'Gary '
                                                                       'H. Van '
                                                                       'Domselaar'},
                                                              {'@pid': '180/8088',
                                                               'text': 'Andrew '
                                                                       'G. '
                                                                       'McArthur'}]},
                                       'doi': '10.1093/NAR/GKZ935',
                                       'ee': 'https://doi.org/10.1093/nar/gkz935',
                                       'key': 'journals/nar/AlcockRLTBEHNCL20',
                                       'number': 'Database-Issue',
                                       'pages': 'D517-D525',
                                       'title': 'CARD 2020 - antibiotic '
                                                'resistome surveillance with '
                                                'the comprehensive antibiotic '
                                                'resistance database.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/nar/AlcockRLTBEHNCL20',
                                       'venue': 'Nucleic Acids Res.',
                                       'volume': '48',
                                       'year': '2020'},
                              'url': 'URL#341207'},
                             {'@id': '363036',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '116/7137',
                                                               'text': 'A. S. '
                                                                       'M. '
                                                                       'Kayes'},
                                                              {'@pid': '265/2531',
                                                               'text': 'Rudri '
                                                                       'Kalaria'},
                                                              {'@pid': '132/9105',
                                                               'text': 'Iqbal '
                                                                       'H. '
                                                                       'Sarker'},
                                                              {'@pid': '04/3572-3',
                                                               'text': 'Md. '
                                                                       'Saiful '
                                                                       'Islam '
                                                                       '0003'},
                                                              {'@pid': '85/10911',
                                                               'text': 'Paul '
                                                                       'A. '
                                                                       'Watters'},
                                                              {'@pid': '16/3523',
                                                               'text': 'Alex '
                                                                       'Ng'},
                                                              {'@pid': '39/1032',
                                                               'text': 'Mohammad '
                                                                       'Hammoudeh'},
                                                              {'@pid': '122/3123',
                                                               'text': 'Shahriar '
                                                                       'Badsha'},
                                                              {'@pid': '94/10118',
                                                               'text': 'Indika '
                                                                       'Kumara'}]},
                                       'doi': '10.3390/S20092464',
                                       'ee': 'https://doi.org/10.3390/s20092464',
                                       'key': 'journals/sensors/KayesKSIWNHBK20',
                                       'number': '9',
                                       'pages': '2464',
                                       'title': 'A Survey of Context-Aware '
                                                'Access Control Mechanisms for '
                                                'Cloud and Fog Networks - '
                                                'Taxonomy and Open Research '
                                                'Issues.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/sensors/KayesKSIWNHBK20',
                                       'venue': 'Sensors',
                                       'volume': '20',
                                       'year': '2020'},
                              'url': 'URL#363036'},
                             {'@id': '395983',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '124/9107',
                                                               'text': 'Grace '
                                                                       'Kuo'},
                                                              {'@pid': '120/6842',
                                                               'text': 'Laura '
                                                                       'Waller'},
                                                              {'@pid': '38/5510',
                                                               'text': 'Ren '
                                                                       'Ng'},
                                                              {'@pid': '06/10608',
                                                               'text': 'Andrew '
                                                                       'Maimone'}]},
                                       'doi': '10.1145/3386569.3392414',
                                       'ee': 'https://doi.org/10.1145/3386569.3392414',
                                       'key': 'journals/tog/KuoWNM20',
                                       'number': '4',
                                       'pages': '66',
                                       'title': 'High resolution étendue '
                                                'expansion for holographic '
                                                'displays.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/tog/KuoWNM20',
                                       'venue': 'ACM Trans. Graph.',
                                       'volume': '39',
                                       'year': '2020'},
                              'url': 'URL#395983'},
                             {'@id': '429191',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '167/6356',
                                                               'text': 'Clemens '
                                                                       'Schartmüller'},
                                                              {'@pid': '128/3140',
                                                               'text': 'Sayan '
                                                                       'Sarcar'},
                                                              {'@pid': '45/2726',
                                                               'text': 'Andreas '
                                                                       'Riener'},
                                                              {'@pid': '21/4153',
                                                               'text': 'Andrew '
                                                                       'L. '
                                                                       'Kun'},
                                                              {'@pid': '01/1662',
                                                               'text': 'Orit '
                                                                       'Shaer'},
                                                              {'@pid': '64/7918',
                                                               'text': 'Linda '
                                                                       'Ng '
                                                                       'Boyle'},
                                                              {'@pid': '28/6452',
                                                               'text': 'Shamsi '
                                                                       'T. '
                                                                       'Iqbal'}]},
                                       'doi': '10.1145/3334480.3381054',
                                       'ee': 'https://doi.org/10.1145/3334480.3381054',
                                       'key': 'conf/chi/SchartmullerSRK20',
                                       'pages': '1-4',
                                       'title': 'Automated Cars as Living '
                                                'Rooms and Offices - '
                                                'Challenges and Opportunities.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/chi/SchartmullerSRK20',
                                       'venue': 'CHI Extended Abstracts',
                                       'year': '2020'},
                              'url': 'URL#429191'},
                             {'@id': '465242',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '40/11004',
                                                               'text': 'Mohammad '
                                                                       'Jabed '
                                                                       'Morshed '
                                                                       'Chowdhury'},
                                                              {'@pid': '116/7137',
                                                               'text': 'A. S. '
                                                                       'M. '
                                                                       'Kayes'},
                                                              {'@pid': '85/10911',
                                                               'text': 'Paul '
                                                                       'A. '
                                                                       'Watters'},
                                                              {'@pid': '244/6162',
                                                               'text': 'Patrick '
                                                                       'Scolyer-Gray'},
                                                              {'@pid': '16/3523',
                                                               'text': 'Alex '
                                                                       'Ng'}]},
                                       'ee': 'http://hdl.handle.net/10125/64195',
                                       'key': 'conf/hicss/ChowdhuryKWSN20',
                                       'pages': '1-11',
                                       'title': 'Patient Controlled, Privacy '
                                                'Preserving IoT Healthcare '
                                                'Data Sharing Framework.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/hicss/ChowdhuryKWSN20',
                                       'venue': 'HICSS',
                                       'year': '2020'},
                              'url': 'URL#465242'},
                             {'@id': '481577',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '116/7137',
                                                               'text': 'A. S. '
                                                                       'M. '
                                                                       'Kayes'},
                                                              {'@pid': '39/1032',
                                                               'text': 'Mohammad '
                                                                       'Hammoudeh'},
                                                              {'@pid': '122/3123',
                                                               'text': 'Shahriar '
                                                                       'Badsha'},
                                                              {'@pid': '85/10911',
                                                               'text': 'Paul '
                                                                       'A. '
                                                                       'Watters'},
                                                              {'@pid': '16/3523',
                                                               'text': 'Alex '
                                                                       'Ng'},
                                                              {'@pid': '265/7792',
                                                               'text': 'Fatma '
                                                                       'Mohammed'},
                                                              {'@pid': '96/1473',
                                                               'text': 'Mofakharul '
                                                                       'Islam'}]},
                                       'doi': '10.1109/ICIOT48696.2020.9089466',
                                       'ee': 'https://doi.org/10.1109/ICIoT48696.2020.9089466',
                                       'key': 'conf/iciot3/KayesHBWNMI20',
                                       'pages': '498-503',
                                       'title': 'Responsibility Attribution '
                                                'Against Data Breaches.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/iciot3/KayesHBWNMI20',
                                       'venue': 'ICIoT',
                                       'year': '2020'},
                              'url': 'URL#481577'},
                             {'@id': '483262',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '277/2345',
                                                               'text': 'Hai '
                                                                       'Rong '
                                                                       'Lee'},
                                                              {'@pid': '16/11513',
                                                               'text': 'Andrew '
                                                                       'Keong '
                                                                       'Ng'},
                                                              {'@pid': '261/8979',
                                                               'text': 'Raymond '
                                                                       'Kong '
                                                                       'Hee '
                                                                       'Tay'}]},
                                       'doi': '10.1109/ICITE50838.2020.9231412',
                                       'ee': 'https://doi.org/10.1109/ICITE50838.2020.9231412',
                                       'key': 'conf/icite/LeeNT20',
                                       'pages': '383-387',
                                       'title': 'Optimization of Pneumatic '
                                                'Overhaul Workflows in Rolling '
                                                'Stock Workshop for Increased '
                                                'Process Efficiency.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icite/LeeNT20',
                                       'venue': 'ICITE',
                                       'year': '2020'},
                              'url': 'URL#483262'},
                             {'@id': '632166',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '79/3190-1',
                                                               'text': 'Yifan '
                                                                       'Gao '
                                                                       '0001'},
                                                              {'@pid': '150/4170',
                                                               'text': 'Henghui '
                                                                       'Zhu'},
                                                              {'@pid': '92/3908',
                                                               'text': 'Patrick '
                                                                       'Ng'},
                                                              {'@pid': '14/5278',
                                                               'text': 'Cícero '
                                                                       'Nogueira '
                                                                       'dos '
                                                                       'Santos'},
                                                              {'@pid': '80/709',
                                                               'text': 'Zhiguo '
                                                                       'Wang'},
                                                              {'@pid': '126/6412',
                                                               'text': 'Feng '
                                                                       'Nan'},
                                                              {'@pid': '131/6876',
                                                               'text': 'Dejiao '
                                                                       'Zhang'},
                                                              {'@pid': '59/4797',
                                                               'text': 'Ramesh '
                                                                       'Nallapati'},
                                                              {'@pid': '254/1112',
                                                               'text': 'Andrew '
                                                                       'O. '
                                                                       'Arnold'},
                                                              {'@pid': '82/5456',
                                                               'text': 'Bing '
                                                                       'Xiang'}]},
                                       'ee': 'https://arxiv.org/abs/2011.13137',
                                       'key': 'journals/corr/abs-2011-13137',
                                       'title': 'Answering Ambiguous Questions '
                                                'through Generative Evidence '
                                                'Fusion and Round-Trip '
                                                'Prediction.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-2011-13137',
                                       'venue': 'CoRR',
                                       'volume': 'abs/2011.13137',
                                       'year': '2020'},
                              'url': 'URL#632166'},
                             {'@id': '645774',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '164/6530',
                                                               'text': 'Ahmad '
                                                                       'AlAmmouri'},
                                                              {'@pid': '61/8397',
                                                               'text': 'Jianhua '
                                                                       'Mo '
                                                                       '0001'},
                                                              {'@pid': '32/300',
                                                               'text': 'Boon '
                                                                       'Loong '
                                                                       'Ng'},
                                                              {'@pid': '78/6091-2',
                                                               'text': 'Jianzhong '
                                                                       'Charlie '
                                                                       'Zhang'},
                                                              {'@pid': '84/4900',
                                                               'text': 'Jeffrey '
                                                                       'G. '
                                                                       'Andrews'}]},
                                       'doi': '10.1109/ACCESS.2019.2914685',
                                       'ee': 'https://doi.org/10.1109/ACCESS.2019.2914685',
                                       'key': 'journals/access/AlAmmouriMNZA19',
                                       'pages': '60532-60544',
                                       'title': 'Hand Grip Impact on 5G mmWave '
                                                'Mobile Devices.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/access/AlAmmouriMNZA19',
                                       'venue': 'IEEE Access',
                                       'volume': '7',
                                       'year': '2019'},
                              'url': 'URL#645774'},
                             {'@id': '694843',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '228/6912',
                                                               'text': 'Sergei '
                                                                       'Alyamkin'},
                                                              {'@pid': '228/6815',
                                                               'text': 'Matthew '
                                                                       'Ardi'},
                                                              {'@pid': '73/2348',
                                                               'text': 'Alexander '
                                                                       'C. '
                                                                       'Berg'},
                                                              {'@pid': '228/6665',
                                                               'text': 'Achille '
                                                                       'Brighton'},
                                                              {'@pid': '89/5615-19',
                                                               'text': 'Bo '
                                                                       'Chen '
                                                                       '0019'},
                                                              {'@pid': '80/1641',
                                                               'text': 'Yiran '
                                                                       'Chen'},
                                                              {'@pid': '185/8729',
                                                               'text': 'Hsin-Pai '
                                                                       'Cheng'},
                                                              {'@pid': '206/2833',
                                                               'text': 'Zichen '
                                                                       'Fan'},
                                                              {'@pid': '01/161',
                                                               'text': 'Chen '
                                                                       'Feng'},
                                                              {'@pid': '89/1563',
                                                               'text': 'Bo Fu'},
                                                              {'@pid': '195/4143',
                                                               'text': 'Kent '
                                                                       'Gauen'},
                                                              {'@pid': '124/2914',
                                                               'text': 'Abhinav '
                                                                       'Goel'},
                                                              {'@pid': '228/6657',
                                                               'text': 'Alexander '
                                                                       'Goncharenko'},
                                                              {'@pid': '86/10861',
                                                               'text': 'Xuyang '
                                                                       'Guo'},
                                                              {'@pid': 'h/SoonhoiHa',
                                                               'text': 'Soonhoi '
                                                                       'Ha'},
                                                              {'@pid': '139/0987',
                                                               'text': 'Andrew '
                                                                       'Howard '
                                                                       '0002'},
                                                              {'@pid': '19/1374',
                                                               'text': 'Xiao '
                                                                       'Hu'},
                                                              {'@pid': '168/0702',
                                                               'text': 'Yuanjun '
                                                                       'Huang'},
                                                              {'@pid': '28/11197',
                                                               'text': 'Donghyun '
                                                                       'Kang'},
                                                              {'@pid': '10/6516',
                                                               'text': 'Jaeyoun '
                                                                       'Kim'},
                                                              {'@pid': '08/3073',
                                                               'text': 'Jong-gook '
                                                                       'Ko'},
                                                              {'@pid': '228/6916',
                                                               'text': 'Alexander '
                                                                       'Kondratyev'},
                                                              {'@pid': '228/6764',
                                                               'text': 'Junhyeok '
                                                                       'Lee'},
                                                              {'@pid': '02/2475',
                                                               'text': 'Seungjae '
                                                                       'Lee'},
                                                              {'@pid': '19/2053',
                                                               'text': 'Suwoong '
                                                                       'Lee'},
                                                              {'@pid': '95/147',
                                                               'text': 'Zichao '
                                                                       'Li'},
                                                              {'@pid': '139/6492',
                                                               'text': 'Zhiyu '
                                                                       'Liang'},
                                                              {'@pid': '227/2299',
                                                               'text': 'Juzheng '
                                                                       'Liu'},
                                                              {'@pid': '76/1820',
                                                               'text': 'Xin '
                                                                       'Liu'},
                                                              {'@pid': '16/6317',
                                                               'text': 'Yang '
                                                                       'Lu'},
                                                              {'@pid': '12/5138',
                                                               'text': 'Yung-Hsiang '
                                                                       'Lu'},
                                                              {'@pid': '228/6681',
                                                               'text': 'Deeptanshu '
                                                                       'Malik'},
                                                              {'@pid': '228/6900',
                                                               'text': 'Hong '
                                                                       'Hanh '
                                                                       'Nguyen'},
                                                              {'@pid': '92/9727',
                                                               'text': 'Eunbyung '
                                                                       'Park'},
                                                              {'@pid': '228/6969',
                                                               'text': 'Denis '
                                                                       'Repin'},
                                                              {'@pid': '52/3709',
                                                               'text': 'Liang '
                                                                       'Shen'},
                                                              {'@pid': '61/3395',
                                                               'text': 'Tao '
                                                                       'Sheng'},
                                                              {'@pid': '51/394',
                                                               'text': 'Fei '
                                                                       'Sun'},
                                                              {'@pid': '228/6695',
                                                               'text': 'David '
                                                                       'Svitov'},
                                                              {'@pid': '97/6279',
                                                               'text': 'George '
                                                                       'K. '
                                                                       'Thiruvathukal'},
                                                              {'@pid': '191/1478',
                                                               'text': 'Baiwu '
                                                                       'Zhang'},
                                                              {'@pid': '205/0387',
                                                               'text': 'Jingchi '
                                                                       'Zhang'},
                                                              {'@pid': '45/5193-3',
                                                               'text': 'Xiaopeng '
                                                                       'Zhang '
                                                                       '0003'},
                                                              {'@pid': '49/7407',
                                                               'text': 'Shaojie '
                                                                       'Zhuo'}]},
                                       'doi': '10.1109/JETCAS.2019.2911899',
                                       'ee': 'https://doi.org/10.1109/JETCAS.2019.2911899',
                                       'key': 'journals/esticas/AlyamkinABBCCCF19',
                                       'number': '2',
                                       'pages': '411-421',
                                       'title': 'Low-Power Computer Vision - '
                                                'Status, Challenges, and '
                                                'Opportunities.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/esticas/AlyamkinABBCCCF19',
                                       'venue': 'IEEE J. Emerg. Sel. Topics '
                                                'Circuits Syst.',
                                       'volume': '9',
                                       'year': '2019'},
                              'url': 'URL#694843'},
                             {'@id': '710566',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '89/89',
                                                               'text': 'Christian '
                                                                       'P. '
                                                                       'Janssen'},
                                                              {'@pid': '64/7918',
                                                               'text': 'Linda '
                                                                       'Ng '
                                                                       'Boyle'},
                                                              {'@pid': '21/4153',
                                                               'text': 'Andrew '
                                                                       'L. '
                                                                       'Kun'},
                                                              {'@pid': '04/4068',
                                                               'text': 'Wendy '
                                                                       'Ju'},
                                                              {'@pid': '51/2008',
                                                               'text': 'Lewis '
                                                                       'L. '
                                                                       'Chuang'}]},
                                       'doi': '10.1080/10447318.2018.1561789',
                                       'ee': 'https://doi.org/10.1080/10447318.2018.1561789',
                                       'key': 'journals/ijhci/JanssenBKJC19',
                                       'number': '11',
                                       'pages': '947-955',
                                       'title': 'A Hidden Markov Framework to '
                                                'Capture Human-Machine '
                                                'Interaction in Automated '
                                                'Vehicles.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/ijhci/JanssenBKJC19',
                                       'venue': 'Int. J. Hum. Comput. '
                                                'Interact.',
                                       'volume': '35',
                                       'year': '2019'},
                              'url': 'URL#710566'},
                             {'@id': '749667',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '270/8626',
                                                               'text': 'Julie '
                                                                       'A. '
                                                                       'Harris'},
                                                              {'@pid': '90/7228',
                                                               'text': 'Stefan '
                                                                       'Mihalas'},
                                                              {'@pid': '270/8888',
                                                               'text': 'Karla '
                                                                       'E. '
                                                                       'Hirokawa'},
                                                              {'@pid': '270/8214',
                                                               'text': 'Jennifer '
                                                                       'D. '
                                                                       'Whitesell'},
                                                              {'@pid': '218/9092',
                                                               'text': 'Hannah '
                                                                       'Choi'},
                                                              {'@pid': '144/0313',
                                                               'text': 'Amy '
                                                                       'Bernard'},
                                                              {'@pid': '270/8524',
                                                               'text': 'Phillip '
                                                                       'Bohn'},
                                                              {'@pid': '270/8206',
                                                               'text': 'Shiella '
                                                                       'Caldejon'},
                                                              {'@pid': '270/8027',
                                                               'text': 'Linzy '
                                                                       'Casal'},
                                                              {'@pid': '69/3878',
                                                               'text': 'Andrew '
                                                                       'Cho'},
                                                              {'@pid': '270/8690',
                                                               'text': 'Aaron '
                                                                       'Feiner'},
                                                              {'@pid': '16/3471-1',
                                                               'text': 'David '
                                                                       'Feng '
                                                                       '0001'},
                                                              {'@pid': '270/9224',
                                                               'text': 'Nathalie '
                                                                       'Gaudreault'},
                                                              {'@pid': '270/9408',
                                                               'text': 'Charles '
                                                                       'R. '
                                                                       'Gerfen'},
                                                              {'@pid': '270/9303',
                                                               'text': 'Nile '
                                                                       'Graddis'},
                                                              {'@pid': '270/9264',
                                                               'text': 'Peter '
                                                                       'A. '
                                                                       'Groblewski'},
                                                              {'@pid': '270/8044',
                                                               'text': 'Alex '
                                                                       'M. '
                                                                       'Henry'},
                                                              {'@pid': '270/8923',
                                                               'text': 'Anh '
                                                                       'Ho'},
                                                              {'@pid': '29/4707',
                                                               'text': 'Robert '
                                                                       'Howard'},
                                                              {'@pid': '270/9388',
                                                               'text': 'Joseph '
                                                                       'E. '
                                                                       'Knox'},
                                                              {'@pid': '47/5652',
                                                               'text': 'Leonard '
                                                                       'Kuan'},
                                                              {'@pid': '270/8792',
                                                               'text': 'Xiuli '
                                                                       'Kuang'},
                                                              {'@pid': '270/2525',
                                                               'text': 'Jérôme '
                                                                       'A. '
                                                                       'Lecoq'},
                                                              {'@pid': '270/8573',
                                                               'text': 'Phil '
                                                                       'Lesnar'},
                                                              {'@pid': '145/7816',
                                                               'text': 'Yaoyao '
                                                                       'Li'},
                                                              {'@pid': '270/8510',
                                                               'text': 'Jennifer '
                                                                       'Luviano'},
                                                              {'@pid': '270/8057',
                                                               'text': 'Stephen '
                                                                       'McConoughey'},
                                                              {'@pid': '270/8824',
                                                               'text': 'Marty '
                                                                       'T. '
                                                                       'Mortrud'},
                                                              {'@pid': '270/8814',
                                                               'text': 'Maitham '
                                                                       'Naeemi'},
                                                              {'@pid': '01/678',
                                                               'text': 'Lydia '
                                                                       'Ng'},
                                                              {'@pid': '123/8911',
                                                               'text': 'Seung-Wook '
                                                                       'Oh'},
                                                              {'@pid': '270/8391',
                                                               'text': 'Benjamin '
                                                                       'Ouellette'},
                                                              {'@pid': '270/9267',
                                                               'text': 'Elise '
                                                                       'Shen'},
                                                              {'@pid': '163/1333',
                                                               'text': 'Staci '
                                                                       'A. '
                                                                       'Sorensen'},
                                                              {'@pid': '270/9374',
                                                               'text': 'Wayne '
                                                                       'Wakeman'},
                                                              {'@pid': '51/7000',
                                                               'text': 'Quanxin '
                                                                       'Wang'},
                                                              {'@pid': '36/3235',
                                                               'text': 'Yun '
                                                                       'Wang'},
                                                              {'@pid': '270/9186',
                                                               'text': 'Ali '
                                                                       'Williford'},
                                                              {'@pid': '270/8502',
                                                               'text': 'John '
                                                                       'W. '
                                                                       'Phillips'},
                                                              {'@pid': '35/3212',
                                                               'text': 'Allan '
                                                                       'R. '
                                                                       'Jones'},
                                                              {'@pid': '71/4603',
                                                               'text': 'Christof '
                                                                       'Koch'},
                                                              {'@pid': '163/1354',
                                                               'text': 'Hongkui '
                                                                       'Zeng'}]},
                                       'doi': '10.1038/S41586-019-1716-Z',
                                       'ee': 'https://doi.org/10.1038/s41586-019-1716-z',
                                       'key': 'journals/nature/HarrisMHWCBBCCC19',
                                       'number': '7781',
                                       'pages': '195-202',
                                       'title': 'Hierarchical organization of '
                                                'cortical and thalamic '
                                                'connectivity.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/nature/HarrisMHWCBBCCC19',
                                       'venue': 'Nat.',
                                       'volume': '575',
                                       'year': '2019'},
                              'url': 'URL#749667'},
                             {'@id': '749679',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '270/6781',
                                                               'text': 'Robert '
                                                                       'A. '
                                                                       'Langan'},
                                                              {'@pid': '178/1197',
                                                               'text': 'Scott '
                                                                       'E. '
                                                                       'Boyken'},
                                                              {'@pid': '270/8202',
                                                               'text': 'Andrew '
                                                                       'H. Ng'},
                                                              {'@pid': '270/9287',
                                                               'text': 'Jennifer '
                                                                       'A. '
                                                                       'Samson'},
                                                              {'@pid': '270/9335',
                                                               'text': 'Galen '
                                                                       'Dods'},
                                                              {'@pid': '270/8477',
                                                               'text': 'Alexandra '
                                                                       'M. '
                                                                       'Westbrook'},
                                                              {'@pid': '270/8706',
                                                               'text': 'Taylor '
                                                                       'H. '
                                                                       'Nguyen'},
                                                              {'@pid': '196/3905',
                                                               'text': 'Marc '
                                                                       'J. '
                                                                       'Lajoie'},
                                                              {'@pid': '270/6594',
                                                               'text': 'Zibo '
                                                                       'Chen'},
                                                              {'@pid': '263/4608',
                                                               'text': 'Stephanie '
                                                                       'Berger'},
                                                              {'@pid': '196/3486',
                                                               'text': 'Vikram '
                                                                       'Khipple '
                                                                       'Mulligan'},
                                                              {'@pid': '270/8787',
                                                               'text': 'John '
                                                                       'E. '
                                                                       'Dueber'},
                                                              {'@pid': '14/1226',
                                                               'text': 'Walter '
                                                                       'R. P. '
                                                                       'Novak'},
                                                              {'@pid': '11/4894',
                                                               'text': 'Hana '
                                                                       'El-Samad'},
                                                              {'@pid': '87/3352',
                                                               'text': 'David '
                                                                       'Baker'}]},
                                       'doi': '10.1038/S41586-019-1432-8',
                                       'ee': 'https://doi.org/10.1038/s41586-019-1432-8',
                                       'key': 'journals/nature/LanganBNSDWNLCB19',
                                       'number': '7768',
                                       'pages': '205-210',
                                       'title': 'De novo design of bioactive '
                                                'protein switches.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/nature/LanganBNSDWNLCB19',
                                       'venue': 'Nat.',
                                       'volume': '572',
                                       'year': '2019'},
                              'url': 'URL#749679'},
                             {'@id': '749689',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '270/8202',
                                                               'text': 'Andrew '
                                                                       'H. Ng'},
                                                              {'@pid': '270/8706',
                                                               'text': 'Taylor '
                                                                       'H. '
                                                                       'Nguyen'},
                                                              {'@pid': '269/0722',
                                                               'text': 'Mariana '
                                                                       'Gómez-Schiavon'},
                                                              {'@pid': '270/9335',
                                                               'text': 'Galen '
                                                                       'Dods'},
                                                              {'@pid': '270/6781',
                                                               'text': 'Robert '
                                                                       'A. '
                                                                       'Langan'},
                                                              {'@pid': '178/1197',
                                                               'text': 'Scott '
                                                                       'E. '
                                                                       'Boyken'},
                                                              {'@pid': '270/9287',
                                                               'text': 'Jennifer '
                                                                       'A. '
                                                                       'Samson'},
                                                              {'@pid': '270/8657',
                                                               'text': 'Lucas '
                                                                       'M. '
                                                                       'Waldburger'},
                                                              {'@pid': '270/8787',
                                                               'text': 'John '
                                                                       'E. '
                                                                       'Dueber'},
                                                              {'@pid': '87/3352',
                                                               'text': 'David '
                                                                       'Baker'},
                                                              {'@pid': '11/4894',
                                                               'text': 'Hana '
                                                                       'El-Samad'}]},
                                       'doi': '10.1038/S41586-019-1425-7',
                                       'ee': 'https://doi.org/10.1038/s41586-019-1425-7',
                                       'key': 'journals/nature/NgNGDLBSWDBE19',
                                       'number': '7768',
                                       'pages': '265-269',
                                       'title': 'Modular and tunable '
                                                'biological feedback control '
                                                'using a de novo protein '
                                                'switch.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/nature/NgNGDLBSWDBE19',
                                       'venue': 'Nat.',
                                       'volume': '572',
                                       'year': '2019'},
                              'url': 'URL#749689'},
                             {'@id': '819288',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '89/89',
                                                               'text': 'Christian '
                                                                       'P. '
                                                                       'Janssen'},
                                                              {'@pid': '21/4153',
                                                               'text': 'Andrew '
                                                                       'L. '
                                                                       'Kun'},
                                                              {'@pid': 'b/StephenABrewster',
                                                               'text': 'Stephen '
                                                                       'A. '
                                                                       'Brewster'},
                                                              {'@pid': '64/7918',
                                                               'text': 'Linda '
                                                                       'Ng '
                                                                       'Boyle'},
                                                              {'@pid': '05/1353',
                                                               'text': 'Duncan '
                                                                       'P. '
                                                                       'Brumby'},
                                                              {'@pid': '51/2008',
                                                               'text': 'Lewis '
                                                                       'L. '
                                                                       'Chuang'}]},
                                       'doi': '10.1145/3349263.3349600',
                                       'ee': 'https://doi.org/10.1145/3349263.3349600',
                                       'key': 'conf/automotiveUI/JanssenKBBBC19',
                                       'pages': '465-467',
                                       'title': 'Exploring the concept of the '
                                                '(future) mobile office.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/automotiveUI/JanssenKBBBC19',
                                       'venue': 'AutomotiveUI',
                                       'year': '2019'},
                              'url': 'URL#819288'},
                             {'@id': '835125',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '40/11004',
                                                               'text': 'Mohammad '
                                                                       'Jabed '
                                                                       'Morshed '
                                                                       'Chowdhury'},
                                                              {'@pid': '63/7409',
                                                               'text': 'Md. '
                                                                       'Sadek '
                                                                       'Ferdous'},
                                                              {'@pid': '19/7412',
                                                               'text': 'Kamanashis '
                                                                       'Biswas'},
                                                              {'@pid': '183/9855',
                                                               'text': 'Niaz '
                                                                       'Chowdhury'},
                                                              {'@pid': '116/7137',
                                                               'text': 'A. S. '
                                                                       'M. '
                                                                       'Kayes'},
                                                              {'@pid': '85/10911',
                                                               'text': 'Paul '
                                                                       'A. '
                                                                       'Watters'},
                                                              {'@pid': '16/3523',
                                                               'text': 'Alex '
                                                                       'Ng'}]},
                                       'doi': '10.1109/CLOUDCOM.2019.00070',
                                       'ee': 'https://doi.org/10.1109/CloudCom.2019.00070',
                                       'key': 'conf/cloudcom/ChowdhuryFBCKWN19',
                                       'pages': '411-417',
                                       'title': 'Trust Modeling for '
                                                'Blockchain-Based Wearable '
                                                'Data Market.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/cloudcom/ChowdhuryFBCKWN19',
                                       'venue': 'CloudCom',
                                       'year': '2019'},
                              'url': 'URL#835125'},
                             {'@id': '864760',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '164/6530',
                                                               'text': 'Ahmad '
                                                                       'AlAmmouri'},
                                                              {'@pid': '61/8397',
                                                               'text': 'Jianhua '
                                                                       'Mo '
                                                                       '0001'},
                                                              {'@pid': '32/300',
                                                               'text': 'Boon '
                                                                       'Loong '
                                                                       'Ng'},
                                                              {'@pid': '78/6091-2',
                                                               'text': 'Jianzhong '
                                                                       'Charlie '
                                                                       'Zhang'},
                                                              {'@pid': '84/4900',
                                                               'text': 'Jeffrey '
                                                                       'G. '
                                                                       'Andrews'}]},
                                       'doi': '10.1109/GLOBECOM38437.2019.9014196',
                                       'ee': 'https://doi.org/10.1109/GLOBECOM38437.2019.9014196',
                                       'key': 'conf/globecom/AlAmmouri0NZA19',
                                       'pages': '1-6',
                                       'title': 'Grip-Aware Analog mmWave Beam '
                                                'Codebook Adaptation for 5G '
                                                'Mobile Handsets.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/globecom/AlAmmouri0NZA19',
                                       'venue': 'GLOBECOM',
                                       'year': '2019'},
                              'url': 'URL#864760'},
                             {'@id': '891701',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '261/8967',
                                                               'text': 'Ze '
                                                                       'Siong '
                                                                       'Chan'},
                                                              {'@pid': '16/11513',
                                                               'text': 'Andrew '
                                                                       'Keong '
                                                                       'Ng'},
                                                              {'@pid': '261/8979',
                                                               'text': 'Raymond '
                                                                       'Kong '
                                                                       'Hee '
                                                                       'Tay'}]},
                                       'doi': '10.1109/ICITE.2019.8880179',
                                       'ee': 'https://doi.org/10.1109/ICITE.2019.8880179',
                                       'key': 'conf/icite/ChanNT19',
                                       'pages': '276-280',
                                       'title': 'Establishing Vibration '
                                                'Threshold for Effective '
                                                'Health Monitoring of SL20-5 '
                                                'Motor Compressor Set.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icite/ChanNT19',
                                       'venue': 'ICITE',
                                       'year': '2019'},
                              'url': 'URL#891701'},
                             {'@id': '891713',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '261/8996',
                                                               'text': 'Benjamin '
                                                                       'Jia '
                                                                       'Ming '
                                                                       'Heng'},
                                                              {'@pid': '16/11513',
                                                               'text': 'Andrew '
                                                                       'Keong '
                                                                       'Ng'},
                                                              {'@pid': '261/8979',
                                                               'text': 'Raymond '
                                                                       'Kong '
                                                                       'Hee '
                                                                       'Tay'}]},
                                       'doi': '10.1109/ICITE.2019.8880219',
                                       'ee': 'https://doi.org/10.1109/ICITE.2019.8880219',
                                       'key': 'conf/icite/HengNT19',
                                       'pages': '79-83',
                                       'title': 'Digitization of Work '
                                                'Instructions and Checklists '
                                                'for Improved Data Management '
                                                'and Work Productivity.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icite/HengNT19',
                                       'venue': 'ICITE',
                                       'year': '2019'},
                              'url': 'URL#891713'},
                             {'@id': '891729',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '16/11513',
                                                               'text': 'Andrew '
                                                                       'Keong '
                                                                       'Ng'},
                                                              {'@pid': '261/9006',
                                                               'text': 'Landong '
                                                                       'Martua'},
                                                              {'@pid': '261/8990',
                                                               'text': 'George '
                                                                       'Sun'}]},
                                       'doi': '10.1109/ICITE.2019.8880246',
                                       'ee': 'https://doi.org/10.1109/ICITE.2019.8880246',
                                       'key': 'conf/icite/NgMS19',
                                       'pages': '69-73',
                                       'title': 'Dynamic Modelling and '
                                                'Acceleration Signal Analysis '
                                                'of Rail Surface Defects for '
                                                'Enhanced Rail Condition '
                                                'Monitoring and Diagnosis.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icite/NgMS19',
                                       'venue': 'ICITE',
                                       'year': '2019'},
                              'url': 'URL#891729'},
                             {'@id': '968780',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '27/1531',
                                                               'text': 'Mihaela '
                                                                       'Sighireanu'},
                                                              {'@pid': '39/5938',
                                                               'text': 'Juan '
                                                                       'Antonio '
                                                                       'Navarro '
                                                                       'Pérez'},
                                                              {'@pid': 'r/AndreyRybalchenko',
                                                               'text': 'Andrey '
                                                                       'Rybalchenko'},
                                                              {'@pid': '86/4535',
                                                               'text': 'Nikos '
                                                                       'Gorogiannis'},
                                                              {'@pid': '81/5510',
                                                               'text': 'Radu '
                                                                       'Iosif'},
                                                              {'@pid': '41/9861',
                                                               'text': 'Andrew '
                                                                       'Reynolds '
                                                                       '0001'},
                                                              {'@pid': '27/5922',
                                                               'text': 'Cristina '
                                                                       'Serban'},
                                                              {'@pid': '66/10257',
                                                               'text': 'Jens '
                                                                       'Katelaan'},
                                                              {'@pid': '172/5070',
                                                               'text': 'Christoph '
                                                                       'Matheja'},
                                                              {'@pid': '31/248-1',
                                                               'text': 'Thomas '
                                                                       'Noll '
                                                                       '0001'},
                                                              {'@pid': '69/2671',
                                                               'text': 'Florian '
                                                                       'Zuleger'},
                                                              {'@pid': 'c/WeiNganChin',
                                                               'text': 'Wei-Ngan '
                                                                       'Chin'},
                                                              {'@pid': '32/8098',
                                                               'text': 'Quang '
                                                                       'Loc '
                                                                       'Le'},
                                                              {'@pid': '134/3046',
                                                               'text': 'Quang-Trung '
                                                                       'Ta'},
                                                              {'@pid': '135/6224',
                                                               'text': 'Ton-Chanh '
                                                                       'Le'},
                                                              {'@pid': '207/0921',
                                                               'text': 'Thanh-Toan '
                                                                       'Nguyen'},
                                                              {'@pid': 'k/SiauChenKhoo',
                                                               'text': 'Siau-Cheng '
                                                                       'Khoo'},
                                                              {'@pid': '238/2987',
                                                               'text': 'Michal '
                                                                       'Cyprian'},
                                                              {'@pid': '87/2946',
                                                               'text': 'Adam '
                                                                       'Rogalewicz'},
                                                              {'@pid': '51/533',
                                                               'text': 'Tomás '
                                                                       'Vojnar'},
                                                              {'@pid': '72/2839',
                                                               'text': 'Constantin '
                                                                       'Enea'},
                                                              {'@pid': '47/7646',
                                                               'text': 'Ondrej '
                                                                       'Lengál'},
                                                              {'@pid': '99/6294',
                                                               'text': 'Chong '
                                                                       'Gao'},
                                                              {'@pid': '71/3710',
                                                               'text': 'Zhilin '
                                                                       'Wu'}]},
                                       'doi': '10.1007/978-3-030-17502-3_8',
                                       'ee': 'https://doi.org/10.1007/978-3-030-17502-3_8',
                                       'key': 'conf/tacas/SighireanuPRGIR19',
                                       'pages': '116-132',
                                       'title': 'SL-COMP - Competition of '
                                                'Solvers for Separation Logic.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/tacas/SighireanuPRGIR19',
                                       'venue': 'TACAS',
                                       'year': '2019'},
                              'url': 'URL#968780'},
                             {'@id': '971387',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '62/8271',
                                                               'text': 'Brad '
                                                                       'Wheeler'},
                                                              {'@pid': '246/0820',
                                                               'text': 'Andrew '
                                                                       'Ng '
                                                                       '0002'},
                                                              {'@pid': '228/3475',
                                                               'text': 'Brian '
                                                                       'G. '
                                                                       'Kilberg'},
                                                              {'@pid': '187/9721',
                                                               'text': 'Filip '
                                                                       'Maksimovic'},
                                                              {'@pid': '50/6450',
                                                               'text': 'Kristofer '
                                                                       'S. J. '
                                                                       'Pister'}]},
                                       'doi': '10.1109/UEMCON47517.2019.8992964',
                                       'ee': 'https://doi.org/10.1109/UEMCON47517.2019.8992964',
                                       'key': 'conf/uemcom/Wheeler0KMP19',
                                       'pages': '371-376',
                                       'title': 'A Low-Power Optical Receiver '
                                                'for Contact-free Programming '
                                                'and 3D Localization of '
                                                'Autonomous Microsystems.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/uemcom/Wheeler0KMP19',
                                       'venue': 'UEMCON',
                                       'year': '2019'},
                              'url': 'URL#971387'},
                             {'@id': '973487',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '187/9721',
                                                               'text': 'Filip '
                                                                       'Maksimovic'},
                                                              {'@pid': '62/8271',
                                                               'text': 'Brad '
                                                                       'Wheeler'},
                                                              {'@pid': '185/4079',
                                                               'text': 'David '
                                                                       'C. '
                                                                       'Burnett'},
                                                              {'@pid': '01/5245',
                                                               'text': 'Osama '
                                                                       'Khan'},
                                                              {'@pid': '159/7345',
                                                               'text': 'Sahar '
                                                                       'M. '
                                                                       'Mesri'},
                                                              {'@pid': '146/6243',
                                                               'text': 'Ioana '
                                                                       'Suciu'},
                                                              {'@pid': '246/0588',
                                                               'text': 'Lydia '
                                                                       'Lee'},
                                                              {'@pid': '152/0995',
                                                               'text': 'Alex '
                                                                       'Moreno'},
                                                              {'@pid': '40/1908',
                                                               'text': 'Arvind '
                                                                       'Sundararajan'},
                                                              {'@pid': '240/7097',
                                                               'text': 'Bob L. '
                                                                       'Zhou'},
                                                              {'@pid': '228/3504',
                                                               'text': 'Rachel '
                                                                       'Zoll'},
                                                              {'@pid': '246/0820',
                                                               'text': 'Andrew '
                                                                       'Ng '
                                                                       '0002'},
                                                              {'@pid': '147/0478',
                                                               'text': 'Tengfei '
                                                                       'Chang'},
                                                              {'@pid': '75/2244',
                                                               'text': 'Xavier '
                                                                       'Vilajosana'},
                                                              {'@pid': '44/6300',
                                                               'text': 'Thomas '
                                                                       'Watteyne'},
                                                              {'@pid': '20/4071',
                                                               'text': 'Ali M. '
                                                                       'Niknejad'},
                                                              {'@pid': '50/6450',
                                                               'text': 'Kristofer '
                                                                       'S. J. '
                                                                       'Pister'}]},
                                       'doi': '10.23919/VLSIC.2019.8777971',
                                       'ee': 'https://doi.org/10.23919/VLSIC.2019.8777971',
                                       'key': 'conf/vlsic/MaksimovicWBKMS19',
                                       'pages': '88-',
                                       'title': 'A Crystal-Free Single-Chip '
                                                'Micro Mote with Integrated '
                                                '802.15.4 Compatible '
                                                'Transceiver, sub-mW BLE '
                                                'Compatible Beacon '
                                                'Transmitter, and Cortex M0.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/vlsic/MaksimovicWBKMS19',
                                       'venue': 'VLSI Circuits',
                                       'year': '2019'},
                              'url': 'URL#973487'},
                             {'@id': '987865',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '01/8867',
                                                               'text': 'Weiqun '
                                                                       'Zhang'},
                                                              {'@pid': '64/7586',
                                                               'text': 'Ann S. '
                                                                       'Almgren'},
                                                              {'@pid': '04/4220',
                                                               'text': 'Vincent '
                                                                       'E. '
                                                                       'Beckner'},
                                                              {'@pid': '15/7586',
                                                               'text': 'John '
                                                                       'B. '
                                                                       'Bell'},
                                                              {'@pid': '00/7386',
                                                               'text': 'Johannes '
                                                                       'Blaschke'},
                                                              {'@pid': '50/7062',
                                                               'text': 'Cy P. '
                                                                       'Chan'},
                                                              {'@pid': '63/9913',
                                                               'text': 'Marcus '
                                                                       'Day'},
                                                              {'@pid': '194/6489',
                                                               'text': 'Brian '
                                                                       'Friesen'},
                                                              {'@pid': '243/7510',
                                                               'text': 'Kevin '
                                                                       'Gott'},
                                                              {'@pid': '50/9990',
                                                               'text': 'Daniel '
                                                                       'T. '
                                                                       'Graves'},
                                                              {'@pid': '243/7562',
                                                               'text': 'Maximilian '
                                                                       'Katz'},
                                                              {'@pid': '20/5090',
                                                               'text': 'Andrew '
                                                                       'Myers'},
                                                              {'@pid': '74/9775',
                                                               'text': 'Tan '
                                                                       'Nguyen'},
                                                              {'@pid': '243/7405',
                                                               'text': 'Andrew '
                                                                       'Nonaka'},
                                                              {'@pid': '243/7653',
                                                               'text': 'Michele '
                                                                       'Rosso'},
                                                              {'@pid': '57/42',
                                                               'text': 'Samuel '
                                                                       'Williams'},
                                                              {'@pid': '99/4132',
                                                               'text': 'Michael '
                                                                       'Zingale'}]},
                                       'doi': '10.21105/JOSS.01370',
                                       'ee': 'https://doi.org/10.21105/joss.01370',
                                       'key': 'journals/jossw/ZhangABBBCDFGGK19',
                                       'number': '37',
                                       'pages': '1370',
                                       'title': 'AMReX - a framework for '
                                                'block-structured adaptive '
                                                'mesh refinement.',
                                       'type': 'Data and Artifacts',
                                       'url': 'https://dblp.org/rec/journals/jossw/ZhangABBBCDFGGK19',
                                       'venue': 'J. Open Source Softw.',
                                       'volume': '4',
                                       'year': '2019'},
                              'url': 'URL#987865'},
                             {'@id': '1001657',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '228/6912',
                                                               'text': 'Sergei '
                                                                       'Alyamkin'},
                                                              {'@pid': '228/6815',
                                                               'text': 'Matthew '
                                                                       'Ardi'},
                                                              {'@pid': '73/2348',
                                                               'text': 'Alexander '
                                                                       'C. '
                                                                       'Berg'},
                                                              {'@pid': '228/6665',
                                                               'text': 'Achille '
                                                                       'Brighton'},
                                                              {'@pid': '89/5615-19',
                                                               'text': 'Bo '
                                                                       'Chen '
                                                                       '0019'},
                                                              {'@pid': '80/1641',
                                                               'text': 'Yiran '
                                                                       'Chen'},
                                                              {'@pid': '185/8729',
                                                               'text': 'Hsin-Pai '
                                                                       'Cheng'},
                                                              {'@pid': '206/2833',
                                                               'text': 'Zichen '
                                                                       'Fan'},
                                                              {'@pid': '01/161',
                                                               'text': 'Chen '
                                                                       'Feng'},
                                                              {'@pid': '89/1563',
                                                               'text': 'Bo Fu'},
                                                              {'@pid': '195/4143',
                                                               'text': 'Kent '
                                                                       'Gauen'},
                                                              {'@pid': '124/2914',
                                                               'text': 'Abhinav '
                                                                       'Goel'},
                                                              {'@pid': '228/6657',
                                                               'text': 'Alexander '
                                                                       'Goncharenko'},
                                                              {'@pid': '86/10861',
                                                               'text': 'Xuyang '
                                                                       'Guo'},
                                                              {'@pid': 'h/SoonhoiHa',
                                                               'text': 'Soonhoi '
                                                                       'Ha'},
                                                              {'@pid': '139/0987',
                                                               'text': 'Andrew '
                                                                       'Howard '
                                                                       '0002'},
                                                              {'@pid': '19/1374',
                                                               'text': 'Xiao '
                                                                       'Hu'},
                                                              {'@pid': '168/0702',
                                                               'text': 'Yuanjun '
                                                                       'Huang'},
                                                              {'@pid': '28/11197',
                                                               'text': 'Donghyun '
                                                                       'Kang'},
                                                              {'@pid': '10/6516',
                                                               'text': 'Jaeyoun '
                                                                       'Kim'},
                                                              {'@pid': '08/3073',
                                                               'text': 'Jong-gook '
                                                                       'Ko'},
                                                              {'@pid': '228/6916',
                                                               'text': 'Alexander '
                                                                       'Kondratyev'},
                                                              {'@pid': '228/6764',
                                                               'text': 'Junhyeok '
                                                                       'Lee'},
                                                              {'@pid': '02/2475',
                                                               'text': 'Seungjae '
                                                                       'Lee'},
                                                              {'@pid': '19/2053',
                                                               'text': 'Suwoong '
                                                                       'Lee'},
                                                              {'@pid': '95/147',
                                                               'text': 'Zichao '
                                                                       'Li'},
                                                              {'@pid': '139/6492',
                                                               'text': 'Zhiyu '
                                                                       'Liang'},
                                                              {'@pid': '227/2299',
                                                               'text': 'Juzheng '
                                                                       'Liu'},
                                                              {'@pid': '76/1820',
                                                               'text': 'Xin '
                                                                       'Liu'},
                                                              {'@pid': '16/6317',
                                                               'text': 'Yang '
                                                                       'Lu'},
                                                              {'@pid': '12/5138',
                                                               'text': 'Yung-Hsiang '
                                                                       'Lu'},
                                                              {'@pid': '228/6681',
                                                               'text': 'Deeptanshu '
                                                                       'Malik'},
                                                              {'@pid': '228/6900',
                                                               'text': 'Hong '
                                                                       'Hanh '
                                                                       'Nguyen'},
                                                              {'@pid': '92/9727',
                                                               'text': 'Eunbyung '
                                                                       'Park'},
                                                              {'@pid': '228/6969',
                                                               'text': 'Denis '
                                                                       'Repin'},
                                                              {'@pid': '52/3709',
                                                               'text': 'Liang '
                                                                       'Shen'},
                                                              {'@pid': '61/3395',
                                                               'text': 'Tao '
                                                                       'Sheng'},
                                                              {'@pid': '51/394',
                                                               'text': 'Fei '
                                                                       'Sun'},
                                                              {'@pid': '228/6695',
                                                               'text': 'David '
                                                                       'Svitov'},
                                                              {'@pid': '97/6279',
                                                               'text': 'George '
                                                                       'K. '
                                                                       'Thiruvathukal'},
                                                              {'@pid': '191/1478',
                                                               'text': 'Baiwu '
                                                                       'Zhang'},
                                                              {'@pid': '205/0387',
                                                               'text': 'Jingchi '
                                                                       'Zhang'},
                                                              {'@pid': '45/5193-3',
                                                               'text': 'Xiaopeng '
                                                                       'Zhang '
                                                                       '0003'},
                                                              {'@pid': '49/7407',
                                                               'text': 'Shaojie '
                                                                       'Zhuo'}]},
                                       'ee': 'http://arxiv.org/abs/1904.07714',
                                       'key': 'journals/corr/abs-1904-07714',
                                       'title': 'Low-Power Computer Vision - '
                                                'Status, Challenges, '
                                                'Opportunities.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-1904-07714',
                                       'venue': 'CoRR',
                                       'volume': 'abs/1904.07714',
                                       'year': '2019'},
                              'url': 'URL#1001657'},
                             {'@id': '1018445',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '164/6530',
                                                               'text': 'Ahmad '
                                                                       'AlAmmouri'},
                                                              {'@pid': '61/8397',
                                                               'text': 'Jianhua '
                                                                       'Mo '
                                                                       '0001'},
                                                              {'@pid': '32/300',
                                                               'text': 'Boon '
                                                                       'Loong '
                                                                       'Ng'},
                                                              {'@pid': '78/6091-2',
                                                               'text': 'Jianzhong '
                                                                       'Charlie '
                                                                       'Zhang'},
                                                              {'@pid': '84/4900',
                                                               'text': 'Jeffrey '
                                                                       'G. '
                                                                       'Andrews'}]},
                                       'ee': 'http://arxiv.org/abs/1908.00850',
                                       'key': 'journals/corr/abs-1908-00850',
                                       'title': 'Grip-Aware Analog mmWave Beam '
                                                'Codebook Adaptation for 5G '
                                                'Mobile Handsets.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-1908-00850',
                                       'venue': 'CoRR',
                                       'volume': 'abs/1908.00850',
                                       'year': '2019'},
                              'url': 'URL#1018445'},
                             {'@id': '1084480',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '182/8437',
                                                               'text': 'Chun '
                                                                       'Kit '
                                                                       'Ng'},
                                                              {'@pid': '70/6889',
                                                               'text': 'Chun-Ho '
                                                                       'Wu'},
                                                              {'@pid': '03/6223',
                                                               'text': 'Kai-Leung '
                                                                       'Yung'},
                                                              {'@pid': '36/2935',
                                                               'text': 'Wai-Hung '
                                                                       'Ip'},
                                                              {'@pid': '75/6827',
                                                               'text': 'Tommy '
                                                                       'Cheung'}]},
                                       'doi': '10.1080/17517575.2018.1464666',
                                       'ee': 'https://doi.org/10.1080/17517575.2018.1464666',
                                       'key': 'journals/eis/NgWYIC18',
                                       'number': '7',
                                       'pages': '820-855',
                                       'title': 'A semantic similarity '
                                                'analysis of Internet of '
                                                'Things.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/eis/NgWYIC18',
                                       'venue': 'Enterp. Inf. Syst.',
                                       'volume': '12',
                                       'year': '2018'},
                              'url': 'URL#1084480'},
                             {'@id': '1094307',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '182/8437',
                                                               'text': 'Chun '
                                                                       'Kit '
                                                                       'Ng'},
                                                              {'@pid': '70/6889',
                                                               'text': 'Chun-Ho '
                                                                       'Wu'},
                                                              {'@pid': '36/2935',
                                                               'text': 'Andrew '
                                                                       'W. H. '
                                                                       'Ip'},
                                                              {'@pid': '03/6223',
                                                               'text': 'Kai-Leung '
                                                                       'Yung'}]},
                                       'doi': '10.1109/LCOMM.2018.2861766',
                                       'ee': 'https://doi.org/10.1109/LCOMM.2018.2861766',
                                       'key': 'journals/icl/NgWIY18',
                                       'number': '10',
                                       'pages': '2120-2123',
                                       'title': 'A Smart Bat Algorithm for '
                                                'Wireless Sensor Network '
                                                'Deployment in 3-D '
                                                'Environment.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/icl/NgWIY18',
                                       'venue': 'IEEE Commun. Lett.',
                                       'volume': '22',
                                       'year': '2018'},
                              'url': 'URL#1094307'},
                             {'@id': '1112506',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '30/9784',
                                                               'text': 'Andrew '
                                                                       'Paverd'},
                                                              {'@pid': '42/10481',
                                                               'text': 'Sandeep '
                                                                       'Tamrakar'},
                                                              {'@pid': '218/0555',
                                                               'text': 'Hoang '
                                                                       'Long '
                                                                       'Nguyen '
                                                                       '0003'},
                                                              {'@pid': '145/9171',
                                                               'text': 'Praveen '
                                                                       'Kumar '
                                                                       'Pendyala'},
                                                              {'@pid': '153/5738',
                                                               'text': 'Thien '
                                                                       'Duc '
                                                                       'Nguyen'},
                                                              {'@pid': '41/7564',
                                                               'text': 'Elizabeth '
                                                                       'Stobert'},
                                                              {'@pid': '205/7896',
                                                               'text': 'Tommi '
                                                                       'Grondahl'},
                                                              {'@pid': '39/2508',
                                                               'text': 'N. '
                                                                       'Asokan'},
                                                              {'@pid': 's/AhmadRezaSadeghi',
                                                               'text': 'Ahmad-Reza '
                                                                       'Sadeghi'}]},
                                       'doi': '10.1109/MIC.2018.043051462',
                                       'ee': 'https://doi.org/10.1109/MIC.2018.043051462',
                                       'key': 'journals/internet/PaverdTHPNSGAS18',
                                       'number': '4',
                                       'pages': '27-36',
                                       'title': 'OmniShare - Encrypted Cloud '
                                                'Storage for the Multi-Device '
                                                'Era.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/internet/PaverdTHPNSGAS18',
                                       'venue': 'IEEE Internet Comput.',
                                       'volume': '22',
                                       'year': '2018'},
                              'url': 'URL#1112506'},
                             {'@id': '1150360',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '217/4047',
                                                               'text': 'Samuel '
                                                                       'Hislop'},
                                                              {'@pid': '142/6114',
                                                               'text': 'Simon '
                                                                       'D. '
                                                                       'Jones'},
                                                              {'@pid': '142/6204',
                                                               'text': 'Mariela '
                                                                       'Soto-Berelov'},
                                                              {'@pid': '97/4491',
                                                               'text': 'Andrew '
                                                                       'K. '
                                                                       'Skidmore'},
                                                              {'@pid': '86/7547',
                                                               'text': 'Andrew '
                                                                       'Haywood'},
                                                              {'@pid': '217/4094',
                                                               'text': 'Trung '
                                                                       'H. '
                                                                       'Nguyen'}]},
                                       'doi': '10.3390/RS10030460',
                                       'ee': 'https://doi.org/10.3390/rs10030460',
                                       'key': 'journals/remotesensing/HislopJSSHN18',
                                       'number': '3',
                                       'pages': '460',
                                       'title': 'Using Landsat Spectral '
                                                'Indices in Time-Series to '
                                                'Assess Wildfire Disturbance '
                                                'and Recovery.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/remotesensing/HislopJSSHN18',
                                       'venue': 'Remote. Sens.',
                                       'volume': '10',
                                       'year': '2018'},
                              'url': 'URL#1150360'},
                             {'@id': '1253485',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '229/1739',
                                                               'text': 'Andrew '
                                                                       'Putra '
                                                                       'Kusuma'},
                                                              {'@pid': '202/3048',
                                                               'text': 'Vajisha '
                                                                       'U. '
                                                                       'Wanniarachchi'},
                                                              {'@pid': '84/2408',
                                                               'text': 'Owen '
                                                                       'Noel '
                                                                       'Newton '
                                                                       'Fernando'},
                                                              {'@pid': 'n/WeeKeongNg',
                                                               'text': 'Wee '
                                                                       'Keong '
                                                                       'Ng'}]},
                                       'doi': '10.1145/3267305.3267615',
                                       'ee': 'https://doi.org/10.1145/3267305.3267615',
                                       'key': 'conf/huc/KusumaWFK18',
                                       'pages': '114-117',
                                       'title': 'Audio Fingerprint Application '
                                                'for the Media Industry.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/huc/KusumaWFK18',
                                       'venue': 'UbiComp/ISWC Adjunct',
                                       'year': '2018'},
                              'url': 'URL#1253485'},
                             {'@id': '1286402',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '217/4047',
                                                               'text': 'Samuel '
                                                                       'Hislop'},
                                                              {'@pid': '142/6114',
                                                               'text': 'Simon '
                                                                       'D. '
                                                                       'Jones'},
                                                              {'@pid': '142/6204',
                                                               'text': 'Mariela '
                                                                       'Soto-Berelov'},
                                                              {'@pid': '229/6374',
                                                               'text': 'Andrew '
                                                                       'Skidmorebd'},
                                                              {'@pid': '86/7547',
                                                               'text': 'Andrew '
                                                                       'Haywood'},
                                                              {'@pid': '217/4094',
                                                               'text': 'Trung '
                                                                       'H. '
                                                                       'Nguyen'}]},
                                       'doi': '10.1109/IGARSS.2018.8518009',
                                       'ee': 'https://doi.org/10.1109/IGARSS.2018.8518009',
                                       'key': 'conf/igarss/HislopJSSHN18',
                                       'pages': '4954-4957',
                                       'title': 'A New Semi-Automatic Seamless '
                                                'Cloud-Free Landsat Mosaicing '
                                                'Approach Tracks Forest Change '
                                                'Over Large Extents.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/igarss/HislopJSSHN18',
                                       'venue': 'IGARSS',
                                       'year': '2018'},
                              'url': 'URL#1286402'},
                             {'@id': '1342835',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '296/6853',
                                                               'text': 'Muhd '
                                                                       'Sharil '
                                                                       'Reiza '
                                                                       'Ismail'},
                                                              {'@pid': '16/11513',
                                                               'text': 'Andrew '
                                                                       'Keong '
                                                                       'Ng'},
                                                              {'@pid': '195/6324',
                                                               'text': 'Oh Sin '
                                                                       'Hin'},
                                                              {'@pid': '195/6348',
                                                               'text': 'Tan '
                                                                       'Chuan '
                                                                       'Heng'}]},
                                       'doi': '10.1109/SOLI.2018.8476696',
                                       'ee': 'https://doi.org/10.1109/SOLI.2018.8476696',
                                       'key': 'conf/soli/IsmailNHH18',
                                       'pages': '169-174',
                                       'title': 'Integrated Systems Analysis '
                                                'Software for Interdependency '
                                                'Analysis of Railway Systems.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/soli/IsmailNHH18',
                                       'venue': 'SOLI',
                                       'year': '2018'},
                              'url': 'URL#1342835'},
                             {'@id': '1397033',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '228/6912',
                                                               'text': 'Sergei '
                                                                       'Alyamkin'},
                                                              {'@pid': '228/6815',
                                                               'text': 'Matthew '
                                                                       'Ardi'},
                                                              {'@pid': '228/6665',
                                                               'text': 'Achille '
                                                                       'Brighton'},
                                                              {'@pid': '73/2348',
                                                               'text': 'Alexander '
                                                                       'C. '
                                                                       'Berg'},
                                                              {'@pid': '80/1641',
                                                               'text': 'Yiran '
                                                                       'Chen'},
                                                              {'@pid': '185/8729',
                                                               'text': 'Hsin-Pai '
                                                                       'Cheng'},
                                                              {'@pid': '89/5615-19',
                                                               'text': 'Bo '
                                                                       'Chen '
                                                                       '0019'},
                                                              {'@pid': '206/2833',
                                                               'text': 'Zichen '
                                                                       'Fan'},
                                                              {'@pid': '01/161',
                                                               'text': 'Chen '
                                                                       'Feng'},
                                                              {'@pid': '89/1563',
                                                               'text': 'Bo Fu'},
                                                              {'@pid': '195/4143',
                                                               'text': 'Kent '
                                                                       'Gauen'},
                                                              {'@pid': '228/6845',
                                                               'text': 'Jongkook '
                                                                       'Go'},
                                                              {'@pid': '228/6657',
                                                               'text': 'Alexander '
                                                                       'Goncharenko'},
                                                              {'@pid': '86/10861',
                                                               'text': 'Xuyang '
                                                                       'Guo'},
                                                              {'@pid': '228/6900',
                                                               'text': 'Hong '
                                                                       'Hanh '
                                                                       'Nguyen'},
                                                              {'@pid': '139/0987',
                                                               'text': 'Andrew '
                                                                       'Howard '
                                                                       '0002'},
                                                              {'@pid': '168/0702',
                                                               'text': 'Yuanjun '
                                                                       'Huang'},
                                                              {'@pid': '28/11197',
                                                               'text': 'Donghyun '
                                                                       'Kang'},
                                                              {'@pid': '10/6516',
                                                               'text': 'Jaeyoun '
                                                                       'Kim'},
                                                              {'@pid': '228/6916',
                                                               'text': 'Alexander '
                                                                       'Kondratyev'},
                                                              {'@pid': '02/2475',
                                                               'text': 'Seungjae '
                                                                       'Lee'},
                                                              {'@pid': '19/2053',
                                                               'text': 'Suwoong '
                                                                       'Lee'},
                                                              {'@pid': '228/6764',
                                                               'text': 'Junhyeok '
                                                                       'Lee'},
                                                              {'@pid': '139/6492',
                                                               'text': 'Zhiyu '
                                                                       'Liang'},
                                                              {'@pid': '76/1820',
                                                               'text': 'Xin '
                                                                       'Liu'},
                                                              {'@pid': '227/2299',
                                                               'text': 'Juzheng '
                                                                       'Liu'},
                                                              {'@pid': '95/147',
                                                               'text': 'Zichao '
                                                                       'Li'},
                                                              {'@pid': '16/6317',
                                                               'text': 'Yang '
                                                                       'Lu'},
                                                              {'@pid': '12/5138',
                                                               'text': 'Yung-Hsiang '
                                                                       'Lu'},
                                                              {'@pid': '228/6681',
                                                               'text': 'Deeptanshu '
                                                                       'Malik'},
                                                              {'@pid': '92/9727',
                                                               'text': 'Eunbyung '
                                                                       'Park'},
                                                              {'@pid': '228/6969',
                                                               'text': 'Denis '
                                                                       'Repin'},
                                                              {'@pid': '61/3395',
                                                               'text': 'Tao '
                                                                       'Sheng'},
                                                              {'@pid': '52/3709',
                                                               'text': 'Liang '
                                                                       'Shen'},
                                                              {'@pid': '51/394',
                                                               'text': 'Fei '
                                                                       'Sun'},
                                                              {'@pid': '228/6695',
                                                               'text': 'David '
                                                                       'Svitov'},
                                                              {'@pid': '97/6279',
                                                               'text': 'George '
                                                                       'K. '
                                                                       'Thiruvathukal'},
                                                              {'@pid': '191/1478',
                                                               'text': 'Baiwu '
                                                                       'Zhang'},
                                                              {'@pid': '205/0387',
                                                               'text': 'Jingchi '
                                                                       'Zhang'},
                                                              {'@pid': '45/5193-3',
                                                               'text': 'Xiaopeng '
                                                                       'Zhang '
                                                                       '0003'},
                                                              {'@pid': '49/7407',
                                                               'text': 'Shaojie '
                                                                       'Zhuo'}]},
                                       'ee': 'http://arxiv.org/abs/1810.01732',
                                       'key': 'journals/corr/abs-1810-01732',
                                       'title': '2018 Low-Power Image '
                                                'Recognition Challenge.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-1810-01732',
                                       'venue': 'CoRR',
                                       'volume': 'abs/1810.01732',
                                       'year': '2018'},
                              'url': 'URL#1397033'},
                             {'@id': '1448189',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '115/6940',
                                                               'text': 'Charith '
                                                                       'Perera'},
                                                              {'@pid': '186/7881',
                                                               'text': 'Susan '
                                                                       'Wakenshaw'},
                                                              {'@pid': '53/10460',
                                                               'text': 'Tim '
                                                                       'Baarslag'},
                                                              {'@pid': '33/5454',
                                                               'text': 'Hamed '
                                                                       'Haddadi'},
                                                              {'@pid': '12/360',
                                                               'text': 'Arosha '
                                                                       'K. '
                                                                       'Bandara'},
                                                              {'@pid': '28/5155',
                                                               'text': 'Richard '
                                                                       'Mortier'},
                                                              {'@pid': '81/363',
                                                               'text': 'Andy '
                                                                       'Crabtree'},
                                                              {'@pid': '59/10547',
                                                               'text': 'Irene '
                                                                       'Ng'},
                                                              {'@pid': '57/6908',
                                                               'text': 'Derek '
                                                                       'McAuley'},
                                                              {'@pid': 'c/JonCrowcroft',
                                                               'text': 'Jon '
                                                                       'Crowcroft'}]},
                                       'doi': '10.1002/ETT.3125',
                                       'ee': 'https://doi.org/10.1002/ett.3125',
                                       'key': 'journals/ett/PereraWBHBMCNMC17',
                                       'number': '1',
                                       'title': 'Valorising the IoT Databox - '
                                                'creating value for everyone.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/ett/PereraWBHBMCNMC17',
                                       'venue': 'Trans. Emerg. Telecommun. '
                                                'Technol.',
                                       'volume': '28',
                                       'year': '2017'},
                              'url': 'URL#1448189'},
                             {'@id': '1549657',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': 'm/JiriMatousek-2',
                                                               'text': 'Jirí '
                                                                       'Matousek '
                                                                       '0002'},
                                                              {'@pid': '00/4948',
                                                               'text': 'Gianni '
                                                                       'Antichi'},
                                                              {'@pid': '202/7741',
                                                               'text': 'Adam '
                                                                       'Lucansky'},
                                                              {'@pid': '95/2279-2',
                                                               'text': 'Andrew '
                                                                       'W. '
                                                                       'Moore '
                                                                       '0002'},
                                                              {'@pid': '19/640',
                                                               'text': 'Jan '
                                                                       'Korenek'}]},
                                       'doi': '10.1109/ANCS.2017.33',
                                       'ee': 'https://doi.org/10.1109/ANCS.2017.33',
                                       'key': 'conf/ancs/MatousekAL0K17',
                                       'pages': '204-216',
                                       'title': 'ClassBench-ng - Recasting '
                                                'ClassBench after a Decade of '
                                                'Network Evolution.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/ancs/MatousekAL0K17',
                                       'venue': 'ANCS',
                                       'year': '2017'},
                              'url': 'URL#1549657'},
                             {'@id': '1579865',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '199/7804',
                                                               'text': 'Davis '
                                                                       'Rempe'},
                                                              {'@pid': '199/7813',
                                                               'text': 'Mitchell '
                                                                       'Snyder'},
                                                              {'@pid': '199/7710',
                                                               'text': 'Andrew '
                                                                       'Pracht'},
                                                              {'@pid': '09/1584',
                                                               'text': 'Andrew '
                                                                       'Schwarz'},
                                                              {'@pid': '29/6538',
                                                               'text': 'Tri '
                                                                       'Nguyen'},
                                                              {'@pid': '199/7825',
                                                               'text': 'Mitchel '
                                                                       'Vostrez'},
                                                              {'@pid': '40/9951',
                                                               'text': 'Zhongyuan '
                                                                       'Zhao'},
                                                              {'@pid': '48/5870',
                                                               'text': 'Mehmet '
                                                                       'C. '
                                                                       'Vuran'}]},
                                       'doi': '10.1109/DYSPAN.2017.7920765',
                                       'ee': 'https://doi.org/10.1109/DySPAN.2017.7920765',
                                       'key': 'conf/dyspan/RempeSPSNVZV17',
                                       'pages': '1-2',
                                       'title': 'A cognitive radio TV '
                                                'prototype for effective TV '
                                                'spectrum sharing.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/dyspan/RempeSPSNVZV17',
                                       'venue': 'DySPAN',
                                       'year': '2017'},
                              'url': 'URL#1579865'},
                             {'@id': '1762709',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '78/9826',
                                                               'text': 'Marco '
                                                                       'Chiesa'},
                                                              {'@pid': '177/6606',
                                                               'text': 'Christoph '
                                                                       'Dietzel'},
                                                              {'@pid': '00/4948',
                                                               'text': 'Gianni '
                                                                       'Antichi'},
                                                              {'@pid': '139/1756',
                                                               'text': 'Marc '
                                                                       'Bruyere'},
                                                              {'@pid': '99/11343',
                                                               'text': 'Ignacio '
                                                                       'Castro'},
                                                              {'@pid': '45/5210',
                                                               'text': 'Mitch '
                                                                       'Gusat'},
                                                              {'@pid': '21/1921',
                                                               'text': 'Thomas '
                                                                       'King'},
                                                              {'@pid': '95/2279-2',
                                                               'text': 'Andrew '
                                                                       'W. '
                                                                       'Moore '
                                                                       '0002'},
                                                              {'@pid': '65/5183',
                                                               'text': 'Thanh '
                                                                       'Dang '
                                                                       'Nguyen'},
                                                              {'@pid': '90/6614',
                                                               'text': 'Philippe '
                                                                       'Owezarski'},
                                                              {'@pid': '87/6218',
                                                               'text': 'Steve '
                                                                       'Uhlig'},
                                                              {'@pid': '24/5715',
                                                               'text': 'Marco '
                                                                       'Canini'}]},
                                       'doi': '10.1109/MCOM.2016.7588277',
                                       'ee': 'https://doi.org/10.1109/MCOM.2016.7588277',
                                       'key': 'journals/cm/ChiesaDABCGK0NO16',
                                       'number': '10',
                                       'pages': '102-108',
                                       'title': 'Inter-domain networking '
                                                'innovation on steroids - '
                                                'empowering ixps with SDN '
                                                'capabilities.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/cm/ChiesaDABCGK0NO16',
                                       'venue': 'IEEE Commun. Mag.',
                                       'volume': '54',
                                       'year': '2016'},
                              'url': 'URL#1762709'},
                             {'@id': '1933453',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '182/8437',
                                                               'text': 'Chun '
                                                                       'Kit '
                                                                       'Ng'},
                                                              {'@pid': '70/6889',
                                                               'text': 'Chun-Ho '
                                                                       'Wu'},
                                                              {'@pid': '36/2935',
                                                               'text': 'W. H. '
                                                                       'Ip'},
                                                              {'@pid': 'z/JunZhang3',
                                                               'text': 'Jun '
                                                                       'Zhang '
                                                                       '0003'},
                                                              {'@pid': '03/6732',
                                                               'text': 'George '
                                                                       'T. S. '
                                                                       'Ho'},
                                                              {'@pid': '45/6278',
                                                               'text': 'C. Y. '
                                                                       'Chan'}]},
                                       'doi': '10.1007/978-3-319-42294-7_75',
                                       'ee': 'https://doi.org/10.1007/978-3-319-42294-7_75',
                                       'key': 'conf/icic/NgWIZHC16',
                                       'pages': '850-859',
                                       'title': 'Network Topology Management '
                                                'Optimization of Wireless '
                                                'Sensor Network (WSN).',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icic/NgWIZHC16',
                                       'venue': 'ICIC',
                                       'year': '2016'},
                              'url': 'URL#1933453'},
                             {'@id': '1962469',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '183/4590',
                                                               'text': 'Andrew '
                                                                       'Shorten'},
                                                              {'@pid': '87/9847',
                                                               'text': 'Wai '
                                                                       'Tung '
                                                                       'Ng'}]},
                                       'doi': '10.1109/ISMVL.2016.59',
                                       'ee': 'https://doi.org/10.1109/ISMVL.2016.59',
                                       'key': 'conf/ismvl/ShortenN16',
                                       'pages': '172-176',
                                       'title': 'SPRUCE, an Embedded Compact '
                                                'Stack Machine for IGBT Power '
                                                'Modules.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/ismvl/ShortenN16',
                                       'venue': 'ISMVL',
                                       'year': '2016'},
                              'url': 'URL#1962469'},
                             {'@id': '2019203',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': 'p/JanPeters1',
                                                               'text': 'Jan '
                                                                       'Peters '
                                                                       '0001'},
                                                              {'@pid': '38/5967',
                                                               'text': 'Daniel '
                                                                       'D. '
                                                                       'Lee'},
                                                              {'@pid': '69/6636',
                                                               'text': 'Jens '
                                                                       'Kober'},
                                                              {'@pid': '18/6057',
                                                               'text': 'Duy '
                                                                       'Nguyen-Tuong'},
                                                              {'@pid': '65/2021',
                                                               'text': 'J. '
                                                                       'Andrew '
                                                                       'Bagnell'},
                                                              {'@pid': '32/3952',
                                                               'text': 'Stefan '
                                                                       'Schaal'}]},
                                       'doi': '10.1007/978-3-319-32552-1_15',
                                       'ee': 'https://doi.org/10.1007/978-3-319-32552-1_15',
                                       'key': 'reference/robo/0001LKNBS16',
                                       'pages': '357-398',
                                       'title': 'Robot Learning.',
                                       'type': 'Parts in Books or Collections',
                                       'url': 'https://dblp.org/rec/reference/robo/0001LKNBS16',
                                       'venue': 'Springer Handbook of '
                                                'Robotics, 2nd Ed.',
                                       'year': '2016'},
                              'url': 'URL#2019203'},
                             {'@id': '2039845',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '115/6940',
                                                               'text': 'Charith '
                                                                       'Perera'},
                                                              {'@pid': '186/7881',
                                                               'text': 'Susan '
                                                                       'Wakenshaw'},
                                                              {'@pid': '53/10460',
                                                               'text': 'Tim '
                                                                       'Baarslag'},
                                                              {'@pid': '33/5454',
                                                               'text': 'Hamed '
                                                                       'Haddadi'},
                                                              {'@pid': '12/360',
                                                               'text': 'Arosha '
                                                                       'K. '
                                                                       'Bandara'},
                                                              {'@pid': '28/5155',
                                                               'text': 'Richard '
                                                                       'Mortier'},
                                                              {'@pid': '81/363',
                                                               'text': 'Andy '
                                                                       'Crabtree'},
                                                              {'@pid': '59/10547',
                                                               'text': 'Irene '
                                                                       'Ng'},
                                                              {'@pid': '57/6908',
                                                               'text': 'Derek '
                                                                       'McAuley'},
                                                              {'@pid': 'c/JonCrowcroft',
                                                               'text': 'Jon '
                                                                       'Crowcroft'}]},
                                       'ee': 'http://arxiv.org/abs/1609.03312',
                                       'key': 'journals/corr/PereraWBHBMCNMC16',
                                       'title': 'Valorising the IoT Databox - '
                                                'Creating Value for Everyone.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/PereraWBHBMCNMC16',
                                       'venue': 'CoRR',
                                       'volume': 'abs/1609.03312',
                                       'year': '2016'},
                              'url': 'URL#2039845'},
                             {'@id': '2094038',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '70/6889',
                                                               'text': 'Chun-Ho '
                                                                       'Wu'},
                                                              {'@pid': '182/8437',
                                                               'text': 'Chun '
                                                                       'Kit '
                                                                       'Ng'},
                                                              {'@pid': '44/9389',
                                                               'text': 'Lixing '
                                                                       'Wang'},
                                                              {'@pid': '03/6732',
                                                               'text': 'George '
                                                                       'T. S. '
                                                                       'Ho'},
                                                              {'@pid': '36/2935',
                                                               'text': 'W. H. '
                                                                       'Ip'},
                                                              {'@pid': 'z/JunZhang3',
                                                               'text': 'Jun '
                                                                       'Zhang '
                                                                       '0003'}]},
                                       'doi': '10.1155/2015/760242',
                                       'ee': 'https://doi.org/10.1155/2015/760242',
                                       'key': 'journals/ijdsn/WuNWHIZ15',
                                       'pages': '760242:1-760242:10',
                                       'title': 'Design of a Wireless Sensor '
                                                'Network Monitoring System for '
                                                'Biological and Pharmaceutical '
                                                'Products.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/ijdsn/WuNWHIZ15',
                                       'venue': 'Int. J. Distributed Sens. '
                                                'Networks',
                                       'volume': '11',
                                       'year': '2015'},
                              'url': 'URL#2094038'},
                             {'@id': '2203961',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '171/9516',
                                                               'text': 'Andrew '
                                                                       'J. '
                                                                       'Cook'},
                                                              {'@pid': '133/3983',
                                                               'text': 'Gaetano '
                                                                       'D. '
                                                                       'Gargiulo'},
                                                              {'@pid': '171/9359',
                                                               'text': 'Rebekah '
                                                                       'Cook'},
                                                              {'@pid': '171/8603',
                                                               'text': 'Ben '
                                                                       'Ng'},
                                                              {'@pid': '171/9809',
                                                               'text': 'Diane '
                                                                       'Hindmarsh'},
                                                              {'@pid': '24/4543',
                                                               'text': 'Torsten '
                                                                       'Lehmann'},
                                                              {'@pid': '84/6623',
                                                               'text': 'Tara '
                                                                       'Julia '
                                                                       'Hamilton'}]},
                                       'doi': '10.1109/EMBC.2015.7319400',
                                       'ee': 'https://doi.org/10.1109/EMBC.2015.7319400',
                                       'key': 'conf/embc/CookGCNHLH15',
                                       'pages': '4524-4527',
                                       'title': 'A novel method for '
                                                'non-invasive respiration '
                                                'monitoring.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/embc/CookGCNHLH15',
                                       'venue': 'EMBC',
                                       'year': '2015'},
                              'url': 'URL#2203961'},
                             {'@id': '2340762',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '42/10481',
                                                               'text': 'Sandeep '
                                                                       'Tamrakar'},
                                                              {'@pid': '218/0555',
                                                               'text': 'Hoang '
                                                                       'Long '
                                                                       'Nguyen '
                                                                       '0003'},
                                                              {'@pid': '145/9171',
                                                               'text': 'Praveen '
                                                                       'Kumar '
                                                                       'Pendyala'},
                                                              {'@pid': '30/9784',
                                                               'text': 'Andrew '
                                                                       'Paverd'},
                                                              {'@pid': '39/2508',
                                                               'text': 'N. '
                                                                       'Asokan'},
                                                              {'@pid': 's/AhmadRezaSadeghi',
                                                               'text': 'Ahmad-Reza '
                                                                       'Sadeghi'}]},
                                       'ee': 'http://arxiv.org/abs/1511.02119',
                                       'key': 'journals/corr/TamrakarHPPAS15',
                                       'title': 'OmniShare - Securely '
                                                'Accessing Encrypted Cloud '
                                                'Storage from Multiple '
                                                'Authorized Devices.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/TamrakarHPPAS15',
                                       'venue': 'CoRR',
                                       'volume': 'abs/1511.02119',
                                       'year': '2015'},
                              'url': 'URL#2340762'},
                             {'@id': '2414887',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '84/9206',
                                                               'text': 'Uri '
                                                                       'Andrews'},
                                                              {'@pid': '81/6401',
                                                               'text': 'Steffen '
                                                                       'Lempp'},
                                                              {'@pid': '75/629',
                                                               'text': 'Joseph '
                                                                       'S. '
                                                                       'Miller'},
                                                              {'@pid': '85/2767',
                                                               'text': 'Keng '
                                                                       'Meng '
                                                                       'Ng'},
                                                              {'@pid': '161/4452',
                                                               'text': 'Luca '
                                                                       'San '
                                                                       'Mauro'},
                                                              {'@pid': '06/33',
                                                               'text': 'Andrea '
                                                                       'Sorbi'}]},
                                       'doi': '10.1017/JSL.2013.8',
                                       'ee': 'https://doi.org/10.1017/jsl.2013.8',
                                       'key': 'journals/jsyml/AndrewsLMNMS14',
                                       'number': '1',
                                       'pages': '60-88',
                                       'title': 'Universal computably '
                                                'Enumerable Equivalence '
                                                'Relations.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/jsyml/AndrewsLMNMS14',
                                       'venue': 'J. Symb. Log.',
                                       'volume': '79',
                                       'year': '2014'},
                              'url': 'URL#2414887'},
                             {'@id': '2476250',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '64/8134',
                                                               'text': 'Enoch '
                                                                       'Yeung'},
                                                              {'@pid': '158/5148',
                                                               'text': 'Andrew '
                                                                       'Ng '
                                                                       '0001'},
                                                              {'@pid': '38/1733',
                                                               'text': 'Jongmin '
                                                                       'Kim'},
                                                              {'@pid': '158/5169',
                                                               'text': 'Zachary '
                                                                       'Z. '
                                                                       'Sun'},
                                                              {'@pid': 'm/RichardMMurray',
                                                               'text': 'Richard '
                                                                       'M. '
                                                                       'Murray'}]},
                                       'doi': '10.1109/CDC.2014.7040234',
                                       'ee': 'https://doi.org/10.1109/CDC.2014.7040234',
                                       'key': 'conf/cdc/YeungNKSM14',
                                       'pages': '5405-5412',
                                       'title': 'Modeling the effects of '
                                                'compositional context on '
                                                'promoter activity in an E. '
                                                'coli extract based '
                                                'transcription-translation '
                                                'system.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/cdc/YeungNKSM14',
                                       'venue': 'CDC',
                                       'year': '2014'},
                              'url': 'URL#2476250'},
                             {'@id': '2497693',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '16/1234-1',
                                                               'text': 'Zhuo '
                                                                       'Zhang '
                                                                       '0001'},
                                                              {'@pid': '95/7006',
                                                               'text': 'Cuntai '
                                                                       'Guan'},
                                                              {'@pid': '57/2292',
                                                               'text': 'Ti-Eu '
                                                                       'Chan'},
                                                              {'@pid': '118/5252',
                                                               'text': 'Juanhong '
                                                                       'Yu'},
                                                              {'@pid': '16/11513',
                                                               'text': 'Andrew '
                                                                       'Keong '
                                                                       'Ng'},
                                                              {'@pid': '43/3254',
                                                               'text': 'Haihong '
                                                                       'Zhang'},
                                                              {'@pid': '32/228',
                                                               'text': 'Chee '
                                                                       'Keong '
                                                                       'Kwoh '
                                                                       '0001'}]},
                                       'doi': '10.1109/EMBC.2014.6944071',
                                       'ee': 'https://doi.org/10.1109/EMBC.2014.6944071',
                                       'key': 'conf/embc/ZhangGCYNZK14',
                                       'pages': '2265-2268',
                                       'title': 'Automatic sleep onset '
                                                'detection using single EEG '
                                                'sensor.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/embc/ZhangGCYNZK14',
                                       'venue': 'EMBC',
                                       'year': '2014'},
                              'url': 'URL#2497693'},
                             {'@id': '2498702',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '70/6889',
                                                               'text': 'Chun-Ho '
                                                                       'Wu'},
                                                              {'@pid': '204/8592',
                                                               'text': 'Felix '
                                                                       'C. K. '
                                                                       'Ng'},
                                                              {'@pid': '176/2427',
                                                               'text': 'Polly '
                                                                       'P. L. '
                                                                       'Leung'},
                                                              {'@pid': '95/5993',
                                                               'text': 'W. Y. '
                                                                       'Lau'},
                                                              {'@pid': '03/6732',
                                                               'text': 'George '
                                                                       'T. S. '
                                                                       'Ho'},
                                                              {'@pid': '36/2935',
                                                               'text': 'W. H. '
                                                                       'Ip'}]},
                                       'doi': '10.1109/ES.2014.39',
                                       'ee': 'https://doi.org/10.1109/ES.2014.39',
                                       'key': 'conf/es/WuNLLHI14',
                                       'pages': '184-189',
                                       'title': 'Design of a EHS Module for an '
                                                'Intelligent Automobile '
                                                'Parking Platform.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/es/WuNLLHI14',
                                       'venue': 'ES',
                                       'year': '2014'},
                              'url': 'URL#2498702'},
                             {'@id': '2583976',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '77/2302',
                                                               'text': 'Andrew '
                                                                       'S. '
                                                                       'Cassidy'},
                                                              {'@pid': '82/9934',
                                                               'text': 'Rodrigo '
                                                                       'Alvarez-Icaza'},
                                                              {'@pid': '82/1333',
                                                               'text': 'Filipp '
                                                                       'Akopyan'},
                                                              {'@pid': '94/3018',
                                                               'text': 'Jun '
                                                                       'Sawada'},
                                                              {'@pid': '79/3658',
                                                               'text': 'John '
                                                                       'V. '
                                                                       'Arthur'},
                                                              {'@pid': '09/4441',
                                                               'text': 'Paul '
                                                                       'Merolla'},
                                                              {'@pid': '23/6729',
                                                               'text': 'Pallab '
                                                                       'Datta'},
                                                              {'@pid': '57/418',
                                                               'text': 'Marc '
                                                                       'González '
                                                                       'Tallada'},
                                                              {'@pid': '75/3868',
                                                               'text': 'Brian '
                                                                       'Taba'},
                                                              {'@pid': '86/1574',
                                                               'text': 'Alexander '
                                                                       'Andreopoulos'},
                                                              {'@pid': '10/5361',
                                                               'text': 'Arnon '
                                                                       'Amir'},
                                                              {'@pid': '97/7552',
                                                               'text': 'Steven '
                                                                       'K. '
                                                                       'Esser'},
                                                              {'@pid': '139/5788',
                                                               'text': 'Jeff '
                                                                       'Kusnitz'},
                                                              {'@pid': '15/7662',
                                                               'text': 'Rathinakumar '
                                                                       'Appuswamy'},
                                                              {'@pid': '78/8707',
                                                               'text': 'Chuck '
                                                                       'Haymes'},
                                                              {'@pid': '44/9612',
                                                               'text': 'Bernard '
                                                                       'Brezzo'},
                                                              {'@pid': '35/7855',
                                                               'text': 'Roger '
                                                                       'Moussalli'},
                                                              {'@pid': '57/4005',
                                                               'text': 'Ralph '
                                                                       'Bellofatto'},
                                                              {'@pid': '121/5571',
                                                               'text': 'Christian '
                                                                       'W. '
                                                                       'Baks'},
                                                              {'@pid': '157/2827',
                                                               'text': 'Michael '
                                                                       'Mastro'},
                                                              {'@pid': '62/6287',
                                                               'text': 'Kai '
                                                                       'Schleupen'},
                                                              {'@pid': '157/2850',
                                                               'text': 'Charles '
                                                                       'E. '
                                                                       'Cox'},
                                                              {'@pid': '133/3879',
                                                               'text': 'Ken '
                                                                       'Inoue'},
                                                              {'@pid': '44/7019',
                                                               'text': 'Steven '
                                                                       'E. '
                                                                       'Millman'},
                                                              {'@pid': '41/9709',
                                                               'text': 'Nabil '
                                                                       'Imam'},
                                                              {'@pid': '139/5872',
                                                               'text': 'Emmett '
                                                                       'McQuinn'},
                                                              {'@pid': '157/2817',
                                                               'text': 'Yutaka '
                                                                       'Y. '
                                                                       'Nakamura'},
                                                              {'@pid': '08/4302',
                                                               'text': 'Ivan '
                                                                       'Vo'},
                                                              {'@pid': '157/2882',
                                                               'text': 'Chen '
                                                                       'Guok'},
                                                              {'@pid': '143/9367',
                                                               'text': 'Don '
                                                                       'Nguyen'},
                                                              {'@pid': '13/4728',
                                                               'text': 'Scott '
                                                                       'Lekuch'},
                                                              {'@pid': '22/3168',
                                                               'text': 'Sameh '
                                                                       'W. '
                                                                       'Asaad'},
                                                              {'@pid': '35/1397',
                                                               'text': 'Daniel '
                                                                       'J. '
                                                                       'Friedman'},
                                                              {'@pid': '132/6269',
                                                               'text': 'Bryan '
                                                                       'L. '
                                                                       'Jackson'},
                                                              {'@pid': '68/5615',
                                                               'text': 'Myron '
                                                                       'Flickner'},
                                                              {'@pid': '118/4923',
                                                               'text': 'William '
                                                                       'P. '
                                                                       'Risk'},
                                                              {'@pid': 'm/RajitManohar',
                                                               'text': 'Rajit '
                                                                       'Manohar'},
                                                              {'@pid': '67/1008',
                                                               'text': 'Dharmendra '
                                                                       'S. '
                                                                       'Modha'}]},
                                       'doi': '10.1109/SC.2014.8',
                                       'ee': 'https://doi.org/10.1109/SC.2014.8',
                                       'key': 'conf/sc/CassidyAASAMDTTAAEKAHBMBBMSCIMIMNVGNLAFJFRMM14',
                                       'pages': '27-38',
                                       'title': 'Real-Time Scalable Cortical '
                                                'Computing at 46 Giga-Synaptic '
                                                'OPS/Watt with ~100× Speedup '
                                                'in Time-to-Solution and ~100, '
                                                '000× Reduction in '
                                                'Energy-to-Solution.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/sc/CassidyAASAMDTTAAEKAHBMBBMSCIMIMNVGNLAFJFRMM14',
                                       'venue': 'SC',
                                       'year': '2014'},
                              'url': 'URL#2583976'},
                             {'@id': '2684998',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '44/1356-1',
                                                               'text': 'Min '
                                                                       'Huang '
                                                                       '0001'},
                                                              {'@pid': '131/5619',
                                                               'text': 'Huaping '
                                                                       'Wu'},
                                                              {'@pid': '76/2262',
                                                               'text': 'Vincent '
                                                                       'Cho '
                                                                       '0001'},
                                                              {'@pid': '36/2935',
                                                               'text': 'W. H. '
                                                                       'Ip'},
                                                              {'@pid': '99/4694-1',
                                                               'text': 'Xingwei '
                                                                       'Wang '
                                                                       '0001'},
                                                              {'@pid': '204/8592',
                                                               'text': 'Felix '
                                                                       'C. K. '
                                                                       'Ng'}]},
                                       'doi': '10.1155/2013/135610',
                                       'ee': 'https://doi.org/10.1155/2013/135610',
                                       'key': 'journals/jam/HuangWCIWN13',
                                       'pages': '135610:1-135610:10',
                                       'title': 'Single Machine Problem with '
                                                'Multi-Rate-Modifying '
                                                'Activities under a '
                                                'Time-Dependent Deterioration.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/jam/HuangWCIWN13',
                                       'venue': 'J. Appl. Math.',
                                       'volume': '2013',
                                       'year': '2013'},
                              'url': 'URL#2684998'},
                             {'@id': '2691647',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '99/1082',
                                                               'text': 'Robert '
                                                                       'C. '
                                                                       'Richardson'},
                                                              {'@pid': '128/7066',
                                                               'text': 'Shaun '
                                                                       'Whitehead'},
                                                              {'@pid': '90/8561',
                                                               'text': 'T. C. '
                                                                       'Ng'},
                                                              {'@pid': '128/7093',
                                                               'text': 'Zahi '
                                                                       'Hawass'},
                                                              {'@pid': '97/8695',
                                                               'text': 'Andrew '
                                                                       'Pickering'},
                                                              {'@pid': '128/7095',
                                                               'text': 'Stephen '
                                                                       'Rhodes'},
                                                              {'@pid': '128/7092',
                                                               'text': 'Ron '
                                                                       'Grieve'},
                                                              {'@pid': '128/7091',
                                                               'text': 'Adrian '
                                                                       'Hildred'},
                                                              {'@pid': '84/4811',
                                                               'text': 'Arjun '
                                                                       'Nagendran'},
                                                              {'@pid': '07/6819',
                                                               'text': 'Jason '
                                                                       'Liu'},
                                                              {'@pid': '128/7080',
                                                               'text': 'William '
                                                                       'Mayfield'},
                                                              {'@pid': '128/7145',
                                                               'text': 'Mehdi '
                                                                       'Tayoubi'},
                                                              {'@pid': '128/7057',
                                                               'text': 'Richard '
                                                                       'Breitner'}]},
                                       'doi': '10.1002/ROB.21451',
                                       'ee': 'https://doi.org/10.1002/rob.21451',
                                       'key': 'journals/jfr/RichardsonWNHPRGHNLMTB13',
                                       'number': '3',
                                       'pages': '323-348',
                                       'title': 'The &quot;Djedi&quot; Robot '
                                                'Exploration of the Southern '
                                                'Shaft of the Queen&apos;s '
                                                'Chamber in the Great Pyramid '
                                                'of Giza, Egypt.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/jfr/RichardsonWNHPRGHNLMTB13',
                                       'venue': 'J. Field Robotics',
                                       'volume': '30',
                                       'year': '2013'},
                              'url': 'URL#2691647'},
                             {'@id': '2708509',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '21/4153',
                                                               'text': 'Andrew '
                                                                       'L. '
                                                                       'Kun'},
                                                              {'@pid': '64/7918',
                                                               'text': 'Linda '
                                                                       'Ng '
                                                                       'Boyle'},
                                                              {'@pid': '17/575',
                                                               'text': 'Bryan '
                                                                       'Reimer'},
                                                              {'@pid': '45/2726',
                                                               'text': 'Andreas '
                                                                       'Riener'}]},
                                       'doi': '10.1109/MPRV.2013.27',
                                       'ee': 'https://doi.org/10.1109/MPRV.2013.27',
                                       'key': 'journals/pervasive/KunBRR13',
                                       'number': '2',
                                       'pages': '80-82',
                                       'title': 'AutomotiveUI - Interacting '
                                                'with Technology in Vehicles.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/pervasive/KunBRR13',
                                       'venue': 'IEEE Pervasive Comput.',
                                       'volume': '12',
                                       'year': '2013'},
                              'url': 'URL#2708509'},
                             {'@id': '2746127',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '47/8251',
                                                               'text': 'Adi V. '
                                                                       'Gundlapalli'},
                                                              {'@pid': '148/5743',
                                                               'text': 'Marjorie '
                                                                       'Carter'},
                                                              {'@pid': '148/5931',
                                                               'text': 'Miland '
                                                                       'N. '
                                                                       'Palmer'},
                                                              {'@pid': '13/9768',
                                                               'text': 'Thomas '
                                                                       'Ginter'},
                                                              {'@pid': '12/10519',
                                                               'text': 'Andrew '
                                                                       'Redd'},
                                                              {'@pid': '117/6587',
                                                               'text': 'Steve '
                                                                       'Pickard'},
                                                              {'@pid': '91/8252',
                                                               'text': 'Shuying '
                                                                       'Shen'},
                                                              {'@pid': '99/8246',
                                                               'text': 'Brett '
                                                                       'R. '
                                                                       'South'},
                                                              {'@pid': '23/7341',
                                                               'text': 'Guy '
                                                                       'Divita'},
                                                              {'@pid': '11/4887',
                                                               'text': 'Scott '
                                                                       'L. '
                                                                       'DuVall'},
                                                              {'@pid': '59/9195',
                                                               'text': 'Thien '
                                                                       'M. '
                                                                       'Nguyen'},
                                                              {'@pid': '31/9191',
                                                               'text': 'Leonard '
                                                                       'W. '
                                                                       'D&apos;Avolio'},
                                                              {'@pid': '57/8250',
                                                               'text': 'Matthew '
                                                                       'H. '
                                                                       'Samore'}]},
                                       'ee': 'https://knowledge.amia.org/amia-55142-a2013e-1.580047/t-05-1.583941/f-005-1.583942/a-177-1.584200/a-188-1.584197',
                                       'key': 'conf/amia/GundlapalliCPGRPSSDDNDS13',
                                       'title': 'Using Natural Language '
                                                'Processing on the Free Text '
                                                'of Clinical Documents to '
                                                'Screen for Evidence of '
                                                'Homelessness Among US '
                                                'Veterans.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/amia/GundlapalliCPGRPSSDDNDS13',
                                       'venue': 'AMIA',
                                       'year': '2013'},
                              'url': 'URL#2746127'},
                             {'@id': '2777842',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '16/11513',
                                                               'text': 'Andrew '
                                                                       'Keong '
                                                                       'Ng'},
                                                              {'@pid': '08/1924',
                                                               'text': 'Kai '
                                                                       'Keng '
                                                                       'Ang'},
                                                              {'@pid': '94/581',
                                                               'text': 'Keng '
                                                                       'Peng '
                                                                       'Tee'},
                                                              {'@pid': '95/7006',
                                                               'text': 'Cuntai '
                                                                       'Guan'}]},
                                       'doi': '10.1109/EMBC.2013.6610117',
                                       'ee': 'https://doi.org/10.1109/EMBC.2013.6610117',
                                       'key': 'conf/embc/NgATG13',
                                       'pages': '2780-2783',
                                       'title': 'Optimizing low-frequency '
                                                'common spatial pattern '
                                                'features for multi-class '
                                                'classification of hand '
                                                'movement directions.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/embc/NgATG13',
                                       'venue': 'EMBC',
                                       'year': '2013'},
                              'url': 'URL#2777842'},
                             {'@id': '2777843',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '118/5202',
                                                               'text': 'Kian '
                                                                       'B. Ng'},
                                                              {'@pid': '00/1197',
                                                               'text': 'Andrew '
                                                                       'P. '
                                                                       'Bradley'},
                                                              {'@pid': '97/9680',
                                                               'text': 'Ross '
                                                                       'Cunnington'}]},
                                       'doi': '10.1109/EMBC.2013.6610198',
                                       'ee': 'https://doi.org/10.1109/EMBC.2013.6610198',
                                       'key': 'conf/embc/NgBC13',
                                       'pages': '3105-3108',
                                       'title': 'Effect of posterized '
                                                'naturalistic stimuli on '
                                                'SSVEP-based BCI.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/embc/NgBC13',
                                       'venue': 'EMBC',
                                       'year': '2013'},
                              'url': 'URL#2777843'},
                             {'@id': '2778568',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '91/2554',
                                                               'text': 'Yongwei '
                                                                       'Zhu'},
                                                              {'@pid': '43/3254',
                                                               'text': 'Haihong '
                                                                       'Zhang'},
                                                              {'@pid': '65/514',
                                                               'text': 'Maniyeri '
                                                                       'Jayachandran'},
                                                              {'@pid': '16/11513',
                                                               'text': 'Andrew '
                                                                       'Keong '
                                                                       'Ng'},
                                                              {'@pid': '20/2182',
                                                               'text': 'Jit '
                                                                       'Biswas'},
                                                              {'@pid': '50/505',
                                                               'text': 'Zhihao '
                                                                       'Chen'}]},
                                       'doi': '10.1109/EMBC.2013.6610721',
                                       'ee': 'https://doi.org/10.1109/EMBC.2013.6610721',
                                       'key': 'conf/embc/ZhuZJNBC13',
                                       'pages': '5203-5206',
                                       'title': 'Ballistocardiography with '
                                                'fiber optic sensor in '
                                                'headrest position - A '
                                                'feasibility study and a new '
                                                'processing algorithm.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/embc/ZhuZJNBC13',
                                       'venue': 'EMBC',
                                       'year': '2013'},
                              'url': 'URL#2778568'},
                             {'@id': '2891374',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '33/8524',
                                                               'text': 'Andrew '
                                                                       'V. '
                                                                       'Jones'},
                                                              {'@pid': '44/9716',
                                                               'text': 'Nicholas '
                                                                       'Ng'}]},
                                       'key': 'conf/iccsw/2013',
                                       'publisher': 'Schloss Dagstuhl - '
                                                    'Leibniz-Zentrum fuer '
                                                    'Informatik, Germany',
                                       'title': '2013 Imperial College '
                                                'Computing Student Workshop, '
                                                'ICCSW 2013, September 26/27, '
                                                '2013, London, United Kingdom',
                                       'type': 'Editorship',
                                       'url': 'https://dblp.org/rec/conf/iccsw/2013',
                                       'venue': ['ICCSW', 'OASICS'],
                                       'volume': '35',
                                       'year': '2013'},
                              'url': 'URL#2891374'},
                             {'@id': '2956717',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '16/3523',
                                                               'text': 'Alex '
                                                                       'Ng'},
                                                              {'@pid': '85/10911',
                                                               'text': 'Paul '
                                                                       'Andrew '
                                                                       'Watters'},
                                                              {'@pid': '65/287',
                                                               'text': 'Shiping '
                                                                       'Chen '
                                                                       '0001'}]},
                                       'doi': '10.4018/IRMJ.2012070101',
                                       'ee': 'https://doi.org/10.4018/irmj.2012070101',
                                       'key': 'journals/irmj/NgWC12',
                                       'number': '3',
                                       'pages': '1-29',
                                       'title': 'A Consolidated Process Model '
                                                'for Identity Management.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/irmj/NgWC12',
                                       'venue': 'Inf. Resour. Manag. J.',
                                       'volume': '25',
                                       'year': '2012'},
                              'url': 'URL#2956717'},
                             {'@id': '3009857',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '29/4553',
                                                               'text': 'Brenda '
                                                                       'Ng'},
                                                              {'@pid': '57/5730',
                                                               'text': 'Kofi '
                                                                       'Boakye'},
                                                              {'@pid': '30/824',
                                                               'text': 'Carol '
                                                                       'Meyers'},
                                                              {'@pid': '58/5765',
                                                               'text': 'Andrew '
                                                                       'Wang'}]},
                                       'ee': 'http://www.aaai.org/ocs/index.php/AAAI/AAAI12/paper/view/5120',
                                       'key': 'conf/aaai/NgBMW12',
                                       'title': 'Bayes-Adaptive Interactive '
                                                'POMDPs.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/aaai/NgBMW12',
                                       'venue': 'AAAI',
                                       'year': '2012'},
                              'url': 'URL#3009857'},
                             {'@id': '3046741',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '16/11513',
                                                               'text': 'Andrew '
                                                                       'Keong '
                                                                       'Ng'},
                                                              {'@pid': '95/7006',
                                                               'text': 'Cuntai '
                                                                       'Guan'}]},
                                       'doi': '10.1109/EMBC.2012.6347006',
                                       'ee': 'https://doi.org/10.1109/EMBC.2012.6347006',
                                       'key': 'conf/embc/NgG12',
                                       'pages': '4660-4663',
                                       'title': 'Impact of obstructive sleep '
                                                'apnea on sleep-wake stage '
                                                'ratio.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/embc/NgG12',
                                       'venue': 'EMBC',
                                       'year': '2012'},
                              'url': 'URL#3046741'},
                             {'@id': '3089564',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '118/5202',
                                                               'text': 'Kian '
                                                                       'B. Ng'},
                                                              {'@pid': '97/9680',
                                                               'text': 'Ross '
                                                                       'Cunnington'},
                                                              {'@pid': '00/1197',
                                                               'text': 'Andrew '
                                                                       'P. '
                                                                       'Bradley'}]},
                                       'doi': '10.1109/IJCNN.2012.6252686',
                                       'ee': 'https://doi.org/10.1109/IJCNN.2012.6252686',
                                       'key': 'conf/ijcnn/NgCB12',
                                       'pages': '1-6',
                                       'title': 'Enhancing the classification '
                                                'accuracy of Steady-State '
                                                'Visual Evoked Potential-based '
                                                'Brain-Computer Interface '
                                                'using Component Synchrony '
                                                'Measure.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/ijcnn/NgCB12',
                                       'venue': 'IJCNN',
                                       'year': '2012'},
                              'url': 'URL#3089564'},
                             {'@id': '3244349',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '31/11205',
                                                               'text': 'Andrew '
                                                                       'Sucevic'},
                                                              {'@pid': '22/58',
                                                               'text': 'Lachlan '
                                                                       'L. H. '
                                                                       'Andrew'},
                                                              {'@pid': '92/2493',
                                                               'text': 'Thuy '
                                                                       'T. T. '
                                                                       'Nguyen'}]},
                                       'doi': '10.1145/2160803.2160864',
                                       'ee': 'https://doi.org/10.1145/2160803.2160864',
                                       'key': 'journals/sigmetrics/SucevicAN11',
                                       'number': '3',
                                       'pages': '72-76',
                                       'title': 'Powering down for energy '
                                                'efficient peer-to-peer file '
                                                'distribution.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/sigmetrics/SucevicAN11',
                                       'venue': 'SIGMETRICS Perform. '
                                                'Evaluation Rev.',
                                       'volume': '39',
                                       'year': '2011'},
                              'url': 'URL#3244349'},
                             {'@id': '3297679',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '118/5202',
                                                               'text': 'Kian '
                                                                       'B. Ng'},
                                                              {'@pid': '00/1197',
                                                               'text': 'Andrew '
                                                                       'P. '
                                                                       'Bradley'},
                                                              {'@pid': '97/9680',
                                                               'text': 'Ross '
                                                                       'Cunnington'}]},
                                       'doi': '10.1109/IEMBS.2011.6091556',
                                       'ee': 'https://doi.org/10.1109/IEMBS.2011.6091556',
                                       'key': 'conf/embc/NgBC11',
                                       'pages': '6307-6310',
                                       'title': 'Effect of competing stimuli '
                                                'on SSVEP-based BCI.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/embc/NgBC11',
                                       'venue': 'EMBC',
                                       'year': '2011'},
                              'url': 'URL#3297679'},
                             {'@id': '3315721',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '50/1568',
                                                               'text': 'Catherine '
                                                                       'Havasi'},
                                                              {'@pid': '68/3095',
                                                               'text': 'Richard '
                                                                       'Borovoy'},
                                                              {'@pid': '28/9922',
                                                               'text': 'Boris '
                                                                       'Kizelshteyn'},
                                                              {'@pid': '83/8024',
                                                               'text': 'Polychronis '
                                                                       'Ypodimatopoulos'},
                                                              {'@pid': '78/9922',
                                                               'text': 'Jon '
                                                                       'Ferguson'},
                                                              {'@pid': '73/7556',
                                                               'text': 'Henry '
                                                                       'Holtzman'},
                                                              {'@pid': '60/2616',
                                                               'text': 'Andrew '
                                                                       'Lippman'},
                                                              {'@pid': '64/9922',
                                                               'text': 'Dan '
                                                                       'Schultz'},
                                                              {'@pid': '13/9597',
                                                               'text': 'Matthew '
                                                                       'Blackshaw'},
                                                              {'@pid': '63/3888',
                                                               'text': 'Greg '
                                                                       'T. '
                                                                       'Elliott'},
                                                              {'@pid': '80/1360',
                                                               'text': 'Chaki '
                                                                       'Ng'}]},
                                       'ee': 'http://www.aaai.org/ocs/index.php/IAAI/IAAI-11/paper/view/3531',
                                       'key': 'conf/iaai/HavasiBKYFHLSBEN11',
                                       'title': 'The Glass Infrastructure - '
                                                'Using Common Sense to Create '
                                                'a Dynamic, Place-Based Social '
                                                'Information System.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/iaai/HavasiBKYFHLSBEN11',
                                       'venue': 'IAAI',
                                       'year': '2011'},
                              'url': 'URL#3315721'},
                             {'@id': '3359060',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '86/4084',
                                                               'text': 'Vinay '
                                                                       'K. '
                                                                       'Chaudhri'},
                                                              {'@pid': '40/467',
                                                               'text': 'Nikhil '
                                                                       'Dinesh'},
                                                              {'@pid': '65/2682',
                                                               'text': 'John '
                                                                       'Pacheco'},
                                                              {'@pid': '85/6283',
                                                               'text': 'Gary '
                                                                       'Ng'},
                                                              {'@pid': '34/1184',
                                                               'text': 'Peter '
                                                                       'Clark'},
                                                              {'@pid': '95/9818',
                                                               'text': 'Andrew '
                                                                       'Goldenkranz'},
                                                              {'@pid': '130/0368',
                                                               'text': 'Patrice '
                                                                       'Seyed'},
                                                              {'@pid': '23/1972',
                                                               'text': 'Naveen '
                                                                       'Sharma'}]},
                                       'doi': '10.1145/1999676.1999714',
                                       'ee': 'https://doi.org/10.1145/1999676.1999714',
                                       'key': 'conf/kcap/ChaudhriDPNCGSS11',
                                       'pages': '179-180',
                                       'title': 'Preliminary steps towards a '
                                                'knowledge factory process.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/kcap/ChaudhriDPNCGSS11',
                                       'venue': 'K-CAP',
                                       'year': '2011'},
                              'url': 'URL#3359060'},
                             {'@id': '3369468',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '22/58',
                                                               'text': 'Lachlan '
                                                                       'L. H. '
                                                                       'Andrew'},
                                                              {'@pid': '31/11205',
                                                               'text': 'Andrew '
                                                                       'Sucevic'},
                                                              {'@pid': '92/2493',
                                                               'text': 'Thuy '
                                                                       'T. T. '
                                                                       'Nguyen'}]},
                                       'doi': '10.1109/GREENCOM.2011.6082511',
                                       'ee': 'https://doi.org/10.1109/GreenCom.2011.6082511',
                                       'key': 'conf/onlinegreencomm/AndrewSN11',
                                       'pages': '76-81',
                                       'title': 'Balancing peer and server '
                                                'energy consumption in large '
                                                'peer-to-peer file '
                                                'distribution systems.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/onlinegreencomm/AndrewSN11',
                                       'venue': 'OnlineGreenComm',
                                       'year': '2011'},
                              'url': 'URL#3369468'},
                             {'@id': '3472062',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '56/5500',
                                                               'text': 'George '
                                                                       'Barmpalias'},
                                                              {'@pid': '57/5684',
                                                               'text': 'Andrew '
                                                                       'E. M. '
                                                                       'Lewis'},
                                                              {'@pid': '85/2767',
                                                               'text': 'Keng '
                                                                       'Meng '
                                                                       'Ng'}]},
                                       'doi': '10.2178/JSL/1264433928',
                                       'ee': 'https://doi.org/10.2178/jsl/1264433928',
                                       'key': 'journals/jsyml/BarmpaliasLN10',
                                       'number': '1',
                                       'pages': '387-400',
                                       'title': 'The importance of Pi01 '
                                                'classes in effective '
                                                'randomness.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/jsyml/BarmpaliasLN10',
                                       'venue': 'J. Symb. Log.',
                                       'volume': '75',
                                       'year': '2010'},
                              'url': 'URL#3472062'},
                             {'@id': '3491131',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '16/11513',
                                                               'text': 'Andrew '
                                                                       'Keong '
                                                                       'Ng'},
                                                              {'@pid': '93/5303',
                                                               'text': 'Tong '
                                                                       'San '
                                                                       'Koh'}]},
                                       'doi': '10.1109/TBME.2009.2034139',
                                       'ee': 'https://doi.org/10.1109/TBME.2009.2034139',
                                       'key': 'journals/tbe/NgK10',
                                       'number': '3',
                                       'pages': '552-560',
                                       'title': 'Analysis and Modeling of '
                                                'Snore Source Flow With Its '
                                                'Preliminary Application to '
                                                'Synthetic Snore Generation.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/tbe/NgK10',
                                       'venue': 'IEEE Trans. Biomed. Eng.',
                                       'volume': '57',
                                       'year': '2010'},
                              'url': 'URL#3491131'},
                             {'@id': '3513527',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '90/6375',
                                                               'text': 'Andrew '
                                                                       'Crossan'},
                                                              {'@pid': 'b/StephenABrewster',
                                                               'text': 'Stephen '
                                                                       'A. '
                                                                       'Brewster'},
                                                              {'@pid': '89/2144',
                                                               'text': 'Alexander '
                                                                       'Ng'}]},
                                       'ee': 'http://dl.acm.org/citation.cfm?id=2146366',
                                       'key': 'conf/bcshci/CrossanBN10',
                                       'pages': '418-422',
                                       'title': 'Foot tapping for mobile '
                                                'interaction.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/bcshci/CrossanBN10',
                                       'venue': 'BCS HCI',
                                       'year': '2010'},
                              'url': 'URL#3513527'},
                             {'@id': '3591384',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '53/5044',
                                                               'text': 'Predrag '
                                                                       'R. '
                                                                       'Bakic'},
                                                              {'@pid': '29/8171',
                                                               'text': 'Peter '
                                                                       'Ringer'},
                                                              {'@pid': '13/8174',
                                                               'text': 'Johnny '
                                                                       'Kuo'},
                                                              {'@pid': '00/8172',
                                                               'text': 'Susan '
                                                                       'Ng'},
                                                              {'@pid': '90/6648',
                                                               'text': 'Andrew '
                                                                       'D. A. '
                                                                       'Maidment'}]},
                                       'doi': '10.1007/978-3-642-13666-5_9',
                                       'ee': 'https://doi.org/10.1007/978-3-642-13666-5_9',
                                       'key': 'conf/mammo/BakicRKNM10',
                                       'pages': '62-69',
                                       'title': 'Analysis of Geometric '
                                                'Accuracy in Digital Breast '
                                                'Tomosynthesis Reconstruction.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/mammo/BakicRKNM10',
                                       'venue': 'Digital Mammography / IWDM',
                                       'year': '2010'},
                              'url': 'URL#3591384'},
                             {'@id': '3675377',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '56/5067',
                                                               'text': 'Wing-Keung '
                                                                       'To'},
                                                              {'@pid': '54/7946',
                                                               'text': 'Gavin '
                                                                       'Paul'},
                                                              {'@pid': '68/1676',
                                                               'text': 'Ngai '
                                                                       'Ming '
                                                                       'Kwok'},
                                                              {'@pid': '55/4057',
                                                               'text': 'Dikai '
                                                                       'Liu'}]},
                                       'doi': '10.1504/IJCAET.2009.022786',
                                       'ee': 'https://doi.org/10.1504/IJCAET.2009.022786',
                                       'key': 'journals/ijcaet/ToPKL09',
                                       'number': '2',
                                       'pages': '185-208',
                                       'title': 'An efficient trajectory '
                                                'planning approach for '
                                                'autonomous robots in complex '
                                                'bridge environments.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/ijcaet/ToPKL09',
                                       'venue': 'Int. J. Comput. Aided Eng. '
                                                'Technol.',
                                       'volume': '1',
                                       'year': '2009'},
                              'url': 'URL#3675377'},
                             {'@id': '3747067',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '54/1484',
                                                               'text': 'Andrew '
                                                                       'Abel'},
                                                              {'@pid': '03/6772',
                                                               'text': 'Amir '
                                                                       'Hussain '
                                                                       '0001'},
                                                              {'@pid': '75/3679',
                                                               'text': 'Quoc '
                                                                       'Dinh '
                                                                       'Nguyen'},
                                                              {'@pid': '39/4933',
                                                               'text': 'Fabien '
                                                                       'Ringeval'},
                                                              {'@pid': '70/2508',
                                                               'text': 'Mohamed '
                                                                       'Chetouani'},
                                                              {'@pid': '27/3627',
                                                               'text': 'Maurice '
                                                                       'Milgram'}]},
                                       'doi': '10.1007/978-3-642-04391-8_9',
                                       'ee': 'https://doi.org/10.1007/978-3-642-04391-8_9',
                                       'key': 'conf/cost/AbelHNRCM09',
                                       'pages': '65-72',
                                       'title': 'Maximising Audiovisual '
                                                'Correlation with Automatic '
                                                'Lip Tracking and Vowel Based '
                                                'Segmentation.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/cost/AbelHNRCM09',
                                       'venue': 'COST 2101/2102 Conference',
                                       'year': '2009'},
                              'url': 'URL#3747067'},
                             {'@id': '3813489',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '43/7334',
                                                               'text': 'Andrew '
                                                                       'G. '
                                                                       'James'},
                                                              {'@pid': '72/5309',
                                                               'text': 'Eugene '
                                                                       'Ng'},
                                                              {'@pid': '01/7333',
                                                               'text': 'Prakesh '
                                                                       'S. '
                                                                       'Shah'}]},
                                       'doi': '10.3233/978-1-60750-044-5-243',
                                       'ee': 'https://doi.org/10.3233/978-1-60750-044-5-243',
                                       'key': 'conf/mie/JamesNS09',
                                       'pages': '243-247',
                                       'title': 'A Reference Set of SNOMED '
                                                'Terms for the Structured '
                                                'Representation of Respiratory '
                                                'Disorders of the Newborn '
                                                'Infant.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/mie/JamesNS09',
                                       'venue': 'MIE',
                                       'year': '2009'},
                              'url': 'URL#3813489'},
                             {'@id': '3896603',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '59/3439',
                                                               'text': 'Thian '
                                                                       'Song '
                                                                       'Ong'},
                                                              {'@pid': 't/AndrewTeohBengJin',
                                                               'text': 'Andrew '
                                                                       'Teoh '
                                                                       'Beng '
                                                                       'Jin'},
                                                              {'@pid': 'n/DavidChekLingNgo',
                                                               'text': 'David '
                                                                       'Chek '
                                                                       'Ling '
                                                                       'Ngo'}]},
                                       'ee': 'http://ijns.jalaxy.com.tw/contents/ijns-v6-n2/ijns-2008-v6-n2-p127-133.pdf',
                                       'key': 'journals/ijnsec/OngJN08',
                                       'number': '2',
                                       'pages': '127-133',
                                       'title': 'Application-Specific Key '
                                                'Release Scheme from '
                                                'Biometrics.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/ijnsec/OngJN08',
                                       'venue': 'Int. J. Netw. Secur.',
                                       'volume': '6',
                                       'year': '2008'},
                              'url': 'URL#3896603'},
                             {'@id': '3926330',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '16/11513',
                                                               'text': 'Andrew '
                                                                       'Keong '
                                                                       'Ng'},
                                                              {'@pid': '93/5303',
                                                               'text': 'Tong '
                                                                       'San '
                                                                       'Koh'},
                                                              {'@pid': '115/8110',
                                                               'text': 'Kathiravelu '
                                                                       'Puvanendran'},
                                                              {'@pid': '00/6840',
                                                               'text': 'Udantha '
                                                                       'R. '
                                                                       'Abeyratne'}]},
                                       'doi': '10.1109/TBME.2008.925682',
                                       'ee': 'https://doi.org/10.1109/TBME.2008.925682',
                                       'key': 'journals/tbe/NgKPA08',
                                       'number': '10',
                                       'pages': '2332-2342',
                                       'title': 'Snore Signal Enhancement and '
                                                'Activity Detection via '
                                                'Translation-Invariant Wavelet '
                                                'Transform.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/tbe/NgKPA08',
                                       'venue': 'IEEE Trans. Biomed. Eng.',
                                       'volume': '55',
                                       'year': '2008'},
                              'url': 'URL#3926330'},
                             {'@id': '4021796',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '14/4005',
                                                               'text': 'Andrew '
                                                                       'P. '
                                                                       'King'},
                                                              {'@pid': '34/6696',
                                                               'text': 'Redha '
                                                                       'Boubertakh'},
                                                              {'@pid': '29/1876',
                                                               'text': 'K. L. '
                                                                       'Ng'},
                                                              {'@pid': '27/4895',
                                                               'text': 'YingLiang '
                                                                       'Ma'},
                                                              {'@pid': '07/5313',
                                                               'text': 'Phani '
                                                                       'Chinchapatnam'},
                                                              {'@pid': '22/8091',
                                                               'text': 'Gang '
                                                                       'Gao'},
                                                              {'@pid': '15/2699',
                                                               'text': 'Tobias '
                                                                       'Schaeffter'},
                                                              {'@pid': '14/2317',
                                                               'text': 'David '
                                                                       'J. '
                                                                       'Hawkes'},
                                                              {'@pid': 'r/RezaRazavi',
                                                               'text': 'Reza '
                                                                       'Razavi'},
                                                              {'@pid': '34/3200',
                                                               'text': 'Kawal '
                                                                       'S. '
                                                                       'Rhode'}]},
                                       'doi': '10.1117/12.769377',
                                       'ee': 'https://doi.org/10.1117/12.769377',
                                       'key': 'conf/miigp/KingBNMCGSHRR08',
                                       'pages': '691816',
                                       'title': 'A technique for respiratory '
                                                'motion correction in image '
                                                'guided cardiac '
                                                'catheterisation procedures.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/miigp/KingBNMCGSHRR08',
                                       'venue': 'Medical Imaging - '
                                                'Image-Guided Procedures',
                                       'year': '2008'},
                              'url': 'URL#4021796'},
                             {'@id': '4047551',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '80/3065',
                                                               'text': 'Stephen '
                                                                       'McCombie'},
                                                              {'@pid': '85/10911',
                                                               'text': 'Paul '
                                                                       'Andrew '
                                                                       'Watters'},
                                                              {'@pid': '16/3523',
                                                               'text': 'Alex '
                                                                       'Ng'},
                                                              {'@pid': '87/4660',
                                                               'text': 'Brett '
                                                                       'Watson'}]},
                                       'key': 'conf/webist/McCombieWNW08',
                                       'pages': '149-157',
                                       'title': 'Forensic Characteristics of '
                                                'Phishing - Petty Theft or '
                                                'Organized Crime?',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/webist/McCombieWNW08',
                                       'venue': 'WEBIST',
                                       'year': '2008'},
                              'url': 'URL#4047551'},
                             {'@id': '4082888',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '02/6388',
                                                               'text': 'Wai '
                                                                       'Kuan '
                                                                       'Yip'},
                                                              {'@pid': 't/AndrewTeohBengJin',
                                                               'text': 'Andrew '
                                                                       'Beng '
                                                                       'Jin '
                                                                       'Teoh'},
                                                              {'@pid': 'n/DavidChekLingNgo',
                                                               'text': 'David '
                                                                       'Chek '
                                                                       'Ling '
                                                                       'Ngo'}]},
                                       'doi': '10.1155/2007/59125',
                                       'ee': 'https://doi.org/10.1155/2007/59125',
                                       'key': 'journals/ejasp/KuanTN07',
                                       'title': 'Secure Hashing of Dynamic '
                                                'Hand Signatures Using '
                                                'Wavelet-Fourier Compression '
                                                'with BioPhasor Mixing and 2N '
                                                'Discretization.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/ejasp/KuanTN07',
                                       'venue': 'EURASIP J. Adv. Signal '
                                                'Process.',
                                       'volume': '2007',
                                       'year': '2007'},
                              'url': 'URL#4082888'},
                             {'@id': '4103140',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '42/2141',
                                                               'text': 'Ying-Han '
                                                                       'Pang'},
                                                              {'@pid': 't/AndrewTeohBengJin',
                                                               'text': 'Andrew '
                                                                       'Teoh '
                                                                       'Beng '
                                                                       'Jin'},
                                                              {'@pid': 'n/DavidChekLingNgo',
                                                               'text': 'David '
                                                                       'Ngo '
                                                                       'Chek '
                                                                       'Ling'}]},
                                       'doi': '10.1007/S11390-007-9006-X',
                                       'ee': 'https://doi.org/10.1007/s11390-007-9006-x',
                                       'key': 'journals/jcst/PangJL07',
                                       'number': '1',
                                       'pages': '54-59',
                                       'title': 'Two-Factor Cancelable '
                                                'Biometrics Authenticator.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/jcst/PangJL07',
                                       'venue': 'J. Comput. Sci. Technol.',
                                       'volume': '22',
                                       'year': '2007'},
                              'url': 'URL#4103140'},
                             {'@id': '4124338',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '01/678',
                                                               'text': 'Lydia '
                                                                       'Ng'},
                                                              {'@pid': '89/4514',
                                                               'text': 'Sayan '
                                                                       'D. '
                                                                       'Pathak'},
                                                              {'@pid': '87/4185',
                                                               'text': 'Chihchau '
                                                                       'Kuan'},
                                                              {'@pid': '80/5238',
                                                               'text': 'Christopher '
                                                                       'Lau'},
                                                              {'@pid': '02/5587',
                                                               'text': 'Hong-wei '
                                                                       'Dong'},
                                                              {'@pid': '80/3626',
                                                               'text': 'Andrew '
                                                                       'Sodt'},
                                                              {'@pid': '20/3248',
                                                               'text': 'Chinh '
                                                                       'Dang'},
                                                              {'@pid': '04/6739',
                                                               'text': 'Brian '
                                                                       'B. '
                                                                       'Avants'},
                                                              {'@pid': '40/2638',
                                                               'text': 'Paul '
                                                                       'A. '
                                                                       'Yushkevich'},
                                                              {'@pid': '30/6904',
                                                               'text': 'James '
                                                                       'C. '
                                                                       'Gee'},
                                                              {'@pid': '72/4553',
                                                               'text': 'David '
                                                                       'R. '
                                                                       'Haynor'},
                                                              {'@pid': '38/1489',
                                                               'text': 'Ed '
                                                                       'Lein'},
                                                              {'@pid': '13/748',
                                                               'text': 'Allan '
                                                                       'Jones'},
                                                              {'@pid': '94/4937',
                                                               'text': 'Michael '
                                                                       'Hawrylycz'}]},
                                       'doi': '10.1145/1299023.1299030',
                                       'ee': 'http://doi.acm.org/10.1145/1299023.1299030',
                                       'key': 'journals/tcbb/NgPKLDSDAYGHLJH07',
                                       'number': '3',
                                       'pages': '382-393',
                                       'title': 'Neuroinformatics for '
                                                'Genome-Wide 3-D Gene '
                                                'Expression Mapping in the '
                                                'Mouse Brain.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/tcbb/NgPKLDSDAYGHLJH07',
                                       'venue': 'IEEE ACM Trans. Comput. Biol. '
                                                'Bioinform.',
                                       'volume': '4',
                                       'year': '2007'},
                              'url': 'URL#4124338'},
                             {'@id': '4131885',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '76/1250',
                                                               'text': 'Kah '
                                                                       'Heng '
                                                                       'Ng'},
                                                              {'@pid': '26/2244',
                                                               'text': 'Eustace '
                                                                       'K. '
                                                                       'Tameh'},
                                                              {'@pid': '26/3192',
                                                               'text': 'Angela '
                                                                       'Doufexi'},
                                                              {'@pid': '51/1919',
                                                               'text': 'Mythri '
                                                                       'Hunukumbure'},
                                                              {'@pid': '50/6238',
                                                               'text': 'Andrew '
                                                                       'R. '
                                                                       'Nix'}]},
                                       'doi': '10.1109/TVT.2007.895606',
                                       'ee': 'https://doi.org/10.1109/TVT.2007.895606',
                                       'key': 'journals/tvt/NgTDHN07',
                                       'number': '3',
                                       'pages': '1019-1032',
                                       'title': 'Efficient Multielement Ray '
                                                'Tracing With Site-Specific '
                                                'Comparisons Using Measured '
                                                'MIMO Channel Data.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/tvt/NgTDHN07',
                                       'venue': 'IEEE Trans. Veh. Technol.',
                                       'volume': '56',
                                       'year': '2007'},
                              'url': 'URL#4131885'},
                             {'@id': '4134224',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '89/2536',
                                                               'text': 'Brendan '
                                                                       'Walker'},
                                                              {'@pid': '24/4422',
                                                               'text': 'Holger '
                                                                       'Schnädelbach'},
                                                              {'@pid': '89/4606',
                                                               'text': 'Stefan '
                                                                       'Rennick '
                                                                       'Egglestone'},
                                                              {'@pid': '23/5947',
                                                               'text': 'Angus '
                                                                       'Clark'},
                                                              {'@pid': '72/2649',
                                                               'text': 'Tuvi '
                                                                       'Orbach'},
                                                              {'@pid': '59/6824',
                                                               'text': 'Michael '
                                                                       'Wright'},
                                                              {'@pid': '09/1492',
                                                               'text': 'Kher '
                                                                       'Hui '
                                                                       'Ng'},
                                                              {'@pid': '51/657',
                                                               'text': 'Andrew '
                                                                       'P. '
                                                                       'French'},
                                                              {'@pid': 'r/TomRodden',
                                                               'text': 'Tom '
                                                                       'Rodden'},
                                                              {'@pid': 'b/SteveBenford',
                                                               'text': 'Steve '
                                                                       'Benford'}]},
                                       'doi': '10.1145/1255047.1255070',
                                       'ee': 'https://doi.org/10.1145/1255047.1255070',
                                       'key': 'conf/ACMace/WalkerSECOWNFRB07',
                                       'pages': '115-122',
                                       'title': 'Augmenting amusement rides '
                                                'with telemetry.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/ACMace/WalkerSECOWNFRB07',
                                       'venue': 'Advances in Computer '
                                                'Entertainment Technology',
                                       'year': '2007'},
                              'url': 'URL#4134224'},
                             {'@id': '4155470',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '26/249',
                                                               'text': 'Danny '
                                                                       'Ng'},
                                                              {'@pid': '66/6076',
                                                               'text': 'Andrew '
                                                                       'Woodward'}]},
                                       'key': 'conf/csreaSAM/NgW07',
                                       'pages': '496-500',
                                       'title': 'Implications for Use of '
                                                'Different Encryption '
                                                'Algorithms on Power '
                                                'Consumption for Mobile '
                                                'Devices in the Healthcare '
                                                'Industry.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/csreaSAM/NgW07',
                                       'venue': 'Security and Management',
                                       'year': '2007'},
                              'url': 'URL#4155470'},
                             {'@id': '4158168',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '20/3248',
                                                               'text': 'Chinh '
                                                                       'Dang'},
                                                              {'@pid': '80/3626',
                                                               'text': 'Andrew '
                                                                       'Sodt'},
                                                              {'@pid': '80/5238',
                                                               'text': 'Christopher '
                                                                       'Lau'},
                                                              {'@pid': '99/6400',
                                                               'text': 'Brian '
                                                                       'Youngstrom'},
                                                              {'@pid': '01/678',
                                                               'text': 'Lydia '
                                                                       'Ng'},
                                                              {'@pid': '47/5652',
                                                               'text': 'Leonard '
                                                                       'Kuan'},
                                                              {'@pid': '89/4514',
                                                               'text': 'Sayan '
                                                                       'D. '
                                                                       'Pathak'},
                                                              {'@pid': '13/748',
                                                               'text': 'Allan '
                                                                       'Jones'},
                                                              {'@pid': '94/4937',
                                                               'text': 'Michael '
                                                                       'Hawrylycz'}]},
                                       'doi': '10.1007/978-3-540-73255-6_4',
                                       'ee': 'https://doi.org/10.1007/978-3-540-73255-6_4',
                                       'key': 'conf/dils/DangSLYNKPJH07',
                                       'pages': '17-26',
                                       'title': 'The Allen Brain Atlas - '
                                                'Delivering Neuroscience to '
                                                'the Web on a Genome Wide '
                                                'Scale.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/dils/DangSLYNKPJH07',
                                       'venue': 'DILS',
                                       'year': '2007'},
                              'url': 'URL#4158168'},
                             {'@id': '4176940',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '74/4419',
                                                               'text': 'Mark '
                                                                       'J. F. '
                                                                       'Gales'},
                                                              {'@pid': '68/5214',
                                                               'text': 'Xunying '
                                                                       'Liu'},
                                                              {'@pid': '04/4646-3',
                                                               'text': 'Rohit '
                                                                       'Sinha '
                                                                       '0003'},
                                                              {'@pid': '42/153',
                                                               'text': 'Philip '
                                                                       'C. '
                                                                       'Woodland'},
                                                              {'@pid': '197/1322-4',
                                                               'text': 'Kai Yu '
                                                                       '0004'},
                                                              {'@pid': '84/1581',
                                                               'text': 'Spyros '
                                                                       'Matsoukas'},
                                                              {'@pid': '75/2112',
                                                               'text': 'Tim '
                                                                       'Ng'},
                                                              {'@pid': '18/7819',
                                                               'text': 'Kham '
                                                                       'Nguyen'},
                                                              {'@pid': '02/3500',
                                                               'text': 'Long '
                                                                       'Nguyen'},
                                                              {'@pid': '79/1555',
                                                               'text': 'Jean-Luc '
                                                                       'Gauvain'},
                                                              {'@pid': '14/2303',
                                                               'text': 'Lori '
                                                                       'Lamel'},
                                                              {'@pid': '50/7935',
                                                               'text': 'Abdelkhalek '
                                                                       'Messaoudi'}]},
                                       'doi': '10.1109/ICASSP.2007.367310',
                                       'ee': 'https://doi.org/10.1109/ICASSP.2007.367310',
                                       'key': 'conf/icassp/GalesLSWYMNNNGLM07',
                                       'pages': '1277-1280',
                                       'title': 'Speech Recognition System '
                                                'Combination for Machine '
                                                'Translation.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icassp/GalesLSWYMNNNGLM07',
                                       'venue': 'ICASSP',
                                       'year': '2007'},
                              'url': 'URL#4176940'},
                             {'@id': '4254339',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '42/2141',
                                                               'text': 'Ying-Han '
                                                                       'Pang'},
                                                              {'@pid': 't/AndrewTeohBengJin',
                                                               'text': 'Andrew '
                                                                       'Beng '
                                                                       'Jin '
                                                                       'Teoh'},
                                                              {'@pid': 'n/DavidChekLingNgo',
                                                               'text': 'David '
                                                                       'Chek '
                                                                       'Ling '
                                                                       'Ngo'}]},
                                       'ee': 'http://ws.acs.org.au/jrpit/JRPITVolumes/JRPIT38/JRPIT38.2.197.pdf',
                                       'key': 'journals/acj/PangTN06',
                                       'number': '2',
                                       'pages': '197-212',
                                       'title': 'A Discriminant Pseudo Zernike '
                                                'Moments in Face Recognition.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/acj/PangTN06',
                                       'venue': 'J. Res. Pract. Inf. Technol.',
                                       'volume': '38',
                                       'year': '2006'},
                              'url': 'URL#4254339'},
                             {'@id': '4266189',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '72/217',
                                                               'text': 'Chong '
                                                                       'Siew '
                                                                       'Chin'},
                                                              {'@pid': 't/AndrewTeohBengJin',
                                                               'text': 'Andrew '
                                                                       'Teoh '
                                                                       'Beng '
                                                                       'Jin'},
                                                              {'@pid': 'n/DavidChekLingNgo',
                                                               'text': 'David '
                                                                       'Ngo '
                                                                       'Chek '
                                                                       'Ling'}]},
                                       'doi': '10.1016/J.CVIU.2006.01.002',
                                       'ee': 'https://doi.org/10.1016/j.cviu.2006.01.002',
                                       'key': 'journals/cviu/ChinJL06',
                                       'number': '2',
                                       'pages': '169-177',
                                       'title': 'High security Iris '
                                                'verification system based on '
                                                'random secret integration.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/cviu/ChinJL06',
                                       'venue': 'Comput. Vis. Image Underst.',
                                       'volume': '102',
                                       'year': '2006'},
                              'url': 'URL#4266189'},
                             {'@id': '4274313',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '02/6388',
                                                               'text': 'Wai '
                                                                       'Kuan '
                                                                       'Yip'},
                                                              {'@pid': 't/AndrewTeohBengJin',
                                                               'text': 'Andrew '
                                                                       'Beng '
                                                                       'Jin '
                                                                       'Teoh'},
                                                              {'@pid': 'n/DavidChekLingNgo',
                                                               'text': 'David '
                                                                       'Chek '
                                                                       'Ling '
                                                                       'Ngo'}]},
                                       'doi': '10.1587/ELEX.3.410',
                                       'ee': 'https://doi.org/10.1587/elex.3.410',
                                       'key': 'journals/ieiceee/YipTN06',
                                       'number': '18',
                                       'pages': '410-416',
                                       'title': 'Replaceable and securely '
                                                'hashed keys from online '
                                                'signatures.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/ieiceee/YipTN06',
                                       'venue': 'IEICE Electron. Express',
                                       'volume': '3',
                                       'year': '2006'},
                              'url': 'URL#4274313'},
                             {'@id': '4282064',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': 't/AndrewTeohBengJin',
                                                               'text': 'Andrew '
                                                                       'Teoh '
                                                                       'Beng '
                                                                       'Jin'},
                                                              {'@pid': '07/2949',
                                                               'text': 'Tee '
                                                                       'Connie'},
                                                              {'@pid': 'n/DavidChekLingNgo',
                                                               'text': 'David '
                                                                       'Ngo '
                                                                       'Chek '
                                                                       'Ling'}]},
                                       'doi': '10.1016/J.IPL.2006.06.010',
                                       'ee': 'https://doi.org/10.1016/j.ipl.2006.06.010',
                                       'key': 'journals/ipl/JinCL06',
                                       'number': '4',
                                       'pages': '145-150',
                                       'title': 'Remarks on BioHash and its '
                                                'mathematical foundation.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/ipl/JinCL06',
                                       'venue': 'Inf. Process. Lett.',
                                       'volume': '100',
                                       'year': '2006'},
                              'url': 'URL#4282064'},
                             {'@id': '4285557',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '85/3392',
                                                               'text': 'Andrew '
                                                                       'Smellie'},
                                                              {'@pid': '96/2041',
                                                               'text': 'Christopher '
                                                                       'J. '
                                                                       'Wilson'},
                                                              {'@pid': '19/3251',
                                                               'text': 'Shi '
                                                                       'Chung '
                                                                       'Ng'}]},
                                       'doi': '10.1021/CI050404G',
                                       'ee': 'https://doi.org/10.1021/ci050404g',
                                       'key': 'journals/jcisd/SmellieWN06',
                                       'number': '1',
                                       'pages': '201-207',
                                       'title': 'Visualization and '
                                                'Interpretation of High '
                                                'Content Screening Data.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/jcisd/SmellieWN06',
                                       'venue': 'J. Chem. Inf. Model.',
                                       'volume': '46',
                                       'year': '2006'},
                              'url': 'URL#4285557'},
                             {'@id': '4297546',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': 't/AndrewTeohBengJin',
                                                               'text': 'Andrew '
                                                                       'Teoh '
                                                                       'Beng '
                                                                       'Jin'},
                                                              {'@pid': '26/6671',
                                                               'text': 'Alwyn '
                                                                       'Goh'},
                                                              {'@pid': 'n/DavidChekLingNgo',
                                                               'text': 'David '
                                                                       'Ngo '
                                                                       'Chek '
                                                                       'Ling'}]},
                                       'doi': '10.1109/TPAMI.2006.250',
                                       'ee': 'https://doi.org/10.1109/TPAMI.2006.250',
                                       'key': 'journals/pami/JinGN06',
                                       'number': '12',
                                       'pages': '1892-1901',
                                       'title': 'Random Multispace '
                                                'Quantization as an Analytic '
                                                'Mechanism for BioHashing of '
                                                'Biometric and Random Identity '
                                                'Inputs.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/pami/JinGN06',
                                       'venue': 'IEEE Trans. Pattern Anal. '
                                                'Mach. Intell.',
                                       'volume': '28',
                                       'year': '2006'},
                              'url': 'URL#4297546'},
                             {'@id': '4308119',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': 'n/DavidChekLingNgo',
                                                               'text': 'David '
                                                                       'Ngo '
                                                                       'Chek '
                                                                       'Ling'},
                                                              {'@pid': 't/AndrewTeohBengJin',
                                                               'text': 'Andrew '
                                                                       'Teoh '
                                                                       'Beng '
                                                                       'Jin'},
                                                              {'@pid': '26/6671',
                                                               'text': 'Alwyn '
                                                                       'Goh'}]},
                                       'doi': '10.1109/TCSVT.2006.873780',
                                       'ee': 'https://doi.org/10.1109/TCSVT.2006.873780',
                                       'key': 'journals/tcsv/NgoTG06',
                                       'number': '6',
                                       'pages': '771-775',
                                       'title': 'Biometric hash - '
                                                'high-confidence face '
                                                'recognition.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/tcsv/NgoTG06',
                                       'venue': 'IEEE Trans. Circuits Syst. '
                                                'Video Technol.',
                                       'volume': '16',
                                       'year': '2006'},
                              'url': 'URL#4308119'},
                             {'@id': '4311610',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': 'l/MarcLevoy',
                                                               'text': 'Marc '
                                                                       'Levoy'},
                                                              {'@pid': '38/5510',
                                                               'text': 'Ren '
                                                                       'Ng'},
                                                              {'@pid': '04/5122',
                                                               'text': 'Andrew '
                                                                       'Adams'},
                                                              {'@pid': '49/5373',
                                                               'text': 'Matthew '
                                                                       'Footer'},
                                                              {'@pid': 'h/MarkHorowitz',
                                                               'text': 'Mark '
                                                                       'Horowitz'}]},
                                       'doi': '10.1145/1141911.1141976',
                                       'ee': 'https://doi.org/10.1145/1141911.1141976',
                                       'key': 'journals/tog/LevoyNAFH06',
                                       'number': '3',
                                       'pages': '924-934',
                                       'title': 'Light field microscopy.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/tog/LevoyNAFH06',
                                       'venue': 'ACM Trans. Graph.',
                                       'volume': '25',
                                       'year': '2006'},
                              'url': 'URL#4311610'},
                             {'@id': '4316314',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '41/5875',
                                                               'text': 'Bee '
                                                                       'Yan '
                                                                       'Hiew'},
                                                              {'@pid': 't/AndrewTeohBengJin',
                                                               'text': 'Andrew '
                                                                       'Teoh '
                                                                       'Beng '
                                                                       'Jin'},
                                                              {'@pid': 'n/DavidChekLingNgo',
                                                               'text': 'David '
                                                                       'Ngo '
                                                                       'Chek '
                                                                       'Ling'}]},
                                       'doi': '10.1109/CGIV.2006.27',
                                       'ee': 'https://doi.org/10.1109/CGIV.2006.27',
                                       'key': 'conf/IEEEcgiv/HiewJL06',
                                       'pages': '182-189',
                                       'title': 'Automatic Digital Camera '
                                                'Based Fingerprint Image '
                                                'Preprocessing.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/IEEEcgiv/HiewJL06',
                                       'venue': 'CGIV',
                                       'year': '2006'},
                              'url': 'URL#4316314'},
                             {'@id': '4316346',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '77/457',
                                                               'text': 'Michael '
                                                                       'Goh '
                                                                       'Kah '
                                                                       'Ong'},
                                                              {'@pid': '07/2949',
                                                               'text': 'Tee '
                                                                       'Connie'},
                                                              {'@pid': 't/AndrewTeohBengJin',
                                                               'text': 'Andrew '
                                                                       'Teoh '
                                                                       'Beng '
                                                                       'Jin'},
                                                              {'@pid': 'n/DavidChekLingNgo',
                                                               'text': 'David '
                                                                       'Ngo '
                                                                       'Chek '
                                                                       'Ling'}]},
                                       'doi': '10.1109/CGIV.2006.7',
                                       'ee': 'https://doi.org/10.1109/CGIV.2006.7',
                                       'key': 'conf/IEEEcgiv/OngCJL06',
                                       'pages': '168-172',
                                       'title': 'A Fast Palm Print '
                                                'Verification System.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/IEEEcgiv/OngCJL06',
                                       'venue': 'CGIV',
                                       'year': '2006'},
                              'url': 'URL#4316346'},
                             {'@id': '4326898',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '23/5811',
                                                               'text': 'Andrew '
                                                                       'A. '
                                                                       'Reeves'},
                                                              {'@pid': '10/4581',
                                                               'text': 'J. W. '
                                                                       'P. Ng'},
                                                              {'@pid': '44/377',
                                                               'text': 'S. J. '
                                                                       'Brown'},
                                                              {'@pid': '28/2479',
                                                               'text': 'Nigel '
                                                                       'M. '
                                                                       'Barnes'}]},
                                       'doi': '10.1109/BSN.2006.44',
                                       'ee': 'https://doi.org/10.1109/BSN.2006.44',
                                       'key': 'conf/bsn/ReevesNBB06',
                                       'pages': '117-122',
                                       'title': 'Remotely Supporting Care '
                                                'Provision for Older Adults.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/bsn/ReevesNBB06',
                                       'venue': 'BSN',
                                       'year': '2006'},
                              'url': 'URL#4326898'},
                             {'@id': '4356138',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '41/5875',
                                                               'text': 'Bee '
                                                                       'Yan '
                                                                       'Hiew'},
                                                              {'@pid': 't/AndrewTeohBengJin',
                                                               'text': 'Andrew '
                                                                       'Beng '
                                                                       'Jin '
                                                                       'Teoh'},
                                                              {'@pid': 'n/DavidChekLingNgo',
                                                               'text': 'David '
                                                                       'Chek '
                                                                       'Ling '
                                                                       'Ngo'}]},
                                       'doi': '10.1109/ICARCV.2006.345189',
                                       'ee': 'https://doi.org/10.1109/ICARCV.2006.345189',
                                       'key': 'conf/icarcv/HiewTN06',
                                       'pages': '1-6',
                                       'title': 'Preprocessing of Fingerprint '
                                                'Images Captured with a '
                                                'Digital Camera.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icarcv/HiewTN06',
                                       'venue': 'ICARCV',
                                       'year': '2006'},
                              'url': 'URL#4356138'},
                             {'@id': '4356336',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': 't/AndrewTeohBengJin',
                                                               'text': 'Andrew '
                                                                       'Beng '
                                                                       'Jin '
                                                                       'Teoh'},
                                                              {'@pid': 'n/DavidChekLingNgo',
                                                               'text': 'David '
                                                                       'Chek '
                                                                       'Ling '
                                                                       'Ngo'}]},
                                       'doi': '10.1109/ICARCV.2006.345404',
                                       'ee': 'https://doi.org/10.1109/ICARCV.2006.345404',
                                       'key': 'conf/icarcv/TeohN06',
                                       'pages': '1-5',
                                       'title': 'Biophasor - Token '
                                                'Supplemented Cancellable '
                                                'Biometrics.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icarcv/TeohN06',
                                       'venue': 'ICARCV',
                                       'year': '2006'},
                              'url': 'URL#4356336'},
                             {'@id': '4358373',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '72/217',
                                                               'text': 'Siew '
                                                                       'Chin '
                                                                       'Chong'},
                                                              {'@pid': 't/AndrewTeohBengJin',
                                                               'text': 'Andrew '
                                                                       'Teoh '
                                                                       'Beng '
                                                                       'Jin'},
                                                              {'@pid': 'n/DavidChekLingNgo',
                                                               'text': 'David '
                                                                       'Ngo '
                                                                       'Chek '
                                                                       'Ling'}]},
                                       'doi': '10.1007/11608288_51',
                                       'ee': 'https://doi.org/10.1007/11608288_51',
                                       'key': 'conf/icb/ChongJL06',
                                       'pages': '382-388',
                                       'title': 'Iris Authentication Using '
                                                'Privatized Advanced '
                                                'Correlation Filter.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icb/ChongJL06',
                                       'venue': 'ICB',
                                       'year': '2006'},
                              'url': 'URL#4358373'},
                             {'@id': '4358447',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '02/6388',
                                                               'text': 'Wai '
                                                                       'Kuan '
                                                                       'Yip'},
                                                              {'@pid': '26/6671',
                                                               'text': 'Alwyn '
                                                                       'Goh'},
                                                              {'@pid': 'n/DavidChekLingNgo',
                                                               'text': 'David '
                                                                       'Ngo '
                                                                       'Chek '
                                                                       'Ling'},
                                                              {'@pid': 't/AndrewTeohBengJin',
                                                               'text': 'Andrew '
                                                                       'Teoh '
                                                                       'Beng '
                                                                       'Jin'}]},
                                       'doi': '10.1007/11608288_68',
                                       'ee': 'https://doi.org/10.1007/11608288_68',
                                       'key': 'conf/icb/YipGNT06',
                                       'pages': '509-515',
                                       'title': 'Generation of Replaceable '
                                                'Cryptographic Keys from '
                                                'Dynamic Handwritten '
                                                'Signatures.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icb/YipGNT06',
                                       'venue': 'ICB',
                                       'year': '2006'},
                              'url': 'URL#4358447'},
                             {'@id': '4375218',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '58/6491',
                                                               'text': 'Sin '
                                                                       'Chun '
                                                                       'Ng'},
                                                              {'@pid': '45/4687',
                                                               'text': 'Shu '
                                                                       'Hung '
                                                                       'Leung'},
                                                              {'@pid': '30/4400',
                                                               'text': 'Andrew '
                                                                       'Luk'},
                                                              {'@pid': '55/245',
                                                               'text': 'Yunfeng '
                                                                       'Wu'}]},
                                       'doi': '10.1109/IJCNN.2006.247381',
                                       'ee': 'https://doi.org/10.1109/IJCNN.2006.247381',
                                       'key': 'conf/ijcnn/NgLLW06',
                                       'pages': '3672-3678',
                                       'title': 'Convergence Analysis of '
                                                'Generalized Back-propagation '
                                                'Algorithm with Modified '
                                                'Gradient Function.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/ijcnn/NgLLW06',
                                       'venue': 'IJCNN',
                                       'year': '2006'},
                              'url': 'URL#4375218'},
                             {'@id': '4380177',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '89/4514',
                                                               'text': 'Sayan '
                                                                       'D. '
                                                                       'Pathak'},
                                                              {'@pid': '80/5238',
                                                               'text': 'Christopher '
                                                                       'Lau'},
                                                              {'@pid': '01/678',
                                                               'text': 'Lydia '
                                                                       'Ng'},
                                                              {'@pid': '47/5652',
                                                               'text': 'Leonard '
                                                                       'Kuan'},
                                                              {'@pid': '80/3626',
                                                               'text': 'Andrew '
                                                                       'Sodt'},
                                                              {'@pid': '43/4849',
                                                               'text': 'Reena '
                                                                       'Kawal'},
                                                              {'@pid': '94/4937',
                                                               'text': 'Michael '
                                                                       'Hawrylycz'}]},
                                       'doi': '10.1109/ISBI.2006.1625154',
                                       'ee': 'https://doi.org/10.1109/ISBI.2006.1625154',
                                       'key': 'conf/isbi/PathakLLNKSKH06',
                                       'pages': '1260-1263',
                                       'title': 'Mouse brain gene expression '
                                                'analysis using model based '
                                                'clustering.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/isbi/PathakLLNKSKH06',
                                       'venue': 'ISBI',
                                       'year': '2006'},
                              'url': 'URL#4380177'},
                             {'@id': '4382868',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '59/3439',
                                                               'text': 'Thian '
                                                                       'Song '
                                                                       'Ong'},
                                                              {'@pid': 't/AndrewTeohBengJin',
                                                               'text': 'Andrew '
                                                                       'Teoh '
                                                                       'Beng '
                                                                       'Jin'},
                                                              {'@pid': 'n/DavidChekLingNgo',
                                                               'text': 'David '
                                                                       'Ngo '
                                                                       'Chek '
                                                                       'Ling'}]},
                                       'doi': '10.1007/11760146_124',
                                       'ee': 'https://doi.org/10.1007/11760146_124',
                                       'key': 'conf/isi/SongTN06',
                                       'pages': '764-765',
                                       'title': 'A Novel Key Release Scheme '
                                                'from Biometrics.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/isi/SongTN06',
                                       'venue': 'ISI',
                                       'year': '2006'},
                              'url': 'URL#4382868'},
                             {'@id': '4445145',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '72/217',
                                                               'text': 'Chong '
                                                                       'Siew '
                                                                       'Chin'},
                                                              {'@pid': 't/AndrewTeohBengJin',
                                                               'text': 'Andrew '
                                                                       'Teoh '
                                                                       'Beng '
                                                                       'Jin'},
                                                              {'@pid': 'n/DavidChekLingNgo',
                                                               'text': 'David '
                                                                       'Ngo '
                                                                       'Chek '
                                                                       'Ling'}]},
                                       'doi': '10.1587/ELEX.2.349',
                                       'ee': 'https://doi.org/10.1587/elex.2.349',
                                       'key': 'journals/ieiceee/ChinJL05',
                                       'number': '11',
                                       'pages': '349-355',
                                       'title': 'Tokenised discretisation in '
                                                'iris verification.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/ieiceee/ChinJL05',
                                       'venue': 'IEICE Electron. Express',
                                       'volume': '2',
                                       'year': '2005'},
                              'url': 'URL#4445145'},
                             {'@id': '4445197',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '42/2141',
                                                               'text': 'Ying-Han '
                                                                       'Pang'},
                                                              {'@pid': 't/AndrewTeohBengJin',
                                                               'text': 'Andrew '
                                                                       'Teoh '
                                                                       'Beng '
                                                                       'Jin'},
                                                              {'@pid': 'n/DavidChekLingNgo',
                                                               'text': 'David '
                                                                       'Ngo '
                                                                       'Chek '
                                                                       'Ling'}]},
                                       'doi': '10.1587/ELEX.2.70',
                                       'ee': 'https://doi.org/10.1587/elex.2.70',
                                       'key': 'journals/ieiceee/PangJL05',
                                       'number': '3',
                                       'pages': '70-75',
                                       'title': 'Enhanced pseudo Zernike '
                                                'moments in face recognition.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/ieiceee/PangJL05',
                                       'venue': 'IEICE Electron. Express',
                                       'volume': '2',
                                       'year': '2005'},
                              'url': 'URL#4445197'},
                             {'@id': '4445234',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '82/6420',
                                                               'text': 'Chong '
                                                                       'Tze '
                                                                       'Yuang'},
                                                              {'@pid': 't/AndrewTeohBengJin',
                                                               'text': 'Andrew '
                                                                       'Teoh '
                                                                       'Beng '
                                                                       'Jin'},
                                                              {'@pid': 'n/DavidChekLingNgo',
                                                               'text': 'David '
                                                                       'Ngo '
                                                                       'Chek '
                                                                       'Ling'},
                                                              {'@pid': '77/457',
                                                               'text': 'Michael '
                                                                       'Goh '
                                                                       'Kah '
                                                                       'Ong'}]},
                                       'doi': '10.1587/ELEX.2.226',
                                       'ee': 'https://doi.org/10.1587/elex.2.226',
                                       'key': 'journals/ieiceee/YuangJLO05',
                                       'number': '7',
                                       'pages': '226-231',
                                       'title': 'Multi-space random mapping '
                                                'for speaker identification.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/ieiceee/YuangJLO05',
                                       'venue': 'IEICE Electron. Express',
                                       'volume': '2',
                                       'year': '2005'},
                              'url': 'URL#4445234'},
                             {'@id': '4452320',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '07/2949',
                                                               'text': 'Tee '
                                                                       'Connie'},
                                                              {'@pid': 't/AndrewTeohBengJin',
                                                               'text': 'Andrew '
                                                                       'Teoh '
                                                                       'Beng '
                                                                       'Jin'},
                                                              {'@pid': '77/457',
                                                               'text': 'Michael '
                                                                       'Goh '
                                                                       'Kah '
                                                                       'Ong'},
                                                              {'@pid': 'n/DavidChekLingNgo',
                                                               'text': 'David '
                                                                       'Ngo '
                                                                       'Chek '
                                                                       'Ling'}]},
                                       'doi': '10.1016/J.IPL.2004.09.014',
                                       'ee': 'https://doi.org/10.1016/j.ipl.2004.09.014',
                                       'key': 'journals/ipl/ConnieJOL05',
                                       'number': '1',
                                       'pages': '1-5',
                                       'title': 'PalmHashing - a novel '
                                                'approach for cancelable '
                                                'biometrics.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/ipl/ConnieJOL05',
                                       'venue': 'Inf. Process. Lett.',
                                       'volume': '93',
                                       'year': '2005'},
                              'url': 'URL#4452320'},
                             {'@id': '4453584',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '07/2949',
                                                               'text': 'Tee '
                                                                       'Connie'},
                                                              {'@pid': 't/AndrewTeohBengJin',
                                                               'text': 'Andrew '
                                                                       'Teoh '
                                                                       'Beng '
                                                                       'Jin'},
                                                              {'@pid': '77/457',
                                                               'text': 'Michael '
                                                                       'Goh '
                                                                       'Kah '
                                                                       'Ong'},
                                                              {'@pid': 'n/DavidChekLingNgo',
                                                               'text': 'David '
                                                                       'Ngo '
                                                                       'Chek '
                                                                       'Ling'}]},
                                       'doi': '10.1016/J.IMAVIS.2005.01.002',
                                       'ee': 'https://doi.org/10.1016/j.imavis.2005.01.002',
                                       'key': 'journals/ivc/ConnieJOL05',
                                       'number': '5',
                                       'pages': '501-515',
                                       'title': 'An automated palmprint '
                                                'recognition system.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/ivc/ConnieJOL05',
                                       'venue': 'Image Vis. Comput.',
                                       'volume': '23',
                                       'year': '2005'},
                              'url': 'URL#4453584'},
                             {'@id': '4456533',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': 'n/DavidChekLingNgo',
                                                               'text': 'David '
                                                                       'Chek '
                                                                       'Ling '
                                                                       'Ngo'},
                                                              {'@pid': '26/6671',
                                                               'text': 'Alwyn '
                                                                       'Goh'},
                                                              {'@pid': 't/AndrewTeohBengJin',
                                                               'text': 'Andrew '
                                                                       'Beng '
                                                                       'Jin '
                                                                       'Teoh'}]},
                                       'doi': '10.1117/1.2135321',
                                       'ee': 'https://doi.org/10.1117/1.2135321',
                                       'key': 'journals/jei/NgoGT05',
                                       'number': '4',
                                       'pages': '043016',
                                       'title': 'Recognition using robust bit '
                                                'extraction.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/jei/NgoGT05',
                                       'venue': 'J. Electronic Imaging',
                                       'volume': '14',
                                       'year': '2005'},
                              'url': 'URL#4456533'},
                             {'@id': '4466938',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': 't/AndrewTeohBengJin',
                                                               'text': 'Andrew '
                                                                       'Teoh '
                                                                       'Beng '
                                                                       'Jin'},
                                                              {'@pid': 'n/DavidChekLingNgo',
                                                               'text': 'David '
                                                                       'Ngo '
                                                                       'Chek '
                                                                       'Ling'}]},
                                       'doi': '10.1016/J.PATREC.2004.11.021',
                                       'ee': 'https://doi.org/10.1016/j.patrec.2004.11.021',
                                       'key': 'journals/prl/JinL05',
                                       'number': '10',
                                       'pages': '1454-1460',
                                       'title': 'Cancellable biometerics '
                                                'featuring with tokenised '
                                                'random number.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/prl/JinL05',
                                       'venue': 'Pattern Recognit. Lett.',
                                       'volume': '26',
                                       'year': '2005'},
                              'url': 'URL#4466938'},
                             {'@id': '4489567',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '42/2141',
                                                               'text': 'Ying-Han '
                                                                       'Pang'},
                                                              {'@pid': 't/AndrewTeohBengJin',
                                                               'text': 'Andrew '
                                                                       'Teoh '
                                                                       'Beng '
                                                                       'Jin'},
                                                              {'@pid': 'n/DavidChekLingNgo',
                                                               'text': 'David '
                                                                       'Ngo '
                                                                       'Chek '
                                                                       'Ling'}]},
                                       'doi': '10.1007/11589990_173',
                                       'ee': 'https://doi.org/10.1007/11589990_173',
                                       'key': 'conf/ausai/PangJL05',
                                       'pages': '1217-1220',
                                       'title': 'A Robust Face Recognition '
                                                'System.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/ausai/PangJL05',
                                       'venue': 'Australian Conference on '
                                                'Artificial Intelligence',
                                       'year': '2005'},
                              'url': 'URL#4489567'},
                             {'@id': '4489657',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '02/6388',
                                                               'text': 'Wai '
                                                                       'Kuan '
                                                                       'Yip'},
                                                              {'@pid': '26/6671',
                                                               'text': 'Alwyn '
                                                                       'Goh'},
                                                              {'@pid': 'n/DavidChekLingNgo',
                                                               'text': 'David '
                                                                       'Ngo '
                                                                       'Chek '
                                                                       'Ling'},
                                                              {'@pid': 't/AndrewTeohBengJin',
                                                               'text': 'Andrew '
                                                                       'Teoh '
                                                                       'Beng '
                                                                       'Jin'}]},
                                       'doi': '10.1109/AUTOID.2005.17',
                                       'ee': 'https://doi.org/10.1109/AUTOID.2005.17',
                                       'key': 'conf/autoid/KuanGNT05',
                                       'pages': '27-32',
                                       'title': 'Cryptographic Keys from '
                                                'Dynamic Hand-Signatures with '
                                                'Biometric Secrecy '
                                                'Preservation and '
                                                'Replaceability.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/autoid/KuanGNT05',
                                       'venue': 'AutoID',
                                       'year': '2005'},
                              'url': 'URL#4489657'},
                             {'@id': '4495703',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '42/2141',
                                                               'text': 'Ying-Han '
                                                                       'Pang'},
                                                              {'@pid': 't/AndrewTeohBengJin',
                                                               'text': 'Andrew '
                                                                       'Teoh '
                                                                       'Beng '
                                                                       'Jin'},
                                                              {'@pid': 'n/DavidChekLingNgo',
                                                               'text': 'David '
                                                                       'Ngo '
                                                                       'Chek '
                                                                       'Ling'}]},
                                       'doi': '10.1007/11596981_115',
                                       'ee': 'https://doi.org/10.1007/11596981_115',
                                       'key': 'conf/cis/PangJL05',
                                       'pages': '788-795',
                                       'title': 'Binarized Revocable '
                                                'Biometrics in Face '
                                                'Recognition.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/cis/PangJL05',
                                       'venue': 'CIS',
                                       'year': '2005'},
                              'url': 'URL#4495703'},
                             {'@id': '4514547',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': 'c/YvonneCoady',
                                                               'text': 'Yvonne '
                                                                       'Coady'},
                                                              {'@pid': '83/6032',
                                                               'text': 'Russ '
                                                                       'Cox'},
                                                              {'@pid': '71/1040',
                                                               'text': 'John '
                                                                       'DeTreville'},
                                                              {'@pid': 'd/PDruschel',
                                                               'text': 'Peter '
                                                                       'Druschel'},
                                                              {'@pid': '66/1837',
                                                               'text': 'Joseph '
                                                                       'Hellerstein'},
                                                              {'@pid': 'h/AndrewHume',
                                                               'text': 'Andrew '
                                                                       'Hume'},
                                                              {'@pid': 'k/KimberlyKeeton',
                                                               'text': 'Kimberly '
                                                                       'Keeton'},
                                                              {'@pid': '47/3996',
                                                               'text': 'Thu '
                                                                       'Nguyen'},
                                                              {'@pid': 's/ChristopherSmall',
                                                               'text': 'Christopher '
                                                                       'Small'},
                                                              {'@pid': '44/2654',
                                                               'text': 'Lex '
                                                                       'Stein'},
                                                              {'@pid': '70/5879',
                                                               'text': 'Andrew '
                                                                       'Warfield'}]},
                                       'ee': 'http://www.usenix.org/events/hotos05/final_papers/full_papers/green_team/green.pdf',
                                       'key': 'conf/hotos/CoadyCDDHHKNSSW05',
                                       'title': 'Falling Off the Cliff - When '
                                                'Systems Go Nonlinear.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/hotos/CoadyCDDHHKNSSW05',
                                       'venue': 'HotOS',
                                       'year': '2005'},
                              'url': 'URL#4514547'},
                             {'@id': '4515431',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '38/2029',
                                                               'text': 'Eimad '
                                                                       'Eldin '
                                                                       'Abusham'},
                                                              {'@pid': 'n/DavidChekLingNgo',
                                                               'text': 'David '
                                                                       'Ngo '
                                                                       'Chek '
                                                                       'Ling'},
                                                              {'@pid': 't/AndrewTeohBengJin',
                                                               'text': 'Andrew '
                                                                       'Teoh '
                                                                       'Beng '
                                                                       'Jin'}]},
                                       'key': 'conf/iasse/AbushamNT05',
                                       'pages': '78-82',
                                       'title': 'Comparing the Performance of '
                                                'Principal Component Analysis '
                                                'and RBF Network for Face '
                                                'Recognition using Locally '
                                                'Linear Embedding.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/iasse/AbushamNT05',
                                       'venue': 'IASSE',
                                       'year': '2005'},
                              'url': 'URL#4515431'},
                             {'@id': '4517181',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '38/2029',
                                                               'text': 'Eimad '
                                                                       'Eldin '
                                                                       'Abusham'},
                                                              {'@pid': 'n/DavidChekLingNgo',
                                                               'text': 'David '
                                                                       'Ngo '
                                                                       'Chek '
                                                                       'Ling'},
                                                              {'@pid': 't/AndrewTeohBengJin',
                                                               'text': 'Andrew '
                                                                       'Teoh '
                                                                       'Beng '
                                                                       'Jin'}]},
                                       'doi': '10.1007/11552499_37',
                                       'ee': 'https://doi.org/10.1007/11552499_37',
                                       'key': 'conf/icapr/AbushamLJ05',
                                       'pages': '326-333',
                                       'title': 'Fusion of Locally Linear '
                                                'Embedding and Principal '
                                                'Component Analysis for Face '
                                                'Recognition (FLLEPCA).',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icapr/AbushamLJ05',
                                       'venue': 'ICAPR',
                                       'year': '2005'},
                              'url': 'URL#4517181'},
                             {'@id': '4519371',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '76/1250',
                                                               'text': 'Kah '
                                                                       'Heng '
                                                                       'Ng'},
                                                              {'@pid': '26/2244',
                                                               'text': 'Eustace '
                                                                       'K. '
                                                                       'Tameh'},
                                                              {'@pid': '50/6238',
                                                               'text': 'Andrew '
                                                                       'R. '
                                                                       'Nix'}]},
                                       'doi': '10.1109/ICC.2005.1494721',
                                       'ee': 'https://doi.org/10.1109/ICC.2005.1494721',
                                       'key': 'conf/icc/NgTN05',
                                       'pages': '2168-2172',
                                       'title': 'A new hybrid geometrical '
                                                'optics and radiance based '
                                                'scattering model for ray '
                                                'tracing applications.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icc/NgTN05',
                                       'venue': 'ICC',
                                       'year': '2005'},
                              'url': 'URL#4519371'},
                             {'@id': '4550929',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '65/4628',
                                                               'text': 'Han '
                                                                       'Foon '
                                                                       'Neo'},
                                                              {'@pid': 't/AndrewTeohBengJin',
                                                               'text': 'Andrew '
                                                                       'Beng '
                                                                       'Jin '
                                                                       'Teoh'},
                                                              {'@pid': 'n/DavidChekLingNgo',
                                                               'text': 'David '
                                                                       'Chek '
                                                                       'Ling '
                                                                       'Ngo'}]},
                                       'ee': 'http://b2.cvl.iis.u-tokyo.ac.jp/mva/proceedings/CommemorativeDVD/2005/papers/2005502.pdf',
                                       'key': 'conf/mva/NeoTN05',
                                       'pages': '502-505',
                                       'title': 'A Novel Spatially Confined '
                                                'Non-Negative Matrix '
                                                'Factorization for Face '
                                                'Recognition.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/mva/NeoTN05',
                                       'venue': 'MVA',
                                       'year': '2005'},
                              'url': 'URL#4550929'},
                             {'@id': '4567723',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '76/1250',
                                                               'text': 'Kah '
                                                                       'Heng '
                                                                       'Ng'},
                                                              {'@pid': '26/2244',
                                                               'text': 'Eustace '
                                                                       'K. '
                                                                       'Tameh'},
                                                              {'@pid': '50/6238',
                                                               'text': 'Andrew '
                                                                       'R. '
                                                                       'Nix'}]},
                                       'doi': '10.1109/WCNC.2005.1424633',
                                       'ee': 'https://doi.org/10.1109/WCNC.2005.1424633',
                                       'key': 'conf/wcnc/NgTN05',
                                       'pages': '933-937',
                                       'title': 'Modelling and performance '
                                                'prediction for multiple '
                                                'antenna systems using '
                                                'enhanced ray tracing.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/wcnc/NgTN05',
                                       'venue': 'WCNC',
                                       'year': '2005'},
                              'url': 'URL#4567723'},
                             {'@id': '4588758',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': 't/AndrewTeohBengJin',
                                                               'text': 'Andrew '
                                                                       'Teoh '
                                                                       'Beng '
                                                                       'Jin'},
                                                              {'@pid': 'n/DavidChekLingNgo',
                                                               'text': 'David '
                                                                       'Ngo '
                                                                       'Chek '
                                                                       'Ling'},
                                                              {'@pid': '26/6671',
                                                               'text': 'Alwyn '
                                                                       'Goh'}]},
                                       'doi': '10.1016/J.COSE.2004.06.002',
                                       'ee': 'https://doi.org/10.1016/j.cose.2004.06.002',
                                       'key': 'journals/compsec/JinLG04',
                                       'number': '7',
                                       'pages': '606-614',
                                       'title': 'Personalised cryptographic '
                                                'key generation based on '
                                                'FaceHashing.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/compsec/JinLG04',
                                       'venue': 'Comput. Secur.',
                                       'volume': '23',
                                       'year': '2004'},
                              'url': 'URL#4588758'},
                             {'@id': '4596595',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '42/2141',
                                                               'text': 'Ying-Han '
                                                                       'Pang'},
                                                              {'@pid': 't/AndrewTeohBengJin',
                                                               'text': 'Andrew '
                                                                       'Teoh '
                                                                       'Beng '
                                                                       'Jin'},
                                                              {'@pid': 'n/DavidChekLingNgo',
                                                               'text': 'David '
                                                                       'Ngo '
                                                                       'Chek '
                                                                       'Ling'}]},
                                       'ee': 'http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.275',
                                       'key': 'journals/ieiceee/PangJL04',
                                       'number': '10',
                                       'pages': '275-280',
                                       'title': 'Face authentication system '
                                                'using pseudo Zernike moments '
                                                'on wavelet subband.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/ieiceee/PangJL04',
                                       'venue': 'IEICE Electron. Express',
                                       'volume': '1',
                                       'year': '2004'},
                              'url': 'URL#4596595'},
                             {'@id': '4602970',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': 't/AndrewTeohBengJin',
                                                               'text': 'Andrew '
                                                                       'Teoh '
                                                                       'Beng '
                                                                       'Jin'},
                                                              {'@pid': 'n/DavidChekLingNgo',
                                                               'text': 'David '
                                                                       'Ngo '
                                                                       'Chek '
                                                                       'Ling'},
                                                              {'@pid': '59/3439',
                                                               'text': 'Thian '
                                                                       'Song '
                                                                       'Ong'}]},
                                       'doi': '10.1016/J.IMAVIS.2003.12.002',
                                       'ee': 'https://doi.org/10.1016/j.imavis.2003.12.002',
                                       'key': 'journals/ivc/JinLS04',
                                       'number': '6',
                                       'pages': '503-513',
                                       'title': 'An efficient fingerprint '
                                                'verification system using '
                                                'integrated wavelet and '
                                                'Fourier-Mellin invariant '
                                                'transform.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/ivc/JinLS04',
                                       'venue': 'Image Vis. Comput.',
                                       'volume': '22',
                                       'year': '2004'},
                              'url': 'URL#4602970'},
                             {'@id': '4613559',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '07/2949',
                                                               'text': 'Tee '
                                                                       'Connie'},
                                                              {'@pid': 't/AndrewTeohBengJin',
                                                               'text': 'Andrew '
                                                                       'Teoh '
                                                                       'Beng '
                                                                       'Jin'},
                                                              {'@pid': '77/457',
                                                               'text': 'Michael '
                                                                       'Goh '
                                                                       'Kah '
                                                                       'Ong'},
                                                              {'@pid': 'n/DavidChekLingNgo',
                                                               'text': 'David '
                                                                       'Ngo '
                                                                       'Chek '
                                                                       'Ling'}]},
                                       'doi': '10.1007/S10044-004-0223-4',
                                       'ee': 'https://doi.org/10.1007/s10044-004-0223-4',
                                       'key': 'journals/paa/ConnieTGN04',
                                       'number': '3',
                                       'pages': '255-268',
                                       'title': 'PalmHashing - a novel '
                                                'approach for dual-factor '
                                                'authentication.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/paa/ConnieTGN04',
                                       'venue': 'Pattern Anal. Appl.',
                                       'volume': '7',
                                       'year': '2004'},
                              'url': 'URL#4613559'},
                             {'@id': '4614607',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': 't/AndrewTeohBengJin',
                                                               'text': 'Andrew '
                                                                       'Teoh '
                                                                       'Beng '
                                                                       'Jin'},
                                                              {'@pid': 'n/DavidChekLingNgo',
                                                               'text': 'David '
                                                                       'Ngo '
                                                                       'Chek '
                                                                       'Ling'},
                                                              {'@pid': '26/6671',
                                                               'text': 'Alwyn '
                                                                       'Goh'}]},
                                       'doi': '10.1016/J.PATCOG.2004.04.011',
                                       'ee': 'https://doi.org/10.1016/j.patcog.2004.04.011',
                                       'key': 'journals/pr/JinLG04',
                                       'number': '11',
                                       'pages': '2245-2255',
                                       'title': 'Biohashing - two factor '
                                                'authentication featuring '
                                                'fingerprint data and '
                                                'tokenised random number.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/pr/JinLG04',
                                       'venue': 'Pattern Recognit.',
                                       'volume': '37',
                                       'year': '2004'},
                              'url': 'URL#4614607'},
                             {'@id': '4628222',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '65/4628',
                                                               'text': 'Han '
                                                                       'Foon '
                                                                       'Neo'},
                                                              {'@pid': '42/2141',
                                                               'text': 'Ying-Han '
                                                                       'Pang'},
                                                              {'@pid': 't/AndrewTeohBengJin',
                                                               'text': 'Andrew '
                                                                       'Teoh '
                                                                       'Beng '
                                                                       'Jin'},
                                                              {'@pid': 'n/DavidChekLingNgo',
                                                               'text': 'David '
                                                                       'Ngo '
                                                                       'Chek '
                                                                       'Ling'}]},
                                       'doi': '10.1109/CGIV.2004.1323962',
                                       'ee': 'https://doi.org/10.1109/CGIV.2004.1323962',
                                       'key': 'conf/IEEEcgiv/FoonPJL04',
                                       'pages': '65-69',
                                       'title': 'An Efficient Method for Human '
                                                'Face Recognition Using '
                                                'Wavelet Transform and Zernike '
                                                'Moments.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/IEEEcgiv/FoonPJL04',
                                       'venue': 'CGIV',
                                       'year': '2004'},
                              'url': 'URL#4628222'},
                             {'@id': '4633418',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '65/4628',
                                                               'text': 'Han '
                                                                       'Foon '
                                                                       'Neo'},
                                                              {'@pid': 't/AndrewTeohBengJin',
                                                               'text': 'Andrew '
                                                                       'Teoh '
                                                                       'Beng '
                                                                       'Jin'},
                                                              {'@pid': 'n/DavidChekLingNgo',
                                                               'text': 'David '
                                                                       'Ngo '
                                                                       'Chek '
                                                                       'Ling'}]},
                                       'doi': '10.1007/978-3-540-30549-1_6',
                                       'ee': 'https://doi.org/10.1007/978-3-540-30549-1_6',
                                       'key': 'conf/ausai/FoonJL04',
                                       'pages': '64-73',
                                       'title': 'Bio-discretization - '
                                                'Biometrics Authentication '
                                                'Featuring Face Data and '
                                                'Tokenised Random Number.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/ausai/FoonJL04',
                                       'venue': 'Australian Conference on '
                                                'Artificial Intelligence',
                                       'year': '2004'},
                              'url': 'URL#4633418'},
                             {'@id': '4633419',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '65/4628',
                                                               'text': 'Han '
                                                                       'Foon '
                                                                       'Neo'},
                                                              {'@pid': 't/AndrewTeohBengJin',
                                                               'text': 'Andrew '
                                                                       'Teoh '
                                                                       'Beng '
                                                                       'Jin'},
                                                              {'@pid': 'n/DavidChekLingNgo',
                                                               'text': 'David '
                                                                       'Ngo '
                                                                       'Chek '
                                                                       'Ling'}]},
                                       'doi': '10.1007/978-3-540-30549-1_18',
                                       'ee': 'https://doi.org/10.1007/978-3-540-30549-1_18',
                                       'key': 'conf/ausai/FoonJL04a',
                                       'pages': '192-202',
                                       'title': 'Face Recognition Using '
                                                'Wavelet Transform and '
                                                'Non-negative Matrix '
                                                'Factorization.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/ausai/FoonJL04a',
                                       'venue': 'Australian Conference on '
                                                'Artificial Intelligence',
                                       'year': '2004'},
                              'url': 'URL#4633419'},
                             {'@id': '4633473',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '42/2141',
                                                               'text': 'Ying-Han '
                                                                       'Pang'},
                                                              {'@pid': 't/AndrewTeohBengJin',
                                                               'text': 'Andrew '
                                                                       'Teoh '
                                                                       'Beng '
                                                                       'Jin'},
                                                              {'@pid': 'n/DavidChekLingNgo',
                                                               'text': 'David '
                                                                       'Ngo '
                                                                       'Chek '
                                                                       'Ling'}]},
                                       'doi': '10.1007/978-3-540-30549-1_21',
                                       'ee': 'https://doi.org/10.1007/978-3-540-30549-1_21',
                                       'key': 'conf/ausai/PangJL04',
                                       'pages': '227-236',
                                       'title': 'Personal Authenticator on the '
                                                'Basis of Two-Factors - '
                                                'Palmprint Features and '
                                                'Tokenized Random Data.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/ausai/PangJL04',
                                       'venue': 'Australian Conference on '
                                                'Artificial Intelligence',
                                       'year': '2004'},
                              'url': 'URL#4633473'},
                             {'@id': '4657762',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': 'n/DavidChekLingNgo',
                                                               'text': 'David '
                                                                       'Ngo '
                                                                       'Chek '
                                                                       'Ling'},
                                                              {'@pid': 't/AndrewTeohBengJin',
                                                               'text': 'Andrew '
                                                                       'Teoh '
                                                                       'Beng '
                                                                       'Jin'},
                                                              {'@pid': '26/6671',
                                                               'text': 'Alwyn '
                                                                       'Goh'}]},
                                       'doi': '10.1007/978-3-540-25948-0_27',
                                       'ee': 'https://doi.org/10.1007/978-3-540-25948-0_27',
                                       'key': 'conf/icba/NgoTG04',
                                       'pages': '195-199',
                                       'title': 'Eigenspace-Based Face '
                                                'Hashing.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icba/NgoTG04',
                                       'venue': 'ICBA',
                                       'year': '2004'},
                              'url': 'URL#4657762'},
                             {'@id': '4657782',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': 't/AndrewTeohBengJin',
                                                               'text': 'Andrew '
                                                                       'Teoh '
                                                                       'Beng '
                                                                       'Jin'},
                                                              {'@pid': 'n/DavidChekLingNgo',
                                                               'text': 'David '
                                                                       'Ngo '
                                                                       'Chek '
                                                                       'Ling'},
                                                              {'@pid': '26/6671',
                                                               'text': 'Alwyn '
                                                                       'Goh'}]},
                                       'doi': '10.1007/978-3-540-25948-0_17',
                                       'ee': 'https://doi.org/10.1007/978-3-540-25948-0_17',
                                       'key': 'conf/icba/TeohNG04',
                                       'pages': '117-123',
                                       'title': 'An Integrated Dual Factor '
                                                'Authenticator Based on the '
                                                'Face Data and Tokenised '
                                                'Random Number.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icba/TeohNG04',
                                       'venue': 'ICBA',
                                       'year': '2004'},
                              'url': 'URL#4657782'},
                             {'@id': '4680093',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '76/1250',
                                                               'text': 'Kah '
                                                                       'Heng '
                                                                       'Ng'},
                                                              {'@pid': '26/2244',
                                                               'text': 'Eustace '
                                                                       'K. '
                                                                       'Tameh'},
                                                              {'@pid': '50/6238',
                                                               'text': 'Andrew '
                                                                       'R. '
                                                                       'Nix'}]},
                                       'doi': '10.1109/ISWCS.2004.1407285',
                                       'ee': 'https://doi.org/10.1109/ISWCS.2004.1407285',
                                       'key': 'conf/iswcs/NgTN04',
                                       'pages': '438-442',
                                       'title': 'An advanced multi-element '
                                                'microcellular ray tracing '
                                                'model.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/iswcs/NgTN04',
                                       'venue': 'ISWCS',
                                       'year': '2004'},
                              'url': 'URL#4680093'},
                             {'@id': '4705722',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '42/2141',
                                                               'text': 'Ying-Han '
                                                                       'Pang'},
                                                              {'@pid': 't/AndrewTeohBengJin',
                                                               'text': 'Andrew '
                                                                       'Teoh '
                                                                       'Beng '
                                                                       'Jin'},
                                                              {'@pid': 'n/DavidChekLingNgo',
                                                               'text': 'David '
                                                                       'Ngo '
                                                                       'Chek '
                                                                       'Ling'},
                                                              {'@pid': '43/5647',
                                                               'text': 'Fu San '
                                                                       'Hiew'}]},
                                       'key': 'conf/wscg/PangJLH04',
                                       'pages': '325-332',
                                       'title': 'Palmprint Verification with '
                                                'Moments.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/wscg/PangJLH04',
                                       'venue': 'WSCG',
                                       'year': '2004'},
                              'url': 'URL#4705722'},
                             {'@id': '4730873',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '150/0285',
                                                               'text': 'Gail '
                                                                       'Hohner'},
                                                              {'@pid': '150/0244',
                                                               'text': 'John '
                                                                       'Rich'},
                                                              {'@pid': '150/0221',
                                                               'text': 'Ed Ng'},
                                                              {'@pid': '150/0263',
                                                               'text': 'Grant '
                                                                       'Reid'},
                                                              {'@pid': '68/5444',
                                                               'text': 'Andrew '
                                                                       'J. '
                                                                       'Davenport'},
                                                              {'@pid': '05/4351',
                                                               'text': 'Jayant '
                                                                       'R. '
                                                                       'Kalagnanam'},
                                                              {'@pid': '57/107',
                                                               'text': 'Ho Soo '
                                                                       'Lee'},
                                                              {'@pid': '30/6903',
                                                               'text': 'Chae '
                                                                       'An'}]},
                                       'doi': '10.1287/INTE.33.1.23.12717',
                                       'ee': 'https://doi.org/10.1287/inte.33.1.23.12717',
                                       'key': 'journals/interfaces/HohnerRNRDKLA03',
                                       'number': '1',
                                       'pages': '23-35',
                                       'title': 'Special Issue - 2002 Franz '
                                                'Edelman Award for Achievement '
                                                'in Operations Research and '
                                                'the Management Sciences - '
                                                'Combinatorial and '
                                                'Quantity-Discount Procurement '
                                                'Auctions Benefit Mars, '
                                                'Incorporated and Its '
                                                'Suppliers.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/interfaces/HohnerRNRDKLA03',
                                       'venue': 'Interfaces',
                                       'volume': '33',
                                       'year': '2003'},
                              'url': 'URL#4730873'},
                             {'@id': '4760201',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': 't/AndrewTeohBengJin',
                                                               'text': 'Andrew '
                                                                       'Teoh '
                                                                       'Beng '
                                                                       'Jin'},
                                                              {'@pid': '59/3439',
                                                               'text': 'Thian '
                                                                       'Song '
                                                                       'Ong'},
                                                              {'@pid': 'n/DavidChekLingNgo',
                                                               'text': 'David '
                                                                       'Ngo '
                                                                       'Chek '
                                                                       'Ling'},
                                                              {'@pid': '79/5757',
                                                               'text': 'Y. W. '
                                                                       'Sek'}]},
                                       'doi': '10.1007/978-3-540-24581-0_54',
                                       'ee': 'https://doi.org/10.1007/978-3-540-24581-0_54',
                                       'key': 'conf/ausai/AndrewODS03',
                                       'pages': '633-640',
                                       'title': 'Automatic Fingerprint Center '
                                                'Point Determination by Using '
                                                'Modified Directional Field '
                                                'and Morphology.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/ausai/AndrewODS03',
                                       'venue': 'Australian Conference on '
                                                'Artificial Intelligence',
                                       'year': '2003'},
                              'url': 'URL#4760201'},
                             {'@id': '4760253',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '59/3439',
                                                               'text': 'Thian '
                                                                       'Song '
                                                                       'Ong'},
                                                              {'@pid': 't/AndrewTeohBengJin',
                                                               'text': 'Andrew '
                                                                       'Teoh '
                                                                       'Beng '
                                                                       'Jin'},
                                                              {'@pid': 'n/DavidChekLingNgo',
                                                               'text': 'David '
                                                                       'Ngo '
                                                                       'Chek '
                                                                       'Ling'},
                                                              {'@pid': '79/5757',
                                                               'text': 'Y. W. '
                                                                       'Sek'}]},
                                       'doi': '10.1007/978-3-540-24581-0_53',
                                       'ee': 'https://doi.org/10.1007/978-3-540-24581-0_53',
                                       'key': 'conf/ausai/OngADS03',
                                       'pages': '624-633',
                                       'title': 'Fingerprint Images '
                                                'Segmentation Using Two Stages '
                                                'Coarse to Fine Discrimination '
                                                'Technique.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/ausai/OngADS03',
                                       'venue': 'Australian Conference on '
                                                'Artificial Intelligence',
                                       'year': '2003'},
                              'url': 'URL#4760253'},
                             {'@id': '4770854',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': 'a/JuanCarlosAugusto',
                                                               'text': 'Juan '
                                                                       'Carlos '
                                                                       'Augusto'},
                                                              {'@pid': '13/5457',
                                                               'text': 'Carla '
                                                                       'Ferreira '
                                                                       '0001'},
                                                              {'@pid': '63/6929',
                                                               'text': 'Andrew '
                                                                       'M. '
                                                                       'Gravell'},
                                                              {'@pid': 'l/MLeuschel',
                                                               'text': 'Michael '
                                                                       'Leuschel'},
                                                              {'@pid': '21/2563',
                                                               'text': 'Karen '
                                                                       'M. Y. '
                                                                       'Ng'}]},
                                       'doi': '10.1007/978-3-540-39597-3_3',
                                       'ee': 'https://doi.org/10.1007/978-3-540-39597-3_3',
                                       'key': 'conf/er/AugustoFGLN03',
                                       'pages': '17-28',
                                       'title': 'The Benefits of Rapid '
                                                'Modelling for E-business '
                                                'System Development.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/er/AugustoFGLN03',
                                       'venue': 'ER',
                                       'year': '2003'},
                              'url': 'URL#4770854'},
                             {'@id': '4819000',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': 's/RobertStevens',
                                                               'text': 'Robert '
                                                                       'Stevens '
                                                                       '0001'},
                                                              {'@pid': 'g/CaroleAGoble',
                                                               'text': 'Carole '
                                                                       'A. '
                                                                       'Goble'},
                                                              {'@pid': 'p/NWPaton',
                                                               'text': 'Norman '
                                                                       'W. '
                                                                       'Paton'},
                                                              {'@pid': '78/5866',
                                                               'text': 'Sean '
                                                                       'Bechhofer'},
                                                              {'@pid': '85/6283',
                                                               'text': 'Gary '
                                                                       'Ng'},
                                                              {'@pid': '11/5548',
                                                               'text': 'Patricia '
                                                                       'G. '
                                                                       'Baker'},
                                                              {'@pid': '13/3147',
                                                               'text': 'Andy '
                                                                       'Brass'}]},
                                       'doi': '10.1016/B978-155860829-0/50009-7',
                                       'ee': 'https://doi.org/10.1016/b978-155860829-0/50009-7',
                                       'key': 'books/el/03/0001GPBNBB03',
                                       'pages': '189-223',
                                       'title': 'Complex Query Formulation '
                                                'Over Diverse Information '
                                                'Sources in TAMBIS.',
                                       'type': 'Parts in Books or Collections',
                                       'url': 'https://dblp.org/rec/books/el/03/0001GPBNBB03',
                                       'venue': 'Bioinformatics',
                                       'year': '2003'},
                              'url': 'URL#4819000'},
                             {'@id': '4870096',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '52/4949',
                                                               'text': 'Luc '
                                                                       'Séméria'},
                                                              {'@pid': '82/2865',
                                                               'text': 'Renu '
                                                                       'Mehra'},
                                                              {'@pid': '37/4197',
                                                               'text': 'Barry '
                                                                       'M. '
                                                                       'Pangrle'},
                                                              {'@pid': '42/1100',
                                                               'text': 'Arjuna '
                                                                       'Ekanayake'},
                                                              {'@pid': '55/544',
                                                               'text': 'Andrew '
                                                                       'Seawright'},
                                                              {'@pid': '54/7026',
                                                               'text': 'Daniel '
                                                                       'Ng'}]},
                                       'doi': '10.1145/513918.513951',
                                       'ee': 'https://doi.org/10.1145/513918.513951',
                                       'key': 'conf/dac/SemeriaMPESN02',
                                       'pages': '123-128',
                                       'title': 'RTL c-based methodology for '
                                                'designing and verifying a '
                                                'multi-threaded processor.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/dac/SemeriaMPESN02',
                                       'venue': 'DAC',
                                       'year': '2002'},
                              'url': 'URL#4870096'},
                             {'@id': '4884762',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '02/3098',
                                                               'text': 'Andrew '
                                                                       'E. J. '
                                                                       'Ng'},
                                                              {'@pid': '53/4017',
                                                               'text': 'John '
                                                                       'I. '
                                                                       'Sewell'}]},
                                       'doi': '10.1109/ICECS.2002.1045349',
                                       'ee': 'https://doi.org/10.1109/ICECS.2002.1045349',
                                       'key': 'conf/icecsys/NgS02',
                                       'pages': '125-128',
                                       'title': 'Log-domain allpass '
                                                'group-delay equaliser design '
                                                'with XFILTER.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icecsys/NgS02',
                                       'venue': 'ICECS',
                                       'year': '2002'},
                              'url': 'URL#4884762'},
                             {'@id': '4895098',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '02/3098',
                                                               'text': 'Andrew '
                                                                       'E. J. '
                                                                       'Ng'},
                                                              {'@pid': '53/4017',
                                                               'text': 'John '
                                                                       'I. '
                                                                       'Sewell'}]},
                                       'doi': '10.1109/ISCAS.2002.1010222',
                                       'ee': 'https://doi.org/10.1109/ISCAS.2002.1010222',
                                       'key': 'conf/iscas/NgS02',
                                       'pages': '309-312',
                                       'title': 'Direct noise analysis of '
                                                'log-domain filters.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/iscas/NgS02',
                                       'venue': 'ISCAS',
                                       'year': '2002'},
                              'url': 'URL#4895098'},
                             {'@id': '4929502',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': 'g/CaroleAGoble',
                                                               'text': 'Carole '
                                                                       'A. '
                                                                       'Goble'},
                                                              {'@pid': 's/RobertStevens',
                                                               'text': 'Robert '
                                                                       'Stevens '
                                                                       '0001'},
                                                              {'@pid': '85/6283',
                                                               'text': 'Gary '
                                                                       'Ng'},
                                                              {'@pid': '78/5866',
                                                               'text': 'Sean '
                                                                       'Bechhofer'},
                                                              {'@pid': 'p/NWPaton',
                                                               'text': 'Norman '
                                                                       'W. '
                                                                       'Paton'},
                                                              {'@pid': '11/5548',
                                                               'text': 'Patricia '
                                                                       'G. '
                                                                       'Baker'},
                                                              {'@pid': '04/3746',
                                                               'text': 'Martin '
                                                                       'Peim'},
                                                              {'@pid': '13/3147',
                                                               'text': 'Andy '
                                                                       'Brass'}]},
                                       'doi': '10.1147/SJ.402.0532',
                                       'ee': 'https://doi.org/10.1147/sj.402.0532',
                                       'key': 'journals/ibmsj/GobleSNBPBPB01',
                                       'number': '2',
                                       'pages': '532-551',
                                       'title': 'Transparent access to '
                                                'multiple bioinformatics '
                                                'information sources.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/ibmsj/GobleSNBPBPB01',
                                       'venue': 'IBM Syst. J.',
                                       'volume': '40',
                                       'year': '2001'},
                              'url': 'URL#4929502'},
                             {'@id': '4980234',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '95/3679',
                                                               'text': 'Emmanuel '
                                                                       'M. '
                                                                       'Drakakis'},
                                                              {'@pid': '207/3333',
                                                               'text': 'Alison '
                                                                       'J. '
                                                                       'Payne'},
                                                              {'@pid': 't/ChristoferToumazou',
                                                               'text': 'Christofer '
                                                                       'Toumazou'},
                                                              {'@pid': '02/3098',
                                                               'text': 'Andrew '
                                                                       'E. J. '
                                                                       'Ng'},
                                                              {'@pid': '53/4017',
                                                               'text': 'John '
                                                                       'I. '
                                                                       'Sewell'}]},
                                       'doi': '10.1109/ISCAS.2001.921808',
                                       'ee': 'https://doi.org/10.1109/ISCAS.2001.921808',
                                       'key': 'conf/iscas/DrakakisPTNS01',
                                       'pages': '141-144',
                                       'title': 'High-order lowpass and '
                                                'bandpass elliptic log-domain '
                                                'ladder filters.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/iscas/DrakakisPTNS01',
                                       'venue': 'ISCAS',
                                       'year': '2001'},
                              'url': 'URL#4980234'},
                             {'@id': '4980676',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '02/3098',
                                                               'text': 'Andrew '
                                                                       'E. J. '
                                                                       'Ng'},
                                                              {'@pid': '53/4017',
                                                               'text': 'John '
                                                                       'I. '
                                                                       'Sewell'},
                                                              {'@pid': '95/3679',
                                                               'text': 'Emmanuel '
                                                                       'M. '
                                                                       'Drakakis'},
                                                              {'@pid': '207/3333',
                                                               'text': 'Alison '
                                                                       'J. '
                                                                       'Payne'},
                                                              {'@pid': 't/ChristoferToumazou',
                                                               'text': 'Chris '
                                                                       'Toumazou'}]},
                                       'doi': '10.1109/ISCAS.2001.921810',
                                       'ee': 'https://doi.org/10.1109/ISCAS.2001.921810',
                                       'key': 'conf/iscas/NgSDPT01',
                                       'pages': '149-152',
                                       'title': 'A unified matrix method for '
                                                'systematic synthesis of '
                                                'log-domain ladder filters.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/iscas/NgSDPT01',
                                       'venue': 'ISCAS',
                                       'year': '2001'},
                              'url': 'URL#4980676'},
                             {'@id': '5004246',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': 's/RobertStevens',
                                                               'text': 'Robert '
                                                                       'Stevens '
                                                                       '0001'},
                                                              {'@pid': '11/5548',
                                                               'text': 'Patricia '
                                                                       'G. '
                                                                       'Baker'},
                                                              {'@pid': '78/5866',
                                                               'text': 'Sean '
                                                                       'Bechhofer'},
                                                              {'@pid': '85/6283',
                                                               'text': 'Gary '
                                                                       'Ng'},
                                                              {'@pid': '23/2527',
                                                               'text': 'Alex '
                                                                       'Jacoby'},
                                                              {'@pid': 'p/NWPaton',
                                                               'text': 'Norman '
                                                                       'W. '
                                                                       'Paton'},
                                                              {'@pid': 'g/CaroleAGoble',
                                                               'text': 'Carole '
                                                                       'A. '
                                                                       'Goble'},
                                                              {'@pid': '13/3147',
                                                               'text': 'Andy '
                                                                       'Brass'}]},
                                       'doi': '10.1093/BIOINFORMATICS/16.2.184',
                                       'ee': 'https://doi.org/10.1093/bioinformatics/16.2.184',
                                       'key': 'journals/bioinformatics/StevensBBNJPGB00',
                                       'number': '2',
                                       'pages': '184-186',
                                       'title': 'TAMBIS - Transparent Access '
                                                'to Multiple Bioinformatics '
                                                'Information Sources.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/bioinformatics/StevensBBNJPGB00',
                                       'venue': 'Bioinform.',
                                       'volume': '16',
                                       'year': '2000'},
                              'url': 'URL#5004246'},
                             {'@id': '5051271',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '02/3098',
                                                               'text': 'Andrew '
                                                                       'E. J. '
                                                                       'Ng'},
                                                              {'@pid': '53/4017',
                                                               'text': 'John '
                                                                       'I. '
                                                                       'Sewell'}]},
                                       'doi': '10.1109/ICECS.2000.912968',
                                       'ee': 'https://doi.org/10.1109/ICECS.2000.912968',
                                       'key': 'conf/icecsys/NgS00',
                                       'pages': '676-679',
                                       'title': 'Switched-current bilinear '
                                                'ladder group-delay '
                                                'equalisers.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icecsys/NgS00',
                                       'venue': 'ICECS',
                                       'year': '2000'},
                              'url': 'URL#5051271'},
                             {'@id': '5056846',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '58/6491',
                                                               'text': 'Sin '
                                                                       'Chun '
                                                                       'Ng'},
                                                              {'@pid': '45/4687',
                                                               'text': 'Shu '
                                                                       'Hung '
                                                                       'Leung'},
                                                              {'@pid': '30/4400',
                                                               'text': 'Andrew '
                                                                       'Luk'}]},
                                       'doi': '10.1109/IJCNN.2000.857834',
                                       'ee': 'https://doi.org/10.1109/IJCNN.2000.857834',
                                       'key': 'conf/ijcnn/NgLL00',
                                       'pages': '185-190',
                                       'title': 'A Weight Evolution Algorithm '
                                                'with Deterministic '
                                                'Perturbation.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/ijcnn/NgLL00',
                                       'venue': 'IJCNN',
                                       'year': '2000'},
                              'url': 'URL#5056846'},
                             {'@id': '5068811',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '15/5132',
                                                               'text': 'Xiaohuan '
                                                                       'Corina '
                                                                       'Wang'},
                                                              {'@pid': '97/772',
                                                               'text': 'Jérôme '
                                                                       'Maillot'},
                                                              {'@pid': 'f/EugeneFiume',
                                                               'text': 'Eugene '
                                                                       'Fiume'},
                                                              {'@pid': '55/3153',
                                                               'text': 'Victor '
                                                                       'Ng-Thow-Hing'},
                                                              {'@pid': '29/4482',
                                                               'text': 'Andrew '
                                                                       'Woo'},
                                                              {'@pid': '75/1299',
                                                               'text': 'Sanjay '
                                                                       'Bakshi'}]},
                                       'doi': '10.1007/978-3-7091-6303-0_23',
                                       'ee': 'https://doi.org/10.1007/978-3-7091-6303-0_23',
                                       'key': 'conf/rt/WangMFNWB00',
                                       'pages': '257-268',
                                       'title': 'Feature-based Displacement '
                                                'Mapping.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/rt/WangMFNWB00',
                                       'venue': 'Rendering Techniques',
                                       'year': '2000'},
                              'url': 'URL#5068811'},
                             {'@id': '5098776',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '58/6491',
                                                               'text': 'Sin '
                                                                       'Chun '
                                                                       'Ng'},
                                                              {'@pid': '45/4687',
                                                               'text': 'Shu '
                                                                       'Hung '
                                                                       'Leung'},
                                                              {'@pid': '30/4400',
                                                               'text': 'Andrew '
                                                                       'Luk'}]},
                                       'doi': '10.1023/A:1018611626332',
                                       'ee': 'https://doi.org/10.1023/A:1018611626332',
                                       'key': 'journals/npl/NgLL99',
                                       'number': '1',
                                       'pages': '13-23',
                                       'title': 'Fast Convergent Generalized '
                                                'Back-Propagation Algorithm '
                                                'with Constant Learning Rate.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/npl/NgLL99',
                                       'venue': 'Neural Process. Lett.',
                                       'volume': '9',
                                       'year': '1999'},
                              'url': 'URL#5098776'},
                             {'@id': '5128919',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '58/6491',
                                                               'text': 'Sin '
                                                                       'Chun '
                                                                       'Ng'},
                                                              {'@pid': '45/4687',
                                                               'text': 'Shu-Hung '
                                                                       'Leung'},
                                                              {'@pid': '30/4400',
                                                               'text': 'Andrew '
                                                                       'Luk'}]},
                                       'doi': '10.1109/IJCNN.1999.830806',
                                       'ee': 'https://doi.org/10.1109/IJCNN.1999.830806',
                                       'key': 'conf/ijcnn/NgLL99',
                                       'pages': '4037-4042',
                                       'title': 'A hybrid algorithm of weight '
                                                'evolution and generalized '
                                                'back-propagation for finding '
                                                'global minimum.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/ijcnn/NgLL99',
                                       'venue': 'IJCNN',
                                       'year': '1999'},
                              'url': 'URL#5128919'},
                             {'@id': '5132051',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '58/6491',
                                                               'text': 'Sin '
                                                                       'Chun '
                                                                       'Ng'},
                                                              {'@pid': '45/4687',
                                                               'text': 'Shu '
                                                                       'Hung '
                                                                       'Leung'},
                                                              {'@pid': '30/4400',
                                                               'text': 'Andrew '
                                                                       'Luk'}]},
                                       'doi': '10.1109/ISCAS.1999.777646',
                                       'ee': 'https://doi.org/10.1109/ISCAS.1999.777646',
                                       'key': 'conf/iscas/NgLL99',
                                       'pages': '612-615',
                                       'title': 'The generalized '
                                                'back-propagation algorithm '
                                                'with convergence analysis.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/iscas/NgLL99',
                                       'venue': 'ISCAS',
                                       'year': '1999'},
                              'url': 'URL#5132051'},
                             {'@id': '5132052',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '02/3098',
                                                               'text': 'Andrew '
                                                                       'E. J. '
                                                                       'Ng'},
                                                              {'@pid': '53/4017',
                                                               'text': 'John '
                                                                       'I. '
                                                                       'Sewell'}]},
                                       'doi': '10.1109/ISCAS.1999.780773',
                                       'ee': 'https://doi.org/10.1109/ISCAS.1999.780773',
                                       'key': 'conf/iscas/NgS99',
                                       'pages': '468-471',
                                       'title': 'Pseudo-N-path cells for '
                                                'switched-current signal '
                                                'processing.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/iscas/NgS99',
                                       'venue': 'ISCAS',
                                       'year': '1999'},
                              'url': 'URL#5132052'},
                             {'@id': '5132053',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '02/3098',
                                                               'text': 'Andrew '
                                                                       'E. J. '
                                                                       'Ng'},
                                                              {'@pid': '53/4017',
                                                               'text': 'John '
                                                                       'I. '
                                                                       'Sewell'}]},
                                       'doi': '10.1109/ISCAS.1999.780781',
                                       'ee': 'https://doi.org/10.1109/ISCAS.1999.780781',
                                       'key': 'conf/iscas/NgS99a',
                                       'pages': '484-487',
                                       'title': 'Bilinear transformed '
                                                'switched-current ladder '
                                                'interpolators.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/iscas/NgS99a',
                                       'venue': 'ISCAS',
                                       'year': '1999'},
                              'url': 'URL#5132053'},
                             {'@id': '5142076',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': 's/RobertStevens',
                                                               'text': 'Robert '
                                                                       'Stevens '
                                                                       '0001'},
                                                              {'@pid': 'p/NWPaton',
                                                               'text': 'Norman '
                                                                       'W. '
                                                                       'Paton'},
                                                              {'@pid': '11/5548',
                                                               'text': 'Patricia '
                                                                       'G. '
                                                                       'Baker'},
                                                              {'@pid': '85/6283',
                                                               'text': 'Gary '
                                                                       'Ng'},
                                                              {'@pid': 'g/CaroleAGoble',
                                                               'text': 'Carole '
                                                                       'A. '
                                                                       'Goble'},
                                                              {'@pid': '78/5866',
                                                               'text': 'Sean '
                                                                       'Bechhofer'},
                                                              {'@pid': '13/3147',
                                                               'text': 'Andy '
                                                                       'Brass'}]},
                                       'doi': '10.1109/SSDM.1999.787647',
                                       'ee': 'https://doi.org/10.1109/SSDM.1999.787647',
                                       'key': 'conf/ssdbm/StevensPBNGBB99',
                                       'pages': '280',
                                       'title': 'TAMBIS Online - A '
                                                'Bioinformatics Source '
                                                'Integration Tool.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/ssdbm/StevensPBNGBB99',
                                       'venue': 'SSDBM',
                                       'year': '1999'},
                              'url': 'URL#5142076'},
                             {'@id': '5162791',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '19/4351',
                                                               'text': 'Johnny '
                                                                       'K. C. '
                                                                       'Ng'},
                                                              {'@pid': '36/2935',
                                                               'text': 'W. H. '
                                                                       'Ip'},
                                                              {'@pid': '59/1300',
                                                               'text': 'T. C. '
                                                                       'Lee'}]},
                                       'doi': '10.1023/A%3A1026409806874',
                                       'ee': 'https://doi.org/10.1023/A%3A1026409806874',
                                       'key': 'journals/jim/NgIL98',
                                       'number': '5',
                                       'pages': '385-399',
                                       'title': 'The development of an '
                                                'enterprise resources planning '
                                                'system using a hierarchical '
                                                'design pyramid.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/jim/NgIL98',
                                       'venue': 'J. Intell. Manuf.',
                                       'volume': '9',
                                       'year': '1998'},
                              'url': 'URL#5162791'},
                             {'@id': '5189741',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '02/3098',
                                                               'text': 'Andrew '
                                                                       'E. J. '
                                                                       'Ng'},
                                                              {'@pid': '53/4017',
                                                               'text': 'John '
                                                                       'I. '
                                                                       'Sewell'}]},
                                       'doi': '10.1109/ICECS.1998.814008',
                                       'ee': 'https://doi.org/10.1109/ICECS.1998.814008',
                                       'key': 'conf/icecsys/NgS98',
                                       'pages': '355-358',
                                       'title': 'Switched-current elliptic '
                                                'decimators based on '
                                                'bilinear-transformed ladder '
                                                'structures.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icecsys/NgS98',
                                       'venue': 'ICECS',
                                       'year': '1998'},
                              'url': 'URL#5189741'},
                             {'@id': '5236381',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '94/360',
                                                               'text': 'Ina '
                                                                       'Ng'},
                                                              {'@pid': '90/5766',
                                                               'text': 'Andrew '
                                                                       'Gill'},
                                                              {'@pid': '50/3482',
                                                               'text': 'Ian '
                                                                       'Chia'},
                                                              {'@pid': '08/1488',
                                                               'text': 'Mei-Leng '
                                                                       'Koh'},
                                                              {'@pid': '10/1189',
                                                               'text': 'Chris '
                                                                       'Yeung'},
                                                              {'@pid': '39/6118',
                                                               'text': 'Lih-Wee '
                                                                       'Chew'}]},
                                       'ee': 'http://www.aaai.org/Library/IAAI/1997/iaai97-188.php',
                                       'key': 'conf/aaai/NgGCKYC97',
                                       'pages': '913-918',
                                       'title': 'SunRay V - An Intelligent '
                                                'Container Trucking Operations '
                                                'Management and Control '
                                                'System.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/aaai/NgGCKYC97',
                                       'venue': 'AAAI/IAAI',
                                       'year': '1997'},
                              'url': 'URL#5236381'},
                             {'@id': '5250920',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '58/6491',
                                                               'text': 'Sin '
                                                                       'Chun '
                                                                       'Ng'},
                                                              {'@pid': '45/4687',
                                                               'text': 'S. H. '
                                                                       'Leung '
                                                                       '0001'},
                                                              {'@pid': '30/4400',
                                                               'text': 'Andrew '
                                                                       'Luk'}]},
                                       'doi': '10.1109/ICNN.1997.616181',
                                       'ee': 'https://doi.org/10.1109/ICNN.1997.616181',
                                       'key': 'conf/icnn/NgLL97',
                                       'pages': '1093-1096',
                                       'title': 'Weight evolution algorithm '
                                                'with dynamic offset range.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icnn/NgLL97',
                                       'venue': 'ICNN',
                                       'year': '1997'},
                              'url': 'URL#5250920'},
                             {'@id': '5286295',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '58/6491',
                                                               'text': 'Sin '
                                                                       'Chun '
                                                                       'Ng'},
                                                              {'@pid': '45/4687',
                                                               'text': 'Shu-Hung '
                                                                       'Leung'},
                                                              {'@pid': '286/6710',
                                                               'text': 'Chi '
                                                                       'Yuen '
                                                                       'Chung'},
                                                              {'@pid': '30/4400',
                                                               'text': 'Andrew '
                                                                       'Luk'},
                                                              {'@pid': 'l/WingHongLau',
                                                               'text': 'Wing '
                                                                       'Hong '
                                                                       'Lau'}]},
                                       'doi': '10.1109/79.543974',
                                       'ee': 'https://doi.org/10.1109/79.543974',
                                       'key': 'journals/spm/NgLCLL96',
                                       'number': '6',
                                       'pages': '38-46',
                                       'title': 'The genetic search approach. '
                                                'A new learning algorithm for '
                                                'adaptive IIR filtering.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/spm/NgLCLL96',
                                       'venue': 'IEEE Signal Process. Mag.',
                                       'volume': '13',
                                       'year': '1996'},
                              'url': 'URL#5286295'},
                             {'@id': '5301429',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '58/6491',
                                                               'text': 'Sin '
                                                                       'Chun '
                                                                       'Ng'},
                                                              {'@pid': '45/4687',
                                                               'text': 'Shu '
                                                                       'Hung '
                                                                       'Leung'},
                                                              {'@pid': '30/4400',
                                                               'text': 'Andrew '
                                                                       'Luk'}]},
                                       'doi': '10.1109/ICEC.1996.542692',
                                       'ee': 'https://doi.org/10.1109/ICEC.1996.542692',
                                       'key': 'conf/icec/NgLL96',
                                       'pages': '726-731',
                                       'title': 'Evolution of Connection '
                                                'Weights Combined with Local '
                                                'Search for Multi-Layered '
                                                'Neural Network.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icec/NgLL96',
                                       'venue': 'International Conference on '
                                                'Evolutionary Computation',
                                       'year': '1996'},
                              'url': 'URL#5301429'},
                             {'@id': '5303527',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '58/6491',
                                                               'text': 'Sin '
                                                                       'Chun '
                                                                       'Ng'},
                                                              {'@pid': '45/4687',
                                                               'text': 'S. H. '
                                                                       'Leung '
                                                                       '0001'},
                                                              {'@pid': '30/4400',
                                                               'text': 'Andrew '
                                                                       'Luk'}]},
                                       'doi': '10.1109/ICNN.1996.548927',
                                       'ee': 'https://doi.org/10.1109/ICNN.1996.548927',
                                       'key': 'conf/icnn/NgLL96',
                                       'pages': '409-413',
                                       'title': 'A generalized backpropagation '
                                                'algorithm for faster '
                                                'convergence.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icnn/NgLL96',
                                       'venue': 'ICNN',
                                       'year': '1996'},
                              'url': 'URL#5303527'},
                             {'@id': '5306989',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '15/1979',
                                                               'text': 'Xingbin '
                                                                       'Zhang'},
                                                              {'@pid': 'l/VijayKaramcheti',
                                                               'text': 'Vijay '
                                                                       'Karamcheti'},
                                                              {'@pid': '28/6209',
                                                               'text': 'Tony '
                                                                       'Ng'},
                                                              {'@pid': 'c/AAChien',
                                                               'text': 'Andrew '
                                                                       'A. '
                                                                       'Chien'}]},
                                       'doi': '10.1109/IPPS.1996.508064',
                                       'ee': 'https://doi.org/10.1109/IPPS.1996.508064',
                                       'key': 'conf/ipps/ZhangKNC96',
                                       'pages': '235-240',
                                       'title': 'Optimizing COOP Languages - '
                                                'Study of a Protein Dynamics '
                                                'Program.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/ipps/ZhangKNC96',
                                       'venue': 'IPPS',
                                       'year': '1996'},
                              'url': 'URL#5306989'},
                             {'@id': '5350866',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '58/6491',
                                                               'text': 'Sin '
                                                                       'Chun '
                                                                       'Ng'},
                                                              {'@pid': '45/4687',
                                                               'text': 'S. H. '
                                                                       'Leung '
                                                                       '0001'},
                                                              {'@pid': '30/4400',
                                                               'text': 'Andrew '
                                                                       'Luk'}]},
                                       'doi': '10.1109/ICNN.1995.487260',
                                       'ee': 'https://doi.org/10.1109/ICNN.1995.487260',
                                       'key': 'conf/icnn/NgLL95',
                                       'pages': '3004-3008',
                                       'title': 'Fast and Global Convergent '
                                                'Weight Evolution Algorithm '
                                                'based on Modified '
                                                'Back-propagation.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icnn/NgLL95',
                                       'venue': 'ICNN',
                                       'year': '1995'},
                              'url': 'URL#5350866'},
                             {'@id': '5354171',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '155/7665',
                                                               'text': 'Chi '
                                                                       'Yin '
                                                                       'Chung'},
                                                              {'@pid': '58/6491',
                                                               'text': 'Sin '
                                                                       'Chun '
                                                                       'Ng'},
                                                              {'@pid': '45/4687',
                                                               'text': 'Shu '
                                                                       'Hung '
                                                                       'Leung'},
                                                              {'@pid': '30/4400',
                                                               'text': 'Andrew '
                                                                       'Luk'}]},
                                       'doi': '10.1109/ISCAS.1995.520404',
                                       'ee': 'https://doi.org/10.1109/ISCAS.1995.520404',
                                       'key': 'conf/iscas/ChungNLL95',
                                       'pages': '1380-1383',
                                       'title': 'A Variable Step Size '
                                                'Algorithm with Generate-and '
                                                'Evaluate Function.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/iscas/ChungNLL95',
                                       'venue': 'ISCAS',
                                       'year': '1995'},
                              'url': 'URL#5354171'},
                             {'@id': '5392616',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '58/6491',
                                                               'text': 'Sin '
                                                                       'Chun '
                                                                       'Ng'},
                                                              {'@pid': '155/7665',
                                                               'text': 'Chi '
                                                                       'Yin '
                                                                       'Chung'},
                                                              {'@pid': '45/4687',
                                                               'text': 'Shu '
                                                                       'Hung '
                                                                       'Leung'},
                                                              {'@pid': '30/4400',
                                                               'text': 'Andrew '
                                                                       'Luk'}]},
                                       'doi': '10.1109/ICASSP.1994.390079',
                                       'ee': 'https://doi.org/10.1109/ICASSP.1994.390079',
                                       'key': 'conf/icassp/NgCLL94',
                                       'pages': '105-108',
                                       'title': 'Fast convergent genetic '
                                                'search for adaptive IIR '
                                                'filtering.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icassp/NgCLL94',
                                       'venue': 'ICASSP',
                                       'year': '1994'},
                              'url': 'URL#5392616'},
                             {'@id': '5399219',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '58/6491',
                                                               'text': 'Sin '
                                                                       'Chun '
                                                                       'Ng'},
                                                              {'@pid': '155/7665',
                                                               'text': 'Chi '
                                                                       'Yin '
                                                                       'Chung'},
                                                              {'@pid': '45/4687',
                                                               'text': 'Shu '
                                                                       'Hung '
                                                                       'Leung'},
                                                              {'@pid': '30/4400',
                                                               'text': 'Andrew '
                                                                       'Luk'}]},
                                       'doi': '10.1109/ISCAS.1994.408903',
                                       'ee': 'https://doi.org/10.1109/ISCAS.1994.408903',
                                       'key': 'conf/iscas/NgCLL94',
                                       'pages': '53-56',
                                       'title': 'An Evolutionary Search '
                                                'Algorithm for Adaptive IIR '
                                                'Equalizer.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/iscas/NgCLL94',
                                       'venue': 'ISCAS',
                                       'year': '1994'},
                              'url': 'URL#5399219'},
                             {'@id': '5418548',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '05/5387',
                                                               'text': 'Andrew '
                                                                       'D. '
                                                                       'Malyan'},
                                                              {'@pid': '86/5082',
                                                               'text': 'Leslie '
                                                                       'J. Ng'},
                                                              {'@pid': '36/4847',
                                                               'text': 'Victor '
                                                                       'C. M. '
                                                                       'Leung'},
                                                              {'@pid': '04/5482',
                                                               'text': 'Robert '
                                                                       'W. '
                                                                       'Donaldson'}]},
                                       'doi': '10.1109/49.232292',
                                       'ee': 'https://doi.org/10.1109/49.232292',
                                       'key': 'journals/jsac/MalyanNLD93',
                                       'number': '6',
                                       'pages': '830-841',
                                       'title': 'Network Architecture and '
                                                'Signaling for Wireless '
                                                'Personal Communications.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/jsac/MalyanNLD93',
                                       'venue': 'IEEE J. Sel. Areas Commun.',
                                       'volume': '11',
                                       'year': '1993'},
                              'url': 'URL#5418548'},
                             {'@id': '5591589',
                              '@score': '3',
                              'info': {'authors': {'author': [{'@pid': '285/1078',
                                                               'text': 'C. T. '
                                                                       'Ng '
                                                                       '0002'},
                                                              {'@pid': '22/2242',
                                                               'text': 'Andrew '
                                                                       'K. C. '
                                                                       'Wong'}]},
                                       'doi': '10.1109/TIT.1987.1057256',
                                       'ee': 'https://doi.org/10.1109/TIT.1987.1057256',
                                       'key': 'journals/tit/NgW87',
                                       'number': '1',
                                       'pages': '166-169',
                                       'title': 'On the nonuniqueness of '
                                                'discretization of '
                                                'two-dimensional probability '
                                                'distribution subject to the '
                                                'maximization of '
                                                'Shannon&apos;s entropy.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/tit/NgW87',
                                       'venue': 'IEEE Trans. Inf. Theory',
                                       'volume': '33',
                                       'year': '1987'},
                              'url': 'URL#5591589'},
                             {'@id': '10351',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '65/9943',
                                                               'text': 'Ameer '
                                                                       'Shakayb '
                                                                       'Arsalaan'},
                                                              {'@pid': '00/5147',
                                                               'text': 'Hung '
                                                                       'Nguyen'},
                                                              {'@pid': '09/3904',
                                                               'text': 'Andrew '
                                                                       'Coyle'},
                                                              {'@pid': '78/9943',
                                                               'text': 'Mah-Rukh '
                                                                       'Fida'}]},
                                       'doi': '10.1016/J.ADHOC.2020.102331',
                                       'ee': 'https://doi.org/10.1016/j.adhoc.2020.102331',
                                       'key': 'journals/adhoc/ArsalaanNCF21',
                                       'pages': '102331',
                                       'title': 'Quality of information with '
                                                'minimum requirements for '
                                                'emergency communications.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/adhoc/ArsalaanNCF21',
                                       'venue': 'Ad Hoc Networks',
                                       'volume': '111',
                                       'year': '2021'},
                              'url': 'URL#10351'},
                             {'@id': '15835',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '44/7805',
                                                               'text': 'Nansu '
                                                                       'Zong'},
                                                              {'@pid': '285/3537',
                                                               'text': 'Rachael '
                                                                       'Sze '
                                                                       'Nga '
                                                                       'Wong'},
                                                              {'@pid': '55/2008',
                                                               'text': 'Yue '
                                                                       'Yu'},
                                                              {'@pid': '212/2138',
                                                               'text': 'Andrew '
                                                                       'Wen'},
                                                              {'@pid': '05/6957',
                                                               'text': 'Ming '
                                                                       'Huang'},
                                                              {'@pid': '14/5410',
                                                               'text': 'Ning '
                                                                       'Li'}]},
                                       'doi': '10.1093/BIB/BBZ147',
                                       'ee': 'https://doi.org/10.1093/bib/bbz147',
                                       'key': 'journals/bib/ZongWYWHL21',
                                       'number': '1',
                                       'pages': '568-580',
                                       'title': 'Drug-target prediction '
                                                'utilizing heterogeneous '
                                                'bio-linked network '
                                                'embeddings.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/bib/ZongWYWHL21',
                                       'venue': 'Briefings Bioinform.',
                                       'volume': '22',
                                       'year': '2021'},
                              'url': 'URL#15835'},
                             {'@id': '19087',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '295/6923',
                                                               'text': 'Rolando '
                                                                       'García'},
                                                              {'@pid': '295/6715',
                                                               'text': 'Anas '
                                                                       'Hussain'},
                                                              {'@pid': '295/7007',
                                                               'text': 'Prasad '
                                                                       'Koduru'},
                                                              {'@pid': '158/7404',
                                                               'text': 'Murat '
                                                                       'Atis'},
                                                              {'@pid': '07/5862',
                                                               'text': 'Kathleen '
                                                                       'Wilson'},
                                                              {'@pid': '292/7035',
                                                               'text': 'Jason '
                                                                       'Y. '
                                                                       'Park'},
                                                              {'@pid': '157/9581',
                                                               'text': 'Inimary '
                                                                       'T. '
                                                                       'Toby'},
                                                              {'@pid': '295/6619',
                                                               'text': 'Kimberly '
                                                                       'Diwa'},
                                                              {'@pid': '295/6670',
                                                               'text': 'Lavang '
                                                                       'Vu'},
                                                              {'@pid': '16/7026',
                                                               'text': 'Samuel '
                                                                       'Ho'},
                                                              {'@pid': '295/7053',
                                                               'text': 'Fajar '
                                                                       'Adnan'},
                                                              {'@pid': '45/11368',
                                                               'text': 'Ashley '
                                                                       'Nguyen'},
                                                              {'@pid': '97/684',
                                                               'text': 'Andrew '
                                                                       'Cox'},
                                                              {'@pid': '295/6832',
                                                               'text': 'Timothy '
                                                                       'Kirtek'},
                                                              {'@pid': '265/7602',
                                                               'text': 'Patricia '
                                                                       'García'},
                                                              {'@pid': '78/6098',
                                                               'text': 'Yanhui '
                                                                       'Li'},
                                                              {'@pid': '295/7079',
                                                               'text': 'Heather '
                                                                       'Jones'},
                                                              {'@pid': '295/6913',
                                                               'text': 'Guanglu '
                                                                       'Shi'},
                                                              {'@pid': '295/7047',
                                                               'text': 'Allen '
                                                                       'Green'},
                                                              {'@pid': '08/3741',
                                                               'text': 'David '
                                                                       'Rosenbaum'}]},
                                       'doi': '10.1016/J.COMPBIOMED.2021.104364',
                                       'ee': 'https://doi.org/10.1016/j.compbiomed.2021.104364',
                                       'key': 'journals/cbm/GarciaHKAWPTDVH21',
                                       'pages': '104364',
                                       'title': 'Identification of potential '
                                                'antiviral compounds against '
                                                'SARS-CoV-2 structural and non '
                                                'structural protein targets - '
                                                'A pharmacoinformatics study '
                                                'of the CAS COVID-19 dataset.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/cbm/GarciaHKAWPTDVH21',
                                       'venue': 'Comput. Biol. Medicine',
                                       'volume': '133',
                                       'year': '2021'},
                              'url': 'URL#19087'},
                             {'@id': '57614',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '161/6303',
                                                               'text': 'Georgiana '
                                                                       'Haldeman'},
                                                              {'@pid': '82/5111',
                                                               'text': 'Monica '
                                                                       'Babes-Vroman'},
                                                              {'@pid': '37/49',
                                                               'text': 'Andrew '
                                                                       'Tjang'},
                                                              {'@pid': 'n/ThuDNguyen',
                                                               'text': 'Thu D. '
                                                                       'Nguyen'}]},
                                       'doi': '10.1145/3445983',
                                       'ee': 'https://doi.org/10.1145/3445983',
                                       'key': 'journals/jeric/HaldemanBTN21',
                                       'number': '3',
                                       'pages': '21:1-21:30',
                                       'title': 'CSF - Formative Feedback in '
                                                'Autograding.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/jeric/HaldemanBTN21',
                                       'venue': 'ACM Trans. Comput. Educ.',
                                       'volume': '21',
                                       'year': '2021'},
                              'url': 'URL#57614'},
                             {'@id': '67260',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '267/8378',
                                                               'text': 'Andrew '
                                                                       'Hao '
                                                                       'Sen '
                                                                       'Fang'},
                                                              {'@pid': '257/9440',
                                                               'text': 'Ngiap '
                                                                       'Chuan '
                                                                       'Tan'},
                                                              {'@pid': '296/6174',
                                                               'text': 'Wei '
                                                                       'Ying '
                                                                       'Tan'},
                                                              {'@pid': '296/6185',
                                                               'text': 'Ronald '
                                                                       'Wihal '
                                                                       'Oei'},
                                                              {'@pid': 'l/MongLiLee',
                                                               'text': 'Mong-Li '
                                                                       'Lee'},
                                                              {'@pid': 'h/WynneHsu',
                                                               'text': 'Wynne '
                                                                       'Hsu'}]},
                                       'doi': '10.1186/S12911-021-01566-Y',
                                       'ee': 'https://doi.org/10.1186/s12911-021-01566-y',
                                       'key': 'journals/midm/FangTTOLH21',
                                       'number': '1',
                                       'pages': '207',
                                       'title': 'Patient similarity analytics '
                                                'for explainable clinical risk '
                                                'prediction.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/midm/FangTTOLH21',
                                       'venue': 'BMC Medical Informatics '
                                                'Decis. Mak.',
                                       'volume': '21',
                                       'year': '2021'},
                              'url': 'URL#67260'},
                             {'@id': '67288',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '294/0856',
                                                               'text': 'Sarah '
                                                                       'Charlotte '
                                                                       'Johnson'},
                                                              {'@pid': '294/1077',
                                                               'text': 'Matthew '
                                                                       'Cunningham'},
                                                              {'@pid': '294/1621',
                                                               'text': 'Ilse '
                                                                       'N. '
                                                                       'Dippenaar'},
                                                              {'@pid': '294/1701',
                                                               'text': 'Fablina '
                                                                       'Sharara'},
                                                              {'@pid': '294/1224',
                                                               'text': 'Eve E. '
                                                                       'Wool'},
                                                              {'@pid': '294/0888',
                                                               'text': 'Kareha '
                                                                       'M. '
                                                                       'Agesa'},
                                                              {'@pid': '294/1604',
                                                               'text': 'Chieh '
                                                                       'Han'},
                                                              {'@pid': '294/0975',
                                                               'text': 'Molly '
                                                                       'K. '
                                                                       'Miller-Petrie'},
                                                              {'@pid': '294/1215',
                                                               'text': 'Shadrach '
                                                                       'Wilson'},
                                                              {'@pid': '294/1060',
                                                               'text': 'John '
                                                                       'E. '
                                                                       'Fuller'},
                                                              {'@pid': '294/1518',
                                                               'text': 'Shelly '
                                                                       'Balassyano'},
                                                              {'@pid': '294/1400',
                                                               'text': 'Gregory '
                                                                       'J. '
                                                                       'Bertolacci'},
                                                              {'@pid': '294/0938',
                                                               'text': 'Nicole '
                                                                       'Davis '
                                                                       'Weaver'},
                                                              {'@pid': '294/0922',
                                                               'text': 'Jalal '
                                                                       'Arabloo'},
                                                              {'@pid': '294/1688',
                                                               'text': 'Alaa '
                                                                       'Badawi'},
                                                              {'@pid': '294/1687',
                                                               'text': 'Akshaya '
                                                                       'Srikanth '
                                                                       'Bhagavathula'},
                                                              {'@pid': '294/1245',
                                                               'text': 'Katrin '
                                                                       'Burkart'},
                                                              {'@pid': '294/1759',
                                                               'text': 'Luis '
                                                                       'Alberto '
                                                                       'Cámera'},
                                                              {'@pid': '294/1552',
                                                               'text': 'Felix '
                                                                       'Carvalho'},
                                                              {'@pid': '294/1192',
                                                               'text': 'Carlos '
                                                                       'A. '
                                                                       'Castañeda-Orjuela'},
                                                              {'@pid': '294/1359',
                                                               'text': 'Jee-Young '
                                                                       'Jasmine '
                                                                       'Choi'},
                                                              {'@pid': '206/9288',
                                                               'text': 'Dinh-Toi '
                                                                       'Chu'},
                                                              {'@pid': '03/9835',
                                                               'text': 'Xiaochen '
                                                                       'Dai'},
                                                              {'@pid': '294/1565',
                                                               'text': 'Mostafa '
                                                                       'Dianatinasab'},
                                                              {'@pid': '294/1504',
                                                               'text': 'Sophia '
                                                                       'Emmons-Bell'},
                                                              {'@pid': '294/1690',
                                                               'text': 'Eduarda '
                                                                       'Fernandes'},
                                                              {'@pid': '01/3933',
                                                               'text': 'Florian '
                                                                       'Fischer'},
                                                              {'@pid': '294/1695',
                                                               'text': 'Ahmad '
                                                                       'Ghashghaee'},
                                                              {'@pid': '294/1076',
                                                               'text': 'Mahaveer '
                                                                       'Golechha'},
                                                              {'@pid': '77/10415',
                                                               'text': 'Simon '
                                                                       'I. '
                                                                       'Hay'},
                                                              {'@pid': '294/1333',
                                                               'text': 'Khezar '
                                                                       'Hayat'},
                                                              {'@pid': '294/1674',
                                                               'text': 'Nathaniel '
                                                                       'J. '
                                                                       'Henry'},
                                                              {'@pid': '193/3271',
                                                               'text': 'Ramesh '
                                                                       'Holla'},
                                                              {'@pid': '47/9379',
                                                               'text': 'Mowafa '
                                                                       'S. '
                                                                       'Househ'},
                                                              {'@pid': '294/1394',
                                                               'text': 'Segun '
                                                                       'Emmanuel '
                                                                       'Ibitoye'},
                                                              {'@pid': '294/1589',
                                                               'text': 'Maryam '
                                                                       'Keramati'},
                                                              {'@pid': '294/1660',
                                                               'text': 'Ejaz '
                                                                       'Ahmad '
                                                                       'Khan'},
                                                              {'@pid': '294/1648',
                                                               'text': 'Yun '
                                                                       'Jin '
                                                                       'Kim'},
                                                              {'@pid': '229/5689',
                                                               'text': 'Adnan '
                                                                       'Kisa'},
                                                              {'@pid': '294/1019',
                                                               'text': 'Hamidreza '
                                                                       'Komaki'},
                                                              {'@pid': '294/1057',
                                                               'text': 'Ai '
                                                                       'Koyanagi'},
                                                              {'@pid': '294/1728',
                                                               'text': 'Samantha '
                                                                       'Leigh '
                                                                       'Larson'},
                                                              {'@pid': '294/1467',
                                                               'text': 'Kate '
                                                                       'E. '
                                                                       'LeGrand'},
                                                              {'@pid': '96/600',
                                                               'text': 'Xuefeng '
                                                                       'Liu'},
                                                              {'@pid': '55/9674',
                                                               'text': 'Azeem '
                                                                       'Majeed'},
                                                              {'@pid': '74/531',
                                                               'text': 'Reza '
                                                                       'Malekzadeh'},
                                                              {'@pid': '171/7240',
                                                               'text': 'Bahram '
                                                                       'Mohajer'},
                                                              {'@pid': '294/1513',
                                                               'text': 'Abdollah '
                                                                       'Mohammadian-Hafshejani'},
                                                              {'@pid': '294/1371',
                                                               'text': 'Reza '
                                                                       'Mohammadpourhodki'},
                                                              {'@pid': '294/1411',
                                                               'text': 'Shafiu '
                                                                       'Mohammed'},
                                                              {'@pid': '294/1079',
                                                               'text': 'Farnam '
                                                                       'Mohebi'},
                                                              {'@pid': '205/8333',
                                                               'text': 'Ali H. '
                                                                       'Mokdad'},
                                                              {'@pid': '47/7336',
                                                               'text': 'Mariam '
                                                                       'Molokhia'},
                                                              {'@pid': '294/1662',
                                                               'text': 'Lorenzo '
                                                                       'Monasta'},
                                                              {'@pid': '123/7448',
                                                               'text': 'Mohammad '
                                                                       'Ali '
                                                                       'Moni'},
                                                              {'@pid': '165/8371',
                                                               'text': 'Muhammad '
                                                                       'Naveed'},
                                                              {'@pid': '199/1666',
                                                               'text': 'Thi '
                                                                       'Lan '
                                                                       'Huong '
                                                                       'Nguyen'},
                                                              {'@pid': '294/1415',
                                                               'text': 'Andrew '
                                                                       'T. '
                                                                       'Olagunju'},
                                                              {'@pid': '294/0921',
                                                               'text': 'Samuel '
                                                                       'M. '
                                                                       'Ostroff'},
                                                              {'@pid': '294/1380',
                                                               'text': 'Fatemeh '
                                                                       'Pashazadeh '
                                                                       'Kan'},
                                                              {'@pid': '294/1302',
                                                               'text': 'David '
                                                                       'M. '
                                                                       'Pereira'},
                                                              {'@pid': '117/5225',
                                                               'text': 'Quang '
                                                                       'Pham '
                                                                       'Hai'},
                                                              {'@pid': '123/1144',
                                                               'text': 'Salman '
                                                                       'Rawaf'},
                                                              {'@pid': '294/0970',
                                                               'text': 'David '
                                                                       'Laith '
                                                                       'Rawaf'},
                                                              {'@pid': '294/1444',
                                                               'text': 'Andre '
                                                                       'M. N. '
                                                                       'Renzaho'},
                                                              {'@pid': '294/1375',
                                                               'text': 'Luca '
                                                                       'Ronfani'},
                                                              {'@pid': '294/1486',
                                                               'text': 'Abdallah '
                                                                       'M. '
                                                                       'Samy'},
                                                              {'@pid': '294/1297',
                                                               'text': 'Subramanian '
                                                                       'Senthilkumaran'},
                                                              {'@pid': '294/1516',
                                                               'text': 'Sadaf '
                                                                       'G. '
                                                                       'Sepanlou'},
                                                              {'@pid': '294/1116',
                                                               'text': 'Masood '
                                                                       'Ali '
                                                                       'Shaikh'},
                                                              {'@pid': '294/1564',
                                                               'text': 'David '
                                                                       'H. '
                                                                       'Shaw'},
                                                              {'@pid': '294/1562',
                                                               'text': 'Kenji '
                                                                       'Shibuya'},
                                                              {'@pid': '294/0861',
                                                               'text': 'Jasvinder '
                                                                       'A. '
                                                                       'Singh'},
                                                              {'@pid': '294/1027',
                                                               'text': 'Valentin '
                                                                       'Yurievich '
                                                                       'Skryabin'},
                                                              {'@pid': '294/1134',
                                                               'text': 'Anna '
                                                                       'Aleksandrovna '
                                                                       'Skryabina'},
                                                              {'@pid': '294/1156',
                                                               'text': 'Emma '
                                                                       'Elizabeth '
                                                                       'Spurlock'},
                                                              {'@pid': '294/1259',
                                                               'text': 'Eyayou '
                                                                       'Girma '
                                                                       'Tadesse'},
                                                              {'@pid': '234/6743',
                                                               'text': 'Mohamad-Hani '
                                                                       'Temsah'},
                                                              {'@pid': '130/5530',
                                                               'text': 'Marcos '
                                                                       'Roberto '
                                                                       'Tovani-Palone'},
                                                              {'@pid': '260/6855',
                                                               'text': 'Tran '
                                                                       'Xuan '
                                                                       'Bach'},
                                                              {'@pid': '294/1627',
                                                               'text': 'Gebiyaw '
                                                                       'Wudie '
                                                                       'Tsegaye'},
                                                              {'@pid': '294/1746',
                                                               'text': 'Pascual '
                                                                       'R. '
                                                                       'Valdez'},
                                                              {'@pid': '294/1470',
                                                               'text': 'Prashant '
                                                                       'M. '
                                                                       'Vishwanath'},
                                                              {'@pid': '294/1610',
                                                               'text': 'Giang '
                                                                       'Thu '
                                                                       'Vu'},
                                                              {'@pid': '294/0905',
                                                               'text': 'Yasir '
                                                                       'Waheed'},
                                                              {'@pid': '294/1437',
                                                               'text': 'Naohiro '
                                                                       'Yonemoto'},
                                                              {'@pid': '71/3834',
                                                               'text': 'Rafael '
                                                                       'Lozano'},
                                                              {'@pid': '294/1421',
                                                               'text': 'Alan '
                                                                       'D. '
                                                                       'Lopez'},
                                                              {'@pid': '270/4099',
                                                               'text': 'Christopher '
                                                                       'J. L. '
                                                                       'Murray'},
                                                              {'@pid': '294/1711',
                                                               'text': 'Mohsen '
                                                                       'Naghavi'}]},
                                       'doi': '10.1186/S12911-021-01501-1',
                                       'ee': 'https://doi.org/10.1186/s12911-021-01501-1',
                                       'key': 'journals/midm/JohnsonCDSWAHMW21',
                                       'number': '1',
                                       'pages': '175',
                                       'title': 'Public health utility of '
                                                'cause of death data - '
                                                'applying empirical algorithms '
                                                'to improve data quality.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/midm/JohnsonCDSWAHMW21',
                                       'venue': 'BMC Medical Informatics '
                                                'Decis. Mak.',
                                       'volume': '21',
                                       'year': '2021'},
                              'url': 'URL#67288'},
                             {'@id': '67335',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '299/4763',
                                                               'text': 'Emma '
                                                                       'Nichols'},
                                                              {'@pid': '299/4926',
                                                               'text': 'Foad '
                                                                       'Abd-Allah'},
                                                              {'@pid': '299/5311',
                                                               'text': 'Amir '
                                                                       'Abdoli'},
                                                              {'@pid': '299/5376',
                                                               'text': 'Ahmed '
                                                                       'Abualhasan'},
                                                              {'@pid': '299/5170',
                                                               'text': 'Eman '
                                                                       'Abu-Gharbieh'},
                                                              {'@pid': '299/5024',
                                                               'text': 'Ashkan '
                                                                       'Afshin'},
                                                              {'@pid': '267/5155',
                                                               'text': 'Rufus '
                                                                       'Akinyemi'},
                                                              {'@pid': '299/5409',
                                                               'text': 'Fahad '
                                                                       'Mashhour '
                                                                       'Alanezi'},
                                                              {'@pid': '299/5388',
                                                               'text': 'Vahid '
                                                                       'Alipour'},
                                                              {'@pid': '299/4844',
                                                               'text': 'Amir '
                                                                       'Almasi-Hashiani'},
                                                              {'@pid': '294/0922',
                                                               'text': 'Jalal '
                                                                       'Arabloo'},
                                                              {'@pid': '299/5136',
                                                               'text': 'Amir '
                                                                       'Ashraf-Ganjouei'},
                                                              {'@pid': '299/5106',
                                                               'text': 'Getinet '
                                                                       'Ayano'},
                                                              {'@pid': '299/4999',
                                                               'text': 'Jose '
                                                                       'L. '
                                                                       'Ayuso-Mateos'},
                                                              {'@pid': '299/4993',
                                                               'text': 'Atif '
                                                                       'Amin '
                                                                       'Baig'},
                                                              {'@pid': '299/5358',
                                                               'text': 'Maciej '
                                                                       'Banach'},
                                                              {'@pid': '299/5367',
                                                               'text': 'Miguel '
                                                                       'A. '
                                                                       'Barboza'},
                                                              {'@pid': '299/5080',
                                                               'text': 'Suzanne '
                                                                       'Lyn '
                                                                       'Barker-Collo'},
                                                              {'@pid': '99/8107',
                                                               'text': 'Bernhard '
                                                                       'T. '
                                                                       'Baune'},
                                                              {'@pid': '294/1687',
                                                               'text': 'Akshaya '
                                                                       'Srikanth '
                                                                       'Bhagavathula'},
                                                              {'@pid': '299/5467',
                                                               'text': 'Krittika '
                                                                       'Bhattacharyya'},
                                                              {'@pid': '299/4507',
                                                               'text': 'Ali '
                                                                       'Bijani'},
                                                              {'@pid': '03/862',
                                                               'text': 'Atanu '
                                                                       'Biswas'},
                                                              {'@pid': '299/4837',
                                                               'text': 'Archith '
                                                                       'Boloor'},
                                                              {'@pid': '70/7917',
                                                               'text': 'Carol '
                                                                       'Brayne'},
                                                              {'@pid': '86/3133',
                                                               'text': 'Hermann '
                                                                       'Brenner'},
                                                              {'@pid': '294/1245',
                                                               'text': 'Katrin '
                                                                       'Burkart'},
                                                              {'@pid': '217/1063',
                                                               'text': 'Sharath '
                                                                       'Burugina '
                                                                       'Nagaraja'},
                                                              {'@pid': '294/1552',
                                                               'text': 'Felix '
                                                                       'Carvalho'},
                                                              {'@pid': '299/5402',
                                                               'text': 'Luis '
                                                                       'F. S. '
                                                                       'Castro-de-Araujo'},
                                                              {'@pid': '299/5015',
                                                               'text': 'Ferrán '
                                                                       'Catalá-López'},
                                                              {'@pid': '293/7518',
                                                               'text': 'Ester '
                                                                       'Cerin'},
                                                              {'@pid': '32/97',
                                                               'text': 'Nicolas '
                                                                       'Cherbuin'},
                                                              {'@pid': '206/9288',
                                                               'text': 'Dinh-Toi '
                                                                       'Chu'},
                                                              {'@pid': '03/9835',
                                                               'text': 'Xiaochen '
                                                                       'Dai'},
                                                              {'@pid': '299/4917',
                                                               'text': 'Antonio '
                                                                       'Reis '
                                                                       'de '
                                                                       'Sá-Junior'},
                                                              {'@pid': '299/5310',
                                                               'text': 'Shirin '
                                                                       'Djalalinia'},
                                                              {'@pid': '38/7977',
                                                               'text': 'Abdel '
                                                                       'Douiri'},
                                                              {'@pid': '299/5052',
                                                               'text': 'David '
                                                                       'Edvardsson'},
                                                              {'@pid': '299/5150',
                                                               'text': 'Shaimaa '
                                                                       'I. '
                                                                       'El-Jaafary'},
                                                              {'@pid': '299/5284',
                                                               'text': 'Sharareh '
                                                                       'Eskandarieh'},
                                                              {'@pid': '299/4618',
                                                               'text': 'Andre '
                                                                       'Faro'},
                                                              {'@pid': '268/0438',
                                                               'text': 'Farshad '
                                                                       'Farzadfar'},
                                                              {'@pid': '38/10462',
                                                               'text': 'Valery '
                                                                       'Feigin'},
                                                              {'@pid': '240/2900',
                                                               'text': 'Seyed-Mohammad '
                                                                       'Fereshtehnejad'},
                                                              {'@pid': '294/1690',
                                                               'text': 'Eduarda '
                                                                       'Fernandes'},
                                                              {'@pid': '26/3503-2',
                                                               'text': 'Pietro '
                                                                       'Ferrara '
                                                                       '0002'},
                                                              {'@pid': '299/5021',
                                                               'text': 'Irina '
                                                                       'Filip'},
                                                              {'@pid': '01/3933',
                                                               'text': 'Florian '
                                                                       'Fischer'},
                                                              {'@pid': '299/5183',
                                                               'text': 'Shilpa '
                                                                       'Gaidhane'},
                                                              {'@pid': '299/4509',
                                                               'text': 'Lucia '
                                                                       'Galluzzo'},
                                                              {'@pid': '299/5226',
                                                               'text': 'Gebreamlak '
                                                                       'Gebremedhn '
                                                                       'Gebremeskel'},
                                                              {'@pid': '294/1695',
                                                               'text': 'Ahmad '
                                                                       'Ghashghaee'},
                                                              {'@pid': '152/3570',
                                                               'text': 'Alessandro '
                                                                       'Gialluisi'},
                                                              {'@pid': '299/5122',
                                                               'text': 'Elena '
                                                                       'V. '
                                                                       'Gnedovskaya'},
                                                              {'@pid': '294/1076',
                                                               'text': 'Mahaveer '
                                                                       'Golechha'},
                                                              {'@pid': '70/2530',
                                                               'text': 'Rajeev '
                                                                       'Gupta'},
                                                              {'@pid': '299/4860',
                                                               'text': 'Vladimir '
                                                                       'Hachinski'},
                                                              {'@pid': '274/3656',
                                                               'text': 'Mohammad '
                                                                       'R. '
                                                                       'Haider'},
                                                              {'@pid': '299/4544',
                                                               'text': 'Teklehaimanot '
                                                                       'Gereziher '
                                                                       'Haile'},
                                                              {'@pid': '299/5383',
                                                               'text': 'Mohammad '
                                                                       'Hamiduzzaman'},
                                                              {'@pid': '14/11387',
                                                               'text': 'Graeme '
                                                                       'J. '
                                                                       'Hankey'},
                                                              {'@pid': '77/10415',
                                                               'text': 'Simon '
                                                                       'I. '
                                                                       'Hay'},
                                                              {'@pid': '299/5246',
                                                               'text': 'Golnaz '
                                                                       'Heidari'},
                                                              {'@pid': '299/4551',
                                                               'text': 'Reza '
                                                                       'Heidari-Soureshjani'},
                                                              {'@pid': '197/2962',
                                                               'text': 'Hung '
                                                                       'Chak '
                                                                       'Ho'},
                                                              {'@pid': '299/5006',
                                                               'text': 'Mowafa '
                                                                       'Househ'},
                                                              {'@pid': '299/5276',
                                                               'text': 'Bing-Fang '
                                                                       'Hwang'},
                                                              {'@pid': '299/4732',
                                                               'text': 'Licia '
                                                                       'Iacoviello'},
                                                              {'@pid': '299/4744',
                                                               'text': 'Olayinka '
                                                                       'Stephen '
                                                                       'Ilesanmi'},
                                                              {'@pid': '299/5386',
                                                               'text': 'Irena '
                                                                       'M. '
                                                                       'Ilic'},
                                                              {'@pid': '299/4724',
                                                               'text': 'Milena '
                                                                       'D. '
                                                                       'Ilic'},
                                                              {'@pid': '299/4848',
                                                               'text': 'Seyed '
                                                                       'Sina '
                                                                       'Naghibi '
                                                                       'Irvani'},
                                                              {'@pid': '216/5408',
                                                               'text': 'Masao '
                                                                       'Iwagami'},
                                                              {'@pid': '299/5270',
                                                               'text': 'Ihoghosa '
                                                                       'Osamuyi '
                                                                       'Iyamu'},
                                                              {'@pid': '299/4558',
                                                               'text': 'Ravi '
                                                                       'Prakash '
                                                                       'Jha'},
                                                              {'@pid': '299/5261',
                                                               'text': 'Rizwan '
                                                                       'Kalani'},
                                                              {'@pid': '225/8983',
                                                               'text': 'André '
                                                                       'Karch'},
                                                              {'@pid': '299/4779',
                                                               'text': 'Ayele '
                                                                       'Semachew '
                                                                       'Kasa'},
                                                              {'@pid': '234/3254',
                                                               'text': 'Yousef '
                                                                       'S. '
                                                                       'Khader'},
                                                              {'@pid': '294/1660',
                                                               'text': 'Ejaz '
                                                                       'Ahmad '
                                                                       'Khan'},
                                                              {'@pid': '299/5103',
                                                               'text': 'Mahalaqua '
                                                                       'Nazli '
                                                                       'Khatib'},
                                                              {'@pid': '294/1648',
                                                               'text': 'Yun '
                                                                       'Jin '
                                                                       'Kim'},
                                                              {'@pid': '299/5051',
                                                               'text': 'Sezer '
                                                                       'Kisa'},
                                                              {'@pid': '229/5689',
                                                               'text': 'Adnan '
                                                                       'Kisa'},
                                                              {'@pid': '204/8046',
                                                               'text': 'Mika '
                                                                       'Kivimäki'},
                                                              {'@pid': '294/1057',
                                                               'text': 'Ai '
                                                                       'Koyanagi'},
                                                              {'@pid': '299/4907',
                                                               'text': 'Manasi '
                                                                       'Kumar'},
                                                              {'@pid': '299/4903',
                                                               'text': 'Iván '
                                                                       'Landires'},
                                                              {'@pid': '189/2135',
                                                               'text': 'Savita '
                                                                       'Lasrado'},
                                                              {'@pid': '49/1389',
                                                               'text': 'Bingyu '
                                                                       'Li'},
                                                              {'@pid': '270/4118',
                                                               'text': 'Stephen '
                                                                       'S. '
                                                                       'Lim'},
                                                              {'@pid': '96/600',
                                                               'text': 'Xuefeng '
                                                                       'Liu'},
                                                              {'@pid': '299/4945',
                                                               'text': 'Shilpashree '
                                                                       'Madhava '
                                                                       'Kunjathur'},
                                                              {'@pid': '55/9674',
                                                               'text': 'Azeem '
                                                                       'Majeed'},
                                                              {'@pid': '265/5119',
                                                               'text': 'Preeti '
                                                                       'Malik'},
                                                              {'@pid': '299/5213',
                                                               'text': 'Man '
                                                                       'Mohan '
                                                                       'Mehndiratta'},
                                                              {'@pid': '132/9727',
                                                               'text': 'Ritesh '
                                                                       'G. '
                                                                       'Menezes'},
                                                              {'@pid': '299/5439',
                                                               'text': 'Yousef '
                                                                       'Mohammad'},
                                                              {'@pid': '299/4503',
                                                               'text': 'Salahuddin '
                                                                       'Mohammed'},
                                                              {'@pid': '205/8333',
                                                               'text': 'Ali H. '
                                                                       'Mokdad'},
                                                              {'@pid': '123/7448',
                                                               'text': 'Mohammad '
                                                                       'Ali '
                                                                       'Moni'},
                                                              {'@pid': '299/4636',
                                                               'text': 'Gabriele '
                                                                       'Nagel'},
                                                              {'@pid': '165/8371',
                                                               'text': 'Muhammad '
                                                                       'Naveed'},
                                                              {'@pid': '299/4960',
                                                               'text': 'Vinod '
                                                                       'C. '
                                                                       'Nayak'},
                                                              {'@pid': '299/4740',
                                                               'text': 'Cuong '
                                                                       'Tat '
                                                                       'Nguyen'},
                                                              {'@pid': '199/1666',
                                                               'text': 'Thi '
                                                                       'Lan '
                                                                       'Huong '
                                                                       'Nguyen'},
                                                              {'@pid': '299/5396',
                                                               'text': 'Virginia '
                                                                       'Nunez-Samudio'},
                                                              {'@pid': '294/1415',
                                                               'text': 'Andrew '
                                                                       'T. '
                                                                       'Olagunju'},
                                                              {'@pid': '294/0921',
                                                               'text': 'Samuel '
                                                                       'M. '
                                                                       'Ostroff'},
                                                              {'@pid': '299/4650',
                                                               'text': 'Nikita '
                                                                       'Otstavnov'},
                                                              {'@pid': '267/5148',
                                                               'text': 'Mayowa '
                                                                       'Owolabi'},
                                                              {'@pid': '294/1380',
                                                               'text': 'Fatemeh '
                                                                       'Pashazadeh '
                                                                       'Kan'},
                                                              {'@pid': '299/4612',
                                                               'text': 'Urvish '
                                                                       'K. '
                                                                       'Patel'},
                                                              {'@pid': '265/4450',
                                                               'text': 'Michael '
                                                                       'R. '
                                                                       'Phillips'},
                                                              {'@pid': '299/4599',
                                                               'text': 'Michael '
                                                                       'A. '
                                                                       'Piradov'},
                                                              {'@pid': '299/5365',
                                                               'text': 'Constance '
                                                                       'Dimity '
                                                                       'Pond'},
                                                              {'@pid': '299/5235',
                                                               'text': 'Faheem '
                                                                       'Hyder '
                                                                       'Pottoo'},
                                                              {'@pid': '299/5333',
                                                               'text': 'Sergio '
                                                                       'I. '
                                                                       'Prada'},
                                                              {'@pid': '299/5149',
                                                               'text': 'Amir '
                                                                       'Radfar'},
                                                              {'@pid': '201/8799',
                                                               'text': 'Fakher '
                                                                       'Rahim'},
                                                              {'@pid': '10/3162',
                                                               'text': 'Juwel '
                                                                       'Rana'},
                                                              {'@pid': '299/4617',
                                                               'text': 'Vahid '
                                                                       'Rashedi'},
                                                              {'@pid': '123/1144',
                                                               'text': 'Salman '
                                                                       'Rawaf'},
                                                              {'@pid': '294/0970',
                                                               'text': 'David '
                                                                       'Laith '
                                                                       'Rawaf'},
                                                              {'@pid': '299/5208',
                                                               'text': 'Nickolas '
                                                                       'Reinig'},
                                                              {'@pid': '294/1444',
                                                               'text': 'Andre '
                                                                       'M. N. '
                                                                       'Renzaho'},
                                                              {'@pid': '30/6036',
                                                               'text': 'Nima '
                                                                       'Rezaei'},
                                                              {'@pid': '285/6606',
                                                               'text': 'Aziz '
                                                                       'Rezapour'},
                                                              {'@pid': '299/4532',
                                                               'text': 'Michele '
                                                                       'Romoli'},
                                                              {'@pid': '225/1949',
                                                               'text': 'Gholamreza '
                                                                       'Roshandel'},
                                                              {'@pid': '98/9077',
                                                               'text': 'Perminder '
                                                                       'S. '
                                                                       'Sachdev'},
                                                              {'@pid': '299/5306',
                                                               'text': 'Amirhossein '
                                                                       'Sahebkar'},
                                                              {'@pid': '151/9855',
                                                               'text': 'Mohammad '
                                                                       'Ali '
                                                                       'Sahraian'},
                                                              {'@pid': '299/5092',
                                                               'text': 'Mehrnoosh '
                                                                       'Samaei'},
                                                              {'@pid': '299/4819',
                                                               'text': 'Mete '
                                                                       'Saylan'},
                                                              {'@pid': '18/323',
                                                               'text': 'Feng '
                                                                       'Sha'},
                                                              {'@pid': '294/1116',
                                                               'text': 'Masood '
                                                                       'Ali '
                                                                       'Shaikh'},
                                                              {'@pid': '294/1562',
                                                               'text': 'Kenji '
                                                                       'Shibuya'},
                                                              {'@pid': '89/4875',
                                                               'text': 'Mika '
                                                                       'Shigematsu'},
                                                              {'@pid': '299/5262',
                                                               'text': 'Jae Il '
                                                                       'Shin'},
                                                              {'@pid': '299/5065',
                                                               'text': 'Rahman '
                                                                       'Shiri'},
                                                              {'@pid': '299/5449',
                                                               'text': 'Diego '
                                                                       'Augusto '
                                                                       'Santos '
                                                                       'Silva'},
                                                              {'@pid': '294/0861',
                                                               'text': 'Jasvinder '
                                                                       'A. '
                                                                       'Singh'},
                                                              {'@pid': '299/4836',
                                                               'text': 'Deepika '
                                                                       'Singhal'},
                                                              {'@pid': '294/1027',
                                                               'text': 'Valentin '
                                                                       'Yurievich '
                                                                       'Skryabin'},
                                                              {'@pid': '294/1134',
                                                               'text': 'Anna '
                                                                       'Aleksandrovna '
                                                                       'Skryabina'},
                                                              {'@pid': '299/4997',
                                                               'text': 'Amin '
                                                                       'Soheili'},
                                                              {'@pid': '299/4567',
                                                               'text': 'Houman '
                                                                       'Sotoudeh'},
                                                              {'@pid': '294/1156',
                                                               'text': 'Emma '
                                                                       'Elizabeth '
                                                                       'Spurlock'},
                                                              {'@pid': '299/4590',
                                                               'text': 'Cassandra '
                                                                       'E. I. '
                                                                       'Szoeke'},
                                                              {'@pid': '299/4893',
                                                               'text': 'Rafael '
                                                                       'Tabarés-Seisdedos'},
                                                              {'@pid': '299/5138',
                                                               'text': 'Biruk '
                                                                       'Wogayehu '
                                                                       'Taddele'},
                                                              {'@pid': '130/5530',
                                                               'text': 'Marcos '
                                                                       'Roberto '
                                                                       'Tovani-Palone'},
                                                              {'@pid': '294/1627',
                                                               'text': 'Gebiyaw '
                                                                       'Wudie '
                                                                       'Tsegaye'},
                                                              {'@pid': '299/4622',
                                                               'text': 'Marco '
                                                                       'Vacante'},
                                                              {'@pid': '15/11224',
                                                               'text': 'Narayanaswamy '
                                                                       'Venketasubramanian'},
                                                              {'@pid': '299/4710',
                                                               'text': 'Simone '
                                                                       'Vidale'},
                                                              {'@pid': '299/5184',
                                                               'text': 'Vasily '
                                                                       'Vlassov'},
                                                              {'@pid': '294/1610',
                                                               'text': 'Giang '
                                                                       'Thu '
                                                                       'Vu'},
                                                              {'@pid': '299/4689',
                                                               'text': 'Yuan-Pang '
                                                                       'Wang'},
                                                              {'@pid': '141/4258',
                                                               'text': 'Jordan '
                                                                       'Weiss'},
                                                              {'@pid': '299/4738',
                                                               'text': 'Abrha '
                                                                       'Hailay '
                                                                       'Weldemariam'},
                                                              {'@pid': '299/4842',
                                                               'text': 'Ronny '
                                                                       'Westerman'},
                                                              {'@pid': '299/5028',
                                                               'text': 'Anders '
                                                                       'Wimo'},
                                                              {'@pid': '299/5203',
                                                               'text': 'Andrea '
                                                                       'Sylvia '
                                                                       'Winkler'},
                                                              {'@pid': '294/5151',
                                                               'text': 'Chenkai '
                                                                       'Wu'},
                                                              {'@pid': '179/2026',
                                                               'text': 'Ali '
                                                                       'Yadollahpour'},
                                                              {'@pid': '299/4773',
                                                               'text': 'Metin '
                                                                       'Yesiltepe'},
                                                              {'@pid': '294/1437',
                                                               'text': 'Naohiro '
                                                                       'Yonemoto'},
                                                              {'@pid': '299/4698',
                                                               'text': 'Chuanhua '
                                                                       'Yu'},
                                                              {'@pid': '299/5364',
                                                               'text': 'Mikhail '
                                                                       'Sergeevich '
                                                                       'Zastrozhin'},
                                                              {'@pid': '299/5124',
                                                               'text': 'Anasthasia '
                                                                       'Zastrozhina'},
                                                              {'@pid': '98/4146',
                                                               'text': 'Zhi-Jiang '
                                                                       'Zhang'},
                                                              {'@pid': '270/4099',
                                                               'text': 'Christopher '
                                                                       'J. L. '
                                                                       'Murray'},
                                                              {'@pid': '205/8414',
                                                               'text': 'Theo '
                                                                       'Vos'}]},
                                       'doi': '10.1186/S12911-021-01590-Y',
                                       'ee': 'https://doi.org/10.1186/s12911-021-01590-y',
                                       'key': 'journals/midm/NicholsAAAAAAAA21',
                                       'number': '1',
                                       'pages': '241',
                                       'title': 'Use of multidimensional item '
                                                'response theory methods for '
                                                'dementia prevalence '
                                                'prediction - an example using '
                                                'the Health and Retirement '
                                                'Survey and the Aging, '
                                                'Demographics, and Memory '
                                                'Study.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/midm/NicholsAAAAAAAA21',
                                       'venue': 'BMC Medical Informatics '
                                                'Decis. Mak.',
                                       'volume': '21',
                                       'year': '2021'},
                              'url': 'URL#67335'},
                             {'@id': '97758',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '216/3488',
                                                               'text': 'Huy '
                                                                       'Thong '
                                                                       'Nguyen'},
                                                              {'@pid': '194/4389',
                                                               'text': 'Andrew '
                                                                       'F. '
                                                                       'Peterson'}]},
                                       'doi': '10.1109/TCSI.2021.3068303',
                                       'ee': 'https://doi.org/10.1109/TCSI.2021.3068303',
                                       'key': 'journals/tcasI/NguyenP21',
                                       'number': '6',
                                       'pages': '2329-2340',
                                       'title': 'Machine Learning for '
                                                'Automating the Design of '
                                                'Millimeter-Wave Baluns.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/tcasI/NguyenP21',
                                       'venue': 'IEEE Trans. Circuits Syst. I '
                                                'Regul. Pap.',
                                       'volume': '68',
                                       'year': '2021'},
                              'url': 'URL#97758'},
                             {'@id': '128901',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '270/6632',
                                                               'text': 'Srishti '
                                                                       'Palani'},
                                                              {'@pid': '148/4853',
                                                               'text': 'Zijian '
                                                                       'Ding'},
                                                              {'@pid': '241/5091',
                                                               'text': 'Austin '
                                                                       'Nguyen'},
                                                              {'@pid': '292/5781',
                                                               'text': 'Andrew '
                                                                       'Chuang'},
                                                              {'@pid': '165/9166',
                                                               'text': 'Stephen '
                                                                       'MacNeil'},
                                                              {'@pid': '45/5386',
                                                               'text': 'Steven '
                                                                       'P. '
                                                                       'Dow'}]},
                                       'doi': '10.1145/3411764.3445618',
                                       'ee': 'https://doi.org/10.1145/3411764.3445618',
                                       'key': 'conf/chi/PalaniDNCMD21',
                                       'pages': '726:1-726:14',
                                       'title': 'CoNotate - Suggesting Queries '
                                                'Based on Notes Promotes '
                                                'Knowledge Discovery.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/chi/PalaniDNCMD21',
                                       'venue': 'CHI',
                                       'year': '2021'},
                              'url': 'URL#128901'},
                             {'@id': '129689',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '76/5973',
                                                               'text': 'Ling '
                                                                       'Zhang'},
                                                              {'@pid': '254/6674',
                                                               'text': 'Matthew '
                                                                       'Butrovich'},
                                                              {'@pid': '92/9835',
                                                               'text': 'Tianyu '
                                                                       'Li'},
                                                              {'@pid': '58/4127',
                                                               'text': 'Andrew '
                                                                       'Pavlo'},
                                                              {'@pid': '288/0493',
                                                               'text': 'Yash '
                                                                       'Nannapaneni'},
                                                              {'@pid': '287/8972',
                                                               'text': 'John '
                                                                       'Rollinson'},
                                                              {'@pid': '13/8730',
                                                               'text': 'Huanchen '
                                                                       'Zhang'},
                                                              {'@pid': '288/0351',
                                                               'text': 'Ambarish '
                                                                       'Balakumar'},
                                                              {'@pid': '287/9684',
                                                               'text': 'Daniel '
                                                                       'Biales'},
                                                              {'@pid': '242/2063',
                                                               'text': 'Ziqi '
                                                                       'Dong'},
                                                              {'@pid': '288/0373',
                                                               'text': 'Emmanuel '
                                                                       'J. '
                                                                       'Eppinger'},
                                                              {'@pid': '288/0045',
                                                               'text': 'Jordi '
                                                                       'E. '
                                                                       'Gonzalez'},
                                                              {'@pid': '251/5311',
                                                               'text': 'Wan '
                                                                       'Shen '
                                                                       'Lim'},
                                                              {'@pid': '163/3153',
                                                               'text': 'Jianqiao '
                                                                       'Liu'},
                                                              {'@pid': '74/3608-6',
                                                               'text': 'Lin Ma '
                                                                       '0006'},
                                                              {'@pid': '145/6329',
                                                               'text': 'Prashanth '
                                                                       'Menon'},
                                                              {'@pid': '287/9401',
                                                               'text': 'Soumil '
                                                                       'Mukherjee'},
                                                              {'@pid': '287/9601',
                                                               'text': 'Tanuj '
                                                                       'Nayak'},
                                                              {'@pid': '264/0039',
                                                               'text': 'Amadou '
                                                                       'Ngom'},
                                                              {'@pid': '230/8646',
                                                               'text': 'Dong '
                                                                       'Niu'},
                                                              {'@pid': '287/9665',
                                                               'text': 'Deepayan '
                                                                       'Patra'},
                                                              {'@pid': '288/0617',
                                                               'text': 'Poojita '
                                                                       'Raj'},
                                                              {'@pid': '175/6757',
                                                               'text': 'Stephanie '
                                                                       'Wang'},
                                                              {'@pid': '287/9761',
                                                               'text': 'Wuwen '
                                                                       'Wang'},
                                                              {'@pid': '40/3778',
                                                               'text': 'Yao '
                                                                       'Yu'},
                                                              {'@pid': '165/0511',
                                                               'text': 'William '
                                                                       'Zhang'}]},
                                       'ee': 'http://cidrdb.org/cidr2021/papers/cidr2021_paper06.pdf',
                                       'key': 'conf/cidr/ZhangBLPNRZBBDE21',
                                       'title': 'Everything is a Transaction - '
                                                'Unifying Logical Concurrency '
                                                'Control and Physical Data '
                                                'Structure Maintenance in '
                                                'Database Management Systems.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/cidr/ZhangBLPNRZBBDE21',
                                       'venue': 'CIDR',
                                       'year': '2021'},
                              'url': 'URL#129689'},
                             {'@id': '133254',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '264/0039',
                                                               'text': 'Amadou '
                                                                       'Ngom'},
                                                              {'@pid': '145/6329',
                                                               'text': 'Prashanth '
                                                                       'Menon'},
                                                              {'@pid': '254/6674',
                                                               'text': 'Matthew '
                                                                       'Butrovich'},
                                                              {'@pid': '74/3608-6',
                                                               'text': 'Lin Ma '
                                                                       '0006'},
                                                              {'@pid': '251/5311',
                                                               'text': 'Wan '
                                                                       'Shen '
                                                                       'Lim'},
                                                              {'@pid': '65/4120',
                                                               'text': 'Todd '
                                                                       'C. '
                                                                       'Mowry'},
                                                              {'@pid': '58/4127',
                                                               'text': 'Andrew '
                                                                       'Pavlo'}]},
                                       'doi': '10.1145/3465998.3466009',
                                       'ee': 'https://doi.org/10.1145/3465998.3466009',
                                       'key': 'conf/damon/NgomMB0LMP21',
                                       'pages': '6:1-6:7',
                                       'title': 'Filter Representation in '
                                                'Vectorized Query Execution.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/damon/NgomMB0LMP21',
                                       'venue': 'DaMoN',
                                       'year': '2021'},
                              'url': 'URL#133254'},
                             {'@id': '137672',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '60/5993',
                                                               'text': 'Dirk '
                                                                       'Koch'},
                                                              {'@pid': '286/1927',
                                                               'text': 'Nguyen '
                                                                       'Dao'},
                                                              {'@pid': '286/1943',
                                                               'text': 'Bea '
                                                                       'Healy'},
                                                              {'@pid': '42/6466',
                                                               'text': 'Jing '
                                                                       'Yu'},
                                                              {'@pid': '65/11052',
                                                               'text': 'Andrew '
                                                                       'Attwood'}]},
                                       'doi': '10.1145/3431920.3439302',
                                       'ee': 'https://doi.org/10.1145/3431920.3439302',
                                       'key': 'conf/fpga/KochDHYA21',
                                       'pages': '45-56',
                                       'title': 'FABulous - An Embedded FPGA '
                                                'Framework.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/fpga/KochDHYA21',
                                       'venue': 'FPGA',
                                       'year': '2021'},
                              'url': 'URL#137672'},
                             {'@id': '141564',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '253/1244',
                                                               'text': 'Hai '
                                                                       'Duc '
                                                                       'Nguyen'},
                                                              {'@pid': '56/6850',
                                                               'text': 'Zhifei '
                                                                       'Yang'},
                                                              {'@pid': 'c/AAChien',
                                                               'text': 'Andrew '
                                                                       'A. '
                                                                       'Chien'}]},
                                       'doi': '10.1145/3452413.3464786',
                                       'ee': 'https://doi.org/10.1145/3452413.3464786',
                                       'key': 'conf/hpdc/NguyenYC21',
                                       'pages': '25-32',
                                       'title': 'Motivating High Performance '
                                                'Serverless Workloads.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/hpdc/NguyenYC21',
                                       'venue': 'HiPS@HPDC',
                                       'year': '2021'},
                              'url': 'URL#141564'},
                             {'@id': '141792',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '289/4308',
                                                               'text': 'Binh '
                                                                       'Vinh '
                                                                       'Duc '
                                                                       'Nguyen'},
                                                              {'@pid': '02/4044',
                                                               'text': 'Adalberto '
                                                                       'L. '
                                                                       'Simeone'},
                                                              {'@pid': '89/766',
                                                               'text': 'Andrew '
                                                                       'Vande '
                                                                       'Moere'}]},
                                       'doi': '10.1145/3434073.3444643',
                                       'ee': 'https://doi.org/10.1145/3434073.3444643',
                                       'key': 'conf/hri/NguyenSM21',
                                       'pages': '252-261',
                                       'title': 'Exploring an Architectural '
                                                'Framework for Human-Building '
                                                'Interaction via a '
                                                'Semi-Immersive Cross-Reality '
                                                'Methodology.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/hri/NguyenSM21',
                                       'venue': 'HRI',
                                       'year': '2021'},
                              'url': 'URL#141792'},
                             {'@id': '146628',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '292/6216',
                                                               'text': 'Nguyen '
                                                                       'Dinh '
                                                                       'Thang'},
                                                              {'@pid': '22/1305',
                                                               'text': 'Giles '
                                                                       'Oatley'},
                                                              {'@pid': '09/1062',
                                                               'text': 'Andrew '
                                                                       'Stranieri'},
                                                              {'@pid': '164/3485',
                                                               'text': 'Darren '
                                                                       'Walker'}]},
                                       'doi': '10.1109/ICCAE51876.2021.9426123',
                                       'ee': 'https://doi.org/10.1109/ICCAE51876.2021.9426123',
                                       'key': 'conf/iccae/ThangOSW21',
                                       'pages': '64-67',
                                       'title': 'Non-invasive Smartphone Use '
                                                'Monitoring to Assess '
                                                'Cognitive Impairment.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/iccae/ThangOSW21',
                                       'venue': 'ICCAE',
                                       'year': '2021'},
                              'url': 'URL#146628'},
                             {'@id': '156461',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '41/2483',
                                                               'text': 'Bao '
                                                                       'Nguyen'},
                                                              {'@pid': '48/726',
                                                               'text': 'Adam '
                                                                       'Feldman'},
                                                              {'@pid': '275/8043',
                                                               'text': 'Sarath '
                                                                       'Bethapudi'},
                                                              {'@pid': '80/390',
                                                               'text': 'Andrew '
                                                                       'Jennings'},
                                                              {'@pid': '28/11416',
                                                               'text': 'Chris '
                                                                       'G. '
                                                                       'Willcocks'}]},
                                       'doi': '10.1109/ISBI48211.2021.9434115',
                                       'ee': 'https://doi.org/10.1109/ISBI48211.2021.9434115',
                                       'key': 'conf/isbi/NguyenFBJW21',
                                       'pages': '1127-1131',
                                       'title': 'Unsupervised Region-Based '
                                                'Anomaly Detection In Brain '
                                                'MRI With Adversarial Image '
                                                'Inpainting.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/isbi/NguyenFBJW21',
                                       'venue': 'ISBI',
                                       'year': '2021'},
                              'url': 'URL#156461'},
                             {'@id': '164895',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '265/2018',
                                                               'text': 'Abdallah '
                                                                       'A. I. '
                                                                       'Ali'},
                                                              {'@pid': '178/6303',
                                                               'text': 'T. T. '
                                                                       'Nguyen'},
                                                              {'@pid': '299/7842',
                                                               'text': 'Sonia '
                                                                       'Boscolo'},
                                                              {'@pid': '252/9388',
                                                               'text': 'Shigehiro '
                                                                       'Takasaka'},
                                                              {'@pid': '23/9102',
                                                               'text': 'Ryuichi '
                                                                       'Sugizaki'},
                                                              {'@pid': '96/9920',
                                                               'text': 'Andrew '
                                                                       'D. '
                                                                       'Ellis'}]},
                                       'ee': 'https://ieeexplore.ieee.org/document/9489583',
                                       'key': 'conf/ofc/AliNBTSE21',
                                       'pages': '1-3',
                                       'title': 'Reduced Impact of Frequency '
                                                'Dithering on the Performance '
                                                'of High-Order Modulation '
                                                'Format Phase Conjugation.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/ofc/AliNBTSE21',
                                       'venue': 'OFC',
                                       'year': '2021'},
                              'url': 'URL#164895'},
                             {'@id': '165231',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '257/9103',
                                                               'text': 'Tu '
                                                                       'Thanh '
                                                                       'Nguyen'},
                                                              {'@pid': '298/4538',
                                                               'text': 'S. '
                                                                       'Boscolo'},
                                                              {'@pid': '265/2018',
                                                               'text': 'Abdallah '
                                                                       'A. I. '
                                                                       'Ali'},
                                                              {'@pid': '58/1101',
                                                               'text': 'M. '
                                                                       'Tan'},
                                                              {'@pid': '58/6646',
                                                               'text': 'Stylianos '
                                                                       'Sygletos'},
                                                              {'@pid': '265/2008',
                                                               'text': 'S. '
                                                                       'Takasaka'},
                                                              {'@pid': '23/9102',
                                                               'text': 'Ryuichi '
                                                                       'Sugizaki'},
                                                              {'@pid': '96/9920',
                                                               'text': 'Andrew '
                                                                       'D. '
                                                                       'Ellis'}]},
                                       'ee': 'https://ieeexplore.ieee.org/document/9489676',
                                       'key': 'conf/ofc/NguyenBATSTSE21',
                                       'pages': '1-3',
                                       'title': 'Digital Compensation of '
                                                'Residual Pump Dithering in '
                                                'Optical Phase Conjugation of '
                                                'High-Order QAM.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/ofc/NguyenBATSTSE21',
                                       'venue': 'OFC',
                                       'year': '2021'},
                              'url': 'URL#165231'},
                             {'@id': '165232',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '178/6303',
                                                               'text': 'T. T. '
                                                                       'Nguyen'},
                                                              {'@pid': '299/7842',
                                                               'text': 'Sonia '
                                                                       'Boscolo'},
                                                              {'@pid': '265/2018',
                                                               'text': 'Abdallah '
                                                                       'A. I. '
                                                                       'Ali'},
                                                              {'@pid': '251/6582',
                                                               'text': 'Mingming '
                                                                       'Tan'},
                                                              {'@pid': '82/5445',
                                                               'text': 'Tingting '
                                                                       'Zhang'},
                                                              {'@pid': '252/9388',
                                                               'text': 'Shigehiro '
                                                                       'Takasaka'},
                                                              {'@pid': '23/9102',
                                                               'text': 'Ryuichi '
                                                                       'Sugizaki'},
                                                              {'@pid': '58/6646',
                                                               'text': 'Stylianos '
                                                                       'Sygletos'},
                                                              {'@pid': '96/9920',
                                                               'text': 'Andrew '
                                                                       'D. '
                                                                       'Ellis'}]},
                                       'ee': 'https://ieeexplore.ieee.org/document/9489851',
                                       'key': 'conf/ofc/NguyenBATZTSSE21',
                                       'pages': '1-3',
                                       'title': 'Kernel-Based Learning-Aided '
                                                'Phase Noise Compensation in '
                                                'Dual-Pump Optical Phase '
                                                'Conjugation Coherent System.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/ofc/NguyenBATZTSSE21',
                                       'venue': 'OFC',
                                       'year': '2021'},
                              'url': 'URL#165232'},
                             {'@id': '169629',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '139/9683',
                                                               'text': 'Kevin '
                                                                       'Martin '
                                                                       'Jose'},
                                                              {'@pid': '29/5255',
                                                               'text': 'Thong '
                                                                       'Nguyen'},
                                                              {'@pid': '203/8759',
                                                               'text': 'Sean '
                                                                       'MacAvaney'},
                                                              {'@pid': '05/2762-1',
                                                               'text': 'Jeffrey '
                                                                       'Dalton '
                                                                       '0001'},
                                                              {'@pid': '49/7109',
                                                               'text': 'Andrew '
                                                                       'Yates'}]},
                                       'doi': '10.1145/3404835.3462784',
                                       'ee': 'https://doi.org/10.1145/3404835.3462784',
                                       'key': 'conf/sigir/JoseNM0Y21',
                                       'pages': '2595-2599',
                                       'title': 'DiffIR - Exploring '
                                                'Differences in Ranking '
                                                'Models&apos; Behavior.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/sigir/JoseNM0Y21',
                                       'venue': 'SIGIR',
                                       'year': '2021'},
                              'url': 'URL#169629'},
                             {'@id': '177022',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '116/7143',
                                                               'text': 'Xiao '
                                                                       'Tan'},
                                                              {'@pid': '276/1016',
                                                               'text': 'Andrew '
                                                                       'Su'},
                                                              {'@pid': '154/2638',
                                                               'text': 'Hamideh '
                                                                       'Hajiabadi'},
                                                              {'@pid': '50/2494',
                                                               'text': 'Minh '
                                                                       'Tran'},
                                                              {'@pid': '58/3306',
                                                               'text': 'Quan '
                                                                       'Nguyen'}]},
                                       'doi': '10.1007/978-1-0716-0826-5_10',
                                       'ee': 'https://doi.org/10.1007/978-1-0716-0826-5_10',
                                       'key': 'books/sp/21/TanSHTN21',
                                       'pages': '209-228',
                                       'title': 'Applying Machine Learning for '
                                                'Integration of Multi-Modal '
                                                'Genomics Data and Imaging '
                                                'Data to Quantify '
                                                'Heterogeneity in Tumour '
                                                'Tissues.',
                                       'type': 'Parts in Books or Collections',
                                       'url': 'https://dblp.org/rec/books/sp/21/TanSHTN21',
                                       'venue': 'Artificial Neural Networks, '
                                                '3rd Edition',
                                       'year': '2021'},
                              'url': 'URL#177022'},
                             {'@id': '179807',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '120/7559',
                                                               'text': 'Thang '
                                                                       'Xuan '
                                                                       'Duong'},
                                                              {'@pid': '283/6432',
                                                               'text': 'Vu '
                                                                       'Ngoc '
                                                                       'Khiêm'},
                                                              {'@pid': '132/9854',
                                                               'text': 'Mikhail '
                                                                       'Itskov'},
                                                              {'@pid': '283/6417',
                                                               'text': 'Roger '
                                                                       'Andrew '
                                                                       'Sauer'}]},
                                       'ee': 'https://arxiv.org/abs/2101.03122',
                                       'key': 'journals/corr/abs-2101-03122',
                                       'title': 'A general theory for '
                                                'anisotropic Kirchhoff-Love '
                                                'shells with embedded fibers '
                                                'and in-plane bending.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-2101-03122',
                                       'venue': 'CoRR',
                                       'volume': 'abs/2101.03122',
                                       'year': '2021'},
                              'url': 'URL#179807'},
                             {'@id': '190600',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '284/8065',
                                                               'text': 'Graham '
                                                                       'E. '
                                                                       'Rowlands'},
                                                              {'@pid': '284/8106',
                                                               'text': 'Minh-Hai '
                                                                       'Nguyen'},
                                                              {'@pid': '284/8384',
                                                               'text': 'Guilhem '
                                                                       'J. '
                                                                       'Ribeill'},
                                                              {'@pid': '286/8795',
                                                               'text': 'Andrew '
                                                                       'P. '
                                                                       'Wagner'},
                                                              {'@pid': '284/8068',
                                                               'text': 'Luke '
                                                                       'C. G. '
                                                                       'Govia'},
                                                              {'@pid': '284/8461',
                                                               'text': 'Wendson '
                                                                       'A. S. '
                                                                       'Barbosa'},
                                                              {'@pid': '115/8406',
                                                               'text': 'Daniel '
                                                                       'J. '
                                                                       'Gauthier'},
                                                              {'@pid': '284/8531',
                                                               'text': 'Thomas '
                                                                       'A. '
                                                                       'Ohki'}]},
                                       'ee': 'https://arxiv.org/abs/2103.02522',
                                       'key': 'journals/corr/abs-2103-02522',
                                       'title': 'Reservoir Computing with '
                                                'Superconducting Electronics.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-2103-02522',
                                       'venue': 'CoRR',
                                       'volume': 'abs/2103.02522',
                                       'year': '2021'},
                              'url': 'URL#190600'},
                             {'@id': '191588',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '38/8809',
                                                               'text': 'Ngaire '
                                                                       'Underhill'},
                                                              {'@pid': '123/0880',
                                                               'text': 'Andrew '
                                                                       'J. '
                                                                       'Weinert'}]},
                                       'ee': 'https://arxiv.org/abs/2103.04753',
                                       'key': 'journals/corr/abs-2103-04753',
                                       'title': 'Applicability and Surrogacy '
                                                'of Uncorrelated Airspace '
                                                'Encounter Models at Low '
                                                'Altitudes.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-2103-04753',
                                       'venue': 'CoRR',
                                       'volume': 'abs/2103.04753',
                                       'year': '2021'},
                              'url': 'URL#191588'},
                             {'@id': '207933',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '57/6380',
                                                               'text': 'Andrew '
                                                                       'Bennett'},
                                                              {'@pid': '156/0242',
                                                               'text': 'Dipendra '
                                                                       'Misra'},
                                                              {'@pid': '270/9074',
                                                               'text': 'Nga '
                                                                       'Than'}]},
                                       'ee': 'https://arxiv.org/abs/2105.10165',
                                       'key': 'journals/corr/abs-2105-10165',
                                       'title': 'Have you tried Neural Topic '
                                                'Models? Comparative Analysis '
                                                'of Neural and Non-Neural '
                                                'Topic Models with Application '
                                                'to COVID-19 Twitter Data.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-2105-10165',
                                       'venue': 'CoRR',
                                       'volume': 'abs/2105.10165',
                                       'year': '2021'},
                              'url': 'URL#207933'},
                             {'@id': '245065',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '251/6582',
                                                               'text': 'Mingming '
                                                                       'Tan'},
                                                              {'@pid': '257/9103',
                                                               'text': 'Tu '
                                                                       'Thanh '
                                                                       'Nguyen'},
                                                              {'@pid': '282/0505',
                                                               'text': 'Pawel '
                                                                       'Rosa'},
                                                              {'@pid': '282/1270',
                                                               'text': 'Mohammad '
                                                                       'Ahmad '
                                                                       'Zaki '
                                                                       'Al-Khateeb'},
                                                              {'@pid': '82/5445',
                                                               'text': 'Tingting '
                                                                       'Zhang'},
                                                              {'@pid': '96/9920',
                                                               'text': 'Andrew '
                                                                       'D. '
                                                                       'Ellis'}]},
                                       'doi': '10.1109/ACCESS.2020.3044525',
                                       'ee': 'https://doi.org/10.1109/ACCESS.2020.3044525',
                                       'key': 'journals/access/TanNRAZE20',
                                       'pages': '222766-222773',
                                       'title': 'Enhancing the Signal Power '
                                                'Symmetry for Optical Phase '
                                                'Conjugation Using '
                                                'Erbium-Doped-Fibre-Assisted '
                                                'Raman Amplification.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/access/TanNRAZE20',
                                       'venue': 'IEEE Access',
                                       'volume': '8',
                                       'year': '2020'},
                              'url': 'URL#245065'},
                             {'@id': '251174',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '217/4094',
                                                               'text': 'Trung '
                                                                       'H. '
                                                                       'Nguyen'},
                                                              {'@pid': '142/6114',
                                                               'text': 'Simon '
                                                                       'D. '
                                                                       'Jones'},
                                                              {'@pid': '142/6204',
                                                               'text': 'Mariela '
                                                                       'Soto-Berelov'},
                                                              {'@pid': '86/7547',
                                                               'text': 'Andrew '
                                                                       'Haywood'},
                                                              {'@pid': '217/4047',
                                                               'text': 'Samuel '
                                                                       'Hislop'}]},
                                       'doi': '10.1016/J.JAG.2019.101952',
                                       'ee': 'https://doi.org/10.1016/j.jag.2019.101952',
                                       'key': 'journals/aeog/NguyenJSHH20',
                                       'title': 'Monitoring aboveground forest '
                                                'biomass dynamics over three '
                                                'decades using Landsat '
                                                'time-series and single-date '
                                                'inventory data.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/aeog/NguyenJSHH20',
                                       'venue': 'Int. J. Appl. Earth Obs. '
                                                'Geoinformation',
                                       'volume': '84',
                                       'year': '2020'},
                              'url': 'URL#251174'},
                             {'@id': '258867',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '116/7143',
                                                               'text': 'Xiao '
                                                                       'Tan'},
                                                              {'@pid': '276/1016',
                                                               'text': 'Andrew '
                                                                       'Su'},
                                                              {'@pid': '50/2494',
                                                               'text': 'Minh '
                                                                       'Tran'},
                                                              {'@pid': '58/3306',
                                                               'text': 'Quan '
                                                                       'Nguyen'}]},
                                       'doi': '10.1093/BIOINFORMATICS/BTZ914',
                                       'ee': 'https://doi.org/10.1093/bioinformatics/btz914',
                                       'key': 'journals/bioinformatics/TanSTN20',
                                       'number': '7',
                                       'pages': '2293-2294',
                                       'title': 'SpaCell - integrating tissue '
                                                'morphology and spatial gene '
                                                'expression to predict disease '
                                                'cells.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/bioinformatics/TanSTN20',
                                       'venue': 'Bioinform.',
                                       'volume': '36',
                                       'year': '2020'},
                              'url': 'URL#258867'},
                             {'@id': '307593',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '173/0617',
                                                               'text': 'Andrew '
                                                                       'Lukyamuzi'},
                                                              {'@pid': '44/4913',
                                                               'text': 'John '
                                                                       'Ngubiri'},
                                                              {'@pid': '33/10311',
                                                               'text': 'Washington '
                                                                       'Okori'}]},
                                       'doi': '10.4018/IJSDA.2020100107',
                                       'ee': 'https://doi.org/10.4018/ijsda.2020100107',
                                       'key': 'journals/ijsda/LukyamuziNO20',
                                       'number': '4',
                                       'pages': '129-142',
                                       'title': 'Towards Ensemble Learning for '
                                                'Tracking Food Insecurity From '
                                                'News Articles.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/ijsda/LukyamuziNO20',
                                       'venue': 'Int. J. Syst. Dyn. Appl.',
                                       'volume': '9',
                                       'year': '2020'},
                              'url': 'URL#307593'},
                             {'@id': '312928',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '21/2107',
                                                               'text': 'Jonathan '
                                                                       'Tuke'},
                                                              {'@pid': '128/5665',
                                                               'text': 'Andrew '
                                                                       'Nguyen'},
                                                              {'@pid': '91/8376',
                                                               'text': 'Mehwish '
                                                                       'Nasim'},
                                                              {'@pid': '13/2439',
                                                               'text': 'Drew '
                                                                       'Mellor'},
                                                              {'@pid': '157/2404',
                                                               'text': 'Asanga '
                                                                       'Wickramasinghe'},
                                                              {'@pid': '55/1744',
                                                               'text': 'Nigel '
                                                                       'G. '
                                                                       'Bean'},
                                                              {'@pid': '126/5006',
                                                               'text': 'Lewis '
                                                                       'Mitchell'}]},
                                       'doi': '10.1016/J.IPM.2019.102147',
                                       'ee': 'https://doi.org/10.1016/j.ipm.2019.102147',
                                       'key': 'journals/ipm/TukeNNMWBM20',
                                       'number': '2',
                                       'pages': '102147',
                                       'title': 'Pachinko Prediction - A '
                                                'Bayesian method for event '
                                                'prediction from social media '
                                                'data.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/ipm/TukeNNMWBM20',
                                       'venue': 'Inf. Process. Manag.',
                                       'volume': '57',
                                       'year': '2020'},
                              'url': 'URL#312928'},
                             {'@id': '330023',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '98/2634',
                                                               'text': 'Trung '
                                                                       'Nguyen'},
                                                              {'@pid': '87/6413',
                                                               'text': 'George '
                                                                       'K. I. '
                                                                       'Mann'},
                                                              {'@pid': '88/6967',
                                                               'text': 'Andrew '
                                                                       'Vardy'},
                                                              {'@pid': '05/6361',
                                                               'text': 'Raymond '
                                                                       'G. '
                                                                       'Gosine'}]},
                                       'doi': '10.1155/2020/7362952',
                                       'ee': 'https://doi.org/10.1155/2020/7362952',
                                       'key': 'journals/jr/NguyenMVG20',
                                       'pages': '7362952:1-7362952:14',
                                       'title': 'CKF-Based Visual Inertial '
                                                'Odometry for Long-Term '
                                                'Trajectory Operations.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/jr/NguyenMVG20',
                                       'venue': 'J. Robotics',
                                       'volume': '2020',
                                       'year': '2020'},
                              'url': 'URL#330023'},
                             {'@id': '350424',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '92/9835',
                                                               'text': 'Tianyu '
                                                                       'Li'},
                                                              {'@pid': '254/6674',
                                                               'text': 'Matthew '
                                                                       'Butrovich'},
                                                              {'@pid': '264/0039',
                                                               'text': 'Amadou '
                                                                       'Ngom'},
                                                              {'@pid': '251/5311',
                                                               'text': 'Wan '
                                                                       'Shen '
                                                                       'Lim'},
                                                              {'@pid': '264/0055',
                                                               'text': 'Wes '
                                                                       'McKinney'},
                                                              {'@pid': '58/4127',
                                                               'text': 'Andrew '
                                                                       'Pavlo'}]},
                                       'doi': '10.14778/3436905.3436913',
                                       'ee': 'http://www.vldb.org/pvldb/vol14/p534-li.pdf',
                                       'key': 'journals/pvldb/LiBNLMP20',
                                       'number': '4',
                                       'pages': '534-546',
                                       'title': 'Mainlining Databases - '
                                                'Supporting Fast Transactional '
                                                'Workloads on Universal '
                                                'Columnar Data File Formats.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/pvldb/LiBNLMP20',
                                       'venue': 'Proc. VLDB Endow.',
                                       'volume': '14',
                                       'year': '2020'},
                              'url': 'URL#350424'},
                             {'@id': '350458',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '145/6329',
                                                               'text': 'Prashanth '
                                                                       'Menon'},
                                                              {'@pid': '264/0039',
                                                               'text': 'Amadou '
                                                                       'Ngom'},
                                                              {'@pid': '65/4120',
                                                               'text': 'Todd '
                                                                       'C. '
                                                                       'Mowry'},
                                                              {'@pid': '58/4127',
                                                               'text': 'Andrew '
                                                                       'Pavlo'},
                                                              {'@pid': '74/3608-6',
                                                               'text': 'Lin Ma '
                                                                       '0006'}]},
                                       'doi': '10.14778/3425879.3425882',
                                       'ee': 'http://www.vldb.org/pvldb/vol14/p101-menon.pdf',
                                       'key': 'journals/pvldb/MenonNMP020',
                                       'number': '2',
                                       'pages': '101-113',
                                       'title': 'Permutable Compiled Queries - '
                                                'Dynamically Adapting Compiled '
                                                'Queries without Recompiling.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/pvldb/MenonNMP020',
                                       'venue': 'Proc. VLDB Endow.',
                                       'volume': '14',
                                       'year': '2020'},
                              'url': 'URL#350458'},
                             {'@id': '355691',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '217/4094',
                                                               'text': 'Trung '
                                                                       'H. '
                                                                       'Nguyen'},
                                                              {'@pid': '142/6114',
                                                               'text': 'Simon '
                                                                       'D. '
                                                                       'Jones'},
                                                              {'@pid': '142/6204',
                                                               'text': 'Mariela '
                                                                       'Soto-Berelov'},
                                                              {'@pid': '86/7547',
                                                               'text': 'Andrew '
                                                                       'Haywood'},
                                                              {'@pid': '217/4047',
                                                               'text': 'Samuel '
                                                                       'Hislop'}]},
                                       'doi': '10.3390/RS12010098',
                                       'ee': 'https://doi.org/10.3390/rs12010098',
                                       'key': 'journals/remotesensing/NguyenJSHH20',
                                       'number': '1',
                                       'pages': '98',
                                       'title': 'Landsat Time-Series for '
                                                'Estimating Forest Aboveground '
                                                'Biomass and Its Dynamics '
                                                'across Space and Time - A '
                                                'Review.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/remotesensing/NguyenJSHH20',
                                       'venue': 'Remote. Sens.',
                                       'volume': '12',
                                       'year': '2020'},
                              'url': 'URL#355691'},
                             {'@id': '416029',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '289/3694',
                                                               'text': 'Johnathan '
                                                                       'A. '
                                                                       'Edwards'},
                                                              {'@pid': '289/4548',
                                                               'text': 'Andrew '
                                                                       'Post'},
                                                              {'@pid': '289/3783',
                                                               'text': 'Jeselyn '
                                                                       'Rhodes'},
                                                              {'@pid': '289/4181',
                                                               'text': 'Minh '
                                                                       'Ly T. '
                                                                       'Nguyen'},
                                                              {'@pid': '289/3868',
                                                               'text': 'Julia '
                                                                       'W. '
                                                                       'Gallini'},
                                                              {'@pid': '91/11007',
                                                               'text': 'Vincent '
                                                                       'C. '
                                                                       'Marconi'}]},
                                       'ee': 'https://knowledge.amia.org/72332-amia-1.4602255/t005-1.4604904/t005-1.4604905/3409438-1.4605641/3417145-1.4605638',
                                       'key': 'conf/amia/EdwardsPRNGM20',
                                       'title': 'Atlanta HIV Disease Registry '
                                                '- The Intersection of Private '
                                                'and Public Healthcare for '
                                                'Translational Science.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/amia/EdwardsPRNGM20',
                                       'venue': 'AMIA',
                                       'year': '2020'},
                              'url': 'URL#416029'},
                             {'@id': '445477',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '232/5457',
                                                               'text': 'Thanh '
                                                                       'H. '
                                                                       'Nguyen'},
                                                              {'@pid': '167/2523',
                                                               'text': 'Andrew '
                                                                       'Butler'},
                                                              {'@pid': '04/1895',
                                                               'text': 'Haifeng '
                                                                       'Xu'}]},
                                       'doi': '10.3233/FAIA200092',
                                       'ee': 'https://doi.org/10.3233/FAIA200092',
                                       'key': 'conf/ecai/NguyenBX20',
                                       'pages': '187-194',
                                       'title': 'Tackling Imitative Attacker '
                                                'Deception in Repeated '
                                                'Bayesian Stackelberg Security '
                                                'Games.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/ecai/NguyenBX20',
                                       'venue': 'ECAI',
                                       'year': '2020'},
                              'url': 'URL#445477'},
                             {'@id': '450623',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '183/5428',
                                                               'text': 'Thang '
                                                                       'Ngo'},
                                                              {'@pid': '165/2223',
                                                               'text': 'Benjamin '
                                                                       'T. '
                                                                       'Champion'},
                                                              {'@pid': '04/8202',
                                                               'text': 'Matthew '
                                                                       'A. '
                                                                       'Joordens'},
                                                              {'@pid': '25/5457',
                                                               'text': 'Andrew '
                                                                       'Price'},
                                                              {'@pid': '37/4738',
                                                               'text': 'David '
                                                                       'Morton'},
                                                              {'@pid': '04/116',
                                                               'text': 'Pubudu '
                                                                       'N. '
                                                                       'Pathirana'}]},
                                       'doi': '10.1109/EMBC44109.2020.9176347',
                                       'ee': 'https://doi.org/10.1109/EMBC44109.2020.9176347',
                                       'key': 'conf/embc/NgoCJPMP20',
                                       'pages': '4616-4619',
                                       'title': 'Recurrence Quantification '
                                                'Analysis for Human Activity '
                                                'Recognition.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/embc/NgoCJPMP20',
                                       'venue': 'EMBC',
                                       'year': '2020'},
                              'url': 'URL#450623'},
                             {'@id': '465204',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '263/2830',
                                                               'text': 'Lucy '
                                                                       'Bryant'},
                                                              {'@pid': '196/2231',
                                                               'text': 'Bronwyn '
                                                                       'Hemsley'},
                                                              {'@pid': '198/1804',
                                                               'text': 'Benjamin '
                                                                       'Bailey'},
                                                              {'@pid': '147/4431',
                                                               'text': 'Andrew '
                                                                       'Bluff'},
                                                              {'@pid': '30/8614',
                                                               'text': 'Vincent '
                                                                       'Nguyen'},
                                                              {'@pid': '263/2991',
                                                               'text': 'Peter '
                                                                       'Stubbs'},
                                                              {'@pid': '263/3009',
                                                               'text': 'Diana '
                                                                       'Barnett'},
                                                              {'@pid': '263/3292',
                                                               'text': 'Chris '
                                                                       'Jacobs'},
                                                              {'@pid': '195/6815',
                                                               'text': 'Cherie '
                                                                       'Lucas'},
                                                              {'@pid': '204/2638',
                                                               'text': 'Emma '
                                                                       'Power'}]},
                                       'ee': 'http://hdl.handle.net/10125/64179',
                                       'key': 'conf/hicss/BryantHBBNSBJLP20',
                                       'pages': '1-10',
                                       'title': 'Opportunities for the '
                                                'Implementation of Immersive '
                                                'Virtual Reality in '
                                                'Rehabilitation.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/hicss/BryantHBBNSBJLP20',
                                       'venue': 'HICSS',
                                       'year': '2020'},
                              'url': 'URL#465204'},
                             {'@id': '466720',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '123/0880',
                                                               'text': 'Andrew '
                                                                       'J. '
                                                                       'Weinert'},
                                                              {'@pid': '38/8809',
                                                               'text': 'Ngaire '
                                                                       'Underhill'},
                                                              {'@pid': '151/7499',
                                                               'text': 'Bilal '
                                                                       'Gill'},
                                                              {'@pid': '271/7894',
                                                               'text': 'Ashley '
                                                                       'Wicks'}]},
                                       'doi': '10.1109/HPEC43674.2020.9286229',
                                       'ee': 'https://doi.org/10.1109/HPEC43674.2020.9286229',
                                       'key': 'conf/hpec/WeinertUGW20',
                                       'pages': '1-6',
                                       'title': 'Processing of Crowdsourced '
                                                'Observations of Aircraft in a '
                                                'High Performance Computing '
                                                'Environment.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/hpec/WeinertUGW20',
                                       'venue': 'HPEC',
                                       'year': '2020'},
                              'url': 'URL#466720'},
                             {'@id': '469363',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '243/5729',
                                                               'text': 'Naor '
                                                                       'Alaluf'},
                                                              {'@pid': '69/1732',
                                                               'text': 'Alina '
                                                                       'Ene'},
                                                              {'@pid': '41/771',
                                                               'text': 'Moran '
                                                                       'Feldman'},
                                                              {'@pid': '62/3796',
                                                               'text': 'Huy L. '
                                                                       'Nguyen'},
                                                              {'@pid': '255/9377',
                                                               'text': 'Andrew '
                                                                       'Suh'}]},
                                       'doi': '10.4230/LIPICS.ICALP.2020.6',
                                       'ee': 'https://doi.org/10.4230/LIPIcs.ICALP.2020.6',
                                       'key': 'conf/icalp/AlalufEFNS20',
                                       'pages': '6:1-6:19',
                                       'title': 'Optimal Streaming Algorithms '
                                                'for Submodular Maximization '
                                                'with Cardinality Constraints.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icalp/AlalufEFNS20',
                                       'venue': 'ICALP',
                                       'year': '2020'},
                              'url': 'URL#469363'},
                             {'@id': '480473',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '286/1927',
                                                               'text': 'Nguyen '
                                                                       'Dao'},
                                                              {'@pid': '65/11052',
                                                               'text': 'Andrew '
                                                                       'Attwood'},
                                                              {'@pid': '286/1943',
                                                               'text': 'Bea '
                                                                       'Healy'},
                                                              {'@pid': '60/5993',
                                                               'text': 'Dirk '
                                                                       'Koch'}]},
                                       'doi': '10.1109/ICFPT51103.2020.00034',
                                       'ee': 'https://doi.org/10.1109/ICFPT51103.2020.00034',
                                       'key': 'conf/icfpt/DaoAHK20',
                                       'pages': '190-195',
                                       'title': 'FlexBex - A RISC-V with a '
                                                'Reconfigurable Instruction '
                                                'Extension.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icfpt/DaoAHK20',
                                       'venue': 'FPT',
                                       'year': '2020'},
                              'url': 'URL#480473'},
                             {'@id': '488830',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '16/6465-3',
                                                               'text': 'Cheng '
                                                                       'Li '
                                                                       '0003'},
                                                              {'@pid': '57/6712',
                                                               'text': 'Santu '
                                                                       'Rana'},
                                                              {'@pid': '90/5766',
                                                               'text': 'Andrew '
                                                                       'Gill'},
                                                              {'@pid': '188/2699',
                                                               'text': 'Dang '
                                                                       'Nguyen'},
                                                              {'@pid': '47/333-1',
                                                               'text': 'Sunil '
                                                                       'Gupta '
                                                                       '0001'},
                                                              {'@pid': '81/1984',
                                                               'text': 'Svetha '
                                                                       'Venkatesh'}]},
                                       'doi': '10.1109/ICPR48806.2021.9412770',
                                       'ee': 'https://doi.org/10.1109/ICPR48806.2021.9412770',
                                       'key': 'conf/icpr/0003RGN0V20',
                                       'pages': '3288-3295',
                                       'title': 'Factor Screening using '
                                                'Bayesian Active Learning and '
                                                'Gaussian Process '
                                                'Meta-Modelling.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icpr/0003RGN0V20',
                                       'venue': 'ICPR',
                                       'year': '2020'},
                              'url': 'URL#488830'},
                             {'@id': '505097',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '230/3939',
                                                               'text': 'Andrew '
                                                                       'Hard'},
                                                              {'@pid': '17/5922',
                                                               'text': 'Kurt '
                                                                       'Partridge'},
                                                              {'@pid': '265/6581',
                                                               'text': 'Cameron '
                                                                       'Nguyen'},
                                                              {'@pid': '190/9732',
                                                               'text': 'Niranjan '
                                                                       'Subrahmanya'},
                                                              {'@pid': '265/6608',
                                                               'text': 'Aishanee '
                                                                       'Shah'},
                                                              {'@pid': '185/6950',
                                                               'text': 'Pai '
                                                                       'Zhu'},
                                                              {'@pid': '38/4515',
                                                               'text': 'Ignacio '
                                                                       'Lopez-Moreno'},
                                                              {'@pid': '230/3901',
                                                               'text': 'Rajiv '
                                                                       'Mathews'}]},
                                       'doi': '10.21437/INTERSPEECH.2020-3023',
                                       'ee': 'https://doi.org/10.21437/Interspeech.2020-3023',
                                       'key': 'conf/interspeech/HardPNSSZLM20',
                                       'pages': '4343-4347',
                                       'title': 'Training Keyword Spotting '
                                                'Models on Non-IID Data with '
                                                'Federated Learning.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/interspeech/HardPNSSZLM20',
                                       'venue': 'INTERSPEECH',
                                       'year': '2020'},
                              'url': 'URL#505097'},
                             {'@id': '506221',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '289/8719',
                                                               'text': 'Alexander '
                                                                       'Xiong'},
                                                              {'@pid': '55/10989',
                                                               'text': 'Michael '
                                                                       'Nguyen'},
                                                              {'@pid': '270/5662',
                                                               'text': 'Andrew '
                                                                       'So'},
                                                              {'@pid': '44/5410',
                                                               'text': 'Tingting '
                                                                       'Chen'}]},
                                       'doi': '10.1109/IPCCC50635.2020.9391544',
                                       'ee': 'https://doi.org/10.1109/IPCCC50635.2020.9391544',
                                       'key': 'conf/ipccc/XiongNSC20',
                                       'pages': '1-6',
                                       'title': 'Privacy Preserving Inference '
                                                'with Convolutional Neural '
                                                'Network Ensemble.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/ipccc/XiongNSC20',
                                       'venue': 'IPCCC',
                                       'year': '2020'},
                              'url': 'URL#506221'},
                             {'@id': '534216',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '257/9103',
                                                               'text': 'Tu '
                                                                       'Thanh '
                                                                       'Nguyen'},
                                                              {'@pid': '53/5529',
                                                               'text': 'Paul '
                                                                       'Harper'},
                                                              {'@pid': '205/2410',
                                                               'text': 'O. S. '
                                                                       'Sunish '
                                                                       'Kumar'},
                                                              {'@pid': '96/9920',
                                                               'text': 'Andrew '
                                                                       'D. '
                                                                       'Ellis'}]},
                                       'ee': 'https://ieeexplore.ieee.org/document/9083480',
                                       'key': 'conf/ofc/NguyenHKE30',
                                       'pages': '1-3',
                                       'title': 'Nonlinear Tolerance '
                                                'Enhancement Based on '
                                                'Perturbation Theory for '
                                                'Optical Phase Conjugation '
                                                'Systems.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/ofc/NguyenHKE30',
                                       'venue': 'OFC',
                                       'year': '2020'},
                              'url': 'URL#534216'},
                             {'@id': '534217',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '257/9103',
                                                               'text': 'Tu '
                                                                       'Thanh '
                                                                       'Nguyen'},
                                                              {'@pid': '82/5445',
                                                               'text': 'Tingting '
                                                                       'Zhang'},
                                                              {'@pid': '265/0849',
                                                               'text': 'Mahmood '
                                                                       'Abu-Romoh'},
                                                              {'@pid': '96/9920',
                                                               'text': 'Andrew '
                                                                       'D. '
                                                                       'Ellis'}]},
                                       'ee': 'https://ieeexplore.ieee.org/document/9083108',
                                       'key': 'conf/ofc/NguyenZAE30',
                                       'pages': '1-3',
                                       'title': 'Artificial Neural '
                                                'Network-Based Compensation '
                                                'for Transceiver Nonlinearity '
                                                'in Probabilistic Shaping '
                                                'Systems.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/ofc/NguyenZAE30',
                                       'venue': 'OFC',
                                       'year': '2020'},
                              'url': 'URL#534217'},
                             {'@id': '536291',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '210/0881',
                                                               'text': 'Vishwajith '
                                                                       'Ramesh'},
                                                              {'@pid': '128/5665',
                                                               'text': 'Andrew '
                                                                       'Nguyen'},
                                                              {'@pid': '35/962',
                                                               'text': 'Kunal '
                                                                       'Agrawal'},
                                                              {'@pid': '264/7391',
                                                               'text': 'Brett '
                                                                       'C. '
                                                                       'Meyer'},
                                                              {'@pid': '45/1844',
                                                               'text': 'Gert '
                                                                       'Cauwenberghs'},
                                                              {'@pid': '56/3408',
                                                               'text': 'Nadir '
                                                                       'Weibel'}]},
                                       'doi': '10.1145/3421937.3422019',
                                       'ee': 'https://doi.org/10.1145/3421937.3422019',
                                       'key': 'conf/ph/RameshNAMCW20',
                                       'pages': '146-155',
                                       'title': 'Assessing Clinicians&apos; '
                                                'Reliance on Computational '
                                                'Aids for Acute Stroke '
                                                'Diagnosis.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/ph/RameshNAMCW20',
                                       'venue': 'PervasiveHealth',
                                       'year': '2020'},
                              'url': 'URL#536291'},
                             {'@id': '556563',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '94/5347',
                                                               'text': 'El '
                                                                       'Mehdi '
                                                                       'Boujamaa'},
                                                              {'@pid': '273/0156',
                                                               'text': 'Samsudeen '
                                                                       'Mohamed '
                                                                       'Ali'},
                                                              {'@pid': '273/0333',
                                                               'text': 'Steve '
                                                                       'Ngueya '
                                                                       'Wandji'},
                                                              {'@pid': '268/1831',
                                                               'text': 'Alexandra '
                                                                       'Gourio'},
                                                              {'@pid': '28/9801',
                                                               'text': 'Suk-Soo '
                                                                       'Pyo'},
                                                              {'@pid': '83/1378',
                                                               'text': 'Gwanhyeob '
                                                                       'Koh'},
                                                              {'@pid': '273/0149',
                                                               'text': 'Yoonjong '
                                                                       'Song'},
                                                              {'@pid': '11/9389',
                                                               'text': 'Taejoong '
                                                                       'Song'},
                                                              {'@pid': '120/2606',
                                                               'text': 'Jongwook '
                                                                       'Kye'},
                                                              {'@pid': '143/3940',
                                                               'text': 'Jean-Christophe '
                                                                       'Vial'},
                                                              {'@pid': '273/0002',
                                                               'text': 'Andrew '
                                                                       'Sowden'},
                                                              {'@pid': '273/0233',
                                                               'text': 'Manuj '
                                                                       'Rathor'},
                                                              {'@pid': '39/3921',
                                                               'text': 'Cyrille '
                                                                       'Dray'}]},
                                       'doi': '10.1109/VLSICIRCUITS18222.2020.9162803',
                                       'ee': 'https://doi.org/10.1109/VLSICircuits18222.2020.9162803',
                                       'key': 'conf/vlsic/BoujamaaAWGPKSS20',
                                       'pages': '1-2',
                                       'title': 'A 14.7Mb/mm2 28nm FDSOI '
                                                'STT-MRAM with Current Starved '
                                                'Read Path, 52Ω/Sigma Offset '
                                                'Voltage Sense Amplifier and '
                                                'Fully Trimmable CTAT '
                                                'Reference.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/vlsic/BoujamaaAWGPKSS20',
                                       'venue': 'VLSI Circuits',
                                       'year': '2020'},
                              'url': 'URL#556563'},
                             {'@id': '569537',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '284/4220',
                                                               'text': 'Nina '
                                                                       'M. van '
                                                                       'Esbroeck'},
                                                              {'@pid': '284/4262',
                                                               'text': 'Dominic '
                                                                       'T. '
                                                                       'Lennon'},
                                                              {'@pid': '175/4399',
                                                               'text': 'Hyungil '
                                                                       'Moon'},
                                                              {'@pid': '91/4900',
                                                               'text': 'V. '
                                                                       'Nguyen'},
                                                              {'@pid': '284/3902',
                                                               'text': 'Florian '
                                                                       'Vigneau'},
                                                              {'@pid': '284/4281',
                                                               'text': 'Leon '
                                                                       'C. '
                                                                       'Camenzind'},
                                                              {'@pid': '228/9206',
                                                               'text': 'Liuqi '
                                                                       'Yu'},
                                                              {'@pid': '228/9253',
                                                               'text': 'Dominik '
                                                                       'M. '
                                                                       'Zumbühl'},
                                                              {'@pid': '284/4004',
                                                               'text': 'G. '
                                                                       'Andrew '
                                                                       'D. '
                                                                       'Briggs'},
                                                              {'@pid': '31/1783',
                                                               'text': 'Dino '
                                                                       'Sejdinovic'},
                                                              {'@pid': '228/9144',
                                                               'text': 'Natalia '
                                                                       'Ares'}]},
                                       'ee': 'https://arxiv.org/abs/2001.04409',
                                       'key': 'journals/corr/abs-2001-04409',
                                       'title': 'Quantum device fine-tuning '
                                                'using unsupervised embedding '
                                                'learning.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-2001-04409',
                                       'venue': 'CoRR',
                                       'volume': 'abs/2001.04409',
                                       'year': '2020'},
                              'url': 'URL#569537'},
                             {'@id': '588548',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '82/5111',
                                                               'text': 'Monica '
                                                                       'Babes-Vroman'},
                                                              {'@pid': '37/49',
                                                               'text': 'Andrew '
                                                                       'Tjang'},
                                                              {'@pid': 'n/ThuDNguyen',
                                                               'text': 'Thu D. '
                                                                       'Nguyen'}]},
                                       'ee': 'https://arxiv.org/abs/2004.13865',
                                       'key': 'journals/corr/abs-2004-13865',
                                       'title': 'Ethnic Diversity in Computer '
                                                'Science at a Large Public R1 '
                                                'Research University.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-2004-13865',
                                       'venue': 'CoRR',
                                       'volume': 'abs/2004.13865',
                                       'year': '2020'},
                              'url': 'URL#588548'},
                             {'@id': '588799',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '92/9835',
                                                               'text': 'Tianyu '
                                                                       'Li'},
                                                              {'@pid': '254/6674',
                                                               'text': 'Matthew '
                                                                       'Butrovich'},
                                                              {'@pid': '264/0039',
                                                               'text': 'Amadou '
                                                                       'Ngom'},
                                                              {'@pid': '251/5311',
                                                               'text': 'Wan '
                                                                       'Shen '
                                                                       'Lim'},
                                                              {'@pid': '264/0055',
                                                               'text': 'Wes '
                                                                       'McKinney'},
                                                              {'@pid': '58/4127',
                                                               'text': 'Andrew '
                                                                       'Pavlo'}]},
                                       'ee': 'https://arxiv.org/abs/2004.14471',
                                       'key': 'journals/corr/abs-2004-14471',
                                       'title': 'Mainlining Databases - '
                                                'Supporting Fast Transactional '
                                                'Workloads on Universal '
                                                'Columnar Data File Formats.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-2004-14471',
                                       'venue': 'CoRR',
                                       'volume': 'abs/2004.14471',
                                       'year': '2020'},
                              'url': 'URL#588799'},
                             {'@id': '593156',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '230/3939',
                                                               'text': 'Andrew '
                                                                       'Hard'},
                                                              {'@pid': '17/5922',
                                                               'text': 'Kurt '
                                                                       'Partridge'},
                                                              {'@pid': '265/6581',
                                                               'text': 'Cameron '
                                                                       'Nguyen'},
                                                              {'@pid': '190/9732',
                                                               'text': 'Niranjan '
                                                                       'Subrahmanya'},
                                                              {'@pid': '265/6608',
                                                               'text': 'Aishanee '
                                                                       'Shah'},
                                                              {'@pid': '185/6950',
                                                               'text': 'Pai '
                                                                       'Zhu'},
                                                              {'@pid': '38/4515',
                                                               'text': 'Ignacio '
                                                                       'Lopez-Moreno'},
                                                              {'@pid': '230/3901',
                                                               'text': 'Rajiv '
                                                                       'Mathews'}]},
                                       'ee': 'https://arxiv.org/abs/2005.10406',
                                       'key': 'journals/corr/abs-2005-10406',
                                       'title': 'Training Keyword Spotting '
                                                'Models on Non-IID Data with '
                                                'Federated Learning.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-2005-10406',
                                       'venue': 'CoRR',
                                       'volume': 'abs/2005.10406',
                                       'year': '2020'},
                              'url': 'URL#593156'},
                             {'@id': '608672',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '123/0880',
                                                               'text': 'Andrew '
                                                                       'J. '
                                                                       'Weinert'},
                                                              {'@pid': '38/8809',
                                                               'text': 'Ngaire '
                                                                       'Underhill'},
                                                              {'@pid': '151/7499',
                                                               'text': 'Bilal '
                                                                       'Gill'},
                                                              {'@pid': '271/7894',
                                                               'text': 'Ashley '
                                                                       'Wicks'}]},
                                       'ee': 'https://arxiv.org/abs/2008.00861',
                                       'key': 'journals/corr/abs-2008-00861',
                                       'title': 'Processing of Crowdsourced '
                                                'Observations of Aircraft in a '
                                                'High Performance Computing '
                                                'Environment.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-2008-00861',
                                       'venue': 'CoRR',
                                       'volume': 'abs/2008.00861',
                                       'year': '2020'},
                              'url': 'URL#608672'},
                             {'@id': '613009',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '274/0695',
                                                               'text': 'Francisco '
                                                                       'Luongo'},
                                                              {'@pid': '274/0687',
                                                               'text': 'Ryan '
                                                                       'Hakim'},
                                                              {'@pid': '274/0677',
                                                               'text': 'Jessica '
                                                                       'H. '
                                                                       'Nguyen'},
                                                              {'@pid': '25/1529',
                                                               'text': 'Animashree '
                                                                       'Anandkumar'},
                                                              {'@pid': '274/0723',
                                                               'text': 'Andrew '
                                                                       'J. '
                                                                       'Hung'}]},
                                       'ee': 'https://arxiv.org/abs/2008.11833',
                                       'key': 'journals/corr/abs-2008-11833',
                                       'title': 'Deep learning-based computer '
                                                'vision to recognize and '
                                                'classify suturing gestures in '
                                                'robot-assisted surgery.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-2008-11833',
                                       'venue': 'CoRR',
                                       'volume': 'abs/2008.11833',
                                       'year': '2020'},
                              'url': 'URL#613009'},
                             {'@id': '613278',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '77/2868',
                                                               'text': 'Dinh '
                                                                       'Hoa '
                                                                       'Nguyen'},
                                                              {'@pid': '29/3177',
                                                               'text': 'Andrew '
                                                                       'Chapman'}]},
                                       'ee': 'https://arxiv.org/abs/2008.12512',
                                       'key': 'journals/corr/abs-2008-12512',
                                       'title': 'Universal Wireless Power '
                                                'Transfer for Energy Security, '
                                                'Availability and Convenience.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-2008-12512',
                                       'venue': 'CoRR',
                                       'volume': 'abs/2008.12512',
                                       'year': '2020'},
                              'url': 'URL#613278'},
                             {'@id': '613598',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '29/3177',
                                                               'text': 'Andrew '
                                                                       'Chapman'},
                                                              {'@pid': '77/2868',
                                                               'text': 'Dinh '
                                                                       'Hoa '
                                                                       'Nguyen'},
                                                              {'@pid': '274/1014',
                                                               'text': 'Hadi '
                                                                       'Farabi-As'},
                                                              {'@pid': '274/0953',
                                                               'text': 'Kenshi '
                                                                       'Itaoka'},
                                                              {'@pid': '274/1026',
                                                               'text': 'Katsuhiko '
                                                                       'Hirose'},
                                                              {'@pid': '34/30',
                                                               'text': 'Yasumasa '
                                                                       'Fujii'}]},
                                       'ee': 'https://arxiv.org/abs/2008.13414',
                                       'key': 'journals/corr/abs-2008-13414',
                                       'title': 'Hydrogen Penetration and Fuel '
                                                'Cell Vehicle Deployment in '
                                                'the Carbon Constrained Future '
                                                'Energy System.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-2008-13414',
                                       'venue': 'CoRR',
                                       'volume': 'abs/2008.13414',
                                       'year': '2020'},
                              'url': 'URL#613598'},
                             {'@id': '619261',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '91/4900',
                                                               'text': 'V. '
                                                                       'Nguyen'},
                                                              {'@pid': '275/8139',
                                                               'text': 'S. B. '
                                                                       'Orbell'},
                                                              {'@pid': '284/4262',
                                                               'text': 'Dominic '
                                                                       'T. '
                                                                       'Lennon'},
                                                              {'@pid': '175/4399',
                                                               'text': 'Hyungil '
                                                                       'Moon'},
                                                              {'@pid': '284/3902',
                                                               'text': 'Florian '
                                                                       'Vigneau'},
                                                              {'@pid': '284/4281',
                                                               'text': 'Leon '
                                                                       'C. '
                                                                       'Camenzind'},
                                                              {'@pid': '228/9206',
                                                               'text': 'Liuqi '
                                                                       'Yu'},
                                                              {'@pid': '228/9253',
                                                               'text': 'Dominik '
                                                                       'M. '
                                                                       'Zumbühl'},
                                                              {'@pid': '284/4004',
                                                               'text': 'G. '
                                                                       'Andrew '
                                                                       'D. '
                                                                       'Briggs'},
                                                              {'@pid': '59/6403',
                                                               'text': 'Michael '
                                                                       'A. '
                                                                       'Osborne'},
                                                              {'@pid': '31/1783',
                                                               'text': 'Dino '
                                                                       'Sejdinovic'},
                                                              {'@pid': '228/9144',
                                                               'text': 'Natalia '
                                                                       'Ares'}]},
                                       'ee': 'https://arxiv.org/abs/2009.14825',
                                       'key': 'journals/corr/abs-2009-14825',
                                       'title': 'Deep Reinforcement Learning '
                                                'for Efficient Measurement of '
                                                'Quantum Devices.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-2009-14825',
                                       'venue': 'CoRR',
                                       'volume': 'abs/2009.14825',
                                       'year': '2020'},
                              'url': 'URL#619261'},
                             {'@id': '620148',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '41/2483',
                                                               'text': 'Bao '
                                                                       'Nguyen'},
                                                              {'@pid': '48/726',
                                                               'text': 'Adam '
                                                                       'Feldman'},
                                                              {'@pid': '275/8043',
                                                               'text': 'Sarath '
                                                                       'Bethapudi'},
                                                              {'@pid': '80/390',
                                                               'text': 'Andrew '
                                                                       'Jennings'},
                                                              {'@pid': '28/11416',
                                                               'text': 'Chris '
                                                                       'G. '
                                                                       'Willcocks'}]},
                                       'ee': 'https://arxiv.org/abs/2010.01942',
                                       'key': 'journals/corr/abs-2010-01942',
                                       'title': 'Unsupervised Region-based '
                                                'Anomaly Detection in Brain '
                                                'MRI with Adversarial Image '
                                                'Inpainting.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-2010-01942',
                                       'venue': 'CoRR',
                                       'volume': 'abs/2010.01942',
                                       'year': '2020'},
                              'url': 'URL#620148'},
                             {'@id': '666061',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '167/3656',
                                                               'text': 'Jean '
                                                                       'de '
                                                                       'Dieu '
                                                                       'Nguimfack-Ndongmo'},
                                                              {'@pid': '256/3838',
                                                               'text': 'Andrew '
                                                                       'Muluh '
                                                                       'Fombu'},
                                                              {'@pid': '256/3921',
                                                               'text': 'Lionel '
                                                                       'Leroy '
                                                                       'Sonfack'},
                                                              {'@pid': '167/3649',
                                                               'text': 'René '
                                                                       'Kuaté-Fochie'},
                                                              {'@pid': '50/3409',
                                                               'text': 'Godpromesse '
                                                                       'Kenné'},
                                                              {'@pid': '47/7036',
                                                               'text': 'Françoise '
                                                                       'Lamnabhi-Lagarrigue'}]},
                                       'ee': 'https://arima.episciences.org/5434',
                                       'key': 'journals/arima/Nguimfack-Ndongmo19',
                                       'title': 'Challenges of mastering the '
                                                'energy sector and sustainable '
                                                'solutions for development in '
                                                'Africa.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/arima/Nguimfack-Ndongmo19',
                                       'venue': 'ARIMA J.',
                                       'volume': '30',
                                       'year': '2019'},
                              'url': 'URL#666061'},
                             {'@id': '736408',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '220/2794',
                                                               'text': 'Andrew '
                                                                       'J. '
                                                                       'Westphal'},
                                                              {'@pid': '183/6075',
                                                               'text': 'Tiffany '
                                                                       'E. '
                                                                       'Chow'},
                                                              {'@pid': '250/1017',
                                                               'text': 'Corey '
                                                                       'Ngoy'},
                                                              {'@pid': '250/0867',
                                                               'text': 'Xiaoye '
                                                                       'Zuo'},
                                                              {'@pid': '250/1136',
                                                               'text': 'Vivian '
                                                                       'Liao'},
                                                              {'@pid': '250/0829',
                                                               'text': 'Laryssa '
                                                                       'A. '
                                                                       'Storozuk'},
                                                              {'@pid': '250/0966',
                                                               'text': 'Megan '
                                                                       'A. K. '
                                                                       'Peters'},
                                                              {'@pid': '07/11385',
                                                               'text': 'Allan '
                                                                       'D. Wu'},
                                                              {'@pid': '87/8273',
                                                               'text': 'Jesse '
                                                                       'Rissman'}]},
                                       'doi': '10.1162/JOCN_A_01421',
                                       'ee': 'https://doi.org/10.1162/jocn_a_01421',
                                       'key': 'journals/jocn/WestphalCNZLSPW19',
                                       'number': '9',
                                       'pages': '1380-1391',
                                       'title': 'Anodal Transcranial Direct '
                                                'Current Stimulation to the '
                                                'Left Rostrolateral Prefrontal '
                                                'Cortex Selectively Improves '
                                                'Source Memory Retrieval.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/jocn/WestphalCNZLSPW19',
                                       'venue': 'J. Cogn. Neurosci.',
                                       'volume': '31',
                                       'year': '2019'},
                              'url': 'URL#736408'},
                             {'@id': '775261',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '167/3105-1',
                                                               'text': 'Saeid '
                                                                       'Barati '
                                                                       '0001'},
                                                              {'@pid': '168/9534',
                                                               'text': 'Ferenc '
                                                                       'A. '
                                                                       'Bartha'},
                                                              {'@pid': '87/7683',
                                                               'text': 'Swarnendu '
                                                                       'Biswas'},
                                                              {'@pid': 'c/RCartwright',
                                                               'text': 'Robert '
                                                                       'Cartwright'},
                                                              {'@pid': '172/2668',
                                                               'text': 'Adam '
                                                                       'Duracz'},
                                                              {'@pid': 'f/DonaldSFussell',
                                                               'text': 'Donald '
                                                                       'S. '
                                                                       'Fussell'},
                                                              {'@pid': 'h/HenryHoffmann',
                                                               'text': 'Henry '
                                                                       'Hoffmann'},
                                                              {'@pid': '154/4174',
                                                               'text': 'Connor '
                                                                       'Imes'},
                                                              {'@pid': '06/3770',
                                                               'text': 'Jason '
                                                                       'E. '
                                                                       'Miller'},
                                                              {'@pid': '12/9377',
                                                               'text': 'Nikita '
                                                                       'Mishra'},
                                                              {'@pid': 'a/Arvind',
                                                               'text': 'Arvind'},
                                                              {'@pid': '13/2526',
                                                               'text': 'Dung '
                                                                       'Nguyen'},
                                                              {'@pid': '41/4448',
                                                               'text': 'Krishna '
                                                                       'V. '
                                                                       'Palem'},
                                                              {'@pid': '91/7829',
                                                               'text': 'Yan '
                                                                       'Pei'},
                                                              {'@pid': '71/5735',
                                                               'text': 'Keshav '
                                                                       'Pingali'},
                                                              {'@pid': '236/4073',
                                                               'text': 'Ryuichi '
                                                                       'Sai'},
                                                              {'@pid': '57/4524',
                                                               'text': 'Andrew '
                                                                       'Wright'},
                                                              {'@pid': '62/9988',
                                                               'text': 'Yao-Hsiang '
                                                                       'Yang'},
                                                              {'@pid': '175/6230',
                                                               'text': 'Sizhuo '
                                                                       'Zhang'}]},
                                       'doi': '10.1109/MS.2018.2884864',
                                       'ee': 'https://doi.org/10.1109/MS.2018.2884864',
                                       'key': 'journals/software/BaratiBBCDFHIMM19',
                                       'number': '2',
                                       'pages': '73-82',
                                       'title': 'Proteus - Language and '
                                                'Runtime Support for '
                                                'Self-Adaptive Software '
                                                'Development.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/software/BaratiBBCDFHIMM19',
                                       'venue': 'IEEE Softw.',
                                       'volume': '36',
                                       'year': '2019'},
                              'url': 'URL#775261'},
                             {'@id': '818371',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '243/3868',
                                                               'text': 'Pujan '
                                                                       'Paudel'},
                                                              {'@pid': '210/3354',
                                                               'text': 'Trung '
                                                                       'T. '
                                                                       'Nguyen'},
                                                              {'@pid': '153/1912',
                                                               'text': 'Amartya '
                                                                       'Hatua'},
                                                              {'@pid': '79/1202',
                                                               'text': 'Andrew '
                                                                       'H. '
                                                                       'Sung'}]},
                                       'doi': '10.1145/3341161.3342898',
                                       'ee': 'https://doi.org/10.1145/3341161.3342898',
                                       'key': 'conf/asunam/PaudelNHS19',
                                       'pages': '501-508',
                                       'title': 'How the tables have turned - '
                                                'studying the new wave of '
                                                'social bots on Twitter using '
                                                'complex network analysis '
                                                'techniques.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/asunam/PaudelNHS19',
                                       'venue': 'ASONAM',
                                       'year': '2019'},
                              'url': 'URL#818371'},
                             {'@id': '821414',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '243/3868',
                                                               'text': 'Pujan '
                                                                       'Paudel'},
                                                              {'@pid': '153/1912',
                                                               'text': 'Amartya '
                                                                       'Hatua'},
                                                              {'@pid': '210/3354',
                                                               'text': 'Trung '
                                                                       'T. '
                                                                       'Nguyen'},
                                                              {'@pid': '79/1202',
                                                               'text': 'Andrew '
                                                                       'H. '
                                                                       'Sung'}]},
                                       'doi': '10.1007/978-3-030-23551-2_6',
                                       'ee': 'https://doi.org/10.1007/978-3-030-23551-2_6',
                                       'key': 'conf/bigdata2/PaudelHNS19',
                                       'pages': '80-94',
                                       'title': 'User Level Multi-feed '
                                                'Weighted Topic Embeddings for '
                                                'Studying Network Interaction '
                                                'in Twitter.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/bigdata2/PaudelHNS19',
                                       'venue': 'BigData Congress',
                                       'year': '2019'},
                              'url': 'URL#821414'},
                             {'@id': '823519',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '210/3354',
                                                               'text': 'Trung '
                                                                       'T. '
                                                                       'Nguyen'},
                                                              {'@pid': '153/1912',
                                                               'text': 'Amartya '
                                                                       'Hatua'},
                                                              {'@pid': '79/1202',
                                                               'text': 'Andrew '
                                                                       'H. '
                                                                       'Sung'}]},
                                       'doi': '10.1007/978-3-030-23813-1_15',
                                       'ee': 'https://doi.org/10.1007/978-3-030-23813-1_15',
                                       'key': 'conf/blockchain/NguyenHS19',
                                       'pages': '118-125',
                                       'title': 'Blockchain Approach to Solve '
                                                'Collective Decision Making '
                                                'Problems for Swarm Robotics.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/blockchain/NguyenHS19',
                                       'venue': 'BLOCKCHAIN',
                                       'year': '2019'},
                              'url': 'URL#823519'},
                             {'@id': '840136',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '290/8476',
                                                               'text': 'Andrew '
                                                                       'Phuong'},
                                                              {'@pid': '290/8726',
                                                               'text': 'Judy '
                                                                       'Nguyen'}]},
                                       'ee': 'https://repository.isls.org/handle/1/4445',
                                       'key': 'conf/cscl/PhuongN19',
                                       'title': 'Evaluating an Adaptive '
                                                'Equity-Oriented Pedagogy on '
                                                'Student Collaboration '
                                                'Outcomes Through Randomized '
                                                'Controlled Trials.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/cscl/PhuongN19',
                                       'venue': 'CSCL',
                                       'year': '2019'},
                              'url': 'URL#840136'},
                             {'@id': '856007',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '241/8082',
                                                               'text': 'Pranav '
                                                                       'Venuprasad'},
                                                              {'@pid': '241/8072',
                                                               'text': 'Tushar '
                                                                       'Dobhal'},
                                                              {'@pid': '241/8092',
                                                               'text': 'Anurag '
                                                                       'Paul'},
                                                              {'@pid': '241/8127',
                                                               'text': 'Tu N. '
                                                                       'M. '
                                                                       'Nguyen'},
                                                              {'@pid': '75/1719',
                                                               'text': 'Andrew '
                                                                       'Gilman'},
                                                              {'@pid': '07/6197',
                                                               'text': 'Pamela '
                                                                       'C. '
                                                                       'Cosman'},
                                                              {'@pid': '220/1568',
                                                               'text': 'Leanne '
                                                                       'Chukoskie'}]},
                                       'doi': '10.1145/3314111.3319843',
                                       'ee': 'https://doi.org/10.1145/3314111.3319843',
                                       'key': 'conf/etra/VenuprasadDPNGC19',
                                       'pages': '21:1-21:8',
                                       'title': 'Characterizing joint '
                                                'attention behavior during '
                                                'real world interactions using '
                                                'automated object and gaze '
                                                'detection.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/etra/VenuprasadDPNGC19',
                                       'venue': 'ETRA',
                                       'year': '2019'},
                              'url': 'URL#856007'},
                             {'@id': '901912',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '233/6756',
                                                               'text': 'Ryszard '
                                                                       'Buczynski'},
                                                              {'@pid': '277/4398',
                                                               'text': 'Alicja '
                                                                       'Anuszkiewicz'},
                                                              {'@pid': '280/7951',
                                                               'text': 'Adam '
                                                                       'Filipkowski'},
                                                              {'@pid': '280/8503',
                                                               'text': 'Hue '
                                                                       'Thi '
                                                                       'Nguyen'},
                                                              {'@pid': '280/8487',
                                                               'text': 'Tomasz '
                                                                       'Stefaniuk'},
                                                              {'@pid': '280/8619',
                                                               'text': 'Damian '
                                                                       'Michalik'},
                                                              {'@pid': '280/8117',
                                                               'text': 'Marcin '
                                                                       'Franczyk'},
                                                              {'@pid': '233/7196',
                                                               'text': 'Ryszard '
                                                                       'Stepien'},
                                                              {'@pid': '233/6813',
                                                               'text': 'Dariusz '
                                                                       'Pysz'},
                                                              {'@pid': '280/8019',
                                                               'text': 'Andrew '
                                                                       'Waddie'},
                                                              {'@pid': '280/8477',
                                                               'text': 'Mohammad '
                                                                       'R. '
                                                                       'Taghizadeh'},
                                                              {'@pid': '280/7935',
                                                               'text': 'Rafal '
                                                                       'Kasztelanic'}]},
                                       'doi': '10.1109/ICTON.2019.8840252',
                                       'ee': 'https://doi.org/10.1109/ICTON.2019.8840252',
                                       'key': 'conf/icton/BuczynskiAFNSMF19',
                                       'pages': '1-4',
                                       'title': 'Progress in Development of '
                                                'Nanostructured Gradient Index '
                                                'Optical Fibers and '
                                                'Micro-Optical Components.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icton/BuczynskiAFNSMF19',
                                       'venue': 'ICTON',
                                       'year': '2019'},
                              'url': 'URL#901912'},
                             {'@id': '907618',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '217/4094',
                                                               'text': 'Trung '
                                                                       'H. '
                                                                       'Nguyen'},
                                                              {'@pid': '142/6114',
                                                               'text': 'Simon '
                                                                       'D. '
                                                                       'Jones'},
                                                              {'@pid': '142/6204',
                                                               'text': 'Mariela '
                                                                       'Soto-Berelov'},
                                                              {'@pid': '86/7547',
                                                               'text': 'Andrew '
                                                                       'Haywood'},
                                                              {'@pid': '217/4047',
                                                               'text': 'Samuel '
                                                                       'Hislop'}]},
                                       'doi': '10.1109/IGARSS.2019.8897905',
                                       'ee': 'https://doi.org/10.1109/IGARSS.2019.8897905',
                                       'key': 'conf/igarss/NguyenJSHH19',
                                       'pages': '7338-7341',
                                       'title': 'Estimate Forest Biomass '
                                                'Dynamics Using Multi-Temporal '
                                                'Lidar And Single-Date '
                                                'Inventory Data.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/igarss/NguyenJSHH19',
                                       'venue': 'IGARSS',
                                       'year': '2019'},
                              'url': 'URL#907618'},
                             {'@id': '918480',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '173/0617',
                                                               'text': 'Andrew '
                                                                       'Lukyamuzi'},
                                                              {'@pid': '44/4913',
                                                               'text': 'John '
                                                                       'Ngubiri'},
                                                              {'@pid': '33/10311',
                                                               'text': 'Washington '
                                                                       'Okori'}]},
                                       'doi': '10.1109/ISC246665.2019.9071737',
                                       'ee': 'https://doi.org/10.1109/ISC246665.2019.9071737',
                                       'key': 'conf/isc2/LukyamuziNO19',
                                       'pages': '288-291',
                                       'title': 'Topic Based Machine Learning '
                                                'Summarizer.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/isc2/LukyamuziNO19',
                                       'venue': 'ISC2',
                                       'year': '2019'},
                              'url': 'URL#918480'},
                             {'@id': '920985',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '208/9303',
                                                               'text': 'Pedro '
                                                                       'P. '
                                                                       'Vergara'},
                                                              {'@pid': '253/8225',
                                                               'text': 'Tam T. '
                                                                       'Mai'},
                                                              {'@pid': '253/8135',
                                                               'text': 'Andrew '
                                                                       'Burstein'},
                                                              {'@pid': '26/4389',
                                                               'text': 'Phuong '
                                                                       'H. '
                                                                       'Nguyen'}]},
                                       'doi': '10.1109/ISGTEUROPE.2019.8905499',
                                       'ee': 'https://doi.org/10.1109/ISGTEurope.2019.8905499',
                                       'key': 'conf/isgteurope/VergaraMBN19',
                                       'pages': '1-5',
                                       'title': 'Feasibility and Performance '
                                                'Assessment of Commercial PV '
                                                'Inverters Operating with '
                                                'Droop Control for Providing '
                                                'Voltage Support Services.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/isgteurope/VergaraMBN19',
                                       'venue': 'ISGT Europe',
                                       'year': '2019'},
                              'url': 'URL#920985'},
                             {'@id': '927694',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '151/5572',
                                                               'text': 'Andrew '
                                                                       'S. '
                                                                       'Brunker'},
                                                              {'@pid': '40/744',
                                                               'text': 'Daniel '
                                                                       'R. '
                                                                       'Catchpoole'},
                                                              {'@pid': '08/353',
                                                               'text': 'Paul '
                                                                       'J. '
                                                                       'Kennedy'},
                                                              {'@pid': '39/1218',
                                                               'text': 'Simeon '
                                                                       'Simoff'},
                                                              {'@pid': '30/4876',
                                                               'text': 'Quang '
                                                                       'Vinh '
                                                                       'Nguyen'}]},
                                       'doi': '10.1109/IV-2.2019.00016',
                                       'ee': 'https://doi.org/10.1109/IV-2.2019.00016',
                                       'key': 'conf/iv/BrunkerCKSN19',
                                       'pages': '34-41',
                                       'title': 'Two-Dimensional Immersive '
                                                'Cohort Analysis Supporting '
                                                'Personalised Medical '
                                                'Treatment.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/iv/BrunkerCKSN19',
                                       'venue': 'IV',
                                       'year': '2019'},
                              'url': 'URL#927694'},
                             {'@id': '937247',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '253/1244',
                                                               'text': 'Hai '
                                                                       'Duc '
                                                                       'Nguyen'},
                                                              {'@pid': '166/7381',
                                                               'text': 'Chaojie '
                                                                       'Zhang'},
                                                              {'@pid': '176/5291',
                                                               'text': 'Zhujun '
                                                                       'Xiao'},
                                                              {'@pid': 'c/AAChien',
                                                               'text': 'Andrew '
                                                                       'A. '
                                                                       'Chien'}]},
                                       'doi': '10.1145/3366623.3368133',
                                       'ee': 'https://doi.org/10.1145/3366623.3368133',
                                       'key': 'conf/middleware/NguyenZXC19',
                                       'pages': '1-6',
                                       'title': 'Real-time Serverless - '
                                                'Enabling Application '
                                                'Performance Guarantees.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/middleware/NguyenZXC19',
                                       'venue': 'WOSC@Middleware',
                                       'year': '2019'},
                              'url': 'URL#937247'},
                             {'@id': '958988',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '128/5665',
                                                               'text': 'Andrew '
                                                                       'Nguyen'},
                                                              {'@pid': '242/4852',
                                                               'text': 'Tobin '
                                                                       'South'},
                                                              {'@pid': '55/1744',
                                                               'text': 'Nigel '
                                                                       'G. '
                                                                       'Bean'},
                                                              {'@pid': '21/2107',
                                                               'text': 'Jonathan '
                                                                       'Tuke'},
                                                              {'@pid': '126/5006',
                                                               'text': 'Lewis '
                                                                       'Mitchell'}]},
                                       'doi': '10.18653/V1/S19-2050',
                                       'ee': 'https://doi.org/10.18653/v1/s19-2050',
                                       'key': 'conf/semeval/NguyenSBTM19',
                                       'pages': '292-296',
                                       'title': 'Podlab at SemEval-2019 Task 3 '
                                                '- The Importance of Being '
                                                'Shallow.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/semeval/NguyenSBTM19',
                                       'venue': 'SemEval@NAACL-HLT',
                                       'year': '2019'},
                              'url': 'URL#958988'},
                             {'@id': '960315',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '236/5588',
                                                               'text': 'Joseph '
                                                                       'A. '
                                                                       'Boyle'},
                                                              {'@pid': '161/6303',
                                                               'text': 'Georgiana '
                                                                       'Haldeman'},
                                                              {'@pid': '37/49',
                                                               'text': 'Andrew '
                                                                       'Tjang'},
                                                              {'@pid': '82/5111',
                                                               'text': 'Monica '
                                                                       'Babes-Vroman'},
                                                              {'@pid': '29/216',
                                                               'text': 'Ana '
                                                                       'Paula '
                                                                       'Centeno'},
                                                              {'@pid': 'n/ThuDNguyen',
                                                               'text': 'Thu D. '
                                                                       'Nguyen'}]},
                                       'doi': '10.1145/3287324.3293859',
                                       'ee': 'https://doi.org/10.1145/3287324.3293859',
                                       'key': 'conf/sigcse/BoyleHTBCN20',
                                       'pages': '1269',
                                       'title': 'Dynamic Recitation - A '
                                                'Student-Focused, '
                                                'Goal-Oriented Recitation '
                                                'Management Platform.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/sigcse/BoyleHTBCN20',
                                       'venue': 'SIGCSE',
                                       'year': '2019'},
                              'url': 'URL#960315'},
                             {'@id': '961077',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '253/0899',
                                                               'text': 'Nicolas '
                                                                       'Nghiem'},
                                                              {'@pid': '140/7944-4',
                                                               'text': 'Richard '
                                                                       'Roberts '
                                                                       '0004'},
                                                              {'@pid': '83/6305',
                                                               'text': 'John '
                                                                       'P. '
                                                                       'Lewis'},
                                                              {'@pid': '91/3290',
                                                               'text': 'Junyong '
                                                                       'Noh'}]},
                                       'doi': '10.1145/3355088.3365155',
                                       'ee': 'https://doi.org/10.1145/3355088.3365155',
                                       'key': 'conf/siggrapha/NghiemRLN19',
                                       'pages': '49-52',
                                       'title': 'Saliency Diagrams.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/siggrapha/NghiemRLN19',
                                       'venue': 'SIGGRAPH Asia Technical '
                                                'Briefs',
                                       'year': '2019'},
                              'url': 'URL#961077'},
                             {'@id': '971237',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '259/8855',
                                                               'text': 'Andrew '
                                                                       'Camphouse'},
                                                              {'@pid': '23/3347',
                                                               'text': 'Lucien '
                                                                       'Ngalamou'}]},
                                       'doi': '10.1109/UEMCON47517.2019.8992944',
                                       'ee': 'https://doi.org/10.1109/UEMCON47517.2019.8992944',
                                       'key': 'conf/uemcom/CamphouseN19',
                                       'pages': '250-256',
                                       'title': 'Securing a Connected Home.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/uemcom/CamphouseN19',
                                       'venue': 'UEMCON',
                                       'year': '2019'},
                              'url': 'URL#971237'},
                             {'@id': '971270',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '153/1912',
                                                               'text': 'Amartya '
                                                                       'Hatua'},
                                                              {'@pid': '210/3354',
                                                               'text': 'Trung '
                                                                       'T. '
                                                                       'Nguyen'},
                                                              {'@pid': '79/1202',
                                                               'text': 'Andrew '
                                                                       'H. '
                                                                       'Sung'}]},
                                       'doi': '10.1109/UEMCON47517.2019.8993093',
                                       'ee': 'https://doi.org/10.1109/UEMCON47517.2019.8993093',
                                       'key': 'conf/uemcom/HatuaNS19',
                                       'pages': '99-104',
                                       'title': 'Goal-Oriented Conversational '
                                                'System Using Transfer '
                                                'Learning and Attention '
                                                'Mechanism.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/uemcom/HatuaNS19',
                                       'venue': 'UEMCON',
                                       'year': '2019'},
                              'url': 'URL#971270'},
                             {'@id': '971321',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '210/3354',
                                                               'text': 'Trung '
                                                                       'T. '
                                                                       'Nguyen'},
                                                              {'@pid': '153/1912',
                                                               'text': 'Amartya '
                                                                       'Hatua'},
                                                              {'@pid': '79/1202',
                                                               'text': 'Andrew '
                                                                       'H. '
                                                                       'Sung'}]},
                                       'doi': '10.1109/UEMCON47517.2019.8992945',
                                       'ee': 'https://doi.org/10.1109/UEMCON47517.2019.8992945',
                                       'key': 'conf/uemcom/NguyenHS19',
                                       'pages': '305-311',
                                       'title': 'Cumulative Training and '
                                                'Transfer Learning for '
                                                'Multi-Robots Collision-Free '
                                                'Navigation Problems.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/uemcom/NguyenHS19',
                                       'venue': 'UEMCON',
                                       'year': '2019'},
                              'url': 'URL#971321'},
                             {'@id': '987667',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '229/4641',
                                                               'text': 'Andrew '
                                                                       'T. '
                                                                       'Jones'},
                                                              {'@pid': '267/3534',
                                                               'text': 'Jessica '
                                                                       'Bagnall'},
                                                              {'@pid': '117/4552',
                                                               'text': 'Hien '
                                                                       'Duy '
                                                                       'Nguyen'}]},
                                       'doi': '10.21105/JOSS.01193',
                                       'ee': 'https://doi.org/10.21105/joss.01193',
                                       'key': 'journals/jossw/JonesBN19',
                                       'number': '34',
                                       'pages': '1193',
                                       'title': 'BoltzMM - an R package for '
                                                'maximum pseudolikelihood '
                                                'estimation of fully-visible '
                                                'Boltzmann machines.',
                                       'type': 'Data and Artifacts',
                                       'url': 'https://dblp.org/rec/journals/jossw/JonesBN19',
                                       'venue': 'J. Open Source Softw.',
                                       'volume': '4',
                                       'year': '2019'},
                              'url': 'URL#987667'},
                             {'@id': '998722',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '19/7057',
                                                               'text': 'ThanhVu '
                                                                       'Nguyen'},
                                                              {'@pid': '62/6761',
                                                               'text': 'Timos '
                                                                       'Antonopoulos'},
                                                              {'@pid': '135/5976',
                                                               'text': 'Andrew '
                                                                       'Ruef'},
                                                              {'@pid': 'h/MichaelWHicks',
                                                               'text': 'Michael '
                                                                       'Hicks '
                                                                       '0001'}]},
                                       'ee': 'http://arxiv.org/abs/1903.12113',
                                       'key': 'journals/corr/abs-1903-12113',
                                       'title': 'A Counterexample-guided '
                                                'Approach to Finding Numerical '
                                                'Invariants.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-1903-12113',
                                       'venue': 'CoRR',
                                       'volume': 'abs/1903.12113',
                                       'year': '2019'},
                              'url': 'URL#998722'},
                             {'@id': '1037799',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '69/1732',
                                                               'text': 'Alina '
                                                                       'Ene'},
                                                              {'@pid': '62/3796',
                                                               'text': 'Huy L. '
                                                                       'Nguyen'},
                                                              {'@pid': '255/9377',
                                                               'text': 'Andrew '
                                                                       'Suh'}]},
                                       'ee': 'http://arxiv.org/abs/1911.12959',
                                       'key': 'journals/corr/abs-1911-12959',
                                       'title': 'An Optimal Streaming '
                                                'Algorithm for Non-monotone '
                                                'Submodular Maximization.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-1911-12959',
                                       'venue': 'CoRR',
                                       'volume': 'abs/1911.12959',
                                       'year': '2019'},
                              'url': 'URL#1037799'},
                             {'@id': '1054200',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '125/0427',
                                                               'text': 'George '
                                                                       'Sklivanitis'},
                                                              {'@pid': '174/7974',
                                                               'text': 'Adam '
                                                                       'Gannon'},
                                                              {'@pid': '171/6451',
                                                               'text': 'Konstantinos '
                                                                       'Tountas'},
                                                              {'@pid': 'p/DimitriosAPados',
                                                               'text': 'Dimitris '
                                                                       'A. '
                                                                       'Pados'},
                                                              {'@pid': '73/1900',
                                                               'text': 'Stella '
                                                                       'N. '
                                                                       'Batalama'},
                                                              {'@pid': '51/1909',
                                                               'text': 'Stephen '
                                                                       'Reichhart'},
                                                              {'@pid': '95/4213',
                                                               'text': 'Michael '
                                                                       'J. '
                                                                       'Medley'},
                                                              {'@pid': '150/5638',
                                                               'text': 'Ngwe '
                                                                       'Thawdar'},
                                                              {'@pid': '210/6711',
                                                               'text': 'Ulysses '
                                                                       'Lee'},
                                                              {'@pid': '78/7292',
                                                               'text': 'John '
                                                                       'D. '
                                                                       'Matyjas'},
                                                              {'@pid': '76/8033',
                                                               'text': 'Scott '
                                                                       'Pudlewski'},
                                                              {'@pid': '40/4820',
                                                               'text': 'Andrew '
                                                                       'L. '
                                                                       'Drozd'},
                                                              {'@pid': '161/1996',
                                                               'text': 'Ashwin '
                                                                       'Amanna'},
                                                              {'@pid': '226/9324',
                                                               'text': 'Fred '
                                                                       'Latus'},
                                                              {'@pid': '226/9442',
                                                               'text': 'Zachary '
                                                                       'Goldsmith'},
                                                              {'@pid': '50/760',
                                                               'text': 'David '
                                                                       'Diaz'}]},
                                       'doi': '10.1109/ACCESS.2018.2857843',
                                       'ee': 'https://doi.org/10.1109/ACCESS.2018.2857843',
                                       'key': 'journals/access/SklivanitisGTPB18',
                                       'pages': '47217-47239',
                                       'title': 'Airborne Cognitive Networking '
                                                '- Design, Development, and '
                                                'Deployment.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/access/SklivanitisGTPB18',
                                       'venue': 'IEEE Access',
                                       'volume': '6',
                                       'year': '2018'},
                              'url': 'URL#1054200'},
                             {'@id': '1057588',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '59/2568',
                                                               'text': 'Yuanyuan '
                                                                       'Zhao'},
                                                              {'@pid': '210/0102',
                                                               'text': 'Duole '
                                                                       'Feng'},
                                                              {'@pid': '212/2937',
                                                               'text': 'Durai '
                                                                       'Jayaraman'},
                                                              {'@pid': '212/2712',
                                                               'text': 'Daniel '
                                                                       'Belay'},
                                                              {'@pid': '212/3033',
                                                               'text': 'Heiru '
                                                                       'Sebrala'},
                                                              {'@pid': '212/2811',
                                                               'text': 'John '
                                                                       'Ngugi'},
                                                              {'@pid': '212/3025',
                                                               'text': 'Eunice '
                                                                       'Maina'},
                                                              {'@pid': '212/3038',
                                                               'text': 'Rose '
                                                                       'Akombo'},
                                                              {'@pid': '212/2956',
                                                               'text': 'John '
                                                                       'Otuoma'},
                                                              {'@pid': '212/2523',
                                                               'text': 'Joseph '
                                                                       'Mutyaba'},
                                                              {'@pid': '212/3019',
                                                               'text': 'Sam '
                                                                       'Kissa'},
                                                              {'@pid': '76/9948',
                                                               'text': 'Shuhua '
                                                                       'Qi'},
                                                              {'@pid': '212/2636',
                                                               'text': 'Fiker '
                                                                       'Assefa'},
                                                              {'@pid': '212/2591',
                                                               'text': 'Nellie '
                                                                       'Mugure '
                                                                       'Oduor'},
                                                              {'@pid': '212/2786',
                                                               'text': 'Andrew '
                                                                       'Kalema '
                                                                       'Ndawula'},
                                                              {'@pid': '20/2639',
                                                               'text': 'Yanxia '
                                                                       'Li'},
                                                              {'@pid': '27/1615',
                                                               'text': 'Peng '
                                                                       'Gong'}]},
                                       'doi': '10.1016/J.JAG.2017.11.008',
                                       'ee': 'https://doi.org/10.1016/j.jag.2017.11.008',
                                       'key': 'journals/aeog/ZhaoFJBSNMAOMKQ18',
                                       'pages': '116-125',
                                       'title': 'Bamboo mapping of Ethiopia, '
                                                'Kenya and Uganda for the year '
                                                '2016 using multi-temporal '
                                                'Landsat imagery.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/aeog/ZhaoFJBSNMAOMKQ18',
                                       'venue': 'Int. J. Appl. Earth Obs. '
                                                'Geoinformation',
                                       'volume': '66',
                                       'year': '2018'},
                              'url': 'URL#1057588'},
                             {'@id': '1092704',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '213/9013',
                                                               'text': 'Parinaz '
                                                                       'Rashidi'},
                                                              {'@pid': '97/4491',
                                                               'text': 'Andrew '
                                                                       'K. '
                                                                       'Skidmore'},
                                                              {'@pid': '29/4002',
                                                               'text': 'Tiejun '
                                                                       'Wang'},
                                                              {'@pid': '130/8172',
                                                               'text': 'Roshanak '
                                                                       'Darvishzadeh'},
                                                              {'@pid': '213/8870',
                                                               'text': 'Shadrack '
                                                                       'Ngene'},
                                                              {'@pid': '129/9210',
                                                               'text': 'Anton '
                                                                       'Vrieling'}]},
                                       'doi': '10.1080/13658816.2017.1404605',
                                       'ee': 'https://doi.org/10.1080/13658816.2017.1404605',
                                       'key': 'journals/gis/RashidiSWDNV18',
                                       'number': '3',
                                       'pages': '622-636',
                                       'title': 'Assessing trends and seasonal '
                                                'changes in elephant poaching '
                                                'risk at the small area level '
                                                'using spatio-temporal '
                                                'Bayesian modeling.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/gis/RashidiSWDNV18',
                                       'venue': 'Int. J. Geogr. Inf. Sci.',
                                       'volume': '32',
                                       'year': '2018'},
                              'url': 'URL#1092704'},
                             {'@id': '1109899',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '211/1738',
                                                               'text': 'Ngatchu '
                                                                       'Damen '
                                                                       'Nyinkeu'},
                                                              {'@pid': '221/4422',
                                                               'text': 'Andrew '
                                                                       'M. '
                                                                       'Ngwa'},
                                                              {'@pid': '221/4427',
                                                               'text': 'Susannash '
                                                                       'Limunga '
                                                                       'Esowe'}]},
                                       'doi': '10.4018/IJTD.2018040105',
                                       'ee': 'https://doi.org/10.4018/IJTD.2018040105',
                                       'key': 'journals/ijtd/NyinkeuNE18',
                                       'number': '2',
                                       'pages': '74-85',
                                       'title': 'Acceptance of an Online '
                                                'Voting System at the Catholic '
                                                'University Institute of Buea.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/ijtd/NyinkeuNE18',
                                       'venue': 'Int. J. Technol. Diffusion',
                                       'volume': '9',
                                       'year': '2018'},
                              'url': 'URL#1109899'},
                             {'@id': '1141764',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '86/11384',
                                                               'text': 'Deanna '
                                                                       'J. '
                                                                       'Greene'},
                                                              {'@pid': '211/5229',
                                                               'text': 'Jonathan '
                                                                       'M. '
                                                                       'Koller'},
                                                              {'@pid': '216/9475',
                                                               'text': 'Jacqueline '
                                                                       'M. '
                                                                       'Hampton'},
                                                              {'@pid': '211/5176',
                                                               'text': 'Victoria '
                                                                       'Wesevich'},
                                                              {'@pid': '211/4811',
                                                               'text': 'Andrew '
                                                                       'N. '
                                                                       'Van'},
                                                              {'@pid': '211/4987',
                                                               'text': 'Annie '
                                                                       'L. '
                                                                       'Nguyen'},
                                                              {'@pid': '216/9682',
                                                               'text': 'Catherine '
                                                                       'R. '
                                                                       'Hoyt'},
                                                              {'@pid': '216/9660',
                                                               'text': 'Lindsey '
                                                                       'McIntyre'},
                                                              {'@pid': '211/4836',
                                                               'text': 'Eric '
                                                                       'A. '
                                                                       'Earl'},
                                                              {'@pid': '211/4893',
                                                               'text': 'Rachel '
                                                                       'L. '
                                                                       'Klein'},
                                                              {'@pid': '94/11222',
                                                               'text': 'Joshua '
                                                                       'S. '
                                                                       'Shimony'},
                                                              {'@pid': '08/7228',
                                                               'text': 'Steven '
                                                                       'E. '
                                                                       'Petersen'},
                                                              {'@pid': '06/9552',
                                                               'text': 'Bradley '
                                                                       'L. '
                                                                       'Schlaggar'},
                                                              {'@pid': '70/11013',
                                                               'text': 'Damien '
                                                                       'A. '
                                                                       'Fair'},
                                                              {'@pid': '43/11016',
                                                               'text': 'Nico '
                                                                       'U. F. '
                                                                       'Dosenbach'}]},
                                       'doi': '10.1016/J.NEUROIMAGE.2018.01.023',
                                       'ee': 'https://doi.org/10.1016/j.neuroimage.2018.01.023',
                                       'key': 'journals/neuroimage/GreeneKHWVNHMEK18',
                                       'pages': '234-245',
                                       'title': 'Behavioral interventions for '
                                                'reducing head motion during '
                                                'MRI scans in children.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/neuroimage/GreeneKHWVNHMEK18',
                                       'venue': 'NeuroImage',
                                       'volume': '171',
                                       'year': '2018'},
                              'url': 'URL#1141764'},
                             {'@id': '1150917',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '217/4094',
                                                               'text': 'Trung '
                                                                       'H. '
                                                                       'Nguyen'},
                                                              {'@pid': '142/6114',
                                                               'text': 'Simon '
                                                                       'D. '
                                                                       'Jones'},
                                                              {'@pid': '142/6204',
                                                               'text': 'Mariela '
                                                                       'Soto-Berelov'},
                                                              {'@pid': '86/7547',
                                                               'text': 'Andrew '
                                                                       'Haywood'},
                                                              {'@pid': '217/4047',
                                                               'text': 'Samuel '
                                                                       'Hislop'}]},
                                       'doi': '10.3390/RS10111825',
                                       'ee': 'https://doi.org/10.3390/rs10111825',
                                       'key': 'journals/remotesensing/NguyenJSHH18',
                                       'number': '11',
                                       'pages': '1825',
                                       'title': 'A Comparison of Imputation '
                                                'Approaches for Estimating '
                                                'Forest Biomass Using Landsat '
                                                'Time-Series and Inventory '
                                                'Data.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/remotesensing/NguyenJSHH18',
                                       'venue': 'Remote. Sens.',
                                       'volume': '10',
                                       'year': '2018'},
                              'url': 'URL#1150917'},
                             {'@id': '1152755',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '117/4552',
                                                               'text': 'Hien '
                                                                       'Duy '
                                                                       'Nguyen'},
                                                              {'@pid': '116/2172',
                                                               'text': 'Jeremy '
                                                                       'F. P. '
                                                                       'Ullmann'},
                                                              {'@pid': '83/3246',
                                                               'text': 'Geoffrey '
                                                                       'J. '
                                                                       'McLachlan'},
                                                              {'@pid': '214/0177',
                                                               'text': 'Venkatakaushik '
                                                                       'Voleti'},
                                                              {'@pid': '51/10206',
                                                               'text': 'Wenze '
                                                                       'Li'},
                                                              {'@pid': '13/3843',
                                                               'text': 'Elizabeth '
                                                                       'M. C. '
                                                                       'Hillman'},
                                                              {'@pid': '69/8841',
                                                               'text': 'David '
                                                                       'C. '
                                                                       'Reutens'},
                                                              {'@pid': '64/2690',
                                                               'text': 'Andrew '
                                                                       'L. '
                                                                       'Janke'}]},
                                       'doi': '10.1002/SAM.11366',
                                       'ee': 'https://doi.org/10.1002/sam.11366',
                                       'key': 'journals/sadm/NguyenUMVLHRJ18',
                                       'number': '1',
                                       'pages': '5-16',
                                       'title': 'Whole-volume clustering of '
                                                'time series data from '
                                                'zebrafish brain calcium '
                                                'images via mixture modeling.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/sadm/NguyenUMVLHRJ18',
                                       'venue': 'Stat. Anal. Data Min.',
                                       'volume': '11',
                                       'year': '2018'},
                              'url': 'URL#1152755'},
                             {'@id': '1199775',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '239/0960',
                                                               'text': 'Lexly '
                                                                       'Cruz'},
                                                              {'@pid': '239/0612',
                                                               'text': 'Tiffany '
                                                                       'Toor'},
                                                              {'@pid': '128/5665',
                                                               'text': 'Andrew '
                                                                       'Nguyen'}]},
                                       'ee': 'https://knowledge.amia.org/67852-amia-1.4259402/t007-1.4262189/t007-1.4262190/2976728-1.4263052/2975595-1.4263049',
                                       'key': 'conf/amia/CruzTN18',
                                       'title': 'Tabular Model for Structuring '
                                                'Cancer Treatment Guidelines.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/amia/CruzTN18',
                                       'venue': 'AMIA',
                                       'year': '2018'},
                              'url': 'URL#1199775'},
                             {'@id': '1200259',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '239/0612',
                                                               'text': 'Tiffany '
                                                                       'Toor'},
                                                              {'@pid': '239/0960',
                                                               'text': 'Lexly '
                                                                       'Cruz'},
                                                              {'@pid': '128/5665',
                                                               'text': 'Andrew '
                                                                       'Nguyen'}]},
                                       'ee': 'https://knowledge.amia.org/67852-amia-1.4259402/t007-1.4262189/t007-1.4262190/2975204-1.4262329/2975572-1.4262326',
                                       'key': 'conf/amia/ToorCN18',
                                       'title': 'Graph-based Representation of '
                                                'Cancer Treatment Guidelines.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/amia/ToorCN18',
                                       'venue': 'AMIA',
                                       'year': '2018'},
                              'url': 'URL#1200259'},
                             {'@id': '1204204',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '117/4552',
                                                               'text': 'Hien '
                                                                       'D. '
                                                                       'Nguyen '
                                                                       '0001'},
                                                              {'@pid': '229/4641',
                                                               'text': 'Andrew '
                                                                       'T. '
                                                                       'Jones'},
                                                              {'@pid': '83/3246',
                                                               'text': 'Geoffrey '
                                                                       'J. '
                                                                       'McLachlan'}]},
                                       'doi': '10.1007/978-981-13-6661-1_21',
                                       'ee': 'https://doi.org/10.1007/978-981-13-6661-1_21',
                                       'key': 'conf/ausdm/NguyenJM18',
                                       'pages': '269-280',
                                       'title': 'Positive Data Kernel Density '
                                                'Estimation via the LogKDE '
                                                'Package for R.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/ausdm/NguyenJM18',
                                       'venue': 'AusDM',
                                       'year': '2018'},
                              'url': 'URL#1204204'},
                             {'@id': '1204715',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '181/8469',
                                                               'text': 'Loan '
                                                                       'Thi '
                                                                       'Ngoc '
                                                                       'Dinh'},
                                                              {'@pid': '61/1339',
                                                               'text': 'Gour '
                                                                       'C. '
                                                                       'Karmakar'},
                                                              {'@pid': 'k/JoarderKamruzzaman',
                                                               'text': 'Joarder '
                                                                       'Kamruzzaman'},
                                                              {'@pid': '09/1062',
                                                               'text': 'Andrew '
                                                                       'Stranieri'}]},
                                       'ee': 'http://ceur-ws.org/Vol-2158/paper7.pdf',
                                       'key': 'conf/balt/DinhKKS18',
                                       'pages': '63-73',
                                       'title': 'Significance Level of a Big '
                                                'Data Query by Exploiting '
                                                'Business Processes and '
                                                'Strategies.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/balt/DinhKKS18',
                                       'venue': 'Doctoral '
                                                'Consortium/Forum@DB&amp;IS',
                                       'year': '2018'},
                              'url': 'URL#1204715'},
                             {'@id': '1279030',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '173/0617',
                                                               'text': 'Andrew '
                                                                       'Lukyamuzi'},
                                                              {'@pid': '44/4913',
                                                               'text': 'John '
                                                                       'Ngubiri'},
                                                              {'@pid': '33/10311',
                                                               'text': 'Washington '
                                                                       'Okori'}]},
                                       'doi': '10.1145/3195528.3195531',
                                       'ee': 'https://doi.org/10.1145/3195528.3195531',
                                       'key': 'conf/icse/LukyamuziNO18',
                                       'pages': '27-34',
                                       'title': 'Tracking food insecurity from '
                                                'tweets using data mining '
                                                'techniques.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icse/LukyamuziNO18',
                                       'venue': 'SEiA',
                                       'year': '2018'},
                              'url': 'URL#1279030'},
                             {'@id': '1301293',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '118/6238',
                                                               'text': 'Thuy '
                                                                       'T. '
                                                                       'Pham'},
                                                              {'@pid': '95/10112',
                                                               'text': 'Diep '
                                                                       'N. '
                                                                       'Nguyen'},
                                                              {'@pid': '71/2764',
                                                               'text': 'Eryk '
                                                                       'Dutkiewicz'},
                                                              {'@pid': '84/10611',
                                                               'text': 'Alistair '
                                                                       'Lee '
                                                                       'McEwan'},
                                                              {'@pid': '54/222',
                                                               'text': 'Philip '
                                                                       'H. W. '
                                                                       'Leong'},
                                                              {'@pid': '56/7889',
                                                               'text': 'Andrew '
                                                                       'J. '
                                                                       'Fuglevand'}]},
                                       'doi': '10.1109/ISMICT.2018.8573738',
                                       'ee': 'https://doi.org/10.1109/ISMICT.2018.8573738',
                                       'key': 'conf/ismict/PhamNDMLF18',
                                       'pages': '1-6',
                                       'title': 'Feature Analysis for '
                                                'Discrimination of Motor Unit '
                                                'Action Potentials.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/ismict/PhamNDMLF18',
                                       'venue': 'ISMICT',
                                       'year': '2018'},
                              'url': 'URL#1301293'},
                             {'@id': '1304740',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '65/9943',
                                                               'text': 'Ameer '
                                                                       'Shakayb '
                                                                       'Arsalaan'},
                                                              {'@pid': '00/5147',
                                                               'text': 'Hung '
                                                                       'Nguyen'},
                                                              {'@pid': '09/3904',
                                                               'text': 'Andrew '
                                                                       'Coyle'}]},
                                       'doi': '10.1109/ATNAC.2018.8615291',
                                       'ee': 'https://doi.org/10.1109/ATNAC.2018.8615291',
                                       'key': 'conf/itnac/ArsalaanNC18',
                                       'pages': '1-6',
                                       'title': 'Evaluating the Performance of '
                                                'QoI Algorithms in Realistic '
                                                'MANETs.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/itnac/ArsalaanNC18',
                                       'venue': 'ITNAC',
                                       'year': '2018'},
                              'url': 'URL#1304740'},
                             {'@id': '1304966',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '214/9822',
                                                               'text': 'Andrew '
                                                                       'Howe'},
                                                              {'@pid': '89/10562',
                                                               'text': 'Phong '
                                                                       'Nguyen'}]},
                                       'doi': '10.1007/978-3-319-91464-0_36',
                                       'ee': 'https://doi.org/10.1007/978-3-319-91464-0_36',
                                       'key': 'conf/its/HoweN18',
                                       'pages': '332-338',
                                       'title': 'SAT Reading Analysis Using '
                                                'Eye-Gaze Tracking Technology '
                                                'and Machine Learning.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/its/HoweN18',
                                       'venue': 'ITS',
                                       'year': '2018'},
                              'url': 'URL#1304966'},
                             {'@id': '1311401',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '136/8688',
                                                               'text': 'Matthew '
                                                                       'Shardlow'},
                                                              {'@pid': '174/1262',
                                                               'text': 'Nhung '
                                                                       'T. H. '
                                                                       'Nguyen'},
                                                              {'@pid': '72/633',
                                                               'text': 'Gareth '
                                                                       'Owen'},
                                                              {'@pid': '15/1859',
                                                               'text': 'Claire '
                                                                       'O&apos;Donovan'},
                                                              {'@pid': '27/8738',
                                                               'text': 'Andrew '
                                                                       'Leach'},
                                                              {'@pid': '04/6024',
                                                               'text': 'John '
                                                                       'McNaught'},
                                                              {'@pid': '77/9421',
                                                               'text': 'Steve '
                                                                       'Turner'},
                                                              {'@pid': '47/4142',
                                                               'text': 'Sophia '
                                                                       'Ananiadou'}]},
                                       'ee': 'http://www.lrec-conf.org/proceedings/lrec2018/summaries/229.html',
                                       'key': 'conf/lrec/ShardlowNOOLMTA18',
                                       'title': 'A New Corpus to Support Text '
                                                'Mining for the Curation of '
                                                'Metabolites in the ChEBI '
                                                'Database.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/lrec/ShardlowNOOLMTA18',
                                       'venue': 'LREC',
                                       'year': '2018'},
                              'url': 'URL#1311401'},
                             {'@id': '1315544',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '09/3904',
                                                               'text': 'Andrew '
                                                                       'Coyle'},
                                                              {'@pid': '00/5147',
                                                               'text': 'Hung '
                                                                       'Nguyen'},
                                                              {'@pid': '204/2018',
                                                               'text': 'Peter '
                                                                       'Boyd'},
                                                              {'@pid': '233/6436',
                                                               'text': 'Gregory '
                                                                       'Judd'}]},
                                       'doi': '10.1109/MILCIS.2018.8574115',
                                       'ee': 'https://doi.org/10.1109/MilCIS.2018.8574115',
                                       'key': 'conf/milcis/CoyleNBJ18',
                                       'pages': '1-6',
                                       'title': 'Improving the Performance of '
                                                'Land Tactical Digital '
                                                'Networks Using Measures of '
                                                'Network Capacity.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/milcis/CoyleNBJ18',
                                       'venue': 'MilCIS',
                                       'year': '2018'},
                              'url': 'URL#1315544'},
                             {'@id': '1337168',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '161/6303',
                                                               'text': 'Georgiana '
                                                                       'Haldeman'},
                                                              {'@pid': '37/49',
                                                               'text': 'Andrew '
                                                                       'Tjang'},
                                                              {'@pid': '82/5111',
                                                               'text': 'Monica '
                                                                       'Babes-Vroman'},
                                                              {'@pid': '214/8055',
                                                               'text': 'Stephen '
                                                                       'Bartos'},
                                                              {'@pid': '82/11268',
                                                               'text': 'Jay '
                                                                       'Shah'},
                                                              {'@pid': '214/7871',
                                                               'text': 'Danielle '
                                                                       'Yucht'},
                                                              {'@pid': 'n/ThuDNguyen',
                                                               'text': 'Thu D. '
                                                                       'Nguyen'}]},
                                       'doi': '10.1145/3159450.3159502',
                                       'ee': 'https://doi.org/10.1145/3159450.3159502',
                                       'key': 'conf/sigcse/HaldemanTBBSYN18',
                                       'pages': '278-283',
                                       'title': 'Providing Meaningful Feedback '
                                                'for Autograding of '
                                                'Programming Assignments.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/sigcse/HaldemanTBBSYN18',
                                       'venue': 'SIGCSE',
                                       'year': '2018'},
                              'url': 'URL#1337168'},
                             {'@id': '1358612',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '91/8376',
                                                               'text': 'Mehwish '
                                                                       'Nasim'},
                                                              {'@pid': '128/5665',
                                                               'text': 'Andrew '
                                                                       'Nguyen'},
                                                              {'@pid': '178/3474',
                                                               'text': 'Nick '
                                                                       'Lothian'},
                                                              {'@pid': '218/0919',
                                                               'text': 'Robert '
                                                                       'Cope'},
                                                              {'@pid': '126/5006',
                                                               'text': 'Lewis '
                                                                       'Mitchell'}]},
                                       'doi': '10.1145/3184558.3191574',
                                       'ee': 'https://doi.org/10.1145/3184558.3191574',
                                       'key': 'conf/www/NasimNLCM18',
                                       'pages': '1331-1339',
                                       'title': 'Real-time Detection of '
                                                'Content Polluters in '
                                                'Partially Observable Twitter '
                                                'Networks.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/www/NasimNLCM18',
                                       'venue': 'WWW',
                                       'year': '2018'},
                              'url': 'URL#1358612'},
                             {'@id': '1366693',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '229/4641',
                                                               'text': 'Andrew '
                                                                       'T. '
                                                                       'Jones'},
                                                              {'@pid': '117/4552',
                                                               'text': 'Hien '
                                                                       'Duy '
                                                                       'Nguyen'},
                                                              {'@pid': '83/3246',
                                                               'text': 'Geoffrey '
                                                                       'J. '
                                                                       'McLachlan'}]},
                                       'doi': '10.21105/JOSS.00870',
                                       'ee': 'https://doi.org/10.21105/joss.00870',
                                       'key': 'journals/jossw/JonesNM18',
                                       'number': '28',
                                       'pages': '870',
                                       'title': 'logKDE - log-transformed '
                                                'kernel density estimation.',
                                       'type': 'Data and Artifacts',
                                       'url': 'https://dblp.org/rec/journals/jossw/JonesNM18',
                                       'venue': 'J. Open Source Softw.',
                                       'volume': '3',
                                       'year': '2018'},
                              'url': 'URL#1366693'},
                             {'@id': '1376265',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '91/8376',
                                                               'text': 'Mehwish '
                                                                       'Nasim'},
                                                              {'@pid': '128/5665',
                                                               'text': 'Andrew '
                                                                       'Nguyen'},
                                                              {'@pid': '178/3474',
                                                               'text': 'Nick '
                                                                       'Lothian'},
                                                              {'@pid': '218/0919',
                                                               'text': 'Robert '
                                                                       'Cope'},
                                                              {'@pid': '126/5006',
                                                               'text': 'Lewis '
                                                                       'Mitchell'}]},
                                       'ee': 'http://arxiv.org/abs/1804.01235',
                                       'key': 'journals/corr/abs-1804-01235',
                                       'title': 'Real-time Detection of '
                                                'Content Polluters in '
                                                'Partially Observable Twitter '
                                                'Networks.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-1804-01235',
                                       'venue': 'CoRR',
                                       'volume': 'abs/1804.01235',
                                       'year': '2018'},
                              'url': 'URL#1376265'},
                             {'@id': '1395759',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '21/2107',
                                                               'text': 'Jonathan '
                                                                       'Tuke'},
                                                              {'@pid': '128/5665',
                                                               'text': 'Andrew '
                                                                       'Nguyen'},
                                                              {'@pid': '91/8376',
                                                               'text': 'Mehwish '
                                                                       'Nasim'},
                                                              {'@pid': '13/2439',
                                                               'text': 'Drew '
                                                                       'Mellor'},
                                                              {'@pid': '157/2404',
                                                               'text': 'Asanga '
                                                                       'Wickramasinghe'},
                                                              {'@pid': '55/1744',
                                                               'text': 'Nigel '
                                                                       'G. '
                                                                       'Bean'},
                                                              {'@pid': '126/5006',
                                                               'text': 'Lewis '
                                                                       'Mitchell'}]},
                                       'ee': 'http://arxiv.org/abs/1809.08427',
                                       'key': 'journals/corr/abs-1809-08427',
                                       'title': 'Pachinko Prediction - A '
                                                'Bayesian method for event '
                                                'prediction from social media '
                                                'data.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-1809-08427',
                                       'venue': 'CoRR',
                                       'volume': 'abs/1809.08427',
                                       'year': '2018'},
                              'url': 'URL#1395759'},
                             {'@id': '1397887',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '228/8062',
                                                               'text': 'Eric '
                                                                       'Dodds'},
                                                              {'@pid': '48/6075',
                                                               'text': 'Huy '
                                                                       'Nguyen'},
                                                              {'@pid': '228/8011',
                                                               'text': 'Simao '
                                                                       'Herdade'},
                                                              {'@pid': '182/6849',
                                                               'text': 'Jack '
                                                                       'Culpepper'},
                                                              {'@pid': '77/7218',
                                                               'text': 'Andrew '
                                                                       'Kae'},
                                                              {'@pid': '93/6711',
                                                               'text': 'Pierre '
                                                                       'Garrigues'}]},
                                       'ee': 'http://arxiv.org/abs/1810.04652',
                                       'key': 'journals/corr/abs-1810-04652',
                                       'title': 'Learning Embeddings for '
                                                'Product Visual Search with '
                                                'Triplet Loss and Online '
                                                'Sampling.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-1810-04652',
                                       'venue': 'CoRR',
                                       'volume': 'abs/1810.04652',
                                       'year': '2018'},
                              'url': 'URL#1397887'},
                             {'@id': '1419208',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '57/2878',
                                                               'text': 'Fei '
                                                                       'Fang'},
                                                              {'@pid': '117/4935',
                                                               'text': 'Thanh '
                                                                       'Hong '
                                                                       'Nguyen'},
                                                              {'@pid': '178/8703',
                                                               'text': 'Rob '
                                                                       'Pickles'},
                                                              {'@pid': '178/8728',
                                                               'text': 'Wai Y. '
                                                                       'Lam'},
                                                              {'@pid': '178/8547',
                                                               'text': 'Gopalasamy '
                                                                       'R. '
                                                                       'Clements'},
                                                              {'@pid': '42/6178-1',
                                                               'text': 'Bo An '
                                                                       '0001'},
                                                              {'@pid': '12/2427',
                                                               'text': 'Amandeep '
                                                                       'Singh'},
                                                              {'@pid': '198/2772',
                                                               'text': 'Brian '
                                                                       'C. '
                                                                       'Schwedock'},
                                                              {'@pid': '67/2667',
                                                               'text': 'Milind '
                                                                       'Tambe'},
                                                              {'@pid': '151/3581',
                                                               'text': 'Andrew '
                                                                       'Lemieux'}]},
                                       'doi': '10.1609/AIMAG.V38I1.2710',
                                       'ee': 'https://doi.org/10.1609/aimag.v38i1.2710',
                                       'key': 'journals/aim/FangNPLCASSTL17',
                                       'number': '1',
                                       'pages': '23-36',
                                       'title': 'PAWS - A Deployed '
                                                'Game-Theoretic Application to '
                                                'Combat Poaching.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/aim/FangNPLCASSTL17',
                                       'venue': 'AI Mag.',
                                       'volume': '38',
                                       'year': '2017'},
                              'url': 'URL#1419208'},
                             {'@id': '1438961',
                              '@score': '2',
                              'info': {'authors': {'author': {'@pid': '80/11484',
                                                              'text': 'Andrew '
                                                                      'L. '
                                                                      'Nguyen'}},
                                       'doi': '10.1080/03610918.2015.1043383',
                                       'ee': 'https://doi.org/10.1080/03610918.2015.1043383',
                                       'key': 'journals/cssc/Nguyen17',
                                       'number': '5',
                                       'pages': '3892-3906',
                                       'title': 'Regenerative Markov Chain '
                                                'Importance Sampling.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/cssc/Nguyen17',
                                       'venue': 'Commun. Stat. Simul. Comput.',
                                       'volume': '46',
                                       'year': '2017'},
                              'url': 'URL#1438961'},
                             {'@id': '1448273',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '96/9120',
                                                               'text': 'Andrew '
                                                                       'Burton'},
                                                              {'@pid': '65/4471',
                                                               'text': 'Hoa Le '
                                                                       'Minh'},
                                                              {'@pid': '19/6782',
                                                               'text': 'Nauman '
                                                                       'Aslam'},
                                                              {'@pid': '204/8547',
                                                               'text': 'L. Le'},
                                                              {'@pid': '32/1434',
                                                               'text': 'T. D. '
                                                                       'Nguyen'}]},
                                       'doi': '10.4108/EAI.3-8-2017.152982',
                                       'ee': 'https://doi.org/10.4108/eai.3-8-2017.152982',
                                       'key': 'journals/ew/BurtonMALN17',
                                       'number': '13',
                                       'pages': 'e4',
                                       'title': 'LED based lighting and '
                                                'communications - An emerging '
                                                'technology for a greener more '
                                                'sustainable future.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/ew/BurtonMALN17',
                                       'venue': 'EAI Endorsed Trans. Energy '
                                                'Web',
                                       'volume': '4',
                                       'year': '2017'},
                              'url': 'URL#1448273'},
                             {'@id': '1452113',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '57/2878',
                                                               'text': 'Fei '
                                                                       'Fang'},
                                                              {'@pid': '117/4935',
                                                               'text': 'Thanh '
                                                                       'Hong '
                                                                       'Nguyen'},
                                                              {'@pid': '26/9089',
                                                               'text': 'Arunesh '
                                                                       'Sinha'},
                                                              {'@pid': '180/1416',
                                                               'text': 'Shahrzad '
                                                                       'Gholami'},
                                                              {'@pid': '170/5576',
                                                               'text': 'Andrew '
                                                                       'J. '
                                                                       'Plumptre'},
                                                              {'@pid': '160/1079',
                                                               'text': 'Lucas '
                                                                       'Joppa'},
                                                              {'@pid': '67/2667',
                                                               'text': 'Milind '
                                                                       'Tambe'},
                                                              {'@pid': '170/5674',
                                                               'text': 'Margaret '
                                                                       'Driciru'},
                                                              {'@pid': '170/5591',
                                                               'text': 'Fred '
                                                                       'Wanyama'},
                                                              {'@pid': '170/5632',
                                                               'text': 'Aggrey '
                                                                       'Rwetsiba'},
                                                              {'@pid': '180/1428',
                                                               'text': 'Rob '
                                                                       'Critchlow'},
                                                              {'@pid': '86/8638',
                                                               'text': 'Colin '
                                                                       'M. '
                                                                       'Beale'}]},
                                       'doi': '10.1147/JRD.2017.2713584',
                                       'ee': 'https://doi.org/10.1147/JRD.2017.2713584',
                                       'key': 'journals/ibmrd/FangNSGPJTDWRCB17',
                                       'number': '6',
                                       'pages': '3:1-3:12',
                                       'title': 'Predicting poaching for '
                                                'wildlife Protection.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/ibmrd/FangNSGPJTDWRCB17',
                                       'venue': 'IBM J. Res. Dev.',
                                       'volume': '61',
                                       'year': '2017'},
                              'url': 'URL#1452113'},
                             {'@id': '1455377',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '200/7317',
                                                               'text': 'Manh '
                                                                       'The '
                                                                       'Van'},
                                                              {'@pid': '200/7141',
                                                               'text': 'Nguyen '
                                                                       'Van '
                                                                       'Tuan'},
                                                              {'@pid': '119/0288',
                                                               'text': 'Tran '
                                                                       'The '
                                                                       'Son'},
                                                              {'@pid': '65/4471',
                                                               'text': 'Hoa Le '
                                                                       'Minh'},
                                                              {'@pid': '96/9120',
                                                               'text': 'Andrew '
                                                                       'Burton'}]},
                                       'doi': '10.1049/IET-COM.2016.0961',
                                       'ee': 'https://doi.org/10.1049/iet-com.2016.0961',
                                       'key': 'journals/iet-com/VanTSMB17',
                                       'number': '6',
                                       'pages': '864-871',
                                       'title': 'Weighted k-nearest neighbour '
                                                'model for indoor VLC '
                                                'positioning.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/iet-com/VanTSMB17',
                                       'venue': 'IET Commun.',
                                       'volume': '11',
                                       'year': '2017'},
                              'url': 'URL#1455377'},
                             {'@id': '1478786',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '159/2501',
                                                               'text': 'An '
                                                                       'Hung '
                                                                       'Nguyen'},
                                                              {'@pid': '210/1616',
                                                               'text': 'Thomas '
                                                                       'Guillemette'},
                                                              {'@pid': '117/1912',
                                                               'text': 'Andrew '
                                                                       'J. '
                                                                       'Lambert'},
                                                              {'@pid': '75/4744',
                                                               'text': 'Mark '
                                                                       'Pickering'},
                                                              {'@pid': '38/616',
                                                               'text': 'Matthew '
                                                                       'A. '
                                                                       'Garratt'}]},
                                       'doi': '10.1117/1.JEI.26.5.053010',
                                       'ee': 'https://doi.org/10.1117/1.JEI.26.5.053010',
                                       'key': 'journals/jei/NguyenGLPG17',
                                       'number': '5',
                                       'pages': '53010',
                                       'title': 'Increasing feasibility of the '
                                                'field-programmable gate array '
                                                'implementation of an '
                                                'iterative image registration '
                                                'using a kernel-warping '
                                                'algorithm.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/jei/NguyenGLPG17',
                                       'venue': 'J. Electronic Imaging',
                                       'volume': '26',
                                       'year': '2017'},
                              'url': 'URL#1478786'},
                             {'@id': '1488904',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '93/2262',
                                                               'text': 'Andrew '
                                                                       'Kennedy'},
                                                              {'@pid': '19/5555',
                                                               'text': 'Karsten '
                                                                       'Klein '
                                                                       '0001'},
                                                              {'@pid': '181/2303-1',
                                                               'text': 'An '
                                                                       'Nguyen '
                                                                       '0001'},
                                                              {'@pid': '136/9391',
                                                               'text': 'Florence '
                                                                       'Ying '
                                                                       'Wang'}]},
                                       'doi': '10.1007/S12650-016-0374-6',
                                       'ee': 'https://doi.org/10.1007/s12650-016-0374-6',
                                       'key': 'journals/jvis/KennedyKNW17',
                                       'number': '3',
                                       'pages': '417-432',
                                       'title': 'The Graph Landscape - using '
                                                'visual analytics for graph '
                                                'set analysis.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/jvis/KennedyKNW17',
                                       'venue': 'J. Vis.',
                                       'volume': '20',
                                       'year': '2017'},
                              'url': 'URL#1488904'},
                             {'@id': '1496402',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '197/3989',
                                                               'text': 'Dac-Trung '
                                                                       'Nguyen'},
                                                              {'@pid': '146/3307',
                                                               'text': 'Stephen '
                                                                       'L. '
                                                                       'Mathias'},
                                                              {'@pid': '59/183',
                                                               'text': 'Cristian '
                                                                       'Bologa'},
                                                              {'@pid': '83/546',
                                                               'text': 'Søren '
                                                                       'Brunak'},
                                                              {'@pid': '149/9818',
                                                               'text': 'Nicolas '
                                                                       'F. '
                                                                       'Fernandez'},
                                                              {'@pid': '17/5801',
                                                               'text': 'Anna '
                                                                       'Gaulton'},
                                                              {'@pid': '04/3318',
                                                               'text': 'Anne '
                                                                       'Hersey'},
                                                              {'@pid': '197/3979',
                                                               'text': 'Jayme '
                                                                       'Holmes'},
                                                              {'@pid': '06/6699',
                                                               'text': 'Lars '
                                                                       'Juhl '
                                                                       'Jensen'},
                                                              {'@pid': '197/4129',
                                                               'text': 'Anneli '
                                                                       'Karlsson'},
                                                              {'@pid': '62/1779',
                                                               'text': 'Guixia '
                                                                       'Liu'},
                                                              {'@pid': '09/1149',
                                                               'text': 'Avi '
                                                                       'Ma&apos;ayan'},
                                                              {'@pid': '197/3858',
                                                               'text': 'Geetha '
                                                                       'Mandava'},
                                                              {'@pid': '12/3125',
                                                               'text': 'Subramani '
                                                                       'Mani'},
                                                              {'@pid': '46/2159',
                                                               'text': 'Saurabh '
                                                                       'Mehta'},
                                                              {'@pid': '27/5494',
                                                               'text': 'John '
                                                                       'P. '
                                                                       'Overington'},
                                                              {'@pid': '197/3833',
                                                               'text': 'Juhee '
                                                                       'Patel'},
                                                              {'@pid': '149/9534',
                                                               'text': 'Andrew '
                                                                       'D. '
                                                                       'Rouillard'},
                                                              {'@pid': '60/569',
                                                               'text': 'Stephan '
                                                                       'C. '
                                                                       'Schürer'},
                                                              {'@pid': '197/3974',
                                                               'text': 'Timothy '
                                                                       'Sheils'},
                                                              {'@pid': '36/11000',
                                                               'text': 'Anton '
                                                                       'Simeonov'},
                                                              {'@pid': '141/3669',
                                                               'text': 'Larry '
                                                                       'A. '
                                                                       'Sklar'},
                                                              {'@pid': '148/2172',
                                                               'text': 'Noel '
                                                                       'Southall'},
                                                              {'@pid': '02/7969',
                                                               'text': 'Oleg '
                                                                       'Ursu'},
                                                              {'@pid': '69/745',
                                                               'text': 'Dusica '
                                                                       'Vidovic'},
                                                              {'@pid': '197/3931',
                                                               'text': 'Anna '
                                                                       'Waller'},
                                                              {'@pid': '146/3079',
                                                               'text': 'Jeremy '
                                                                       'J. '
                                                                       'Yang'},
                                                              {'@pid': '148/2196',
                                                               'text': 'Ajit '
                                                                       'Jadhav'},
                                                              {'@pid': '70/3641',
                                                               'text': 'Tudor '
                                                                       'I. '
                                                                       'Oprea'},
                                                              {'@pid': '37/2923',
                                                               'text': 'Rajarshi '
                                                                       'Guha'}]},
                                       'doi': '10.1093/NAR/GKW1072',
                                       'ee': 'https://doi.org/10.1093/nar/gkw1072',
                                       'key': 'journals/nar/NguyenMBBFGHHJK17',
                                       'number': 'Database-Issue',
                                       'pages': 'D995-D1002',
                                       'title': 'Pharos - Collating protein '
                                                'information to shed light on '
                                                'the druggable genome.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/nar/NguyenMBBFGHHJK17',
                                       'venue': 'Nucleic Acids Res.',
                                       'volume': '45',
                                       'year': '2017'},
                              'url': 'URL#1496402'},
                             {'@id': '1496540',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '09/1365',
                                                               'text': 'Xin '
                                                                       'Li'},
                                                              {'@pid': '40/3219',
                                                               'text': 'Yungil '
                                                                       'Kim'},
                                                              {'@pid': '270/3643',
                                                               'text': 'Emily '
                                                                       'K. '
                                                                       'Tsang'},
                                                              {'@pid': '211/6136',
                                                               'text': 'Joe R. '
                                                                       'Davis'},
                                                              {'@pid': '270/3566',
                                                               'text': 'Farhan '
                                                                       'N. '
                                                                       'Damani'},
                                                              {'@pid': '254/3336',
                                                               'text': 'Colby '
                                                                       'Chiang'},
                                                              {'@pid': '270/3546',
                                                               'text': 'Gaelen '
                                                                       'T. '
                                                                       'Hess'},
                                                              {'@pid': '15/6108',
                                                               'text': 'Zachary '
                                                                       'Zappala'},
                                                              {'@pid': '270/3158',
                                                               'text': 'Benjamin '
                                                                       'J. '
                                                                       'Strober'},
                                                              {'@pid': '04/11187',
                                                               'text': 'Alexandra '
                                                                       'J. '
                                                                       'Scott'},
                                                              {'@pid': '197/8317',
                                                               'text': 'Amy '
                                                                       'Li'},
                                                              {'@pid': '166/9708',
                                                               'text': 'Andrea '
                                                                       'Ganna'},
                                                              {'@pid': '270/3183',
                                                               'text': 'Michael '
                                                                       'C. '
                                                                       'Bassik'},
                                                              {'@pid': '270/3300',
                                                               'text': 'Jason '
                                                                       'D. '
                                                                       'Merker'},
                                                              {'@pid': '15/2814',
                                                               'text': 'François '
                                                                       'Aguet'},
                                                              {'@pid': '270/3305',
                                                               'text': 'Kristin '
                                                                       'G. '
                                                                       'Ardlie'},
                                                              {'@pid': '197/4068',
                                                               'text': 'Beryl '
                                                                       'B. '
                                                                       'Cummings'},
                                                              {'@pid': '270/3540',
                                                               'text': 'Ellen '
                                                                       'T. '
                                                                       'Gelfand'},
                                                              {'@pid': '65/1524',
                                                               'text': 'Gad '
                                                                       'Getz'},
                                                              {'@pid': '121/1352',
                                                               'text': 'Kane '
                                                                       'Hadley'},
                                                              {'@pid': '16/7063',
                                                               'text': 'Robert '
                                                                       'E. '
                                                                       'Handsaker'},
                                                              {'@pid': '92/9422',
                                                               'text': 'Katherine '
                                                                       'H. '
                                                                       'Huang'},
                                                              {'@pid': '270/2976',
                                                               'text': 'Seva '
                                                                       'Kashin'},
                                                              {'@pid': '26/9779',
                                                               'text': 'Konrad '
                                                                       'J. '
                                                                       'Karczewski'},
                                                              {'@pid': '00/5567',
                                                               'text': 'Monkol '
                                                                       'Lek'},
                                                              {'@pid': '66/2069',
                                                               'text': 'Xiao '
                                                                       'Li'},
                                                              {'@pid': '197/3603',
                                                               'text': 'Daniel '
                                                                       'G. '
                                                                       'MacArthur'},
                                                              {'@pid': '270/3053',
                                                               'text': 'Jared '
                                                                       'L. '
                                                                       'Nedzel'},
                                                              {'@pid': '90/10915',
                                                               'text': 'Duyen '
                                                                       'T. '
                                                                       'Nguyen'},
                                                              {'@pid': '46/3335',
                                                               'text': 'Michael '
                                                                       'S. '
                                                                       'Noble'},
                                                              {'@pid': '270/3412',
                                                               'text': 'Ayellet '
                                                                       'V. '
                                                                       'Segrè'},
                                                              {'@pid': '269/0183',
                                                               'text': 'Casandra '
                                                                       'A. '
                                                                       'Trowbridge'},
                                                              {'@pid': '270/2917',
                                                               'text': 'Taru '
                                                                       'Tukiainen'},
                                                              {'@pid': '270/3528',
                                                               'text': 'Nathan '
                                                                       'S. '
                                                                       'Abell'},
                                                              {'@pid': '270/3094',
                                                               'text': 'Brunilda '
                                                                       'Balliu'},
                                                              {'@pid': '124/1436',
                                                               'text': 'Ruth '
                                                                       'Barshir'},
                                                              {'@pid': '124/1154',
                                                               'text': 'Omer '
                                                                       'Basha'},
                                                              {'@pid': '75/5304',
                                                               'text': 'Alexis '
                                                                       'Battle'},
                                                              {'@pid': '270/2801',
                                                               'text': 'Gireesh '
                                                                       'K. '
                                                                       'Bogu'},
                                                              {'@pid': '20/4278',
                                                               'text': 'Andrew '
                                                                       'Brown'},
                                                              {'@pid': '215/3822',
                                                               'text': 'Christopher '
                                                                       'D. '
                                                                       'Brown'},
                                                              {'@pid': '270/3271',
                                                               'text': 'Stephane '
                                                                       'E. '
                                                                       'Castel'},
                                                              {'@pid': '88/442',
                                                               'text': 'Lin S. '
                                                                       'Chen'},
                                                              {'@pid': '209/7740',
                                                               'text': 'Donald '
                                                                       'F. '
                                                                       'Conrad'},
                                                              {'@pid': '39/3955',
                                                               'text': 'Nancy '
                                                                       'J. '
                                                                       'Cox'},
                                                              {'@pid': '57/7098',
                                                               'text': 'Olivier '
                                                                       'Delaneau'},
                                                              {'@pid': '55/6038',
                                                               'text': 'Emmanouil '
                                                                       'T. '
                                                                       'Dermitzakis'},
                                                              {'@pid': '53/328',
                                                               'text': 'Barbara '
                                                                       'E. '
                                                                       'Engelhardt'},
                                                              {'@pid': 'e/EEskin',
                                                               'text': 'Eleazar '
                                                                       'Eskin'},
                                                              {'@pid': '211/4328',
                                                               'text': 'Pedro '
                                                                       'G. '
                                                                       'Ferreira'},
                                                              {'@pid': '270/3214',
                                                               'text': 'Laure '
                                                                       'Frésard'},
                                                              {'@pid': '27/7970',
                                                               'text': 'Eric '
                                                                       'R. '
                                                                       'Gamazon'},
                                                              {'@pid': '216/9701',
                                                               'text': 'Diego '
                                                                       'Garrido-Martín'},
                                                              {'@pid': '270/3164',
                                                               'text': 'Ariel '
                                                                       'D. H. '
                                                                       'Gewirtz'},
                                                              {'@pid': '160/4314',
                                                               'text': 'Genna '
                                                                       'Gliner'},
                                                              {'@pid': '270/3293',
                                                               'text': 'Michael '
                                                                       'J. '
                                                                       'Gloudemans'},
                                                              {'@pid': '84/1360',
                                                               'text': 'Roderic '
                                                                       'Guigó'},
                                                              {'@pid': '07/7971',
                                                               'text': 'Ira M. '
                                                                       'Hall'},
                                                              {'@pid': '28/5670',
                                                               'text': 'Buhm '
                                                                       'Han'},
                                                              {'@pid': '11/1735',
                                                               'text': 'Yuan '
                                                                       'He'},
                                                              {'@pid': '09/6555',
                                                               'text': 'Farhad '
                                                                       'Hormozdiari'},
                                                              {'@pid': '270/2932',
                                                               'text': 'Cedric '
                                                                       'Howald'},
                                                              {'@pid': '242/5540',
                                                               'text': 'Hae '
                                                                       'Kyung '
                                                                       'Im'},
                                                              {'@pid': '156/1133',
                                                               'text': 'Brian '
                                                                       'Jo'},
                                                              {'@pid': '38/1672',
                                                               'text': 'Eun '
                                                                       'Yong '
                                                                       'Kang'},
                                                              {'@pid': '270/3752',
                                                               'text': 'Sarah '
                                                                       'Kim-Hellmuth'},
                                                              {'@pid': '131/9914',
                                                               'text': 'Tuuli '
                                                                       'Lappalainen'},
                                                              {'@pid': '28/538-4',
                                                               'text': 'Gen Li '
                                                                       '0004'},
                                                              {'@pid': '259/3822',
                                                               'text': 'Boxiang '
                                                                       'Liu'},
                                                              {'@pid': '99/8436',
                                                               'text': 'Serghei '
                                                                       'Mangul'},
                                                              {'@pid': '71/7108',
                                                               'text': 'Mark '
                                                                       'I. '
                                                                       'McCarthy'},
                                                              {'@pid': '215/3578',
                                                               'text': 'Ian C. '
                                                                       'McDowell'},
                                                              {'@pid': '155/3655',
                                                               'text': 'Pejman '
                                                                       'Mohammadi '
                                                                       '0001'},
                                                              {'@pid': '270/3310',
                                                               'text': 'Jean '
                                                                       'Monlong'},
                                                              {'@pid': 'm/StephenMontgomery',
                                                               'text': 'Stephen '
                                                                       'B. '
                                                                       'Montgomery'}]},
                                       'doi': '10.1038/NATURE24267',
                                       'ee': 'https://doi.org/10.1038/nature24267',
                                       'key': 'journals/nature/LiKTDDCHZSSLGBM17',
                                       'number': '7675',
                                       'pages': '239-243',
                                       'title': 'The impact of rare variation '
                                                'on gene expression across '
                                                'tissues.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/nature/LiKTDDCHZSSLGBM17',
                                       'venue': 'Nat.',
                                       'volume': '550',
                                       'year': '2017'},
                              'url': 'URL#1496540'},
                             {'@id': '1497151',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '117/4552',
                                                               'text': 'Hien '
                                                                       'Duy '
                                                                       'Nguyen'},
                                                              {'@pid': '83/3246',
                                                               'text': 'Geoffrey '
                                                                       'J. '
                                                                       'McLachlan'},
                                                              {'@pid': '116/3728',
                                                               'text': 'Pierre '
                                                                       'Orban'},
                                                              {'@pid': '35/5051',
                                                               'text': 'Pierre '
                                                                       'Bellec'},
                                                              {'@pid': '64/2690',
                                                               'text': 'Andrew '
                                                                       'L. '
                                                                       'Janke'}]},
                                       'doi': '10.1162/NECO_A_00938',
                                       'ee': 'https://doi.org/10.1162/NECO_a_00938',
                                       'key': 'journals/neco/NguyenMOBJ17',
                                       'number': '4',
                                       'pages': '990-1020',
                                       'title': 'Maximum Pseudolikelihood '
                                                'Estimation for Model-Based '
                                                'Clustering of Time Series '
                                                'Data.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/neco/NguyenMOBJ17',
                                       'venue': 'Neural Comput.',
                                       'volume': '29',
                                       'year': '2017'},
                              'url': 'URL#1497151'},
                             {'@id': '1497585',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '43/11016',
                                                               'text': 'Nico '
                                                                       'U. F. '
                                                                       'Dosenbach'},
                                                              {'@pid': '211/5229',
                                                               'text': 'Jonathan '
                                                                       'M. '
                                                                       'Koller'},
                                                              {'@pid': '211/4836',
                                                               'text': 'Eric '
                                                                       'A. '
                                                                       'Earl'},
                                                              {'@pid': '211/5026',
                                                               'text': 'Oscar '
                                                                       'Miranda-Dominguez'},
                                                              {'@pid': '211/4893',
                                                               'text': 'Rachel '
                                                                       'L. '
                                                                       'Klein'},
                                                              {'@pid': '211/4811',
                                                               'text': 'Andrew '
                                                                       'N. '
                                                                       'Van'},
                                                              {'@pid': '01/10745',
                                                               'text': 'Abraham '
                                                                       'Z. '
                                                                       'Snyder'},
                                                              {'@pid': '22/11396',
                                                               'text': 'Bonnie '
                                                                       'J. '
                                                                       'Nagel'},
                                                              {'@pid': '138/3519',
                                                               'text': 'Joel '
                                                                       'T. '
                                                                       'Nigg'},
                                                              {'@pid': '211/4987',
                                                               'text': 'Annie '
                                                                       'L. '
                                                                       'Nguyen'},
                                                              {'@pid': '211/5176',
                                                               'text': 'Victoria '
                                                                       'Wesevich'},
                                                              {'@pid': '86/11384',
                                                               'text': 'Deanna '
                                                                       'J. '
                                                                       'Greene'},
                                                              {'@pid': '70/11013',
                                                               'text': 'Damien '
                                                                       'A. '
                                                                       'Fair'}]},
                                       'doi': '10.1016/J.NEUROIMAGE.2017.08.025',
                                       'ee': 'https://doi.org/10.1016/j.neuroimage.2017.08.025',
                                       'key': 'journals/neuroimage/DosenbachKEMKVS17',
                                       'pages': '80-93',
                                       'title': 'Real-time motion analytics '
                                                'during brain MRI improve data '
                                                'quality and reduce costs.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/neuroimage/DosenbachKEMKVS17',
                                       'venue': 'NeuroImage',
                                       'volume': '161',
                                       'year': '2017'},
                              'url': 'URL#1497585'},
                             {'@id': '1501686',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '188/5712',
                                                               'text': 'Jeffrey '
                                                                       'P. '
                                                                       'Nguyen'},
                                                              {'@pid': '188/5999',
                                                               'text': 'Ashley '
                                                                       'N. '
                                                                       'Linder'},
                                                              {'@pid': '188/5955',
                                                               'text': 'George '
                                                                       'S. '
                                                                       'Plummer'},
                                                              {'@pid': '123/4441',
                                                               'text': 'Joshua '
                                                                       'W. '
                                                                       'Shaevitz'},
                                                              {'@pid': '188/6114',
                                                               'text': 'Andrew '
                                                                       'M. '
                                                                       'Leifer'}]},
                                       'doi': '10.1371/JOURNAL.PCBI.1005517',
                                       'ee': 'https://doi.org/10.1371/journal.pcbi.1005517',
                                       'key': 'journals/ploscb/NguyenLPSL17',
                                       'number': '5',
                                       'title': 'Automatically tracking '
                                                'neurons in a moving and '
                                                'deforming brain.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/ploscb/NguyenLPSL17',
                                       'venue': 'PLoS Comput. Biol.',
                                       'volume': '13',
                                       'year': '2017'},
                              'url': 'URL#1501686'},
                             {'@id': '1519231',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '166/3326',
                                                               'text': 'Vinh '
                                                                       'T. '
                                                                       'Tran'},
                                                              {'@pid': '53/3738',
                                                               'text': 'Andrew '
                                                                       'G. '
                                                                       'Dempster'},
                                                              {'@pid': '199/0631',
                                                               'text': 'Thuan '
                                                                       'Dinh '
                                                                       'Nguyen'},
                                                              {'@pid': '32/8209',
                                                               'text': 'Nagaraj '
                                                                       'Channarayapatna '
                                                                       'Shivaramaiah'}]},
                                       'doi': '10.1109/TAES.2017.2650298',
                                       'ee': 'https://doi.org/10.1109/TAES.2017.2650298',
                                       'key': 'journals/taes/TranDNS17',
                                       'number': '1',
                                       'pages': '296-309',
                                       'title': 'A Dynamically Configurable '
                                                'Decimator for a GNSS Baseband '
                                                'Receiver.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/taes/TranDNS17',
                                       'venue': 'IEEE Trans. Aerosp. Electron. '
                                                'Syst.',
                                       'volume': '53',
                                       'year': '2017'},
                              'url': 'URL#1519231'},
                             {'@id': '1520299',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '118/6238',
                                                               'text': 'Thuy '
                                                                       'T. '
                                                                       'Pham'},
                                                              {'@pid': '27/2354',
                                                               'text': 'Steven '
                                                                       'T. '
                                                                       'Moore'},
                                                              {'@pid': '155/6154',
                                                               'text': 'Simon '
                                                                       'J. G. '
                                                                       'Lewis'},
                                                              {'@pid': '95/10112',
                                                               'text': 'Diep '
                                                                       'N. '
                                                                       'Nguyen'},
                                                              {'@pid': '71/2764',
                                                               'text': 'Eryk '
                                                                       'Dutkiewicz'},
                                                              {'@pid': '56/7889',
                                                               'text': 'Andrew '
                                                                       'J. '
                                                                       'Fuglevand'},
                                                              {'@pid': '84/10611',
                                                               'text': 'Alistair '
                                                                       'Lee '
                                                                       'McEwan'},
                                                              {'@pid': '54/222',
                                                               'text': 'Philip '
                                                                       'Heng '
                                                                       'Wai '
                                                                       'Leong'}]},
                                       'doi': '10.1109/TBME.2017.2665438',
                                       'ee': 'https://doi.org/10.1109/TBME.2017.2665438',
                                       'key': 'journals/tbe/PhamMLNDFML17',
                                       'number': '11',
                                       'pages': '2719-2728',
                                       'title': 'Freezing of Gait Detection in '
                                                'Parkinson&apos;s Disease - A '
                                                'Subject-Independent Detector '
                                                'Using Anomaly Scores.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/tbe/PhamMLNDFML17',
                                       'venue': 'IEEE Trans. Biomed. Eng.',
                                       'volume': '64',
                                       'year': '2017'},
                              'url': 'URL#1520299'},
                             {'@id': '1554405',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '83/33',
                                                               'text': 'Tim '
                                                                       'Collins'},
                                                              {'@pid': '08/6426',
                                                               'text': 'Sandra '
                                                                       'I. '
                                                                       'Woolley'},
                                                              {'@pid': '03/6690',
                                                               'text': 'Eugene '
                                                                       'Ch&apos;ng'},
                                                              {'@pid': '133/0836',
                                                               'text': 'Luis '
                                                                       'Hernandez-Munoz'},
                                                              {'@pid': '164/6787',
                                                               'text': 'Erlend '
                                                                       'Gehlken'},
                                                              {'@pid': '47/6547',
                                                               'text': 'David '
                                                                       'Nash'},
                                                              {'@pid': '24/2147',
                                                               'text': 'Andrew '
                                                                       'Lewis'},
                                                              {'@pid': '209/8978',
                                                               'text': 'Laurence '
                                                                       'Hanes'}]},
                                       'doi': '10.14236/EWIC/HCI2017.73',
                                       'ee': 'https://doi.org/10.14236/ewic/HCI2017.73',
                                       'key': 'conf/bcshci/CollinsWCHGNLH17',
                                       'title': 'A Virtual 3D Cuneiform Tablet '
                                                'Reconstruction Interaction.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/bcshci/CollinsWCHGNLH17',
                                       'venue': 'BCS HCI',
                                       'year': '2017'},
                              'url': 'URL#1554405'},
                             {'@id': '1554482',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '08/6426',
                                                               'text': 'Sandra '
                                                                       'I. '
                                                                       'Woolley'},
                                                              {'@pid': '03/6690',
                                                               'text': 'Eugene '
                                                                       'Ch&apos;ng'},
                                                              {'@pid': '85/9072',
                                                               'text': 'Luis '
                                                                       'U. '
                                                                       'Hernandez '
                                                                       'Munoz'},
                                                              {'@pid': '164/6787',
                                                               'text': 'Erlend '
                                                                       'Gehlken'},
                                                              {'@pid': '83/33',
                                                               'text': 'Tim '
                                                                       'Collins'},
                                                              {'@pid': '47/6547',
                                                               'text': 'David '
                                                                       'Nash'},
                                                              {'@pid': '24/2147',
                                                               'text': 'Andrew '
                                                                       'Lewis'},
                                                              {'@pid': '209/8978',
                                                               'text': 'Laurence '
                                                                       'Hanes'}]},
                                       'doi': '10.14236/EWIC/HCI2017.53',
                                       'ee': 'https://doi.org/10.14236/ewic/HCI2017.53',
                                       'key': 'conf/bcshci/WoolleyCMGCNLH17',
                                       'title': 'A Collaborative Artefact '
                                                'Reconstruction Environment.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/bcshci/WoolleyCMGCNLH17',
                                       'venue': 'BCS HCI',
                                       'year': '2017'},
                              'url': 'URL#1554482'},
                             {'@id': '1554556',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '153/1912',
                                                               'text': 'Amartya '
                                                                       'Hatua'},
                                                              {'@pid': '210/3354',
                                                               'text': 'Trung '
                                                                       'T. '
                                                                       'Nguyen'},
                                                              {'@pid': '79/1202',
                                                               'text': 'Andrew '
                                                                       'H. '
                                                                       'Sung'}]},
                                       'doi': '10.1145/3148055.3148078',
                                       'ee': 'https://doi.org/10.1145/3148055.3148078',
                                       'key': 'conf/bdc/HatuaNS17',
                                       'pages': '157-167',
                                       'title': 'Information Diffusion on '
                                                'Twitter - Pattern Recognition '
                                                'and Prediction of Volume, '
                                                'Sentiment, and Influence.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/bdc/HatuaNS17',
                                       'venue': 'BDCAT',
                                       'year': '2017'},
                              'url': 'URL#1554556'},
                             {'@id': '1556244',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '74/3830',
                                                               'text': 'Long '
                                                                       'Hoang '
                                                                       'Nguyen '
                                                                       '0002'},
                                                              {'@pid': '213/1260',
                                                               'text': 'Andrew '
                                                                       'Salopek'},
                                                              {'@pid': '63/5422-2',
                                                               'text': 'Liang '
                                                                       'Zhao '
                                                                       '0002'},
                                                              {'@pid': '22/6323',
                                                               'text': 'Fang '
                                                                       'Jin'}]},
                                       'doi': '10.1109/BIGDATA.2017.8258148',
                                       'ee': 'https://doi.org/10.1109/BigData.2017.8258148',
                                       'key': 'conf/bigdataconf/NguyenSZJ17',
                                       'pages': '2019-2026',
                                       'title': 'A natural language '
                                                'normalization approach to '
                                                'enhance social media text '
                                                'reasoning.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/bigdataconf/NguyenSZJ17',
                                       'venue': 'IEEE BigData',
                                       'year': '2017'},
                              'url': 'URL#1556244'},
                             {'@id': '1572529',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '98/2634',
                                                               'text': 'Trung '
                                                                       'Nguyen'},
                                                              {'@pid': '87/6413',
                                                               'text': 'George '
                                                                       'K. I. '
                                                                       'Mann'},
                                                              {'@pid': '88/6967',
                                                               'text': 'Andrew '
                                                                       'Vardy'},
                                                              {'@pid': '05/6361',
                                                               'text': 'Raymond '
                                                                       'G. '
                                                                       'Gosine'}]},
                                       'doi': '10.1109/CRV.2017.19',
                                       'ee': 'https://doi.org/10.1109/CRV.2017.19',
                                       'key': 'conf/crv/NguyenMVG17',
                                       'pages': '321-328',
                                       'title': 'Developing a Cubature '
                                                'Multi-state Constraint Kalman '
                                                'Filter for Visual-Inertial '
                                                'Navigation System.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/crv/NguyenMVG17',
                                       'venue': 'CRV',
                                       'year': '2017'},
                              'url': 'URL#1572529'},
                             {'@id': '1579440',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '00/5147',
                                                               'text': 'Hung '
                                                                       'Nguyen'},
                                                              {'@pid': '213/1852',
                                                               'text': 'Sarah '
                                                                       'J. '
                                                                       'Maclagan'},
                                                              {'@pid': '129/2628',
                                                               'text': 'Tu '
                                                                       'Dinh '
                                                                       'Nguyen'},
                                                              {'@pid': '77/8172',
                                                               'text': 'Thin '
                                                                       'Nguyen'},
                                                              {'@pid': '58/7262',
                                                               'text': 'Paul '
                                                                       'Flemons'},
                                                              {'@pid': '213/1887',
                                                               'text': 'Kylie '
                                                                       'Andrews'},
                                                              {'@pid': '213/1832',
                                                               'text': 'Euan '
                                                                       'G. '
                                                                       'Ritchie'},
                                                              {'@pid': '71/5859',
                                                               'text': 'Dinh '
                                                                       'Q. '
                                                                       'Phung'}]},
                                       'doi': '10.1109/DSAA.2017.31',
                                       'ee': 'https://doi.org/10.1109/DSAA.2017.31',
                                       'key': 'conf/dsaa/NguyenMNNFARP17',
                                       'pages': '40-49',
                                       'title': 'Animal Recognition and '
                                                'Identification with Deep '
                                                'Convolutional Neural Networks '
                                                'for Automated Wildlife '
                                                'Monitoring.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/dsaa/NguyenMNNFARP17',
                                       'venue': 'DSAA',
                                       'year': '2017'},
                              'url': 'URL#1579440'},
                             {'@id': '1622988',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '208/1453',
                                                               'text': 'Andrew '
                                                                       'K. '
                                                                       'LaPre'},
                                                              {'@pid': '208/1492',
                                                               'text': 'Vinh '
                                                                       'Q. '
                                                                       'Nguyen'},
                                                              {'@pid': '208/1684',
                                                               'text': 'Ulvi '
                                                                       'Baspinar'},
                                                              {'@pid': '76/6763',
                                                               'text': 'Michael '
                                                                       'White'},
                                                              {'@pid': '42/1595',
                                                               'text': 'Frank '
                                                                       'C. '
                                                                       'Sup'}]},
                                       'doi': '10.1109/ICORR.2017.8009416',
                                       'ee': 'https://doi.org/10.1109/ICORR.2017.8009416',
                                       'key': 'conf/icorr/LaPreNBWS17',
                                       'pages': '1221-1226',
                                       'title': 'Capturing prosthetic socket '
                                                'fitment - Preliminary results '
                                                'using an ultrasound-based '
                                                'device.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icorr/LaPreNBWS17',
                                       'venue': 'ICORR',
                                       'year': '2017'},
                              'url': 'URL#1622988'},
                             {'@id': '1625753',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': 'n/AnneHHNgu',
                                                               'text': 'Anne '
                                                                       'H. H. '
                                                                       'Ngu'},
                                                              {'@pid': '239/5804',
                                                               'text': 'Yeahuay '
                                                                       'Wu'},
                                                              {'@pid': '41/8710',
                                                               'text': 'Habil '
                                                                       'Zare'},
                                                              {'@pid': '207/8597',
                                                               'text': 'Andrew '
                                                                       'Polican'},
                                                              {'@pid': '207/8675',
                                                               'text': 'Brock '
                                                                       'Yarbrough'},
                                                              {'@pid': '56/6651',
                                                               'text': 'Lina '
                                                                       'Yao'}]},
                                       'doi': '10.1007/978-3-319-67964-8_8',
                                       'ee': 'https://doi.org/10.1007/978-3-319-67964-8_8',
                                       'key': 'conf/icsh/NguWZPYY17',
                                       'pages': '81-93',
                                       'title': 'Fall Detection Using '
                                                'Smartwatch Sensor Data with '
                                                'Accessor Architecture.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icsh/NguWZPYY17',
                                       'venue': 'ICSH',
                                       'year': '2017'},
                              'url': 'URL#1625753'},
                             {'@id': '1628676',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '92/11201',
                                                               'text': 'Bho '
                                                                       'Matthiesen'},
                                                              {'@pid': '118/1475',
                                                               'text': 'Stefan '
                                                                       'Pfennig'},
                                                              {'@pid': '177/0153',
                                                               'text': 'Mario '
                                                                       'Bielert'},
                                                              {'@pid': '63/9894',
                                                               'text': 'Thomas '
                                                                       'Ilsche'},
                                                              {'@pid': '211/3594',
                                                               'text': 'Andrew '
                                                                       'Lonnstrom'},
                                                              {'@pid': '75/4601-26',
                                                               'text': 'Tao Li '
                                                                       '0026'},
                                                              {'@pid': '230/9980',
                                                               'text': 'Juan '
                                                                       'A. '
                                                                       'Cabrera '
                                                                       '0002'},
                                                              {'@pid': '71/11073',
                                                               'text': 'Christian '
                                                                       'Scheunert'},
                                                              {'@pid': '73/5092',
                                                               'text': 'Elke '
                                                                       'Franz '
                                                                       '0001'},
                                                              {'@pid': '41/6359',
                                                               'text': 'Silvia '
                                                                       'Santini'},
                                                              {'@pid': '69/2809',
                                                               'text': 'Thorsten '
                                                                       'Strufe'},
                                                              {'@pid': '20/4825',
                                                               'text': 'Eduard '
                                                                       'A. '
                                                                       'Jorswieck'},
                                                              {'@pid': '66/4013',
                                                               'text': 'Wolfgang '
                                                                       'E. '
                                                                       'Nagel'},
                                                              {'@pid': '10/1557-2',
                                                               'text': 'Giang '
                                                                       'T. '
                                                                       'Nguyen '
                                                                       '0002'},
                                                              {'@pid': 'f/FHPFitzek',
                                                               'text': 'Frank '
                                                                       'H. P. '
                                                                       'Fitzek'}]},
                                       'doi': '10.1109/ICUWB.2017.8250994',
                                       'ee': 'https://doi.org/10.1109/ICUWB.2017.8250994',
                                       'key': 'conf/icuwb/MatthiesenPBILL17',
                                       'pages': '1-7',
                                       'title': 'Secure and energy-efficient '
                                                'interconnects for '
                                                'board-to-board communication.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icuwb/MatthiesenPBILL17',
                                       'venue': 'ICUWB',
                                       'year': '2017'},
                              'url': 'URL#1628676'},
                             {'@id': '1641980',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '98/2634',
                                                               'text': 'Trung '
                                                                       'Nguyen'},
                                                              {'@pid': '87/6413',
                                                               'text': 'George '
                                                                       'K. I. '
                                                                       'Mann'},
                                                              {'@pid': '88/6967',
                                                               'text': 'Andrew '
                                                                       'Vardy'},
                                                              {'@pid': '05/6361',
                                                               'text': 'Raymond '
                                                                       'G. '
                                                                       'Gosine'}]},
                                       'doi': '10.1109/IROS.2017.8206305',
                                       'ee': 'https://doi.org/10.1109/IROS.2017.8206305',
                                       'key': 'conf/iros/NguyenMVG17',
                                       'pages': '4410-4415',
                                       'title': 'Likelihood-based iterated '
                                                'cubature '
                                                'multi-state-constraint Kalman '
                                                'filter for visual inertial '
                                                'navigation system.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/iros/NguyenMVG17',
                                       'venue': 'IROS',
                                       'year': '2017'},
                              'url': 'URL#1641980'},
                             {'@id': '1660488',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '11/5082',
                                                               'text': 'Warren '
                                                                       'Smith'},
                                                              {'@pid': '49/9826',
                                                               'text': 'Greg '
                                                                       'Kuperman'},
                                                              {'@pid': '73/6010',
                                                               'text': 'Michael '
                                                                       'Chan'},
                                                              {'@pid': '210/7062',
                                                               'text': 'Eric '
                                                                       'Morgan'},
                                                              {'@pid': '48/6075',
                                                               'text': 'Huy '
                                                                       'Nguyen'},
                                                              {'@pid': '09/1658',
                                                               'text': 'Nabil '
                                                                       'Schear'},
                                                              {'@pid': '210/6894',
                                                               'text': 'Bich '
                                                                       'Vu'},
                                                              {'@pid': '123/0880',
                                                               'text': 'Andrew '
                                                                       'J. '
                                                                       'Weinert'},
                                                              {'@pid': '210/6551',
                                                               'text': 'Matthew '
                                                                       'Weyant'},
                                                              {'@pid': '194/8596',
                                                               'text': 'Daniel '
                                                                       'Whisman'}]},
                                       'doi': '10.1109/MILCOM.2017.8170823',
                                       'ee': 'https://doi.org/10.1109/MILCOM.2017.8170823',
                                       'key': 'conf/milcom/SmithKCMNSVWWW17',
                                       'pages': '882-887',
                                       'title': 'Cloud computing in tactical '
                                                'environments.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/milcom/SmithKCMNSVWWW17',
                                       'venue': 'MILCOM',
                                       'year': '2017'},
                              'url': 'URL#1660488'},
                             {'@id': '1681142',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '82/5111',
                                                               'text': 'Monica '
                                                                       'Babes-Vroman'},
                                                              {'@pid': '195/8794',
                                                               'text': 'Isabel '
                                                                       'Juniewicz'},
                                                              {'@pid': '195/8742',
                                                               'text': 'Bruno '
                                                                       'Lucarelli'},
                                                              {'@pid': '188/1229',
                                                               'text': 'Nicole '
                                                                       'Fox'},
                                                              {'@pid': 'n/ThuDNguyen',
                                                               'text': 'Thu D. '
                                                                       'Nguyen'},
                                                              {'@pid': '37/49',
                                                               'text': 'Andrew '
                                                                       'Tjang'},
                                                              {'@pid': '161/6303',
                                                               'text': 'Georgiana '
                                                                       'Haldeman'},
                                                              {'@pid': '195/8649',
                                                               'text': 'Ashni '
                                                                       'Mehta'},
                                                              {'@pid': '195/8734',
                                                               'text': 'Risham '
                                                                       'Chokshi'}]},
                                       'doi': '10.1145/3017680.3017773',
                                       'ee': 'https://doi.org/10.1145/3017680.3017773',
                                       'key': 'conf/sigcse/Babes-VromanJLF17',
                                       'pages': '51-56',
                                       'title': 'Exploring Gender Diversity in '
                                                'CS at a Large Public R1 '
                                                'Research University.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/sigcse/Babes-VromanJLF17',
                                       'venue': 'SIGCSE',
                                       'year': '2017'},
                              'url': 'URL#1681142'},
                             {'@id': '1682838',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '19/7057',
                                                               'text': 'ThanhVu '
                                                                       'Nguyen'},
                                                              {'@pid': '62/6761',
                                                               'text': 'Timos '
                                                                       'Antonopoulos'},
                                                              {'@pid': '135/5976',
                                                               'text': 'Andrew '
                                                                       'Ruef'},
                                                              {'@pid': 'h/MichaelWHicks',
                                                               'text': 'Michael '
                                                                       'Hicks '
                                                                       '0001'}]},
                                       'doi': '10.1145/3106237.3106281',
                                       'ee': 'https://doi.org/10.1145/3106237.3106281',
                                       'key': 'conf/sigsoft/NguyenARH17',
                                       'pages': '605-615',
                                       'title': 'Counterexample-guided '
                                                'approach to finding numerical '
                                                'invariants.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/sigsoft/NguyenARH17',
                                       'venue': 'ESEC/SIGSOFT FSE',
                                       'year': '2017'},
                              'url': 'URL#1682838'},
                             {'@id': '1756299',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '96/5223',
                                                               'text': 'Yun '
                                                                       'Zheng'},
                                                              {'@pid': '191/0737',
                                                               'text': 'Vandana '
                                                                       'Hivrale'},
                                                              {'@pid': '44/6434',
                                                               'text': 'Xiaotuo '
                                                                       'Zhang'},
                                                              {'@pid': '21/9078',
                                                               'text': 'Babu '
                                                                       'Valliyodan'},
                                                              {'@pid': '191/0795',
                                                               'text': 'Christine '
                                                                       'Lelandais-Brière'},
                                                              {'@pid': '29/4764',
                                                               'text': 'Andrew '
                                                                       'D. '
                                                                       'Farmer'},
                                                              {'@pid': '12/741',
                                                               'text': 'Gregory '
                                                                       'D. '
                                                                       'May'},
                                                              {'@pid': '191/0871',
                                                               'text': 'Martin '
                                                                       'Crespi'},
                                                              {'@pid': '130/9088',
                                                               'text': 'Henry '
                                                                       'T. '
                                                                       'Nguyen'},
                                                              {'@pid': '191/0749',
                                                               'text': 'Ramanjulu '
                                                                       'Sunkar'}]},
                                       'doi': '10.1186/S12918-016-0374-0',
                                       'ee': 'https://doi.org/10.1186/s12918-016-0374-0',
                                       'key': 'journals/bmcsb/ZhengHZVLFMCNS16',
                                       'number': 'S-5',
                                       'pages': '1-10',
                                       'title': 'Small RNA profiles in soybean '
                                                'primary root tips under water '
                                                'deficit.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/bmcsb/ZhengHZVLFMCNS16',
                                       'venue': 'BMC Syst. Biol.',
                                       'volume': '10',
                                       'year': '2016'},
                              'url': 'URL#1756299'},
                             {'@id': '1756867',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '15/2621',
                                                               'text': 'Andrew '
                                                                       'Lenharth'},
                                                              {'@pid': '48/4701',
                                                               'text': 'Donald '
                                                                       'Nguyen'},
                                                              {'@pid': '71/5735',
                                                               'text': 'Keshav '
                                                                       'Pingali'}]},
                                       'doi': '10.1145/2901919',
                                       'ee': 'https://doi.org/10.1145/2901919',
                                       'key': 'journals/cacm/LenharthNP16',
                                       'number': '5',
                                       'pages': '78-87',
                                       'title': 'Parallel graph analytics.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/cacm/LenharthNP16',
                                       'venue': 'Commun. ACM',
                                       'volume': '59',
                                       'year': '2016'},
                              'url': 'URL#1756867'},
                             {'@id': '1768320',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '91/11484',
                                                               'text': 'David '
                                                                       'D. L. '
                                                                       'Minh'},
                                                              {'@pid': '82/11484',
                                                               'text': 'Do Le '
                                                                       'Paul '
                                                                       'Minh'},
                                                              {'@pid': '80/11484',
                                                               'text': 'Andrew '
                                                                       'L. '
                                                                       'Nguyen'}]},
                                       'doi': '10.1080/03610918.2013.854907',
                                       'ee': 'https://doi.org/10.1080/03610918.2013.854907',
                                       'key': 'journals/cssc/MinhMN16',
                                       'number': '1',
                                       'pages': '73-100',
                                       'title': 'Layer Sampling.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/cssc/MinhMN16',
                                       'venue': 'Commun. Stat. Simul. Comput.',
                                       'volume': '45',
                                       'year': '2016'},
                              'url': 'URL#1768320'},
                             {'@id': '1794883',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '02/3007',
                                                               'text': 'Shensheng '
                                                                       'Tang'},
                                                              {'@pid': '183/8419',
                                                               'text': 'Andrew '
                                                                       'Trautman'},
                                                              {'@pid': '00/5147',
                                                               'text': 'Hung '
                                                                       'Nguyen'}]},
                                       'doi': '10.1007/S10776-016-0313-4',
                                       'ee': 'https://doi.org/10.1007/s10776-016-0313-4',
                                       'key': 'journals/ijwin/TangTN16',
                                       'number': '3',
                                       'pages': '214-221',
                                       'title': 'On Energy-Based Quality of '
                                                'Detection (QoD) for Cognitive '
                                                'Radio Sensor Networks.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/ijwin/TangTN16',
                                       'venue': 'Int. J. Wirel. Inf. Networks',
                                       'volume': '23',
                                       'year': '2016'},
                              'url': 'URL#1794883'},
                             {'@id': '1800348',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '136/2257',
                                                               'text': 'Courtney '
                                                                       'R. '
                                                                       'Lyles'},
                                                              {'@pid': '56/9737',
                                                               'text': 'Urmimala '
                                                                       'Sarkar'},
                                                              {'@pid': '69/9737',
                                                               'text': 'Dean '
                                                                       'Schillinger'},
                                                              {'@pid': '83/8750',
                                                               'text': 'James '
                                                                       'D. '
                                                                       'Ralston'},
                                                              {'@pid': '68/9189',
                                                               'text': 'Jill '
                                                                       'Y. '
                                                                       'Allen'},
                                                              {'@pid': '44/9737',
                                                               'text': 'Robert '
                                                                       'Nguyen'},
                                                              {'@pid': '57/9737',
                                                               'text': 'Andrew '
                                                                       'J. '
                                                                       'Karter'}]},
                                       'doi': '10.1093/JAMIA/OCV126',
                                       'ee': 'https://doi.org/10.1093/jamia/ocv126',
                                       'key': 'journals/jamia/LylesSSRANK16',
                                       'number': 'e1',
                                       'pages': 'e28-e33',
                                       'title': 'Refilling medications through '
                                                'an online patient portal - '
                                                'consistent improvements in '
                                                'adherence across '
                                                'racial/ethnic groups.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/jamia/LylesSSRANK16',
                                       'venue': 'J. Am. Medical Informatics '
                                                'Assoc.',
                                       'volume': '23',
                                       'year': '2016'},
                              'url': 'URL#1800348'},
                             {'@id': '1807678',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '30/4876',
                                                               'text': 'Quang '
                                                                       'Vinh '
                                                                       'Nguyen'},
                                                              {'@pid': '195/3192',
                                                               'text': 'Nader '
                                                                       'Hasan '
                                                                       'Khalifa'},
                                                              {'@pid': '129/2502',
                                                               'text': 'Pat '
                                                                       'Alzamora'},
                                                              {'@pid': '67/10461',
                                                               'text': 'Andrew '
                                                                       'Gleeson'},
                                                              {'@pid': '40/744',
                                                               'text': 'Daniel '
                                                                       'R. '
                                                                       'Catchpoole'},
                                                              {'@pid': '08/353',
                                                               'text': 'Paul '
                                                                       'J. '
                                                                       'Kennedy'},
                                                              {'@pid': '39/1218',
                                                               'text': 'Simeon '
                                                                       'J. '
                                                                       'Simoff'}]},
                                       'doi': '10.3390/JIMAGING2040029',
                                       'ee': 'https://doi.org/10.3390/jimaging2040029',
                                       'key': 'journals/jimaging/NguyenKAGCKS16',
                                       'number': '4',
                                       'pages': '29',
                                       'title': 'Visual Analytics of Complex '
                                                'Genomics Data to Guide '
                                                'Effective Treatment '
                                                'Decisions.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/jimaging/NguyenKAGCKS16',
                                       'venue': 'J. Imaging',
                                       'volume': '2',
                                       'year': '2016'},
                              'url': 'URL#1807678'},
                             {'@id': '1808006',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '98/2634',
                                                               'text': 'Trung '
                                                                       'Nguyen'},
                                                              {'@pid': '87/6413',
                                                               'text': 'George '
                                                                       'K. I. '
                                                                       'Mann'},
                                                              {'@pid': '05/6361',
                                                               'text': 'Raymond '
                                                                       'G. '
                                                                       'Gosine'},
                                                              {'@pid': '88/6967',
                                                               'text': 'Andrew '
                                                                       'Vardy'}]},
                                       'doi': '10.1007/S10846-015-0320-1',
                                       'ee': 'https://doi.org/10.1007/s10846-015-0320-1',
                                       'key': 'journals/jirs/NguyenMGV16',
                                       'number': '1-4',
                                       'pages': '217-240',
                                       'title': 'Appearance-Based '
                                                'Visual-Teach-And-Repeat '
                                                'Navigation Technique for '
                                                'Micro Aerial Vehicle.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/jirs/NguyenMGV16',
                                       'venue': 'J. Intell. Robotic Syst.',
                                       'volume': '84',
                                       'year': '2016'},
                              'url': 'URL#1808006'},
                             {'@id': '1811579',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '159/2501',
                                                               'text': 'An '
                                                                       'Hung '
                                                                       'Nguyen'},
                                                              {'@pid': '75/4744',
                                                               'text': 'Mark '
                                                                       'R. '
                                                                       'Pickering'},
                                                              {'@pid': '117/1912',
                                                               'text': 'Andrew '
                                                                       'J. '
                                                                       'Lambert'}]},
                                       'doi': '10.1007/S11554-014-0420-3',
                                       'ee': 'https://doi.org/10.1007/s11554-014-0420-3',
                                       'key': 'journals/jrtip/NguyenPL16',
                                       'number': '4',
                                       'pages': '799-815',
                                       'title': 'The FPGA implementation of a '
                                                'one-bit-per-pixel image '
                                                'registration algorithm.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/jrtip/NguyenPL16',
                                       'venue': 'J. Real Time Image Process.',
                                       'volume': '11',
                                       'year': '2016'},
                              'url': 'URL#1811579'},
                             {'@id': '1834278',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '187/1949',
                                                               'text': 'Jarred '
                                                                       'Fastier-Wooller'},
                                                              {'@pid': '187/2086',
                                                               'text': 'Hoang-Phuong '
                                                                       'Phan'},
                                                              {'@pid': '187/2012',
                                                               'text': 'Toan '
                                                                       'Dinh'},
                                                              {'@pid': '187/1781',
                                                               'text': 'Tuan-Khoa '
                                                                       'Nguyen'},
                                                              {'@pid': '140/1435',
                                                               'text': 'Andrew '
                                                                       'Cameron'},
                                                              {'@pid': '40/9130',
                                                               'text': 'Andreas '
                                                                       'Öchsner'},
                                                              {'@pid': '46/483',
                                                               'text': 'Dzung '
                                                                       'Viet '
                                                                       'Dao'}]},
                                       'doi': '10.3390/S16081244',
                                       'ee': 'https://doi.org/10.3390/s16081244',
                                       'key': 'journals/sensors/Fastier-Wooller16',
                                       'number': '8',
                                       'pages': '1244',
                                       'title': 'Novel Low-Cost Sensor for '
                                                'Human Bite Force Measurement.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/sensors/Fastier-Wooller16',
                                       'venue': 'Sensors',
                                       'volume': '16',
                                       'year': '2016'},
                              'url': 'URL#1834278'},
                             {'@id': '1843720',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '29/3342',
                                                               'text': 'Hieu '
                                                                       'T. '
                                                                       'Nguyen'},
                                                              {'@pid': '183/5135',
                                                               'text': 'Siva '
                                                                       'M. '
                                                                       'Tangutooru'},
                                                              {'@pid': '183/5200',
                                                               'text': 'Corey '
                                                                       'M. '
                                                                       'Rountree'},
                                                              {'@pid': '183/5065',
                                                               'text': 'Andrew '
                                                                       'J. '
                                                                       'Kantzos'},
                                                              {'@pid': '162/0488',
                                                               'text': 'Faris '
                                                                       'Tarlochan'},
                                                              {'@pid': '75/8780',
                                                               'text': 'W. '
                                                                       'Jong '
                                                                       'Yoon'},
                                                              {'@pid': '07/11008',
                                                               'text': 'John '
                                                                       'B. '
                                                                       'Troy'}]},
                                       'doi': '10.1109/TBME.2016.2567300',
                                       'ee': 'https://doi.org/10.1109/TBME.2016.2567300',
                                       'key': 'journals/tbe/NguyenTRKTYT16',
                                       'number': '8',
                                       'pages': '1573-1580',
                                       'title': 'Thalamic Visual Prosthesis.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/tbe/NguyenTRKTYT16',
                                       'venue': 'IEEE Trans. Biomed. Eng.',
                                       'volume': '63',
                                       'year': '2016'},
                              'url': 'URL#1843720'},
                             {'@id': '1861857',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '94/8863',
                                                               'text': 'Parasara '
                                                                       'Sridhar '
                                                                       'Duggirala'},
                                                              {'@pid': '127/1756',
                                                               'text': 'Chuchu '
                                                                       'Fan'},
                                                              {'@pid': '160/7939',
                                                               'text': 'Matthew '
                                                                       'Potok'},
                                                              {'@pid': '182/9038',
                                                               'text': 'Bolun '
                                                                       'Qi'},
                                                              {'@pid': '07/3797',
                                                               'text': 'Sayan '
                                                                       'Mitra'},
                                                              {'@pid': '23/2759-1',
                                                               'text': 'Mahesh '
                                                                       'Viswanathan '
                                                                       '0001'},
                                                              {'@pid': '16/7787',
                                                               'text': 'Stanley '
                                                                       'Bak'},
                                                              {'@pid': '90/8556',
                                                               'text': 'Sergiy '
                                                                       'Bogomolov'},
                                                              {'@pid': '96/11505',
                                                               'text': 'Taylor '
                                                                       'T. '
                                                                       'Johnson'},
                                                              {'@pid': '144/7613',
                                                               'text': 'Luan '
                                                                       'Viet '
                                                                       'Nguyen'},
                                                              {'@pid': '72/2103-1',
                                                               'text': 'Christian '
                                                                       'Schilling '
                                                                       '0001'},
                                                              {'@pid': '144/4883',
                                                               'text': 'Andrew '
                                                                       'Sogokon'},
                                                              {'@pid': '160/7295',
                                                               'text': 'Hoang-Dung '
                                                                       'Tran'},
                                                              {'@pid': '72/5686',
                                                               'text': 'Weiming '
                                                                       'Xiang'}]},
                                       'doi': '10.1109/CCA.2016.7587948',
                                       'ee': 'https://doi.org/10.1109/CCA.2016.7587948',
                                       'key': 'conf/IEEEcca/DuggiralaFPQM0B16',
                                       'pages': '1024-1029',
                                       'title': 'Tutorial - Software tools for '
                                                'hybrid systems verification, '
                                                'transformation, and synthesis '
                                                '- C2E2, HyST, and TuLiP.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/IEEEcca/DuggiralaFPQM0B16',
                                       'venue': 'CCA',
                                       'year': '2016'},
                              'url': 'URL#1861857'},
                             {'@id': '1862989',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '57/2878',
                                                               'text': 'Fei '
                                                                       'Fang'},
                                                              {'@pid': '117/4935',
                                                               'text': 'Thanh '
                                                                       'Hong '
                                                                       'Nguyen'},
                                                              {'@pid': '178/8703',
                                                               'text': 'Rob '
                                                                       'Pickles'},
                                                              {'@pid': '178/8728',
                                                               'text': 'Wai Y. '
                                                                       'Lam'},
                                                              {'@pid': '178/8547',
                                                               'text': 'Gopalasamy '
                                                                       'R. '
                                                                       'Clements'},
                                                              {'@pid': '42/6178-1',
                                                               'text': 'Bo An '
                                                                       '0001'},
                                                              {'@pid': '12/2427',
                                                               'text': 'Amandeep '
                                                                       'Singh'},
                                                              {'@pid': '67/2667',
                                                               'text': 'Milind '
                                                                       'Tambe'},
                                                              {'@pid': '151/3581',
                                                               'text': 'Andrew '
                                                                       'Lemieux'}]},
                                       'ee': 'http://www.aaai.org/ocs/index.php/IAAI/IAAI16/paper/view/11814',
                                       'key': 'conf/aaai/FangNPLCASTL16',
                                       'pages': '3966-3973',
                                       'title': 'Deploying PAWS - Field '
                                                'Optimization of the '
                                                'Protection Assistant for '
                                                'Wildlife Security.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/aaai/FangNPLCASTL16',
                                       'venue': 'AAAI',
                                       'year': '2016'},
                              'url': 'URL#1862989'},
                             {'@id': '1863287',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '117/4935',
                                                               'text': 'Thanh '
                                                                       'Hong '
                                                                       'Nguyen'},
                                                              {'@pid': '26/9089',
                                                               'text': 'Arunesh '
                                                                       'Sinha'},
                                                              {'@pid': '180/1416',
                                                               'text': 'Shahrzad '
                                                                       'Gholami'},
                                                              {'@pid': '170/5576',
                                                               'text': 'Andrew '
                                                                       'J. '
                                                                       'Plumptre'},
                                                              {'@pid': '160/1079',
                                                               'text': 'Lucas '
                                                                       'Joppa'},
                                                              {'@pid': '67/2667',
                                                               'text': 'Milind '
                                                                       'Tambe'},
                                                              {'@pid': '170/5674',
                                                               'text': 'Margaret '
                                                                       'Driciru'},
                                                              {'@pid': '170/5591',
                                                               'text': 'Fred '
                                                                       'Wanyama'},
                                                              {'@pid': '170/5632',
                                                               'text': 'Aggrey '
                                                                       'Rwetsiba'},
                                                              {'@pid': '180/1428',
                                                               'text': 'Rob '
                                                                       'Critchlow'},
                                                              {'@pid': '86/8638',
                                                               'text': 'Colin '
                                                                       'M. '
                                                                       'Beale'}]},
                                       'ee': 'http://www.aaai.org/ocs/index.php/WS/AAAIW16/paper/view/12657',
                                       'key': 'conf/aaai/NguyenSGPJTDWRC16',
                                       'title': 'Protecting Wildlife under '
                                                'Imperfect Observation.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/aaai/NguyenSGPJTDWRC16',
                                       'venue': 'AAAI Workshop - Computer '
                                                'Poker and Imperfect '
                                                'Information Games',
                                       'year': '2016'},
                              'url': 'URL#1863287'},
                             {'@id': '1874140',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '117/4935',
                                                               'text': 'Thanh '
                                                                       'Hong '
                                                                       'Nguyen'},
                                                              {'@pid': '26/9089',
                                                               'text': 'Arunesh '
                                                                       'Sinha'},
                                                              {'@pid': '180/1416',
                                                               'text': 'Shahrzad '
                                                                       'Gholami'},
                                                              {'@pid': '170/5576',
                                                               'text': 'Andrew '
                                                                       'J. '
                                                                       'Plumptre'},
                                                              {'@pid': '160/1079',
                                                               'text': 'Lucas '
                                                                       'Joppa'},
                                                              {'@pid': '67/2667',
                                                               'text': 'Milind '
                                                                       'Tambe'},
                                                              {'@pid': '170/5674',
                                                               'text': 'Margaret '
                                                                       'Driciru'},
                                                              {'@pid': '170/5591',
                                                               'text': 'Fred '
                                                                       'Wanyama'},
                                                              {'@pid': '170/5632',
                                                               'text': 'Aggrey '
                                                                       'Rwetsiba'},
                                                              {'@pid': '180/1428',
                                                               'text': 'Rob '
                                                                       'Critchlow'},
                                                              {'@pid': '86/8638',
                                                               'text': 'Colin '
                                                                       'M. '
                                                                       'Beale'}]},
                                       'ee': 'http://dl.acm.org/citation.cfm?id=2937037',
                                       'key': 'conf/atal/NguyenSGPJTDWRC16',
                                       'pages': '767-775',
                                       'title': 'CAPTURE - A New Predictive '
                                                'Anti-Poaching Tool for '
                                                'Wildlife Protection.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/atal/NguyenSGPJTDWRC16',
                                       'venue': 'AAMAS',
                                       'year': '2016'},
                              'url': 'URL#1874140'},
                             {'@id': '1927706',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '84/2683',
                                                               'text': 'Anna '
                                                                       'Paszynska'},
                                                              {'@pid': '146/1155',
                                                               'text': 'Maciej '
                                                                       'Wozniak'},
                                                              {'@pid': '15/2621',
                                                               'text': 'Andrew '
                                                                       'Lenharth'},
                                                              {'@pid': '48/4701',
                                                               'text': 'Donald '
                                                                       'Nguyen'},
                                                              {'@pid': '71/5735',
                                                               'text': 'Keshav '
                                                                       'Pingali'}]},
                                       'doi': '10.1016/J.PROCS.2016.05.314',
                                       'ee': 'https://doi.org/10.1016/j.procs.2016.05.314',
                                       'key': 'conf/iccS/PaszynskaWLNP16',
                                       'pages': '875-886',
                                       'title': 'Hypergraph Grammars in '
                                                'Non-stationary hp-adaptive '
                                                'Finite Element Method.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/iccS/PaszynskaWLNP16',
                                       'venue': 'ICCS',
                                       'year': '2016'},
                              'url': 'URL#1927706'},
                             {'@id': '1942052',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '76/10701',
                                                               'text': 'Saeed '
                                                                       'Maleki'},
                                                              {'@pid': '48/4701',
                                                               'text': 'Donald '
                                                                       'Nguyen'},
                                                              {'@pid': '15/2621',
                                                               'text': 'Andrew '
                                                                       'Lenharth'},
                                                              {'@pid': '95/6451',
                                                               'text': 'María '
                                                                       'Jesús '
                                                                       'Garzarán'},
                                                              {'@pid': 'p/DavidAPadua',
                                                               'text': 'David '
                                                                       'A. '
                                                                       'Padua'},
                                                              {'@pid': '71/5735',
                                                               'text': 'Keshav '
                                                                       'Pingali'}]},
                                       'doi': '10.1145/2925426.2926287',
                                       'ee': 'https://doi.org/10.1145/2925426.2926287',
                                       'key': 'conf/ics/MalekiNLGPP16',
                                       'pages': '32:1-32:14',
                                       'title': 'DSMR - A Parallel Algorithm '
                                                'for Single-Source Shortest '
                                                'Path Problem.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/ics/MalekiNLGPP16',
                                       'venue': 'ICS',
                                       'year': '2016'},
                              'url': 'URL#1942052'},
                             {'@id': '1987421',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '76/10701',
                                                               'text': 'Saeed '
                                                                       'Maleki'},
                                                              {'@pid': '48/4701',
                                                               'text': 'Donald '
                                                                       'Nguyen'},
                                                              {'@pid': '15/2621',
                                                               'text': 'Andrew '
                                                                       'Lenharth'},
                                                              {'@pid': '95/6451',
                                                               'text': 'María '
                                                                       'Jesús '
                                                                       'Garzarán'},
                                                              {'@pid': 'p/DavidAPadua',
                                                               'text': 'David '
                                                                       'A. '
                                                                       'Padua'},
                                                              {'@pid': '71/5735',
                                                               'text': 'Keshav '
                                                                       'Pingali'}]},
                                       'doi': '10.1145/2851141.2851183',
                                       'ee': 'https://doi.org/10.1145/2851141.2851183',
                                       'key': 'conf/ppopp/MalekiNLGPP16',
                                       'pages': '39:1-39:2',
                                       'title': 'DSMR - a shared and '
                                                'distributed memory algorithm '
                                                'for single-source shortest '
                                                'path problem.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/ppopp/MalekiNLGPP16',
                                       'venue': 'PPOPP',
                                       'year': '2016'},
                              'url': 'URL#1987421'},
                             {'@id': '1989624',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '185/2894',
                                                               'text': 'Tamas '
                                                                       'Motajcsek'},
                                                              {'@pid': '00/2213',
                                                               'text': 'Jean-Yves '
                                                                       'Le '
                                                                       'Moine'},
                                                              {'@pid': '75/107',
                                                               'text': 'Martha '
                                                                       'A. '
                                                                       'Larson'},
                                                              {'@pid': '47/7181',
                                                               'text': 'Daniel '
                                                                       'Kohlsdorf'},
                                                              {'@pid': '38/2946',
                                                               'text': 'Andreas '
                                                                       'Lommatzsch'},
                                                              {'@pid': '55/6632',
                                                               'text': 'Domonkos '
                                                                       'Tikk'},
                                                              {'@pid': 'a/OmarAlonso',
                                                               'text': 'Omar '
                                                                       'Alonso'},
                                                              {'@pid': '03/3233',
                                                               'text': 'Paolo '
                                                                       'Cremonesi'},
                                                              {'@pid': '185/2885',
                                                               'text': 'Andrew '
                                                                       'M. '
                                                                       'Demetriou'},
                                                              {'@pid': '185/2882',
                                                               'text': 'Kristaps '
                                                                       'Dobrajs'},
                                                              {'@pid': '68/7019',
                                                               'text': 'Franca '
                                                                       'Garzotto'},
                                                              {'@pid': '66/6753',
                                                               'text': 'Ayse '
                                                                       'Göker'},
                                                              {'@pid': '85/5730',
                                                               'text': 'Frank '
                                                                       'Hopfgartner'},
                                                              {'@pid': '184/2094',
                                                               'text': 'Davide '
                                                                       'Malagoli'},
                                                              {'@pid': '115/8737',
                                                               'text': 'Thuy '
                                                                       'Ngoc '
                                                                       'Nguyen '
                                                                       '0001'},
                                                              {'@pid': '39/5526',
                                                               'text': 'Jasminko '
                                                                       'Novak'},
                                                              {'@pid': 'r/FrancescoRicci',
                                                               'text': 'Francesco '
                                                                       'Ricci '
                                                                       '0001'},
                                                              {'@pid': '81/701',
                                                               'text': 'Mario '
                                                                       'Scriminaci'},
                                                              {'@pid': '24/8697',
                                                               'text': 'Marko '
                                                                       'Tkalcic'},
                                                              {'@pid': '99/2796',
                                                               'text': 'Anna '
                                                                       'Zacchi'}]},
                                       'doi': '10.1145/2959100.2959164',
                                       'ee': 'https://doi.org/10.1145/2959100.2959164',
                                       'key': 'conf/recsys/MotajcsekMLKLTA16',
                                       'pages': '215-219',
                                       'title': 'Algorithms Aside - '
                                                'Recommendation As The Lens Of '
                                                'Life.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/recsys/MotajcsekMLKLTA16',
                                       'venue': 'RecSys',
                                       'year': '2016'},
                              'url': 'URL#1989624'},
                             {'@id': '2010784',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '195/7355',
                                                               'text': 'Vince '
                                                                       'Gaffoey'},
                                                              {'@pid': '195/7337',
                                                               'text': 'Richard '
                                                                       'Cuttler'},
                                                              {'@pid': '87/749',
                                                               'text': 'Richard '
                                                                       'Bates'},
                                                              {'@pid': '43/9999',
                                                               'text': 'Chris '
                                                                       'Gaffney'},
                                                              {'@pid': '03/6690',
                                                               'text': 'Eugene '
                                                                       'Ch&apos;ng'},
                                                              {'@pid': '30/6467',
                                                               'text': 'Andrew '
                                                                       'Wilson'}]},
                                       'doi': '10.1109/VSMM.2016.7863167',
                                       'ee': 'https://doi.org/10.1109/VSMM.2016.7863167',
                                       'key': 'conf/vsmm/GaffoeyCBGCW16',
                                       'pages': '1-9',
                                       'title': 'BradPhys to BradViz or from '
                                                'archaeological science to '
                                                'heritage science.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/vsmm/GaffoeyCBGCW16',
                                       'venue': 'VSMM',
                                       'year': '2016'},
                              'url': 'URL#2010784'},
                             {'@id': '2038885',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '188/5712',
                                                               'text': 'Jeffrey '
                                                                       'P. '
                                                                       'Nguyen'},
                                                              {'@pid': '188/5999',
                                                               'text': 'Ashley '
                                                                       'N. '
                                                                       'Linder'},
                                                              {'@pid': '188/5955',
                                                               'text': 'George '
                                                                       'S. '
                                                                       'Plummer'},
                                                              {'@pid': '123/4441',
                                                               'text': 'Joshua '
                                                                       'W. '
                                                                       'Shaevitz'},
                                                              {'@pid': '188/6114',
                                                               'text': 'Andrew '
                                                                       'M. '
                                                                       'Leifer'}]},
                                       'ee': 'http://arxiv.org/abs/1610.04579',
                                       'key': 'journals/corr/NguyenLPSL16',
                                       'title': 'Automatically tracking '
                                                'neurons in a moving and '
                                                'deforming brain.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/NguyenLPSL16',
                                       'venue': 'CoRR',
                                       'volume': 'abs/1610.04579',
                                       'year': '2016'},
                              'url': 'URL#2038885'},
                             {'@id': '2073734',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '22/3912',
                                                               'text': 'Hoang '
                                                                       'Anh '
                                                                       'Nguyen'},
                                                              {'@pid': '09/6203',
                                                               'text': 'David '
                                                                       'Abramson'},
                                                              {'@pid': '42/6781',
                                                               'text': 'Timoleon '
                                                                       'Kipouros'},
                                                              {'@pid': '64/2690',
                                                               'text': 'Andrew '
                                                                       'L. '
                                                                       'Janke'},
                                                              {'@pid': '23/10742',
                                                               'text': 'Graham '
                                                                       'J. '
                                                                       'Galloway'}]},
                                       'doi': '10.1002/CPE.3525',
                                       'ee': 'https://doi.org/10.1002/cpe.3525',
                                       'key': 'journals/concurrency/NguyenAKJG15',
                                       'number': '16',
                                       'pages': '4377-4397',
                                       'title': 'WorkWays - interacting with '
                                                'scientific workflows.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/concurrency/NguyenAKJG15',
                                       'venue': 'Concurr. Comput. Pract. Exp.',
                                       'volume': '27',
                                       'year': '2015'},
                              'url': 'URL#2073734'},
                             {'@id': '2099253',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '173/0617',
                                                               'text': 'Andrew '
                                                                       'Lukyamuzi'},
                                                              {'@pid': '44/4913',
                                                               'text': 'John '
                                                                       'Ngubiri'},
                                                              {'@pid': '33/10311',
                                                               'text': 'Washington '
                                                                       'Okori'}]},
                                       'doi': '10.4018/IJSDA.2015100101',
                                       'ee': 'https://doi.org/10.4018/IJSDA.2015100101',
                                       'key': 'journals/ijsda/LukyamuziNO15',
                                       'number': '4',
                                       'pages': '1-16',
                                       'title': 'Towards Harnessing Phone '
                                                'Messages and Telephone '
                                                'Conversations for Prediction '
                                                'of Food Crisis.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/ijsda/LukyamuziNO15',
                                       'venue': 'Int. J. Syst. Dyn. Appl.',
                                       'volume': '4',
                                       'year': '2015'},
                              'url': 'URL#2099253'},
                             {'@id': '2107367',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '123/2043',
                                                               'text': 'Steffen '
                                                                       'Lindert'},
                                                              {'@pid': '156/2775',
                                                               'text': 'Lorillee '
                                                                       'Tallorin'},
                                                              {'@pid': '156/2712',
                                                               'text': 'Quynh '
                                                                       'G. '
                                                                       'Nguyen'},
                                                              {'@pid': '04/8657',
                                                               'text': 'Michael '
                                                                       'D. '
                                                                       'Burkart'},
                                                              {'@pid': '34/3785',
                                                               'text': 'James '
                                                                       'Andrew '
                                                                       'McCammon'}]},
                                       'doi': '10.1007/S10822-014-9806-3',
                                       'ee': 'https://doi.org/10.1007/s10822-014-9806-3',
                                       'key': 'journals/jcamd/LindertTNBM15',
                                       'number': '1',
                                       'pages': '79-87',
                                       'title': 'In silico screening for '
                                                'Plasmodium falciparum '
                                                'enoyl-ACP reductase '
                                                'inhibitors.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/jcamd/LindertTNBM15',
                                       'venue': 'J. Comput. Aided Mol. Des.',
                                       'volume': '29',
                                       'year': '2015'},
                              'url': 'URL#2107367'},
                             {'@id': '2111693',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '58/5340',
                                                               'text': 'Nicolaus '
                                                                       'A. '
                                                                       'Radford'},
                                                              {'@pid': '77/2489',
                                                               'text': 'Philip '
                                                                       'Strawser'},
                                                              {'@pid': '43/2411',
                                                               'text': 'Kimberly '
                                                                       'A. '
                                                                       'Hambuchen'},
                                                              {'@pid': '48/4101',
                                                               'text': 'Joshua '
                                                                       'S. '
                                                                       'Mehling'},
                                                              {'@pid': '61/6803',
                                                               'text': 'William '
                                                                       'K. '
                                                                       'Verdeyen'},
                                                              {'@pid': '161/7092',
                                                               'text': 'A. '
                                                                       'Stuart '
                                                                       'Donnan'},
                                                              {'@pid': '158/5252',
                                                               'text': 'James '
                                                                       'Holley'},
                                                              {'@pid': '161/7106',
                                                               'text': 'Jairo '
                                                                       'Sanchez'},
                                                              {'@pid': '161/6992',
                                                               'text': 'Vienny '
                                                                       'Nguyen'},
                                                              {'@pid': '85/5389',
                                                               'text': 'Lyndon '
                                                                       'B. '
                                                                       'Bridgwater'},
                                                              {'@pid': '161/7064',
                                                               'text': 'Reginald '
                                                                       'Berka'},
                                                              {'@pid': '67/2925',
                                                               'text': 'Robert '
                                                                       'O. '
                                                                       'Ambrose'},
                                                              {'@pid': '161/7157',
                                                               'text': 'Mason '
                                                                       'Myles '
                                                                       'Markee'},
                                                              {'@pid': '161/7045',
                                                               'text': 'N. J. '
                                                                       'Fraser-Chanpong'},
                                                              {'@pid': '135/8341',
                                                               'text': 'Christopher '
                                                                       'McQuin'},
                                                              {'@pid': '57/7747',
                                                               'text': 'John '
                                                                       'D. '
                                                                       'Yamokoski'},
                                                              {'@pid': '28/388',
                                                               'text': 'Stephen '
                                                                       'Hart'},
                                                              {'@pid': '161/7096',
                                                               'text': 'Raymond '
                                                                       'Guo'},
                                                              {'@pid': '161/6991',
                                                               'text': 'Adam '
                                                                       'Parsons'},
                                                              {'@pid': '153/7440',
                                                               'text': 'Brian '
                                                                       'Wightman'},
                                                              {'@pid': '153/7721',
                                                               'text': 'Paul '
                                                                       'Dinh'},
                                                              {'@pid': '161/7073',
                                                               'text': 'Barrett '
                                                                       'Ames'},
                                                              {'@pid': '161/7038',
                                                               'text': 'Charles '
                                                                       'Blakely'},
                                                              {'@pid': '161/7138',
                                                               'text': 'Courtney '
                                                                       'Edmondson'},
                                                              {'@pid': '161/7036',
                                                               'text': 'Brett '
                                                                       'Sommers'},
                                                              {'@pid': '161/7095',
                                                               'text': 'Rochelle '
                                                                       'Rea'},
                                                              {'@pid': '161/7170',
                                                               'text': 'Chad '
                                                                       'Tobler'},
                                                              {'@pid': '161/7148',
                                                               'text': 'Heather '
                                                                       'Bibby'},
                                                              {'@pid': '161/7015',
                                                               'text': 'Brice '
                                                                       'Howard'},
                                                              {'@pid': '81/692',
                                                               'text': 'Lei '
                                                                       'Niu'},
                                                              {'@pid': '57/1584',
                                                               'text': 'Andrew '
                                                                       'Lee'},
                                                              {'@pid': '228/3966',
                                                               'text': 'Michael '
                                                                       'Conover'},
                                                              {'@pid': '161/7119',
                                                               'text': 'Lily '
                                                                       'Truong'},
                                                              {'@pid': '161/7143',
                                                               'text': 'Ryan '
                                                                       'Reed'},
                                                              {'@pid': '24/9045',
                                                               'text': 'David '
                                                                       'Chesney'},
                                                              {'@pid': '39/5434',
                                                               'text': 'Robert '
                                                                       'Platt '
                                                                       'Jr.'},
                                                              {'@pid': '161/7075',
                                                               'text': 'Gwendolyn '
                                                                       'Johnson'},
                                                              {'@pid': '26/1639',
                                                               'text': 'Chien-Liang '
                                                                       'Fok'},
                                                              {'@pid': '128/0616',
                                                               'text': 'Nicholas '
                                                                       'Paine'},
                                                              {'@pid': '12/3391',
                                                               'text': 'Luis '
                                                                       'Sentis'},
                                                              {'@pid': '43/11304',
                                                               'text': 'Eric '
                                                                       'A. '
                                                                       'Cousineau'},
                                                              {'@pid': '44/486',
                                                               'text': 'Ryan '
                                                                       'W. '
                                                                       'Sinnet'},
                                                              {'@pid': '151/9768',
                                                               'text': 'Jordan '
                                                                       'Lack'},
                                                              {'@pid': '60/11045',
                                                               'text': 'Matthew '
                                                                       'J. '
                                                                       'Powell'},
                                                              {'@pid': '54/5014',
                                                               'text': 'Benjamin '
                                                                       'Morris'},
                                                              {'@pid': '39/1463',
                                                               'text': 'Aaron '
                                                                       'D. '
                                                                       'Ames'},
                                                              {'@pid': '161/7140',
                                                               'text': 'Jide '
                                                                       'Akinyode'}]},
                                       'doi': '10.1002/ROB.21560',
                                       'ee': 'https://doi.org/10.1002/rob.21560',
                                       'key': 'journals/jfr/RadfordSHMVDHSN15',
                                       'number': '3',
                                       'pages': '397-419',
                                       'title': 'Valkyrie - NASA&apos;s First '
                                                'Bipedal Humanoid Robot.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/jfr/RadfordSHMVDHSN15',
                                       'venue': 'J. Field Robotics',
                                       'volume': '32',
                                       'year': '2015'},
                              'url': 'URL#2111693'},
                             {'@id': '2137777',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '188/9430',
                                                               'text': 'Siti '
                                                                       'Nurasiah '
                                                                       'Binti '
                                                                       'Mat '
                                                                       'Nawi'},
                                                              {'@pid': '188/9278',
                                                               'text': 'Nor '
                                                                       'Fadira '
                                                                       'Binti '
                                                                       'Wahib'},
                                                              {'@pid': '188/9363',
                                                               'text': 'Nurul '
                                                                       'Najua '
                                                                       'Binti '
                                                                       'Zulkepely'},
                                                              {'@pid': '188/9418',
                                                               'text': 'Yusoff '
                                                                       'Bin '
                                                                       'Mohd '
                                                                       'Amin'},
                                                              {'@pid': '188/9358',
                                                               'text': 'Ung '
                                                                       'Ngie '
                                                                       'Min'},
                                                              {'@pid': '188/9285',
                                                               'text': 'David '
                                                                       'Andrew '
                                                                       'Bradley'},
                                                              {'@pid': '188/9320',
                                                               'text': 'Roslan '
                                                                       'Bin Md '
                                                                       'Nor'},
                                                              {'@pid': '188/9261',
                                                               'text': 'Mohd '
                                                                       'Jamil '
                                                                       'Maah'}]},
                                       'doi': '10.3390/S150820557',
                                       'ee': 'https://doi.org/10.3390/s150820557',
                                       'key': 'journals/sensors/NawiWZAMBNM15',
                                       'number': '8',
                                       'pages': '20557-20569',
                                       'title': 'The Thermoluminescence '
                                                'Response of Ge-Doped Flat '
                                                'Fibers to Gamma Radiation.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/sensors/NawiWZAMBNM15',
                                       'venue': 'Sensors',
                                       'volume': '15',
                                       'year': '2015'},
                              'url': 'URL#2137777'},
                             {'@id': '2137790',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '70/7330',
                                                               'text': 'Thuy '
                                                                       'Tuong '
                                                                       'Nguyen'},
                                                              {'@pid': '22/10798',
                                                               'text': 'David '
                                                                       'C. '
                                                                       'Slaughter'},
                                                              {'@pid': '187/7078',
                                                               'text': 'Bradley '
                                                                       'D. '
                                                                       'Hanson'},
                                                              {'@pid': '84/3066',
                                                               'text': 'Andrew '
                                                                       'Barber'},
                                                              {'@pid': '188/9292',
                                                               'text': 'Amy '
                                                                       'Freitas'},
                                                              {'@pid': '188/9456',
                                                               'text': 'Daniel '
                                                                       'Robles'},
                                                              {'@pid': '188/9290',
                                                               'text': 'Erin '
                                                                       'Whelan'}]},
                                       'doi': '10.3390/S150818427',
                                       'ee': 'https://doi.org/10.3390/s150818427',
                                       'key': 'journals/sensors/NguyenSHBFRW15',
                                       'number': '8',
                                       'pages': '18427-18442',
                                       'title': 'Automated Mobile System for '
                                                'Accurate Outdoor Tree Crop '
                                                'Enumeration Using an '
                                                'Uncalibrated Camera.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/sensors/NguyenSHBFRW15',
                                       'venue': 'Sensors',
                                       'volume': '15',
                                       'year': '2015'},
                              'url': 'URL#2137790'},
                             {'@id': '2142260',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '84/2683',
                                                               'text': 'Anna '
                                                                       'Paszynska'},
                                                              {'@pid': '84/4953',
                                                               'text': 'Maciej '
                                                                       'Paszynski'},
                                                              {'@pid': '73/10809',
                                                               'text': 'Konrad '
                                                                       'Jopek'},
                                                              {'@pid': '146/1155',
                                                               'text': 'Maciej '
                                                                       'Wozniak'},
                                                              {'@pid': '130/5927',
                                                               'text': 'Damian '
                                                                       'Goik'},
                                                              {'@pid': '44/8769',
                                                               'text': 'Piotr '
                                                                       'Gurgul'},
                                                              {'@pid': '142/0336',
                                                               'text': 'Hassan '
                                                                       'AbouEisha'},
                                                              {'@pid': 'm/MJMoshkov',
                                                               'text': 'Mikhail '
                                                                       'Moshkov'},
                                                              {'@pid': '14/8769',
                                                               'text': 'Victor '
                                                                       'Manuel '
                                                                       'Calo'},
                                                              {'@pid': '15/2621',
                                                               'text': 'Andrew '
                                                                       'Lenharth'},
                                                              {'@pid': '48/4701',
                                                               'text': 'Donald '
                                                                       'Nguyen'},
                                                              {'@pid': '71/5735',
                                                               'text': 'Keshav '
                                                                       'Pingali'}]},
                                       'doi': '10.1155/2015/303024',
                                       'ee': 'https://doi.org/10.1155/2015/303024',
                                       'key': 'journals/sp/PaszynskaPJWGGA15',
                                       'pages': '303024:1-303024:18',
                                       'title': 'Quasi-Optimal Elimination '
                                                'Trees for 2D Grids with '
                                                'Singularities.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/sp/PaszynskaPJWGGA15',
                                       'venue': 'Sci. Program.',
                                       'volume': '2015',
                                       'year': '2015'},
                              'url': 'URL#2142260'},
                             {'@id': '2142305',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '19/8524',
                                                               'text': 'Minh '
                                                                       'Ngoc '
                                                                       'Dinh'},
                                                              {'@pid': '09/6203',
                                                               'text': 'David '
                                                                       'Abramson'},
                                                              {'@pid': '19/4764',
                                                               'text': 'Chao '
                                                                       'Jin'},
                                                              {'@pid': '70/10957',
                                                               'text': 'Andrew '
                                                                       'Gontarek'},
                                                              {'@pid': '48/8524',
                                                               'text': 'Bob '
                                                                       'Moench'},
                                                              {'@pid': '91/357',
                                                               'text': 'Luiz '
                                                                       'De '
                                                                       'Rose'}]},
                                       'doi': '10.1002/SPE.2239',
                                       'ee': 'https://doi.org/10.1002/spe.2239',
                                       'key': 'journals/spe/DinhAJGMR15',
                                       'number': '4',
                                       'pages': '501-526',
                                       'title': 'A data-centric framework for '
                                                'debugging highly parallel '
                                                'applications.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/spe/DinhAJGMR15',
                                       'venue': 'Softw. Pract. Exp.',
                                       'volume': '45',
                                       'year': '2015'},
                              'url': 'URL#2142305'},
                             {'@id': '2148568',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '132/2097',
                                                               'text': 'Anh '
                                                                       'Quang '
                                                                       'Nguyen'},
                                                              {'@pid': '45/1948',
                                                               'text': 'Andrew '
                                                                       'M. '
                                                                       'Sutton'},
                                                              {'@pid': 'n/FrankNeumann',
                                                               'text': 'Frank '
                                                                       'Neumann '
                                                                       '0001'}]},
                                       'doi': '10.1016/J.TCS.2014.06.023',
                                       'ee': 'https://doi.org/10.1016/j.tcs.2014.06.023',
                                       'key': 'journals/tcs/NguyenSN15',
                                       'pages': '24-36',
                                       'title': 'Population size matters - '
                                                'Rigorous runtime results for '
                                                'maximizing the hypervolume '
                                                'indicator.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/tcs/NguyenSN15',
                                       'venue': 'Theor. Comput. Sci.',
                                       'volume': '561',
                                       'year': '2015'},
                              'url': 'URL#2148568'},
                             {'@id': '2159760',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '03/9827',
                                                               'text': 'Andrew '
                                                                       'J. '
                                                                       'Pyles'},
                                                              {'@pid': '80/6175',
                                                               'text': 'David '
                                                                       'T. '
                                                                       'Nguyen'},
                                                              {'@pid': '63/216-1',
                                                               'text': 'Xin Qi '
                                                                       '0001'},
                                                              {'@pid': '67/4904',
                                                               'text': 'Gang '
                                                                       'Zhou'}]},
                                       'doi': '10.1109/TWC.2015.2404843',
                                       'ee': 'https://doi.org/10.1109/TWC.2015.2404843',
                                       'key': 'journals/twc/PylesNQZ15',
                                       'number': '6',
                                       'pages': '3367-3377',
                                       'title': 'Bluesaver - A Multi-PHY '
                                                'Approach to Smartphone Energy '
                                                'Savings.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/twc/PylesNQZ15',
                                       'venue': 'IEEE Trans. Wirel. Commun.',
                                       'volume': '14',
                                       'year': '2015'},
                              'url': 'URL#2159760'},
                             {'@id': '2164297',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '181/8469',
                                                               'text': 'Loan '
                                                                       'Thi '
                                                                       'Ngoc '
                                                                       'Dinh'},
                                                              {'@pid': '61/1339',
                                                               'text': 'Gour '
                                                                       'C. '
                                                                       'Karmakar'},
                                                              {'@pid': 'k/JoarderKamruzzaman',
                                                               'text': 'Joarder '
                                                                       'Kamruzzaman'},
                                                              {'@pid': '09/1062',
                                                               'text': 'Andrew '
                                                                       'Stranieri'}]},
                                       'doi': '10.1109/ICICS.2015.7459846',
                                       'ee': 'https://doi.org/10.1109/ICICS.2015.7459846',
                                       'key': 'conf/IEEEicics/DinhKKS15',
                                       'pages': '1-5',
                                       'title': 'Business context in big data '
                                                'analytics.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/IEEEicics/DinhKKS15',
                                       'venue': 'ICICS',
                                       'year': '2015'},
                              'url': 'URL#2164297'},
                             {'@id': '2209381',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '15/2621',
                                                               'text': 'Andrew '
                                                                       'Lenharth'},
                                                              {'@pid': '48/4701',
                                                               'text': 'Donald '
                                                                       'Nguyen'},
                                                              {'@pid': '71/5735',
                                                               'text': 'Keshav '
                                                                       'Pingali'}]},
                                       'doi': '10.1007/978-3-662-48096-0_17',
                                       'ee': 'https://doi.org/10.1007/978-3-662-48096-0_17',
                                       'key': 'conf/europar/LenharthNP15',
                                       'pages': '209-221',
                                       'title': 'Priority Queues Are Not Good '
                                                'Concurrent Priority '
                                                'Schedulers.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/europar/LenharthNP15',
                                       'venue': 'Euro-Par',
                                       'year': '2015'},
                              'url': 'URL#2209381'},
                             {'@id': '2215134',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '117/4935',
                                                               'text': 'Thanh '
                                                                       'Hong '
                                                                       'Nguyen'},
                                                              {'@pid': '84/8399',
                                                               'text': 'Francesco '
                                                                       'Maria '
                                                                       'Delle '
                                                                       'Fave'},
                                                              {'@pid': '24/4432',
                                                               'text': 'Debarun '
                                                                       'Kar'},
                                                              {'@pid': '170/5641',
                                                               'text': 'Aravind '
                                                                       'S. '
                                                                       'Lakshminarayanan'},
                                                              {'@pid': '121/3511',
                                                               'text': 'Amulya '
                                                                       'Yadav'},
                                                              {'@pid': '67/2667',
                                                               'text': 'Milind '
                                                                       'Tambe'},
                                                              {'@pid': '52/1053',
                                                               'text': 'Noa '
                                                                       'Agmon'},
                                                              {'@pid': '170/5576',
                                                               'text': 'Andrew '
                                                                       'J. '
                                                                       'Plumptre'},
                                                              {'@pid': '170/5674',
                                                               'text': 'Margaret '
                                                                       'Driciru'},
                                                              {'@pid': '170/5591',
                                                               'text': 'Fred '
                                                                       'Wanyama'},
                                                              {'@pid': '170/5632',
                                                               'text': 'Aggrey '
                                                                       'Rwetsiba'}]},
                                       'doi': '10.1007/978-3-319-25594-1_10',
                                       'ee': 'https://doi.org/10.1007/978-3-319-25594-1_10',
                                       'key': 'conf/gamesec/NguyenFKLYTAPDW15',
                                       'pages': '170-191',
                                       'title': 'Making the Most of Our '
                                                'Regrets - Regret-Based '
                                                'Solutions to Handle Payoff '
                                                'Uncertainty and Elicitation '
                                                'in Green Security Games.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/gamesec/NguyenFKLYTAPDW15',
                                       'venue': 'GameSec',
                                       'year': '2015'},
                              'url': 'URL#2215134'},
                             {'@id': '2230864',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '84/2683',
                                                               'text': 'Anna '
                                                                       'Paszynska'},
                                                              {'@pid': '73/10809',
                                                               'text': 'Konrad '
                                                                       'Jopek'},
                                                              {'@pid': '17/6547',
                                                               'text': 'Krzysztof '
                                                                       'Banas'},
                                                              {'@pid': '84/4953',
                                                               'text': 'Maciej '
                                                                       'Paszynski'},
                                                              {'@pid': '44/8769',
                                                               'text': 'Piotr '
                                                                       'Gurgul'},
                                                              {'@pid': '165/0033',
                                                               'text': 'Andrew '
                                                                       'Lenerth'},
                                                              {'@pid': '48/4701',
                                                               'text': 'Donald '
                                                                       'Nguyen'},
                                                              {'@pid': '71/5735',
                                                               'text': 'Keshav '
                                                                       'Pingali'},
                                                              {'@pid': '06/4626',
                                                               'text': 'Lisandro '
                                                                       'Dalcín'},
                                                              {'@pid': '14/8769',
                                                               'text': 'Victor '
                                                                       'M. '
                                                                       'Calo'}]},
                                       'doi': '10.1016/J.PROCS.2015.05.415',
                                       'ee': 'https://doi.org/10.1016/j.procs.2015.05.415',
                                       'key': 'conf/iccS/PaszynskaJBPGLN15',
                                       'pages': '2744-2748',
                                       'title': 'Telescopic Hybrid Fast Solver '
                                                'for 3D Elliptic Problems with '
                                                'Point Singularities.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/iccS/PaszynskaJBPGLN15',
                                       'venue': 'ICCS',
                                       'year': '2015'},
                              'url': 'URL#2230864'},
                             {'@id': '2288611',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '67/11411',
                                                               'text': 'Akshatha '
                                                                       'Bhat'},
                                                              {'@pid': '15/2621',
                                                               'text': 'Andrew '
                                                                       'Lenharth'},
                                                              {'@pid': '48/4701',
                                                               'text': 'Donald '
                                                                       'Nguyen'},
                                                              {'@pid': '64/3448',
                                                               'text': 'Qing '
                                                                       'Yi'},
                                                              {'@pid': '71/5735',
                                                               'text': 'Keshav '
                                                                       'Pingali'}]},
                                       'doi': '10.3233/978-1-61499-621-7-11',
                                       'ee': 'https://doi.org/10.3233/978-1-61499-621-7-11',
                                       'key': 'conf/parco/BhatLNYP15',
                                       'pages': '11-21',
                                       'title': 'Automatic Tuning of Task '
                                                'Scheduling Policies on '
                                                'Multicore Architectures.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/parco/BhatLNYP15',
                                       'venue': 'PARCO',
                                       'year': '2015'},
                              'url': 'URL#2288611'},
                             {'@id': '2296243',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '91/357',
                                                               'text': 'Luiz '
                                                                       'De '
                                                                       'Rose'},
                                                              {'@pid': '70/10957',
                                                               'text': 'Andrew '
                                                                       'Gontarek'},
                                                              {'@pid': '165/1250',
                                                               'text': 'Aaron '
                                                                       'Vose'},
                                                              {'@pid': '48/8524',
                                                               'text': 'Robert '
                                                                       'Moench'},
                                                              {'@pid': '09/6203',
                                                               'text': 'David '
                                                                       'Abramson'},
                                                              {'@pid': '19/8524',
                                                               'text': 'Minh '
                                                                       'Ngoc '
                                                                       'Dinh'},
                                                              {'@pid': '19/4764',
                                                               'text': 'Chao '
                                                                       'Jin'}]},
                                       'doi': '10.1145/2807591.2807605',
                                       'ee': 'https://doi.org/10.1145/2807591.2807605',
                                       'key': 'conf/sc/RoseGVMADJ15',
                                       'pages': '63:1-63:12',
                                       'title': 'Relative debugging for a '
                                                'highly parallel hybrid '
                                                'computer system.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/sc/RoseGVMADJ15',
                                       'venue': 'SC',
                                       'year': '2015'},
                              'url': 'URL#2296243'},
                             {'@id': '2311275',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '93/2262',
                                                               'text': 'Andrew '
                                                                       'Kennedy'},
                                                              {'@pid': '19/5555',
                                                               'text': 'Karsten '
                                                                       'Klein '
                                                                       '0001'},
                                                              {'@pid': '181/2303-1',
                                                               'text': 'An '
                                                                       'Nguyen '
                                                                       '0001'}]},
                                       'doi': '10.1145/2801040.2801059',
                                       'ee': 'https://doi.org/10.1145/2801040.2801059',
                                       'key': 'conf/vinci/KennedyKN15',
                                       'pages': '42-51',
                                       'title': 'The Graph Landscape - a '
                                                'Concept for the Visual '
                                                'Analysis of Graph Set '
                                                'Properties.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/vinci/KennedyKN15',
                                       'venue': 'VINCI',
                                       'year': '2015'},
                              'url': 'URL#2311275'},
                             {'@id': '2352906',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '144/0507',
                                                               'text': 'Evan '
                                                                       'Tran'},
                                                              {'@pid': '30/4876',
                                                               'text': 'Quang '
                                                                       'Vinh '
                                                                       'Nguyen'},
                                                              {'@pid': '144/0623',
                                                               'text': 'Kate '
                                                                       'Richards'},
                                                              {'@pid': '144/0583',
                                                               'text': 'Andrew '
                                                                       'Leahy'},
                                                              {'@pid': '39/1218',
                                                               'text': 'Simeon '
                                                                       'J. '
                                                                       'Simoff'}]},
                                       'ee': 'http://cs.anu.edu.au/ojs/index.php/ajiips/article/view/1260',
                                       'key': 'journals/ajiips/TranNRLS14',
                                       'number': '4',
                                       'title': 'GravityBubbleVis - An '
                                                'Immersive and Interactive '
                                                'Visualization for Live '
                                                'Internet Activities.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/ajiips/TranNRLS14',
                                       'venue': 'Aust. J. Intell. Inf. '
                                                'Process. Syst.',
                                       'volume': '13',
                                       'year': '2014'},
                              'url': 'URL#2352906'},
                             {'@id': '2429036',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '46/6957-3',
                                                               'text': 'Andrew '
                                                                       'Nelson '
                                                                       '0003'},
                                                              {'@pid': '196/8354',
                                                               'text': 'Tri '
                                                                       'Setiyono'},
                                                              {'@pid': '196/8542',
                                                               'text': 'Arnel '
                                                                       'B. '
                                                                       'Rala'},
                                                              {'@pid': '196/8251',
                                                               'text': 'Emma '
                                                                       'D. '
                                                                       'Quicho'},
                                                              {'@pid': '196/8260',
                                                               'text': 'Jeny '
                                                                       'V. '
                                                                       'Raviz'},
                                                              {'@pid': '196/8349',
                                                               'text': 'Prosperidad '
                                                                       'J. '
                                                                       'Abonete'},
                                                              {'@pid': '196/8808',
                                                               'text': 'Aileen '
                                                                       'A. '
                                                                       'Maunahan'},
                                                              {'@pid': '196/8419',
                                                               'text': 'Cornelia '
                                                                       'A. '
                                                                       'Garcia'},
                                                              {'@pid': '196/8413',
                                                               'text': 'Hannah '
                                                                       'Zarah '
                                                                       'M. '
                                                                       'Bhatti'},
                                                              {'@pid': '196/8061',
                                                               'text': 'Lorena '
                                                                       'S. '
                                                                       'Villano'},
                                                              {'@pid': '196/8654',
                                                               'text': 'Pongmanee '
                                                                       'Thongbai'},
                                                              {'@pid': '86/8964',
                                                               'text': 'Francesco '
                                                                       'Holecz'},
                                                              {'@pid': '37/8951',
                                                               'text': 'Massimo '
                                                                       'Barbieri'},
                                                              {'@pid': '121/7554',
                                                               'text': 'Francesco '
                                                                       'Collivignarelli'},
                                                              {'@pid': '00/6974',
                                                               'text': 'Luca '
                                                                       'Gatti'},
                                                              {'@pid': '196/8170',
                                                               'text': 'Eduardo '
                                                                       'Jimmy '
                                                                       'P. '
                                                                       'Quilang'},
                                                              {'@pid': '196/8536',
                                                               'text': 'Mary '
                                                                       'Rose '
                                                                       'O. '
                                                                       'Mabalay'},
                                                              {'@pid': '196/8374',
                                                               'text': 'Pristine '
                                                                       'E. '
                                                                       'Mabalot'},
                                                              {'@pid': '196/8485',
                                                               'text': 'Mabel '
                                                                       'I. '
                                                                       'Barroga'},
                                                              {'@pid': '196/8135',
                                                               'text': 'Alfie '
                                                                       'P. '
                                                                       'Bacong'},
                                                              {'@pid': '196/8105',
                                                               'text': 'Norlyn '
                                                                       'T. '
                                                                       'Detoito'},
                                                              {'@pid': '196/8075',
                                                               'text': 'Glorie '
                                                                       'Belle '
                                                                       'Berja'},
                                                              {'@pid': '196/8242',
                                                               'text': 'Frenciso '
                                                                       'Varquez'},
                                                              {'@pid': '196/8383',
                                                               'text': 'Wahyunto'},
                                                              {'@pid': '196/8534',
                                                               'text': 'Dwi '
                                                                       'Kuntjoro'},
                                                              {'@pid': '196/8377',
                                                               'text': 'Sri '
                                                                       'Retno '
                                                                       'Murdiyati'},
                                                              {'@pid': '196/8699',
                                                               'text': 'Sellaperumal '
                                                                       'Pazhanivelan'},
                                                              {'@pid': '196/8779',
                                                               'text': 'Pandian '
                                                                       'Kannan'},
                                                              {'@pid': '196/8632',
                                                               'text': 'Petchimuthu '
                                                                       'Christy '
                                                                       'Nirmala '
                                                                       'Mary'},
                                                              {'@pid': '196/8771',
                                                               'text': 'Elangovan '
                                                                       'Subramanian'},
                                                              {'@pid': '80/8988',
                                                               'text': 'Preesan '
                                                                       'Rakwatin'},
                                                              {'@pid': '196/8324',
                                                               'text': 'Amornrat '
                                                                       'Intrman'},
                                                              {'@pid': '196/8452',
                                                               'text': 'Thana '
                                                                       'Setapayak'},
                                                              {'@pid': '196/8606',
                                                               'text': 'Sommai '
                                                                       'Lertna'},
                                                              {'@pid': '136/6546',
                                                               'text': 'Vo '
                                                                       'Quang '
                                                                       'Minh'},
                                                              {'@pid': '44/10688',
                                                               'text': 'Vo '
                                                                       'Quoc '
                                                                       'Tuan'},
                                                              {'@pid': '196/8717',
                                                               'text': 'Trinh '
                                                                       'Hoang '
                                                                       'Duong'},
                                                              {'@pid': '196/8730',
                                                               'text': 'Nguyen '
                                                                       'Huu '
                                                                       'Quyen'},
                                                              {'@pid': '196/8617',
                                                               'text': 'Duong '
                                                                       'Van '
                                                                       'Kham'},
                                                              {'@pid': '196/8607',
                                                               'text': 'Sarith '
                                                                       'Hin'},
                                                              {'@pid': '196/8772',
                                                               'text': 'Touch '
                                                                       'Veasna'},
                                                              {'@pid': '71/9693',
                                                               'text': 'Manoj '
                                                                       'Yadav'},
                                                              {'@pid': '196/8532',
                                                               'text': 'Chharom '
                                                                       'Chin'},
                                                              {'@pid': '196/8169',
                                                               'text': 'Nguyen '
                                                                       'Hong '
                                                                       'Ninh'}]},
                                       'doi': '10.3390/RS61110773',
                                       'ee': 'https://doi.org/10.3390/rs61110773',
                                       'key': 'journals/remotesensing/NelsonSRQRAMGBV14',
                                       'number': '11',
                                       'pages': '10773-10812',
                                       'title': 'Towards an Operational '
                                                'SAR-Based Rice Monitoring '
                                                'System in Asia - Examples '
                                                'from 13 Demonstration Sites '
                                                'across Asia in the RIICE '
                                                'Project.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/remotesensing/NelsonSRQRAMGBV14',
                                       'venue': 'Remote. Sens.',
                                       'volume': '6',
                                       'year': '2014'},
                              'url': 'URL#2429036'},
                             {'@id': '2448283',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '117/4552',
                                                               'text': 'Hien '
                                                                       'Duy '
                                                                       'Nguyen'},
                                                              {'@pid': '83/3246',
                                                               'text': 'Geoffrey '
                                                                       'J. '
                                                                       'McLachlan'},
                                                              {'@pid': '32/97',
                                                               'text': 'Nicolas '
                                                                       'Cherbuin'},
                                                              {'@pid': '64/2690',
                                                               'text': 'Andrew '
                                                                       'L. '
                                                                       'Janke'}]},
                                       'doi': '10.1109/TMI.2014.2322369',
                                       'ee': 'https://doi.org/10.1109/TMI.2014.2322369',
                                       'key': 'journals/tmi/NguyenMCJ14',
                                       'number': '8',
                                       'pages': '1735-1748',
                                       'title': 'False Discovery Rate Control '
                                                'in Magnetic Resonance Imaging '
                                                'Studies via Markov Random '
                                                'Fields.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/tmi/NguyenMCJ14',
                                       'venue': 'IEEE Trans. Medical Imaging',
                                       'volume': '33',
                                       'year': '2014'},
                              'url': 'URL#2448283'},
                             {'@id': '2448971',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '08/1542',
                                                               'text': 'Yaoguang '
                                                                       'Wei'},
                                                              {'@pid': 's/CliffNSze',
                                                               'text': 'Cliff '
                                                                       'C. N. '
                                                                       'Sze'},
                                                              {'@pid': '15/1633',
                                                               'text': 'Natarajan '
                                                                       'Viswanathan'},
                                                              {'@pid': '51/4015-1',
                                                               'text': 'Zhuo '
                                                                       'Li '
                                                                       '0001'},
                                                              {'@pid': '41/4379',
                                                               'text': 'Charles '
                                                                       'J. '
                                                                       'Alpert'},
                                                              {'@pid': '04/2781',
                                                               'text': 'Lakshmi '
                                                                       'N. '
                                                                       'Reddy'},
                                                              {'@pid': '65/2074',
                                                               'text': 'Andrew '
                                                                       'D. '
                                                                       'Huber'},
                                                              {'@pid': '69/2239',
                                                               'text': 'Gustavo '
                                                                       'E. '
                                                                       'Téllez'},
                                                              {'@pid': '16/11468',
                                                               'text': 'Douglas '
                                                                       'Keller'},
                                                              {'@pid': 's/SachinSSapatnekar',
                                                               'text': 'Sachin '
                                                                       'S. '
                                                                       'Sapatnekar'}]},
                                       'doi': '10.1145/2566663',
                                       'ee': 'https://doi.org/10.1145/2566663',
                                       'key': 'journals/todaes/WeiSVLARHTKS14',
                                       'number': '2',
                                       'pages': '17:1-17:37',
                                       'title': 'Techniques for scalable and '
                                                'effective routability '
                                                'evaluation.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/todaes/WeiSVLARHTKS14',
                                       'venue': 'ACM Trans. Design Autom. '
                                                'Electr. Syst.',
                                       'volume': '19',
                                       'year': '2014'},
                              'url': 'URL#2448971'},
                             {'@id': '2450873',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '83/7479',
                                                               'text': 'Xin '
                                                                       'Qiu'},
                                                              {'@pid': '147/0904',
                                                               'text': 'Tu A. '
                                                                       'Nguyen'},
                                                              {'@pid': '123/6661',
                                                               'text': 'Joe '
                                                                       'David '
                                                                       'Guggenberger'},
                                                              {'@pid': '73/3384',
                                                               'text': 'Mariesa '
                                                                       'L. '
                                                                       'Crow'},
                                                              {'@pid': '123/6465',
                                                               'text': 'Andrew '
                                                                       'Curtis '
                                                                       'Elmore'}]},
                                       'doi': '10.1109/TSG.2014.2310212',
                                       'ee': 'https://doi.org/10.1109/TSG.2014.2310212',
                                       'key': 'journals/tsg/QiuNGCE14',
                                       'number': '4',
                                       'pages': '1592-1601',
                                       'title': 'A Field Validated Model of a '
                                                'Vanadium Redox Flow Battery '
                                                'for Microgrids.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/tsg/QiuNGCE14',
                                       'venue': 'IEEE Trans. Smart Grid',
                                       'volume': '5',
                                       'year': '2014'},
                              'url': 'URL#2450873'},
                             {'@id': '2458753',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '135/4935',
                                                               'text': 'Minh '
                                                                       'Hoai'},
                                                              {'@pid': 'z/AndrewZisserman',
                                                               'text': 'Andrew '
                                                                       'Zisserman'}]},
                                       'doi': '10.1007/978-3-319-16817-3_15',
                                       'ee': 'https://doi.org/10.1007/978-3-319-16817-3_15',
                                       'key': 'conf/accv/HoaiZ14',
                                       'pages': '222-237',
                                       'title': 'Thread-Safe - Towards '
                                                'Recognizing Human Actions '
                                                'Across Shot Boundaries.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/accv/HoaiZ14',
                                       'venue': 'ACCV',
                                       'year': '2014'},
                              'url': 'URL#2458753'},
                             {'@id': '2458754',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '135/4935',
                                                               'text': 'Minh '
                                                                       'Hoai'},
                                                              {'@pid': 'z/AndrewZisserman',
                                                               'text': 'Andrew '
                                                                       'Zisserman'}]},
                                       'doi': '10.1007/978-3-319-16814-2_1',
                                       'ee': 'https://doi.org/10.1007/978-3-319-16814-2_1',
                                       'key': 'conf/accv/HoaiZ14a',
                                       'pages': '3-20',
                                       'title': 'Improving Human Action '
                                                'Recognition Using Score '
                                                'Distribution and Ranking.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/accv/HoaiZ14a',
                                       'venue': 'ACCV',
                                       'year': '2014'},
                              'url': 'URL#2458754'},
                             {'@id': '2467209',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '48/4701',
                                                               'text': 'Donald '
                                                                       'Nguyen'},
                                                              {'@pid': '15/2621',
                                                               'text': 'Andrew '
                                                                       'Lenharth'},
                                                              {'@pid': '71/5735',
                                                               'text': 'Keshav '
                                                                       'Pingali'}]},
                                       'doi': '10.1145/2541940.2541964',
                                       'ee': 'https://doi.org/10.1145/2541940.2541964',
                                       'key': 'conf/asplos/NguyenLP14',
                                       'pages': '499-512',
                                       'title': 'Deterministic galois - '
                                                'on-demand, portable and '
                                                'parameterless.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/asplos/NguyenLP14',
                                       'venue': 'ASPLOS',
                                       'year': '2014'},
                              'url': 'URL#2467209'},
                             {'@id': '2472227',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '135/4935',
                                                               'text': 'Minh '
                                                                       'Hoai'},
                                                              {'@pid': '44/4353',
                                                               'text': 'Lubor '
                                                                       'Ladicky'},
                                                              {'@pid': 'z/AndrewZisserman',
                                                               'text': 'Andrew '
                                                                       'Zisserman'}]},
                                       'ee': 'http://www.bmva.org/bmvc/2014/papers/paper069/index.html',
                                       'key': 'conf/bmvc/HoaiLZ14',
                                       'title': 'Action Recognition From Weak '
                                                'Alignment of Body Parts.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/bmvc/HoaiLZ14',
                                       'venue': 'BMVC',
                                       'year': '2014'},
                              'url': 'URL#2472227'},
                             {'@id': '2487566',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '135/4935',
                                                               'text': 'Minh '
                                                                       'Hoai'},
                                                              {'@pid': 'z/AndrewZisserman',
                                                               'text': 'Andrew '
                                                                       'Zisserman'}]},
                                       'doi': '10.1109/CVPR.2014.117',
                                       'ee': 'https://doi.org/10.1109/CVPR.2014.117',
                                       'key': 'conf/cvpr/HoaiZ14',
                                       'pages': '875-882',
                                       'title': 'Talking Heads - Detecting '
                                                'Humans and Recognizing Their '
                                                'Interactions.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/cvpr/HoaiZ14',
                                       'venue': 'CVPR',
                                       'year': '2014'},
                              'url': 'URL#2487566'},
                             {'@id': '2521900',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '19/8524',
                                                               'text': 'Minh '
                                                                       'Ngoc '
                                                                       'Dinh'},
                                                              {'@pid': '09/6203',
                                                               'text': 'David '
                                                                       'Abramson'},
                                                              {'@pid': '19/4764',
                                                               'text': 'Chao '
                                                                       'Jin'},
                                                              {'@pid': '91/357',
                                                               'text': 'Luiz '
                                                                       'De '
                                                                       'Rose'},
                                                              {'@pid': '48/8524',
                                                               'text': 'Bob '
                                                                       'Moench'},
                                                              {'@pid': '70/10957',
                                                               'text': 'Andrew '
                                                                       'Gontarek'}]},
                                       'doi': '10.1016/J.PROCS.2014.05.135',
                                       'ee': 'https://doi.org/10.1016/j.procs.2014.05.135',
                                       'key': 'conf/iccS/DinhAJDMG14',
                                       'pages': '1491-1503',
                                       'title': 'Supporting Relative Debugging '
                                                'for Large-scale UPC Programs.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/iccS/DinhAJDMG14',
                                       'venue': 'ICCS',
                                       'year': '2014'},
                              'url': 'URL#2521900'},
                             {'@id': '2521918',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '130/5927',
                                                               'text': 'Damian '
                                                                       'Goik'},
                                                              {'@pid': '73/10809',
                                                               'text': 'Konrad '
                                                                       'Jopek'},
                                                              {'@pid': '84/4953',
                                                               'text': 'Maciej '
                                                                       'Paszynski'},
                                                              {'@pid': '15/2621',
                                                               'text': 'Andrew '
                                                                       'Lenharth'},
                                                              {'@pid': '48/4701',
                                                               'text': 'Donald '
                                                                       'Nguyen'},
                                                              {'@pid': '71/5735',
                                                               'text': 'Keshav '
                                                                       'Pingali'}]},
                                       'doi': '10.1016/J.PROCS.2014.05.086',
                                       'ee': 'https://doi.org/10.1016/j.procs.2014.05.086',
                                       'key': 'conf/iccS/GoikJPLNP14',
                                       'pages': '960-969',
                                       'title': 'Graph Grammar based '
                                                'Multi-thread Multi-frontal '
                                                'Direct Solver with Galois '
                                                'Scheduler.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/iccS/GoikJPLNP14',
                                       'venue': 'ICCS',
                                       'year': '2014'},
                              'url': 'URL#2521918'},
                             {'@id': '2525417',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '80/4976',
                                                               'text': 'Nga '
                                                                       'Tran'},
                                                              {'@pid': '117/6048',
                                                               'text': 'Andrew '
                                                                       'Lamb'},
                                                              {'@pid': '05/481',
                                                               'text': 'Lakshmikant '
                                                                       'Shrinivas'},
                                                              {'@pid': '18/5094',
                                                               'text': 'Sreenath '
                                                                       'Bodagala'},
                                                              {'@pid': '133/1688',
                                                               'text': 'Jaimin '
                                                                       'Dave'}]},
                                       'doi': '10.1109/ICDE.2014.6816727',
                                       'ee': 'https://doi.org/10.1109/ICDE.2014.6816727',
                                       'key': 'conf/icde/TranLSBD14',
                                       'pages': '1108-1119',
                                       'title': 'The Vertica Query Optimizer - '
                                                'The case for specialized '
                                                'query optimizers.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icde/TranLSBD14',
                                       'venue': 'ICDE',
                                       'year': '2014'},
                              'url': 'URL#2525417'},
                             {'@id': '2533208',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '159/2501',
                                                               'text': 'An '
                                                                       'Hung '
                                                                       'Nguyen'},
                                                              {'@pid': '75/4744',
                                                               'text': 'Mark '
                                                                       'Pickering'},
                                                              {'@pid': '117/1912',
                                                               'text': 'Andrew '
                                                                       'J. '
                                                                       'Lambert'}]},
                                       'doi': '10.1117/12.2180522',
                                       'ee': 'https://doi.org/10.1117/12.2180522',
                                       'key': 'conf/icmv/NguyenPL14',
                                       'pages': '94451Z',
                                       'title': 'A one-bit approach for image '
                                                'registration.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icmv/NguyenPL14',
                                       'venue': 'ICMV',
                                       'year': '2014'},
                              'url': 'URL#2533208'},
                             {'@id': '2535520',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '10/10043',
                                                               'text': 'Bastian '
                                                                       'Bischoff'},
                                                              {'@pid': '18/6057',
                                                               'text': 'Duy '
                                                                       'Nguyen-Tuong'},
                                                              {'@pid': '123/6759',
                                                               'text': 'Herke '
                                                                       'van '
                                                                       'Hoof'},
                                                              {'@pid': '34/11107',
                                                               'text': 'Andrew '
                                                                       'McHutchon'},
                                                              {'@pid': '83/5440',
                                                               'text': 'Carl '
                                                                       'E. '
                                                                       'Rasmussen'},
                                                              {'@pid': 'k/AloisKnoll',
                                                               'text': 'Alois '
                                                                       'C. '
                                                                       'Knoll'},
                                                              {'@pid': 'p/JanPeters1',
                                                               'text': 'Jan '
                                                                       'Peters '
                                                                       '0001'},
                                                              {'@pid': '76/5043',
                                                               'text': 'Marc '
                                                                       'Peter '
                                                                       'Deisenroth'}]},
                                       'doi': '10.1109/ICRA.2014.6907422',
                                       'ee': 'https://doi.org/10.1109/ICRA.2014.6907422',
                                       'key': 'conf/icra/BischoffNHMRKPD14',
                                       'pages': '3882-3887',
                                       'title': 'Policy search for learning '
                                                'robot control using sparse '
                                                'data.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icra/BischoffNHMRKPD14',
                                       'venue': 'ICRA',
                                       'year': '2014'},
                              'url': 'URL#2535520'},
                             {'@id': '2540523',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '215/1905',
                                                               'text': 'Andrew '
                                                                       'Ong'},
                                                              {'@pid': '215/1524',
                                                               'text': 'J. '
                                                                       'Prasad '
                                                                       'K. '
                                                                       'Sampath'},
                                                              {'@pid': '128/5220',
                                                               'text': 'Gilbert '
                                                                       'Hock '
                                                                       'Beng '
                                                                       'Foo'},
                                                              {'@pid': '215/1513',
                                                               'text': 'YenKheng '
                                                                       'Tan'},
                                                              {'@pid': '122/7373',
                                                               'text': 'D. '
                                                                       'Mahinda '
                                                                       'Vilathgamuwa'},
                                                              {'@pid': '190/2340',
                                                               'text': 'Nguyen '
                                                                       'Xuan '
                                                                       'Bac'}]},
                                       'doi': '10.1109/IECON.2014.7048931',
                                       'ee': 'https://doi.org/10.1109/IECON.2014.7048931',
                                       'key': 'conf/iecon/OngSFTVB14',
                                       'pages': '2965-2970',
                                       'title': 'Analysis of impedance matched '
                                                'circuit for wireless power '
                                                'transfer.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/iecon/OngSFTVB14',
                                       'venue': 'IECON',
                                       'year': '2014'},
                              'url': 'URL#2540523'},
                             {'@id': '2540609',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '215/1524',
                                                               'text': 'J. '
                                                                       'Prasad '
                                                                       'K. '
                                                                       'Sampath'},
                                                              {'@pid': '155/5303',
                                                               'text': 'Arokiaswami '
                                                                       'Alphones'},
                                                              {'@pid': '122/7373',
                                                               'text': 'D. '
                                                                       'Mahinda '
                                                                       'Vilathgamuwa'},
                                                              {'@pid': '215/1905',
                                                               'text': 'Andrew '
                                                                       'Ong'},
                                                              {'@pid': '190/2340',
                                                               'text': 'Nguyen '
                                                                       'Xuan '
                                                                       'Bac'}]},
                                       'doi': '10.1109/IECON.2014.7048933',
                                       'ee': 'https://doi.org/10.1109/IECON.2014.7048933',
                                       'key': 'conf/iecon/SampathAVON14',
                                       'pages': '2978-2983',
                                       'title': 'Coil enhancements for high '
                                                'efficiency wireless power '
                                                'transfer applications.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/iecon/SampathAVON14',
                                       'venue': 'IECON',
                                       'year': '2014'},
                              'url': 'URL#2540609'},
                             {'@id': '2580666',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '159/2501',
                                                               'text': 'An '
                                                                       'Hung '
                                                                       'Nguyen'},
                                                              {'@pid': '75/4744',
                                                               'text': 'Mark '
                                                                       'R. '
                                                                       'Pickering'},
                                                              {'@pid': '117/1912',
                                                               'text': 'Andrew '
                                                                       'J. '
                                                                       'Lambert'}]},
                                       'doi': '10.1109/RECONFIG.2014.7032559',
                                       'ee': 'https://doi.org/10.1109/ReConFig.2014.7032559',
                                       'key': 'conf/reconfig/NguyenPL14',
                                       'pages': '1-4',
                                       'title': 'The FPGA implementation of an '
                                                'image registration algorithm '
                                                'using binary images.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/reconfig/NguyenPL14',
                                       'venue': 'ReConFig',
                                       'year': '2014'},
                              'url': 'URL#2580666'},
                             {'@id': '2584069',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '79/6100',
                                                               'text': 'Konstantinos '
                                                                       'I. '
                                                                       'Karantasis'},
                                                              {'@pid': '15/2621',
                                                               'text': 'Andrew '
                                                                       'Lenharth'},
                                                              {'@pid': '48/4701',
                                                               'text': 'Donald '
                                                                       'Nguyen'},
                                                              {'@pid': '95/6451',
                                                               'text': 'María '
                                                                       'Jesús '
                                                                       'Garzarán'},
                                                              {'@pid': '71/5735',
                                                               'text': 'Keshav '
                                                                       'Pingali'}]},
                                       'doi': '10.1109/SC.2014.80',
                                       'ee': 'https://doi.org/10.1109/SC.2014.80',
                                       'key': 'conf/sc/KarantasisLNGP14',
                                       'pages': '921-932',
                                       'title': 'Parallelization of Reordering '
                                                'Algorithms for Bandwidth and '
                                                'Wavefront Reduction.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/sc/KarantasisLNGP14',
                                       'venue': 'SC',
                                       'year': '2014'},
                              'url': 'URL#2584069'},
                             {'@id': '2584112',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '22/3912',
                                                               'text': 'Hoang '
                                                                       'Anh '
                                                                       'Nguyen'},
                                                              {'@pid': '09/6203',
                                                               'text': 'David '
                                                                       'Abramson'},
                                                              {'@pid': '42/6781',
                                                               'text': 'Timoleon '
                                                                       'Kipouros'},
                                                              {'@pid': '64/2690',
                                                               'text': 'Andrew '
                                                                       'L. '
                                                                       'Janke'},
                                                              {'@pid': '23/10742',
                                                               'text': 'Graham '
                                                                       'J. '
                                                                       'Galloway'}]},
                                       'doi': '10.1109/GCE.2014.6',
                                       'ee': 'https://doi.org/10.1109/GCE.2014.6',
                                       'key': 'conf/sc/NguyenAKJG14',
                                       'pages': '21-24',
                                       'title': 'WorkWays - interacting with '
                                                'scientific workflows.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/sc/NguyenAKJG14',
                                       'venue': 'GCE@SC',
                                       'year': '2014'},
                              'url': 'URL#2584112'},
                             {'@id': '2598800',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '151/5572',
                                                               'text': 'Andrew '
                                                                       'S. '
                                                                       'Brunker'},
                                                              {'@pid': '30/4876',
                                                               'text': 'Quang '
                                                                       'Vinh '
                                                                       'Nguyen'},
                                                              {'@pid': '21/3309',
                                                               'text': 'Anthony '
                                                                       'J. '
                                                                       'Maeder'},
                                                              {'@pid': '36/8738',
                                                               'text': 'Rhys '
                                                                       'Tague'},
                                                              {'@pid': '151/5666',
                                                               'text': 'Gregory '
                                                                       'S. '
                                                                       'Kolt'},
                                                              {'@pid': '151/5614',
                                                               'text': 'Trevor '
                                                                       'N. '
                                                                       'Savage'},
                                                              {'@pid': '151/5581',
                                                               'text': 'Corneel '
                                                                       'Vandelanotte'},
                                                              {'@pid': '151/5657',
                                                               'text': 'Mitch '
                                                                       'J. '
                                                                       'Duncan'},
                                                              {'@pid': '151/5535',
                                                               'text': 'Cristina '
                                                                       'M. '
                                                                       'Caperchione'},
                                                              {'@pid': '151/5622',
                                                               'text': 'Richard '
                                                                       'R. '
                                                                       'Rosenkranz'},
                                                              {'@pid': '151/5604',
                                                               'text': 'Anetta '
                                                                       'Van '
                                                                       'Itallie'},
                                                              {'@pid': '151/5601',
                                                               'text': 'W. '
                                                                       'Kerry '
                                                                       'Mummery'}]},
                                       'doi': '10.1145/2636240.2636842',
                                       'ee': 'https://doi.org/10.1145/2636240.2636842',
                                       'key': 'conf/vinci/BrunkerNMTKSVDCRIM14',
                                       'pages': '98',
                                       'title': 'A Time-based Visualization '
                                                'for Web User Classification '
                                                'in Social Networks.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/vinci/BrunkerNMTKSVDCRIM14',
                                       'venue': 'VINCI',
                                       'year': '2014'},
                              'url': 'URL#2598800'},
                             {'@id': '2600195',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '03/6690',
                                                               'text': 'Eugene '
                                                                       'Ch&apos;ng'},
                                                              {'@pid': '08/6426',
                                                               'text': 'Sandra '
                                                                       'I. '
                                                                       'Woolley'},
                                                              {'@pid': '85/9072',
                                                               'text': 'Luis '
                                                                       'U. '
                                                                       'Hernandez '
                                                                       'Munoz'},
                                                              {'@pid': '83/33',
                                                               'text': 'Tim '
                                                                       'Collins'},
                                                              {'@pid': '24/2147',
                                                               'text': 'Andrew '
                                                                       'Lewis'},
                                                              {'@pid': '164/6787',
                                                               'text': 'Erlend '
                                                                       'Gehlken'}]},
                                       'doi': '10.1109/VSMM.2014.7136692',
                                       'ee': 'https://doi.org/10.1109/VSMM.2014.7136692',
                                       'key': 'conf/vsmm/ChngWMCLG14',
                                       'pages': '35-42',
                                       'title': 'The development of a '
                                                'collaborative virtual '
                                                'environment for 3D '
                                                'reconstruction of cuneiform '
                                                'tablets.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/vsmm/ChngWMCLG14',
                                       'venue': 'VSMM',
                                       'year': '2014'},
                              'url': 'URL#2600195'},
                             {'@id': '2600199',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '83/33',
                                                               'text': 'Tim '
                                                                       'Collins'},
                                                              {'@pid': '08/6426',
                                                               'text': 'Sandra '
                                                                       'I. '
                                                                       'Woolley'},
                                                              {'@pid': '85/9072',
                                                               'text': 'Luis '
                                                                       'U. '
                                                                       'Hernandez '
                                                                       'Munoz'},
                                                              {'@pid': '24/2147',
                                                               'text': 'Andrew '
                                                                       'Lewis'},
                                                              {'@pid': '03/6690',
                                                               'text': 'Eugene '
                                                                       'Ch&apos;ng'},
                                                              {'@pid': '164/6787',
                                                               'text': 'Erlend '
                                                                       'Gehlken'}]},
                                       'doi': '10.1109/VSMM.2014.7136691',
                                       'ee': 'https://doi.org/10.1109/VSMM.2014.7136691',
                                       'key': 'conf/vsmm/CollinsWMLCG14',
                                       'pages': '70-77',
                                       'title': 'Computer-assisted '
                                                'reconstruction of virtual '
                                                'fragmented cuneiform tablets.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/vsmm/CollinsWMLCG14',
                                       'venue': 'VSMM',
                                       'year': '2014'},
                              'url': 'URL#2600199'},
                             {'@id': '2645637',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '126/7147',
                                                               'text': 'Bernard '
                                                                       'J. '
                                                                       'Pope'},
                                                              {'@pid': '126/7181',
                                                               'text': 'Tu '
                                                                       'Nguyen-Dumont'},
                                                              {'@pid': '126/7207',
                                                               'text': 'Fabrice '
                                                                       'Odefrey'},
                                                              {'@pid': '09/479',
                                                               'text': 'Russell '
                                                                       'Bell'},
                                                              {'@pid': '45/995',
                                                               'text': 'Sean '
                                                                       'V. '
                                                                       'Tavtigian'},
                                                              {'@pid': '126/7062',
                                                               'text': 'David '
                                                                       'E. '
                                                                       'Goldgar'},
                                                              {'@pid': '50/1399',
                                                               'text': 'Andrew '
                                                                       'Lonie'},
                                                              {'@pid': '126/7141',
                                                               'text': 'Melissa '
                                                                       'C. '
                                                                       'Southey'},
                                                              {'@pid': '126/7197',
                                                               'text': 'Daniel '
                                                                       'J. '
                                                                       'Park'}]},
                                       'doi': '10.1186/1471-2105-14-65',
                                       'ee': 'https://doi.org/10.1186/1471-2105-14-65',
                                       'key': 'journals/bmcbi/PopeNOBTGLSP13',
                                       'pages': '65',
                                       'title': 'FAVR (Filtering and '
                                                'Annotation of Variants that '
                                                'are Rare) - methods to '
                                                'facilitate the analysis of '
                                                'rare germline genetic '
                                                'variants from massively '
                                                'parallel sequencing datasets.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/bmcbi/PopeNOBTGLSP13',
                                       'venue': 'BMC Bioinform.',
                                       'volume': '14',
                                       'year': '2013'},
                              'url': 'URL#2645637'},
                             {'@id': '2651610',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '28/9502',
                                                               'text': 'Todd '
                                                                       'Holden'},
                                                              {'@pid': '128/5665',
                                                               'text': 'Andrew '
                                                                       'Nguyen'},
                                                              {'@pid': '128/5671',
                                                               'text': 'Elaine '
                                                                       'Lin'},
                                                              {'@pid': '67/1332',
                                                               'text': 'Eric '
                                                                       'Cheung'},
                                                              {'@pid': '128/5611',
                                                               'text': 'Sunil '
                                                                       'Dehipawala'},
                                                              {'@pid': '128/5591',
                                                               'text': 'JianMin '
                                                                       'Ye'},
                                                              {'@pid': '86/9502',
                                                               'text': 'George '
                                                                       'Tremberger '
                                                                       'Jr.'},
                                                              {'@pid': '29/5227',
                                                               'text': 'David '
                                                                       'Lieberman'},
                                                              {'@pid': '128/5558',
                                                               'text': 'Tak '
                                                                       'Cheung'}]},
                                       'doi': '10.1155/2013/579136',
                                       'ee': 'https://doi.org/10.1155/2013/579136',
                                       'key': 'journals/cmmm/HoldenNLCDYTLC13',
                                       'pages': '579136:1-579136:8',
                                       'title': 'Exploratory Bioinformatics '
                                                'Study of lncRNAs in '
                                                'Alzheimer&apos;s Disease mRNA '
                                                'Sequences with Application to '
                                                'Drug Development.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/cmmm/HoldenNLCDYTLC13',
                                       'venue': 'Comput. Math. Methods '
                                                'Medicine',
                                       'volume': '2013',
                                       'year': '2013'},
                              'url': 'URL#2651610'},
                             {'@id': '2680468',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '08/10057',
                                                               'text': 'Ngit '
                                                                       'Chan '
                                                                       'Lye'},
                                                              {'@pid': '13/3307',
                                                               'text': 'Kok '
                                                                       'Wai '
                                                                       'Wong'},
                                                              {'@pid': '65/4623',
                                                               'text': 'Andrew '
                                                                       'Chiou'}]},
                                       'doi': '10.1080/10494820.2012.705853',
                                       'ee': 'https://doi.org/10.1080/10494820.2012.705853',
                                       'key': 'journals/ile/LyeWC13',
                                       'number': '2',
                                       'pages': '142-155',
                                       'title': 'Framework for educational '
                                                'robotics - a multiphase '
                                                'approach to enhance user '
                                                'learning in a competitive '
                                                'arena.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/ile/LyeWC13',
                                       'venue': 'Interact. Learn. Environ.',
                                       'volume': '21',
                                       'year': '2013'},
                              'url': 'URL#2680468'},
                             {'@id': '2702793',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '60/9687',
                                                               'text': 'Bangdao '
                                                                       'Chen'},
                                                              {'@pid': '21/10309',
                                                               'text': 'Long '
                                                                       'Hoang '
                                                                       'Nguyen '
                                                                       '0001'},
                                                              {'@pid': 'r/AWRoscoe',
                                                               'text': 'A. W. '
                                                                       'Roscoe '
                                                                       '0001'}]},
                                       'doi': '10.1007/S11036-012-0366-2',
                                       'ee': 'https://doi.org/10.1007/s11036-012-0366-2',
                                       'key': 'journals/monet/ChenNR13',
                                       'number': '5',
                                       'pages': '712-727',
                                       'title': 'Reverse Authentication in '
                                                'Financial Transactions and '
                                                'Identity Management.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/monet/ChenNR13',
                                       'venue': 'Mob. Networks Appl.',
                                       'volume': '18',
                                       'year': '2013'},
                              'url': 'URL#2702793'},
                             {'@id': '2729815',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '73/8333',
                                                               'text': 'Suong '
                                                                       'H. '
                                                                       'Nguyen'},
                                                              {'@pid': '20/5601',
                                                               'text': 'Hai Le '
                                                                       'Vu'},
                                                              {'@pid': '22/58',
                                                               'text': 'Lachlan '
                                                                       'L. H. '
                                                                       'Andrew'}]},
                                       'doi': '10.1109/TMC.2012.179',
                                       'ee': 'https://doi.org/10.1109/TMC.2012.179',
                                       'key': 'journals/tmc/NguyenVA13',
                                       'number': '10',
                                       'pages': '2076-2090',
                                       'title': 'Service Differentiation '
                                                'without Prioritization in '
                                                'IEEE 802.11 WLANs.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/tmc/NguyenVA13',
                                       'venue': 'IEEE Trans. Mob. Comput.',
                                       'volume': '12',
                                       'year': '2013'},
                              'url': 'URL#2729815'},
                             {'@id': '2769337',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '135/4935',
                                                               'text': 'Minh '
                                                                       'Hoai'},
                                                              {'@pid': 'z/AndrewZisserman',
                                                               'text': 'Andrew '
                                                                       'Zisserman'}]},
                                       'doi': '10.1109/CVPR.2013.218',
                                       'ee': 'https://doi.org/10.1109/CVPR.2013.218',
                                       'key': 'conf/cvpr/HoaiZ13',
                                       'pages': '1666-1673',
                                       'title': 'Discriminative '
                                                'Sub-categorization.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/cvpr/HoaiZ13',
                                       'venue': 'CVPR',
                                       'year': '2013'},
                              'url': 'URL#2769337'},
                             {'@id': '2772632',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '117/4552',
                                                               'text': 'Hien '
                                                                       'Duy '
                                                                       'Nguyen'},
                                                              {'@pid': '64/2690',
                                                               'text': 'Andrew '
                                                                       'L. '
                                                                       'Janke'},
                                                              {'@pid': '32/97',
                                                               'text': 'Nicolas '
                                                                       'Cherbuin'},
                                                              {'@pid': '83/3246',
                                                               'text': 'Geoffrey '
                                                                       'J. '
                                                                       'McLachlan'},
                                                              {'@pid': '98/9077',
                                                               'text': 'Perminder '
                                                                       'S. '
                                                                       'Sachdev'},
                                                              {'@pid': '15/6317',
                                                               'text': 'Kaarin '
                                                                       'Anstey'}]},
                                       'doi': '10.1109/DICTA.2013.6691531',
                                       'ee': 'https://doi.org/10.1109/DICTA.2013.6691531',
                                       'key': 'conf/dicta/NguyenJCMSA13',
                                       'pages': '1-8',
                                       'title': 'Spatial False Discovery Rate '
                                                'Control for Magnetic '
                                                'Resonance Imaging Studies.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/dicta/NguyenJCMSA13',
                                       'venue': 'DICTA',
                                       'year': '2013'},
                              'url': 'URL#2772632'},
                             {'@id': '2777850',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '128/5665',
                                                               'text': 'Andrew '
                                                                       'Nguyen'},
                                                              {'@pid': '43/9664',
                                                               'text': 'Cam '
                                                                       'Nguyen'}]},
                                       'doi': '10.1109/EMBC.2013.6610795',
                                       'ee': 'https://doi.org/10.1109/EMBC.2013.6610795',
                                       'key': 'conf/embc/NguyenN13',
                                       'pages': '5501-5504',
                                       'title': 'A CMOS UWB transmitter for '
                                                'possible use for medical and '
                                                'biological imaging based on '
                                                'radio-wave induced '
                                                'ultrasound.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/embc/NguyenN13',
                                       'venue': 'EMBC',
                                       'year': '2013'},
                              'url': 'URL#2777850'},
                             {'@id': '2788233',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '132/2097',
                                                               'text': 'Anh '
                                                                       'Quang '
                                                                       'Nguyen'},
                                                              {'@pid': '45/1948',
                                                               'text': 'Andrew '
                                                                       'M. '
                                                                       'Sutton'},
                                                              {'@pid': 'n/FrankNeumann',
                                                               'text': 'Frank '
                                                                       'Neumann '
                                                                       '0001'}]},
                                       'doi': '10.1145/2463372.2463564',
                                       'ee': 'https://doi.org/10.1145/2463372.2463564',
                                       'key': 'conf/gecco/NguyenSN13',
                                       'pages': '1613-1620',
                                       'title': 'Population size matters - '
                                                'rigorous runtime results for '
                                                'maximizing the hypervolume '
                                                'indicator.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/gecco/NguyenSN13',
                                       'venue': 'GECCO',
                                       'year': '2013'},
                              'url': 'URL#2788233'},
                             {'@id': '2794485',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '155/2726',
                                                               'text': 'Mary '
                                                                       'K. '
                                                                       'Lam'},
                                                              {'@pid': '122/9159',
                                                               'text': 'Melanie '
                                                                       'Nguyen'},
                                                              {'@pid': '155/2018',
                                                               'text': 'Andrew '
                                                                       'J. '
                                                                       'Campbell'}]},
                                       'doi': '10.3233/978-1-61499-266-0-72',
                                       'ee': 'https://doi.org/10.3233/978-1-61499-266-0-72',
                                       'key': 'conf/hic/LamNC13',
                                       'pages': '72-78',
                                       'title': 'E-health as a life long '
                                                'learning process - How to '
                                                'prepare health professionals '
                                                'for this journey.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/hic/LamNC13',
                                       'venue': 'HIC',
                                       'year': '2013'},
                              'url': 'URL#2794485'},
                             {'@id': '2800510',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '46/2236',
                                                               'text': 'Georg '
                                                                       'Heigold'},
                                                              {'@pid': '69/7157',
                                                               'text': 'Vincent '
                                                                       'Vanhoucke'},
                                                              {'@pid': '88/3071',
                                                               'text': 'Andrew '
                                                                       'W. '
                                                                       'Senior'},
                                                              {'@pid': '81/657',
                                                               'text': 'Patrick '
                                                                       'Nguyen'},
                                                              {'@pid': '28/1732',
                                                               'text': 'Marc&apos;Aurelio '
                                                                       'Ranzato'},
                                                              {'@pid': '23/2143',
                                                               'text': 'Matthieu '
                                                                       'Devin'},
                                                              {'@pid': 'd/JeffreyDean',
                                                               'text': 'Jeffrey '
                                                                       'Dean'}]},
                                       'doi': '10.1109/ICASSP.2013.6639348',
                                       'ee': 'https://doi.org/10.1109/ICASSP.2013.6639348',
                                       'key': 'conf/icassp/HeigoldVSNRDD13',
                                       'pages': '8619-8623',
                                       'title': 'Multilingual acoustic models '
                                                'using distributed deep neural '
                                                'networks.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icassp/HeigoldVSNRDD13',
                                       'venue': 'ICASSP',
                                       'year': '2013'},
                              'url': 'URL#2800510'},
                             {'@id': '2801673',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '09/8653',
                                                               'text': 'Matthew '
                                                                       'D. '
                                                                       'Zeiler'},
                                                              {'@pid': '28/1732',
                                                               'text': 'Marc&apos;Aurelio '
                                                                       'Ranzato'},
                                                              {'@pid': '99/10669',
                                                               'text': 'Rajat '
                                                                       'Monga'},
                                                              {'@pid': '64/8010',
                                                               'text': 'Mark '
                                                                       'Z. '
                                                                       'Mao'},
                                                              {'@pid': '85/6981',
                                                               'text': 'K. '
                                                                       'Yang'},
                                                              {'@pid': '29/6166',
                                                               'text': 'Quoc '
                                                                       'Viet '
                                                                       'Le'},
                                                              {'@pid': '81/657',
                                                               'text': 'Patrick '
                                                                       'Nguyen'},
                                                              {'@pid': '88/3071',
                                                               'text': 'Andrew '
                                                                       'W. '
                                                                       'Senior'},
                                                              {'@pid': '69/7157',
                                                               'text': 'Vincent '
                                                                       'Vanhoucke'},
                                                              {'@pid': 'd/JeffreyDean',
                                                               'text': 'Jeffrey '
                                                                       'Dean'},
                                                              {'@pid': '10/3248',
                                                               'text': 'Geoffrey '
                                                                       'E. '
                                                                       'Hinton'}]},
                                       'doi': '10.1109/ICASSP.2013.6638312',
                                       'ee': 'https://doi.org/10.1109/ICASSP.2013.6638312',
                                       'key': 'conf/icassp/ZeilerRMMYLNSVDH13',
                                       'pages': '3517-3521',
                                       'title': 'On rectified linear units for '
                                                'speech processing.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icassp/ZeilerRMMYLNSVDH13',
                                       'venue': 'ICASSP',
                                       'year': '2013'},
                              'url': 'URL#2801673'},
                             {'@id': '2844177',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '73/8333',
                                                               'text': 'Suong '
                                                                       'H. '
                                                                       'Nguyen'},
                                                              {'@pid': '22/58',
                                                               'text': 'Lachlan '
                                                                       'L. H. '
                                                                       'Andrew'},
                                                              {'@pid': '20/5601',
                                                               'text': 'Hai Le '
                                                                       'Vu'}]},
                                       'doi': '10.1109/LCN.2013.6761328',
                                       'ee': 'https://doi.org/10.1109/LCN.2013.6761328',
                                       'key': 'conf/lcn/NguyenAV13',
                                       'pages': '755-758',
                                       'title': 'Performance of multi-channel '
                                                'IEEE 802.11 WLANs with '
                                                'bidirectional flow control.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/lcn/NguyenAV13',
                                       'venue': 'LCN',
                                       'year': '2013'},
                              'url': 'URL#2844177'},
                             {'@id': '2844179',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '73/8333',
                                                               'text': 'Suong '
                                                                       'H. '
                                                                       'Nguyen'},
                                                              {'@pid': '98/776',
                                                               'text': 'Ihsan '
                                                                       'Ayyub '
                                                                       'Qazi'},
                                                              {'@pid': '22/58',
                                                               'text': 'Lachlan '
                                                                       'L. H. '
                                                                       'Andrew'},
                                                              {'@pid': '20/5601',
                                                               'text': 'Hai Le '
                                                                       'Vu'}]},
                                       'doi': '10.1109/LCN.2013.6761290',
                                       'ee': 'https://doi.org/10.1109/LCN.2013.6761290',
                                       'key': 'conf/lcn/NguyenQAV13',
                                       'pages': '549-556',
                                       'title': 'Rate equilibria in WLANs with '
                                                'block ACKs.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/lcn/NguyenQAV13',
                                       'venue': 'LCN',
                                       'year': '2013'},
                              'url': 'URL#2844179'},
                             {'@id': '2859777',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '138/7774',
                                                               'text': 'Wesley '
                                                                       'T. '
                                                                       'Kerr'},
                                                              {'@pid': '158/0025',
                                                               'text': 'Andrew '
                                                                       'Y. '
                                                                       'Cho'},
                                                              {'@pid': '53/11381',
                                                               'text': 'Ariana '
                                                                       'E. '
                                                                       'Anderson'},
                                                              {'@pid': '52/11381',
                                                               'text': 'Pamela '
                                                                       'K. '
                                                                       'Douglas'},
                                                              {'@pid': '158/0072',
                                                               'text': 'Edward '
                                                                       'P. '
                                                                       'Lau'},
                                                              {'@pid': '158/0031',
                                                               'text': 'Eric '
                                                                       'S. '
                                                                       'Hwang'},
                                                              {'@pid': '158/0080',
                                                               'text': 'Kaavya '
                                                                       'R. '
                                                                       'Raman'},
                                                              {'@pid': '158/0087',
                                                               'text': 'Aaron '
                                                                       'Trefler'},
                                                              {'@pid': '89/8273',
                                                               'text': 'Mark '
                                                                       'S. '
                                                                       'Cohen'},
                                                              {'@pid': '158/0088',
                                                               'text': 'Stefan '
                                                                       'T. '
                                                                       'Nguyen'},
                                                              {'@pid': '158/0070',
                                                               'text': 'Navya '
                                                                       'M. '
                                                                       'Reddy'},
                                                              {'@pid': '158/0078',
                                                               'text': 'Daniel '
                                                                       'H. S. '
                                                                       'Silverman'}]},
                                       'doi': '10.1109/PRNI.2013.31',
                                       'ee': 'https://doi.org/10.1109/PRNI.2013.31',
                                       'key': 'conf/prni/KerrCADLHRTCNRS13',
                                       'pages': '86-89',
                                       'title': 'Balancing Clinical and '
                                                'Pathologic Relevance in the '
                                                'Machine Learning Diagnosis of '
                                                'Epilepsy.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/prni/KerrCADLHRTCNRS13',
                                       'venue': 'PRNI',
                                       'year': '2013'},
                              'url': 'URL#2859777'},
                             {'@id': '2861079',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '138/1352',
                                                               'text': 'Andrew '
                                                                       'Muyanja'},
                                                              {'@pid': '19/8143',
                                                               'text': 'Paul '
                                                                       'Isaac '
                                                                       'Musasizi'},
                                                              {'@pid': '138/1221',
                                                               'text': 'Catherine '
                                                                       'Nassimbwa'},
                                                              {'@pid': '86/7470',
                                                               'text': 'Sandy '
                                                                       'Stevens '
                                                                       'Tickodri-Togboa'},
                                                              {'@pid': '138/1210',
                                                               'text': 'Edward '
                                                                       'Kale '
                                                                       'Kayihura'},
                                                              {'@pid': '138/1471',
                                                               'text': 'Amos '
                                                                       'Ngabirano'}]},
                                       'doi': '10.1109/RE.2013.6636734',
                                       'ee': 'https://doi.org/10.1109/RE.2013.6636734',
                                       'key': 'conf/re/MuyanjaMNTKN13',
                                       'pages': '302-307',
                                       'title': 'Requirements engineering for '
                                                'the uganda police force crime '
                                                'records management system.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/re/MuyanjaMNTKN13',
                                       'venue': 'RE',
                                       'year': '2013'},
                              'url': 'URL#2861079'},
                             {'@id': '2873021',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '48/4701',
                                                               'text': 'Donald '
                                                                       'Nguyen'},
                                                              {'@pid': '15/2621',
                                                               'text': 'Andrew '
                                                                       'Lenharth'},
                                                              {'@pid': '71/5735',
                                                               'text': 'Keshav '
                                                                       'Pingali'}]},
                                       'doi': '10.1145/2517349.2522739',
                                       'ee': 'https://doi.org/10.1145/2517349.2522739',
                                       'key': 'conf/sosp/NguyenLP13',
                                       'pages': '456-471',
                                       'title': 'A lightweight infrastructure '
                                                'for graph analytics.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/sosp/NguyenLP13',
                                       'venue': 'SOSP',
                                       'year': '2013'},
                              'url': 'URL#2873021'},
                             {'@id': '2888120',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '03/6690',
                                                               'text': 'Eugene '
                                                                       'Ch&apos;ng'},
                                                              {'@pid': '24/2147',
                                                               'text': 'Andrew '
                                                                       'Lewis'},
                                                              {'@pid': '164/6787',
                                                               'text': 'Rolf '
                                                                       'Erlend '
                                                                       'Gehlken'},
                                                              {'@pid': '08/6426',
                                                               'text': 'Sandra '
                                                                       'I. '
                                                                       'Woolley'}]},
                                       'doi': '10.1007/978-1-4471-5535-5_4',
                                       'ee': 'https://doi.org/10.1007/978-1-4471-5535-5_4',
                                       'key': 'books/sp/13/ChngLGW13',
                                       'pages': '43-65',
                                       'title': 'A Theoretical Framework for '
                                                'Stigmergetic Reconstruction '
                                                'of Ancient Text.',
                                       'type': 'Parts in Books or Collections',
                                       'url': 'https://dblp.org/rec/books/sp/13/ChngLGW13',
                                       'venue': 'Visual Heritage in the '
                                                'Digital Age',
                                       'year': '2013'},
                              'url': 'URL#2888120'},
                             {'@id': '2923653',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '122/9159',
                                                               'text': 'Melanie '
                                                                       'Nguyen'},
                                                              {'@pid': '122/9029',
                                                               'text': 'Yu Sun '
                                                                       'Bin'},
                                                              {'@pid': '155/2018',
                                                               'text': 'Andrew '
                                                                       'J. '
                                                                       'Campbell'}]},
                                       'doi': '10.1089/CYBER.2011.0277',
                                       'ee': 'https://doi.org/10.1089/cyber.2011.0277',
                                       'key': 'journals/cbsn/NguyenBC12',
                                       'number': '2',
                                       'pages': '103-111',
                                       'title': 'Comparing Online and Offline '
                                                'Self-Disclosure - A '
                                                'Systematic Review.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/cbsn/NguyenBC12',
                                       'venue': 'Cyberpsychology Behav. Soc. '
                                                'Netw.',
                                       'volume': '15',
                                       'year': '2012'},
                              'url': 'URL#2923653'},
                             {'@id': '2927858',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '70/3231',
                                                               'text': 'Kim '
                                                                       'Khoa '
                                                                       'Nguyen'},
                                                              {'@pid': '69/4317',
                                                               'text': 'Mohamed '
                                                                       'Cheriet'},
                                                              {'@pid': '18/4179',
                                                               'text': 'Mathieu '
                                                                       'Lemay'},
                                                              {'@pid': '78/89',
                                                               'text': 'Victor '
                                                                       'Reijs'},
                                                              {'@pid': '29/9992',
                                                               'text': 'Andrew '
                                                                       'Mackarel'},
                                                              {'@pid': '92/9992',
                                                               'text': 'Alin '
                                                                       'Pastrama'}]},
                                       'doi': '10.1016/J.COMNET.2012.03.008',
                                       'ee': 'https://doi.org/10.1016/j.comnet.2012.03.008',
                                       'key': 'journals/cn/NguyenCLRMP12',
                                       'number': '10',
                                       'pages': '2538-2550',
                                       'title': 'Environmental-aware virtual '
                                                'data center network.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/cn/NguyenCLRMP12',
                                       'venue': 'Comput. Networks',
                                       'volume': '56',
                                       'year': '2012'},
                              'url': 'URL#2927858'},
                             {'@id': '2930713',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '118/9783',
                                                               'text': 'Andrew '
                                                                       'Cron'},
                                                              {'@pid': '62/3796',
                                                               'text': 'Huy L. '
                                                                       'Nguyen'},
                                                              {'@pid': '40/7459',
                                                               'text': 'Aditya '
                                                                       'G. '
                                                                       'Parameswaran'}]},
                                       'doi': '10.1145/2331042.2331045',
                                       'ee': 'https://doi.org/10.1145/2331042.2331045',
                                       'key': 'journals/crossroads/CronNP12',
                                       'number': '1',
                                       'pages': '7-8',
                                       'title': 'Big data.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/crossroads/CronNP12',
                                       'venue': 'XRDS',
                                       'volume': '19',
                                       'year': '2012'},
                              'url': 'URL#2930713'},
                             {'@id': '2931482',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '82/11484',
                                                               'text': 'Do Le '
                                                                       'Paul '
                                                                       'Minh'},
                                                              {'@pid': '91/11484',
                                                               'text': 'David '
                                                                       'D. L. '
                                                                       'Minh'},
                                                              {'@pid': '80/11484',
                                                               'text': 'Andrew '
                                                                       'L. '
                                                                       'Nguyen'}]},
                                       'doi': '10.1080/03610918.2011.615433',
                                       'ee': 'https://doi.org/10.1080/03610918.2011.615433',
                                       'key': 'journals/cssc/MinhMN12',
                                       'number': '9',
                                       'pages': '1745-1760',
                                       'title': 'Regenerative Markov Chain '
                                                'Monte Carlo for Any '
                                                'Distribution.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/cssc/MinhMN12',
                                       'venue': 'Commun. Stat. Simul. Comput.',
                                       'volume': '41',
                                       'year': '2012'},
                              'url': 'URL#2931482'},
                             {'@id': '2936850',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '90/11479',
                                                               'text': 'Tri-Dung '
                                                                       'Nguyen'},
                                                              {'@pid': '57/1913',
                                                               'text': 'Andrew '
                                                                       'W. '
                                                                       'Lo'}]},
                                       'doi': '10.1016/J.EJOR.2012.03.023',
                                       'ee': 'https://doi.org/10.1016/j.ejor.2012.03.023',
                                       'key': 'journals/eor/NguyenL12',
                                       'number': '2',
                                       'pages': '407-416',
                                       'title': 'Robust ranking and portfolio '
                                                'optimization.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/eor/NguyenL12',
                                       'venue': 'Eur. J. Oper. Res.',
                                       'volume': '221',
                                       'year': '2012'},
                              'url': 'URL#2936850'},
                             {'@id': '2940929',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '44/10465',
                                                               'text': 'C. A. '
                                                                       'J. M. '
                                                                       'de '
                                                                       'Bie'},
                                                              {'@pid': '121/5759',
                                                               'text': 'Thi '
                                                                       'Thu Ha '
                                                                       'Nguyen'},
                                                              {'@pid': '28/9766-6',
                                                               'text': 'Amjad '
                                                                       'Ali '
                                                                       '0006'},
                                                              {'@pid': '121/5853',
                                                               'text': 'Rory '
                                                                       'Gordon '
                                                                       'Scarrott'},
                                                              {'@pid': '97/4491',
                                                               'text': 'Andrew '
                                                                       'K. '
                                                                       'Skidmore'}]},
                                       'doi': '10.1080/13658816.2012.712126',
                                       'ee': 'https://doi.org/10.1080/13658816.2012.712126',
                                       'key': 'journals/gis/BieNASS12',
                                       'number': '11',
                                       'pages': '2177-2192',
                                       'title': 'LaHMa - a landscape '
                                                'heterogeneity mapping method '
                                                'using hyper-temporal '
                                                'datasets.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/gis/BieNASS12',
                                       'venue': 'Int. J. Geogr. Inf. Sci.',
                                       'volume': '26',
                                       'year': '2012'},
                              'url': 'URL#2940929'},
                             {'@id': '2953137',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '12/2647',
                                                               'text': 'Durai '
                                                                       'Sundaramoorthi'},
                                                              {'@pid': '118/2520',
                                                               'text': 'Andrew '
                                                                       'Coult'},
                                                              {'@pid': '118/2587',
                                                               'text': 'Dung '
                                                                       'Hai '
                                                                       'Nguyen'}]},
                                       'doi': '10.4018/JORIS.2012070105',
                                       'ee': 'https://doi.org/10.4018/joris.2012070105',
                                       'key': 'journals/ijoris/SundaramoorthiCN12',
                                       'number': '3',
                                       'pages': '74-86',
                                       'title': 'A Data-Integrated Tree-Based '
                                                'Simulation to Predict '
                                                'Financial Market Movement.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/ijoris/SundaramoorthiCN12',
                                       'venue': 'Int. J. Oper. Res. Inf. Syst.',
                                       'volume': '3',
                                       'year': '2012'},
                              'url': 'URL#2953137'},
                             {'@id': '2983766',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '117/6048',
                                                               'text': 'Andrew '
                                                                       'Lamb'},
                                                              {'@pid': '117/5979',
                                                               'text': 'Matt '
                                                                       'Fuller'},
                                                              {'@pid': '63/2265',
                                                               'text': 'Ramakrishna '
                                                                       'Varadarajan'},
                                                              {'@pid': '80/4976',
                                                               'text': 'Nga '
                                                                       'Tran'},
                                                              {'@pid': '75/206',
                                                               'text': 'Ben '
                                                                       'Vandiver'},
                                                              {'@pid': '117/5997',
                                                               'text': 'Lyric '
                                                                       'Doshi'},
                                                              {'@pid': '32/6287',
                                                               'text': 'Chuck '
                                                                       'Bear'}]},
                                       'doi': '10.14778/2367502.2367518',
                                       'ee': 'http://vldb.org/pvldb/vol5/p1790_andrewlamb_vldb2012.pdf',
                                       'key': 'journals/pvldb/LambFVTVDB12',
                                       'number': '12',
                                       'pages': '1790-1801',
                                       'title': 'The Vertica Analytic Database '
                                                '- C-Store 7 Years Later .',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/pvldb/LambFVTVDB12',
                                       'venue': 'Proc. VLDB Endow.',
                                       'volume': '5',
                                       'year': '2012'},
                              'url': 'URL#2983766'},
                             {'@id': '3005011',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '73/8333',
                                                               'text': 'Suong '
                                                                       'H. '
                                                                       'Nguyen'},
                                                              {'@pid': '20/5601',
                                                               'text': 'Hai Le '
                                                                       'Vu'},
                                                              {'@pid': '22/58',
                                                               'text': 'Lachlan '
                                                                       'L. H. '
                                                                       'Andrew'}]},
                                       'doi': '10.1109/TVT.2011.2174069',
                                       'ee': 'https://doi.org/10.1109/TVT.2011.2174069',
                                       'key': 'journals/tvt/NguyenVA12',
                                       'number': '1',
                                       'pages': '333-345',
                                       'title': 'Performance Analysis of IEEE '
                                                '802.11 WLANs With Saturated '
                                                'and Unsaturated Sources.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/tvt/NguyenVA12',
                                       'venue': 'IEEE Trans. Veh. Technol.',
                                       'volume': '61',
                                       'year': '2012'},
                              'url': 'URL#3005011'},
                             {'@id': '3005812',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '05/11514',
                                                               'text': 'Advait '
                                                                       'Abhay '
                                                                       'Dixit'},
                                                              {'@pid': 'f/RikFarrow',
                                                               'text': 'Rik '
                                                                       'Farrow'},
                                                              {'@pid': '61/11188',
                                                               'text': 'Andrew '
                                                                       'D. '
                                                                       'Ferguson'},
                                                              {'@pid': '85/3068',
                                                               'text': 'Katrina '
                                                                       'LaCurts'},
                                                              {'@pid': '40/8919',
                                                               'text': 'Marcelo '
                                                                       'Martins'},
                                                              {'@pid': '78/8178',
                                                               'text': 'Karthik '
                                                                       'Nagaraj'},
                                                              {'@pid': '232/1411',
                                                               'text': 'Kevin '
                                                                       'Ngo'},
                                                              {'@pid': '121/4072',
                                                               'text': 'Will '
                                                                       'Scott'},
                                                              {'@pid': '27/3108',
                                                               'text': 'Manuel '
                                                                       'Egele'},
                                                              {'@pid': 'k/EnginKirda',
                                                               'text': 'Engin '
                                                                       'Kirda'}]},
                                       'ee': 'https://www.usenix.org/publications/login/august-2012-volume-37-number-4/9th-usenix-symposium-networked-systems-design-and',
                                       'key': 'journals/usenix-login/DixitFFLMNNSEK12',
                                       'number': '4',
                                       'title': 'NSDI &apos;12 and LEET '
                                                '&apos;12.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/usenix-login/DixitFFLMNNSEK12',
                                       'venue': 'login Usenix Mag.',
                                       'volume': '37',
                                       'year': '2012'},
                              'url': 'URL#3005812'},
                             {'@id': '3007602',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '59/5292',
                                                               'text': 'Jürgen '
                                                                       'P. '
                                                                       'Schulze'},
                                                              {'@pid': '44/8106',
                                                               'text': 'Daniel '
                                                                       'Acevedo'},
                                                              {'@pid': '62/11232',
                                                               'text': 'John '
                                                                       'Mangan'},
                                                              {'@pid': '45/9078',
                                                               'text': 'Andrew '
                                                                       'Prudhomme'},
                                                              {'@pid': '97/7826',
                                                               'text': 'Phi '
                                                                       'Nguyen'},
                                                              {'@pid': '39/9443',
                                                               'text': 'Philip '
                                                                       'P. '
                                                                       'Weber'}]},
                                       'doi': '10.1109/3DUI.2012.6184187',
                                       'ee': 'https://doi.org/10.1109/3DUI.2012.6184187',
                                       'key': 'conf/3dui/SchulzeAMPNW12',
                                       'pages': '77-80',
                                       'title': 'Democratizing rendering for '
                                                'multiple viewers in surround '
                                                'VR systems.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/3dui/SchulzeAMPNW12',
                                       'venue': '3DUI',
                                       'year': '2012'},
                              'url': 'URL#3007602'},
                             {'@id': '3026088',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '19/4764',
                                                               'text': 'Chao '
                                                                       'Jin'},
                                                              {'@pid': '09/6203',
                                                               'text': 'David '
                                                                       'Abramson'},
                                                              {'@pid': '19/8524',
                                                               'text': 'Minh '
                                                                       'Ngoc '
                                                                       'Dinh'},
                                                              {'@pid': '70/10957',
                                                               'text': 'Andrew '
                                                                       'Gontarek'},
                                                              {'@pid': '48/8524',
                                                               'text': 'Robert '
                                                                       'Moench'},
                                                              {'@pid': '91/357',
                                                               'text': 'Luiz '
                                                                       'De '
                                                                       'Rose'}]},
                                       'doi': '10.1109/CCGRID.2012.13',
                                       'ee': 'https://doi.org/10.1109/CCGrid.2012.13',
                                       'key': 'conf/ccgrid/JinADGMR12',
                                       'pages': '252-259',
                                       'title': 'A Scalable Parallel Debugging '
                                                'Library with Pluggable '
                                                'Communication Protocols.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/ccgrid/JinADGMR12',
                                       'venue': 'CCGRID',
                                       'year': '2012'},
                              'url': 'URL#3026088'},
                             {'@id': '3039755',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '08/1542',
                                                               'text': 'Yaoguang '
                                                                       'Wei'},
                                                              {'@pid': 's/CliffNSze',
                                                               'text': 'Cliff '
                                                                       'C. N. '
                                                                       'Sze'},
                                                              {'@pid': '15/1633',
                                                               'text': 'Natarajan '
                                                                       'Viswanathan'},
                                                              {'@pid': '51/4015-1',
                                                               'text': 'Zhuo '
                                                                       'Li '
                                                                       '0001'},
                                                              {'@pid': '41/4379',
                                                               'text': 'Charles '
                                                                       'J. '
                                                                       'Alpert'},
                                                              {'@pid': '04/2781',
                                                               'text': 'Lakshmi '
                                                                       'N. '
                                                                       'Reddy'},
                                                              {'@pid': '65/2074',
                                                               'text': 'Andrew '
                                                                       'D. '
                                                                       'Huber'},
                                                              {'@pid': '69/2239',
                                                               'text': 'Gustavo '
                                                                       'E. '
                                                                       'Téllez'},
                                                              {'@pid': '16/11468',
                                                               'text': 'Douglas '
                                                                       'Keller'},
                                                              {'@pid': 's/SachinSSapatnekar',
                                                               'text': 'Sachin '
                                                                       'S. '
                                                                       'Sapatnekar'}]},
                                       'doi': '10.1145/2228360.2228499',
                                       'ee': 'https://doi.org/10.1145/2228360.2228499',
                                       'key': 'conf/dac/WeiSVLARHTKS12',
                                       'pages': '768-773',
                                       'title': 'GLARE - global and local '
                                                'wiring aware routability '
                                                'evaluation.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/dac/WeiSVLARHTKS12',
                                       'venue': 'DAC',
                                       'year': '2012'},
                              'url': 'URL#3039755'},
                             {'@id': '3047111',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '90/4873',
                                                               'text': 'Kouhyar '
                                                                       'Tavakolian'},
                                                              {'@pid': '209/0565',
                                                               'text': 'Gonzalo '
                                                                       'Portacio'},
                                                              {'@pid': '209/1394',
                                                               'text': 'Niloufar '
                                                                       'R. '
                                                                       'Tamddondoust'},
                                                              {'@pid': '23/11408',
                                                               'text': 'Graeme '
                                                                       'Jahns'},
                                                              {'@pid': '209/0365',
                                                               'text': 'Brandon '
                                                                       'Ngai'},
                                                              {'@pid': '85/6594',
                                                               'text': 'Guy '
                                                                       'Albert '
                                                                       'Dumont'},
                                                              {'@pid': '165/9454',
                                                               'text': 'Andrew '
                                                                       'P. '
                                                                       'Blaber'}]},
                                       'doi': '10.1109/EMBC.2012.6346795',
                                       'ee': 'https://doi.org/10.1109/EMBC.2012.6346795',
                                       'key': 'conf/embc/TavakolianPTJND12',
                                       'pages': '3801-3804',
                                       'title': 'Myocardial contractility - A '
                                                'seismocardiography approach.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/embc/TavakolianPTJND12',
                                       'venue': 'EMBC',
                                       'year': '2012'},
                              'url': 'URL#3047111'},
                             {'@id': '3050488',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '50/1341',
                                                               'text': 'Yujia '
                                                                       'Wang'},
                                                              {'@pid': '26/9878',
                                                               'text': 'Andrew '
                                                                       'Grieco'},
                                                              {'@pid': '23/9879',
                                                               'text': 'Boris '
                                                                       'Slutsky'},
                                                              {'@pid': '23/5856',
                                                               'text': 'Truong '
                                                                       'Q. '
                                                                       'Nguyen'}]},
                                       'ee': 'https://ieeexplore.ieee.org/document/6333861/',
                                       'key': 'conf/eusipco/WangGSN12',
                                       'pages': '2168-2172',
                                       'title': 'Constrained eigenfilter '
                                                'allpass design for photonic '
                                                'systems.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/eusipco/WangGSN12',
                                       'venue': 'EUSIPCO',
                                       'year': '2012'},
                              'url': 'URL#3050488'},
                             {'@id': '3052427',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '30/6769',
                                                               'text': 'Yu-Ting '
                                                                       'Yang'},
                                                              {'@pid': '95/8396',
                                                               'text': 'Andrew '
                                                                       'Quitmeyer'},
                                                              {'@pid': '08/8525',
                                                               'text': 'Brian '
                                                                       'Hrolenok'},
                                                              {'@pid': '116/9302',
                                                               'text': 'Harry '
                                                                       'Shang'},
                                                              {'@pid': '116/9373',
                                                               'text': 'Dinh '
                                                                       'Bao '
                                                                       'Nguyen'},
                                                              {'@pid': 'b/TuckerRBalch',
                                                               'text': 'Tucker '
                                                                       'R. '
                                                                       'Balch'},
                                                              {'@pid': '116/9330',
                                                               'text': 'Terrance '
                                                                       'Medina'},
                                                              {'@pid': '116/9297',
                                                               'text': 'Cole '
                                                                       'Sherer'},
                                                              {'@pid': 'h/MariaHybinette',
                                                               'text': 'Maria '
                                                                       'Hybinette'}]},
                                       'ee': 'http://www.aaai.org/ocs/index.php/FLAIRS/FLAIRS12/paper/view/4400',
                                       'key': 'conf/flairs/YangQHSNBMSH12',
                                       'title': 'Ant Hunt - Towards a '
                                                'Validated Model of Live Ant '
                                                'Hunting Behavior.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/flairs/YangQHSNBMSH12',
                                       'venue': 'FLAIRS Conference',
                                       'year': '2012'},
                              'url': 'URL#3052427'},
                             {'@id': '3053174',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '21/10309',
                                                               'text': 'Long '
                                                                       'Hoang '
                                                                       'Nguyen '
                                                                       '0001'},
                                                              {'@pid': 'r/AWRoscoe',
                                                               'text': 'A. W. '
                                                                       'Roscoe '
                                                                       '0001'}]},
                                       'doi': '10.1007/978-3-642-34047-5_19',
                                       'ee': 'https://doi.org/10.1007/978-3-642-34047-5_19',
                                       'key': 'conf/fse/NguyenR12',
                                       'pages': '326-345',
                                       'title': 'Short-Output Universal Hash '
                                                'Functions and Their Use in '
                                                'Fast and Secure Data '
                                                'Authentication.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/fse/NguyenR12',
                                       'venue': 'FSE',
                                       'year': '2012'},
                              'url': 'URL#3053174'},
                             {'@id': '3058932',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '155/2726',
                                                               'text': 'Mary '
                                                                       'K. '
                                                                       'Lam'},
                                                              {'@pid': '155/2957',
                                                               'text': 'Krestina '
                                                                       'L. '
                                                                       'Amon'},
                                                              {'@pid': '122/9159',
                                                               'text': 'Melanie '
                                                                       'Nguyen'},
                                                              {'@pid': '155/2018',
                                                               'text': 'Andrew '
                                                                       'J. '
                                                                       'Campbell'},
                                                              {'@pid': '155/2012',
                                                               'text': 'Victoria '
                                                                       'Neville'}]},
                                       'doi': '10.3233/978-1-61499-078-9-99',
                                       'ee': 'https://doi.org/10.3233/978-1-61499-078-9-99',
                                       'key': 'conf/hic/LamANCN12',
                                       'pages': '99-104',
                                       'title': 'The effect of e-health '
                                                'contents on health science '
                                                'students&apos; attitude '
                                                'toward the efficiency of '
                                                'health ICT in care provision.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/hic/LamANCN12',
                                       'venue': 'HIC',
                                       'year': '2012'},
                              'url': 'URL#3058932'},
                             {'@id': '3091828',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '04/6137',
                                                               'text': 'Navdeep '
                                                                       'Jaitly'},
                                                              {'@pid': '81/657',
                                                               'text': 'Patrick '
                                                                       'Nguyen'},
                                                              {'@pid': '88/3071',
                                                               'text': 'Andrew '
                                                                       'W. '
                                                                       'Senior'},
                                                              {'@pid': '69/7157',
                                                               'text': 'Vincent '
                                                                       'Vanhoucke'}]},
                                       'ee': 'http://www.isca-speech.org/archive/interspeech_2012/i12_2578.html',
                                       'key': 'conf/interspeech/JaitlyNSV12',
                                       'pages': '2578-2581',
                                       'title': 'Application of Pretrained '
                                                'Deep Neural Networks to Large '
                                                'Vocabulary Speech '
                                                'Recognition.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/interspeech/JaitlyNSV12',
                                       'venue': 'INTERSPEECH',
                                       'year': '2012'},
                              'url': 'URL#3091828'},
                             {'@id': '3104930',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '124/2894',
                                                               'text': 'Xiao '
                                                                       'Bao '
                                                                       'Clark'},
                                                              {'@pid': '124/2839',
                                                               'text': 'Jackson '
                                                                       'G. '
                                                                       'Finlay'},
                                                              {'@pid': '124/3051',
                                                               'text': 'Andrew '
                                                                       'J. '
                                                                       'Wilson'},
                                                              {'@pid': '124/2870',
                                                               'text': 'Keith '
                                                                       'L. J. '
                                                                       'Milburn'},
                                                              {'@pid': '32/5736-2',
                                                               'text': 'Minh '
                                                                       'Hoang '
                                                                       'Nguyen '
                                                                       '0002'},
                                                              {'@pid': 'l/CLutteroth',
                                                               'text': 'Christof '
                                                                       'Lutteroth'},
                                                              {'@pid': 'w/BurkhardWunsche',
                                                               'text': 'Burkhard '
                                                                       'Wünsche'}]},
                                       'doi': '10.1145/2425836.2425927',
                                       'ee': 'https://doi.org/10.1145/2425836.2425927',
                                       'key': 'conf/ivcnz/ClarkFWMNLW12',
                                       'pages': '480-485',
                                       'title': 'An investigation into graph '
                                                'cut parameter optimisation '
                                                'for image-fusion '
                                                'applications.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/ivcnz/ClarkFWMNLW12',
                                       'venue': 'IVCNZ',
                                       'year': '2012'},
                              'url': 'URL#3104930'},
                             {'@id': '3122148',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '19/8524',
                                                               'text': 'Minh '
                                                                       'Ngoc '
                                                                       'Dinh'},
                                                              {'@pid': '09/6203',
                                                               'text': 'David '
                                                                       'Abramson'},
                                                              {'@pid': '19/4764',
                                                               'text': 'Chao '
                                                                       'Jin'},
                                                              {'@pid': '70/10957',
                                                               'text': 'Andrew '
                                                                       'Gontarek'},
                                                              {'@pid': '48/8524',
                                                               'text': 'Bob '
                                                                       'Moench'},
                                                              {'@pid': '91/357',
                                                               'text': 'Luiz '
                                                                       'De '
                                                                       'Rose'}]},
                                       'doi': '10.1145/2145816.2145870',
                                       'ee': 'https://doi.org/10.1145/2145816.2145870',
                                       'key': 'conf/ppopp/DinhAJGMR12',
                                       'pages': '311-312',
                                       'title': 'Scalable parallel debugging '
                                                'with statistical assertions.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/ppopp/DinhAJGMR12',
                                       'venue': 'PPOPP',
                                       'year': '2012'},
                              'url': 'URL#3122148'},
                             {'@id': '3129608',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '71/4882',
                                                               'text': 'Jens '
                                                                       'Lehmann '
                                                                       '0001'},
                                                              {'@pid': 'f/TimFurche',
                                                               'text': 'Tim '
                                                                       'Furche'},
                                                              {'@pid': '84/4787-1',
                                                               'text': 'Giovanni '
                                                                       'Grasso '
                                                                       '0001'},
                                                              {'@pid': '65/4336',
                                                               'text': 'Axel-Cyrille '
                                                                       'Ngonga '
                                                                       'Ngomo'},
                                                              {'@pid': 's/ChristianSchallhart',
                                                               'text': 'Christian '
                                                                       'Schallhart'},
                                                              {'@pid': '55/9376',
                                                               'text': 'Andrew '
                                                                       'Jon '
                                                                       'Sellers'},
                                                              {'@pid': '50/9766',
                                                               'text': 'Christina '
                                                                       'Unger'},
                                                              {'@pid': '75/8883',
                                                               'text': 'Lorenz '
                                                                       'Bühmann'},
                                                              {'@pid': '70/8503',
                                                               'text': 'Daniel '
                                                                       'Gerber'},
                                                              {'@pid': '37/10894',
                                                               'text': 'Konrad '
                                                                       'Höffner'},
                                                              {'@pid': '09/1814',
                                                               'text': 'David '
                                                                       'Liu'},
                                                              {'@pid': '05/6406',
                                                               'text': 'Sören '
                                                                       'Auer'}]},
                                       'doi': '10.1007/978-3-642-35173-0_9',
                                       'ee': 'https://doi.org/10.1007/978-3-642-35173-0_9',
                                       'key': 'conf/semweb/LehmannFGNSSUBGHLA12',
                                       'pages': '131-147',
                                       'title': 'deqa - Deep Web Extraction '
                                                'for Question Answering.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/semweb/LehmannFGNSSUBGHLA12',
                                       'venue': 'International Semantic Web '
                                                'Conference',
                                       'year': '2012'},
                              'url': 'URL#3129608'},
                             {'@id': '3150726',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '19/8524',
                                                               'text': 'Minh '
                                                                       'Ngoc '
                                                                       'Dinh'},
                                                              {'@pid': '09/6203',
                                                               'text': 'David '
                                                                       'Abramson'},
                                                              {'@pid': '19/4764',
                                                               'text': 'Chao '
                                                                       'Jin'},
                                                              {'@pid': '26/5207',
                                                               'text': 'Donny '
                                                                       'Kurniawan'},
                                                              {'@pid': '70/10957',
                                                               'text': 'Andrew '
                                                                       'Gontarek'},
                                                              {'@pid': '48/8524',
                                                               'text': 'Bob '
                                                                       'Moench'},
                                                              {'@pid': '91/357',
                                                               'text': 'Luiz '
                                                                       'De '
                                                                       'Rose'}]},
                                       'doi': '10.1016/J.PROCS.2012.04.212',
                                       'ee': 'https://doi.org/10.1016/j.procs.2012.04.212',
                                       'key': 'journals/procedia/DinhAJKGMR12',
                                       'pages': '1940-1949',
                                       'title': 'Debugging Scientific '
                                                'Applications With Statistical '
                                                'Assertions.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/journals/procedia/DinhAJKGMR12',
                                       'venue': 'ICCS',
                                       'year': '2012'},
                              'url': 'URL#3150726'},
                             {'@id': '3161808',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '24/8344',
                                                               'text': 'Truong-Huy '
                                                                       'Dinh '
                                                                       'Nguyen'},
                                                              {'@pid': '29/331',
                                                               'text': 'David '
                                                                       'Hsu'},
                                                              {'@pid': '86/1498',
                                                               'text': 'Wee '
                                                                       'Sun '
                                                                       'Lee'},
                                                              {'@pid': '16/3956',
                                                               'text': 'Tze-Yun '
                                                                       'Leong'},
                                                              {'@pid': 'k/LesliePackKaelbling',
                                                               'text': 'Leslie '
                                                                       'Pack '
                                                                       'Kaelbling'},
                                                              {'@pid': '90/752',
                                                               'text': 'Tomás '
                                                                       'Lozano-Pérez'},
                                                              {'@pid': '79/10890',
                                                               'text': 'Andrew '
                                                                       'Haydn '
                                                                       'Grant'}]},
                                       'ee': 'http://arxiv.org/abs/1206.5928',
                                       'key': 'journals/corr/abs-1206-5928',
                                       'title': 'CAPIR - Collaborative Action '
                                                'Planning with Intention '
                                                'Recognition',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-1206-5928',
                                       'venue': 'CoRR',
                                       'volume': 'abs/1206.5928',
                                       'year': '2012'},
                              'url': 'URL#3161808'},
                             {'@id': '3163665',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '117/6048',
                                                               'text': 'Andrew '
                                                                       'Lamb'},
                                                              {'@pid': '117/5979',
                                                               'text': 'Matt '
                                                                       'Fuller'},
                                                              {'@pid': '63/2265',
                                                               'text': 'Ramakrishna '
                                                                       'Varadarajan'},
                                                              {'@pid': '80/4976',
                                                               'text': 'Nga '
                                                                       'Tran'},
                                                              {'@pid': '75/206',
                                                               'text': 'Ben '
                                                                       'Vandiver'},
                                                              {'@pid': '117/5997',
                                                               'text': 'Lyric '
                                                                       'Doshi'},
                                                              {'@pid': '32/6287',
                                                               'text': 'Chuck '
                                                                       'Bear'}]},
                                       'ee': 'http://arxiv.org/abs/1208.4173',
                                       'key': 'journals/corr/abs-1208-4173',
                                       'title': 'The Vertica Analytic Database '
                                                '- C-Store 7 Years Later',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/abs-1208-4173',
                                       'venue': 'CoRR',
                                       'volume': 'abs/1208.4173',
                                       'year': '2012'},
                              'url': 'URL#3163665'},
                             {'@id': '3168595',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '21/10309',
                                                               'text': 'Long '
                                                                       'Hoang '
                                                                       'Nguyen '
                                                                       '0001'},
                                                              {'@pid': 'r/AWRoscoe',
                                                               'text': 'Andrew '
                                                                       'William '
                                                                       'Roscoe'}]},
                                       'ee': 'http://eprint.iacr.org/2012/429',
                                       'key': 'journals/iacr/NguyenR12',
                                       'pages': '429',
                                       'title': 'Simple construction of '
                                                'epsilon-biased distribution.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/iacr/NguyenR12',
                                       'venue': 'IACR Cryptol. ePrint Arch.',
                                       'volume': '2012',
                                       'year': '2012'},
                              'url': 'URL#3168595'},
                             {'@id': '3189859',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '68/9447',
                                                               'text': 'Preetma '
                                                                       'Soin'},
                                                              {'@pid': '85/8065',
                                                               'text': 'Andrew '
                                                                       'P. '
                                                                       'Horsfield'},
                                                              {'@pid': '13/9448',
                                                               'text': 'D. '
                                                                       'Nguyen-Manh'}]},
                                       'doi': '10.1016/J.CPC.2011.01.030',
                                       'ee': 'https://doi.org/10.1016/j.cpc.2011.01.030',
                                       'key': 'journals/cphysics/SoinHN11',
                                       'number': '6',
                                       'pages': '1350-1360',
                                       'title': 'Efficient self-consistency '
                                                'for magnetic tight binding.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/cphysics/SoinHN11',
                                       'venue': 'Comput. Phys. Commun.',
                                       'volume': '182',
                                       'year': '2011'},
                              'url': 'URL#3189859'},
                             {'@id': '3217354',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '56/9737',
                                                               'text': 'Urmimala '
                                                                       'Sarkar'},
                                                              {'@pid': '57/9737',
                                                               'text': 'Andrew '
                                                                       'J. '
                                                                       'Karter'},
                                                              {'@pid': '80/9737',
                                                               'text': 'Jennifer '
                                                                       'Y. '
                                                                       'Liu'},
                                                              {'@pid': '51/9738',
                                                               'text': 'Nancy '
                                                                       'E. '
                                                                       'Adler'},
                                                              {'@pid': '44/9737',
                                                               'text': 'Robert '
                                                                       'Nguyen'},
                                                              {'@pid': '58/9737',
                                                               'text': 'Andrea '
                                                                       'López'},
                                                              {'@pid': '69/9737',
                                                               'text': 'Dean '
                                                                       'Schillinger'}]},
                                       'doi': '10.1136/JAMIA.2010.006015',
                                       'ee': 'https://doi.org/10.1136/jamia.2010.006015',
                                       'key': 'journals/jamia/SarkarKLANLS11',
                                       'number': '3',
                                       'pages': '318-321',
                                       'title': 'Social disparities in '
                                                'internet patient portal use '
                                                'in diabetes - evidence that '
                                                'the digital divide extends '
                                                'beyond access.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/jamia/SarkarKLANLS11',
                                       'venue': 'J. Am. Medical Informatics '
                                                'Assoc.',
                                       'volume': '18',
                                       'year': '2011'},
                              'url': 'URL#3217354'},
                             {'@id': '3221177',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '21/10309',
                                                               'text': 'Long '
                                                                       'Hoang '
                                                                       'Nguyen '
                                                                       '0001'},
                                                              {'@pid': 'r/AWRoscoe',
                                                               'text': 'A. W. '
                                                                       'Roscoe '
                                                                       '0001'}]},
                                       'doi': '10.3233/JCS-2010-0403',
                                       'ee': 'https://doi.org/10.3233/JCS-2010-0403',
                                       'key': 'journals/jcs/NguyenR11',
                                       'number': '1',
                                       'pages': '139-201',
                                       'title': 'Authentication protocols '
                                                'based on low-bandwidth '
                                                'unspoofable channels - A '
                                                'comparative survey.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/jcs/NguyenR11',
                                       'venue': 'J. Comput. Secur.',
                                       'volume': '19',
                                       'year': '2011'},
                              'url': 'URL#3221177'},
                             {'@id': '3240775',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '65/3743',
                                                               'text': 'David '
                                                                       'Kane'},
                                                              {'@pid': '21/501',
                                                               'text': 'Andrew '
                                                                       'Liu'},
                                                              {'@pid': '53/6791',
                                                               'text': 'Khanh '
                                                                       'Nguyen'}]},
                                       'doi': '10.32614/RJ-2011-010',
                                       'ee': 'https://doi.org/10.32614/rj-2011-010',
                                       'key': 'journals/rjour/KaneLN11',
                                       'number': '1',
                                       'pages': '64',
                                       'title': 'Analyzing an Electronic Limit '
                                                'Order Book.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/rjour/KaneLN11',
                                       'venue': 'R J.',
                                       'volume': '3',
                                       'year': '2011'},
                              'url': 'URL#3240775'},
                             {'@id': '3263980',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '01/9034',
                                                               'text': 'Andrew '
                                                                       'V. '
                                                                       'Nguyen'},
                                                              {'@pid': '43/9034',
                                                               'text': 'Rob '
                                                                       'Wynden'},
                                                              {'@pid': '62/6846',
                                                               'text': 'Yao '
                                                                       'Sun'}]},
                                       'ee': 'http://www.aaai.org/ocs/index.php/SSS/SSS11/paper/view/2479',
                                       'key': 'conf/aaaiss/NguyenWS11',
                                       'title': 'HBase, MapReduce, and '
                                                'Integrated Data Visualization '
                                                'for Processing Clinical '
                                                'Signal Data.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/aaaiss/NguyenWS11',
                                       'venue': 'AAAI Spring Symposium - '
                                                'Computational Physiology',
                                       'year': '2011'},
                              'url': 'URL#3263980'},
                             {'@id': '3267582',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '24/8344',
                                                               'text': 'Truong-Huy '
                                                                       'Dinh '
                                                                       'Nguyen'},
                                                              {'@pid': '29/331',
                                                               'text': 'David '
                                                                       'Hsu'},
                                                              {'@pid': '86/1498',
                                                               'text': 'Wee '
                                                                       'Sun '
                                                                       'Lee'},
                                                              {'@pid': '16/3956',
                                                               'text': 'Tze-Yun '
                                                                       'Leong'},
                                                              {'@pid': 'k/LesliePackKaelbling',
                                                               'text': 'Leslie '
                                                                       'Pack '
                                                                       'Kaelbling'},
                                                              {'@pid': '90/752',
                                                               'text': 'Tomás '
                                                                       'Lozano-Pérez'},
                                                              {'@pid': '79/10890',
                                                               'text': 'Andrew '
                                                                       'Haydn '
                                                                       'Grant'}]},
                                       'ee': 'http://www.aaai.org/ocs/index.php/AIIDE/AIIDE11/paper/view/4052',
                                       'key': 'conf/aiide/NguyenHLLKLG11',
                                       'title': 'CAPIR - Collaborative Action '
                                                'Planning with Intention '
                                                'Recognition.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/aiide/NguyenHLLKLG11',
                                       'venue': 'AIIDE',
                                       'year': '2011'},
                              'url': 'URL#3267582'},
                             {'@id': '3293776',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '46/6957-1',
                                                               'text': 'Andrew '
                                                                       'Nelson '
                                                                       '0001'},
                                                              {'@pid': '33/2059',
                                                               'text': 'Orlando '
                                                                       'Moreira'},
                                                              {'@pid': '59/3148',
                                                               'text': 'Anca '
                                                                       'Mariana '
                                                                       'Molnos'},
                                                              {'@pid': '42/6513',
                                                               'text': 'Sander '
                                                                       'Stuijk'},
                                                              {'@pid': '59/10491',
                                                               'text': 'Ba '
                                                                       'Thang '
                                                                       'Nguyen'},
                                                              {'@pid': 'g/KeesGoossens',
                                                               'text': 'Kees '
                                                                       'Goossens'}]},
                                       'doi': '10.1109/DSD.2011.19',
                                       'ee': 'https://doi.org/10.1109/DSD.2011.19',
                                       'key': 'conf/dsd/NelsonMMSNG11',
                                       'pages': '117-124',
                                       'title': 'Power Minimisation for '
                                                'Real-Time Dataflow '
                                                'Applications.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/dsd/NelsonMMSNG11',
                                       'venue': 'DSD',
                                       'year': '2011'},
                              'url': 'URL#3293776'},
                             {'@id': '3295866',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '08/10057',
                                                               'text': 'Ngit '
                                                                       'Chan '
                                                                       'Lye'},
                                                              {'@pid': '13/3307',
                                                               'text': 'Kok '
                                                                       'Wai '
                                                                       'Wong'},
                                                              {'@pid': '65/4623',
                                                               'text': 'Andrew '
                                                                       'Chiou'}]},
                                       'doi': '10.1007/978-3-642-23456-9_59',
                                       'ee': 'https://doi.org/10.1007/978-3-642-23456-9_59',
                                       'key': 'conf/edutainment/LyeWC11',
                                       'pages': '317-325',
                                       'title': 'Framework for Educational '
                                                'Robotics - A Multiphase '
                                                'Approach to Enhance User '
                                                'Learning in a Competitive '
                                                'Arena.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/edutainment/LyeWC11',
                                       'venue': 'Edutainment',
                                       'year': '2011'},
                              'url': 'URL#3295866'},
                             {'@id': '3298149',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '90/4873',
                                                               'text': 'Kouhyar '
                                                                       'Tavakolian'},
                                                              {'@pid': '209/0365',
                                                               'text': 'Brandon '
                                                                       'Ngai'},
                                                              {'@pid': '165/9454',
                                                               'text': 'Andrew '
                                                                       'P. '
                                                                       'Blaber'},
                                                              {'@pid': '88/6578',
                                                               'text': 'Bozena '
                                                                       'Kaminska'}]},
                                       'doi': '10.1109/IEMBS.2011.6091061',
                                       'ee': 'https://doi.org/10.1109/IEMBS.2011.6091061',
                                       'key': 'conf/embc/TavakolianNBK11',
                                       'pages': '4275-4278',
                                       'title': 'Infrasonic cardiac signals - '
                                                'Complementary windows to '
                                                'cardiovascular dynamics.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/embc/TavakolianNBK11',
                                       'venue': 'EMBC',
                                       'year': '2011'},
                              'url': 'URL#3298149'},
                             {'@id': '3305303',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '70/3231',
                                                               'text': 'Kim '
                                                                       'Khoa '
                                                                       'Nguyen'},
                                                              {'@pid': '69/4317',
                                                               'text': 'Mohamed '
                                                                       'Cheriet'},
                                                              {'@pid': '18/4179',
                                                               'text': 'Mathieu '
                                                                       'Lemay'},
                                                              {'@pid': '23/4571',
                                                               'text': 'Bill '
                                                                       'St. '
                                                                       'Arnaud'},
                                                              {'@pid': '78/89',
                                                               'text': 'Victor '
                                                                       'Reijs'},
                                                              {'@pid': '29/9992',
                                                               'text': 'Andrew '
                                                                       'Mackarel'},
                                                              {'@pid': '43/9106',
                                                               'text': 'Pau '
                                                                       'Minoves'},
                                                              {'@pid': '92/9992',
                                                               'text': 'Alin '
                                                                       'Pastrama'},
                                                              {'@pid': '02/9992',
                                                               'text': 'Ward '
                                                                       'Van '
                                                                       'Heddeghem'}]},
                                       'doi': '10.1007/978-3-642-20898-0_30',
                                       'ee': 'https://doi.org/10.1007/978-3-642-20898-0_30',
                                       'key': 'conf/fia/NguyenCLARMMPH11',
                                       'pages': '419-430',
                                       'title': 'Renewable Energy Provisioning '
                                                'for ICT Services in a Future '
                                                'Internet.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/fia/NguyenCLARMMPH11',
                                       'venue': 'Future Internet Assembly',
                                       'year': '2011'},
                              'url': 'URL#3305303'},
                             {'@id': '3307959',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '98/10049',
                                                               'text': 'Jerene '
                                                                       'Jacob'},
                                                              {'@pid': '184/9439',
                                                               'text': 'Tam Q. '
                                                                       'Nguyen'},
                                                              {'@pid': '83/5489',
                                                               'text': 'Donald '
                                                                       'Y. C. '
                                                                       'Lie'},
                                                              {'@pid': '84/10049',
                                                               'text': 'Steven '
                                                                       'Zupancic'},
                                                              {'@pid': '98/10053',
                                                               'text': 'J. '
                                                                       'Bishara'},
                                                              {'@pid': '33/10053',
                                                               'text': 'Andrew '
                                                                       'Dentino'},
                                                              {'@pid': '52/10051',
                                                               'text': 'Ron E. '
                                                                       'Banister'}]},
                                       'doi': '10.1109/FUZZY.2011.6007744',
                                       'ee': 'https://doi.org/10.1109/FUZZY.2011.6007744',
                                       'key': 'conf/fuzzIEEE/JacobNLZBDB11',
                                       'pages': '666-671',
                                       'title': 'A fall detection study on the '
                                                'sensors placement location '
                                                'and a rule-based '
                                                'multi-thresholds algorithm '
                                                'using both accelerometer and '
                                                'gyroscopes.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/fuzzIEEE/JacobNLZBDB11',
                                       'venue': 'FUZZ-IEEE',
                                       'year': '2011'},
                              'url': 'URL#3307959'},
                             {'@id': '3310887',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '50/1341',
                                                               'text': 'Yujia '
                                                                       'Wang'},
                                                              {'@pid': '26/9878',
                                                               'text': 'Andrew '
                                                                       'Grieco'},
                                                              {'@pid': '23/9879',
                                                               'text': 'Boris '
                                                                       'Slutsky'},
                                                              {'@pid': '32/1480',
                                                               'text': 'Bhaskar '
                                                                       'Rao'},
                                                              {'@pid': '30/3427',
                                                               'text': 'Yeshaiahu '
                                                                       'Fainman'},
                                                              {'@pid': '23/5856',
                                                               'text': 'Truong '
                                                                       'Q. '
                                                                       'Nguyen'}]},
                                       'doi': '10.1109/GLOCOM.2011.6133623',
                                       'ee': 'https://doi.org/10.1109/GLOCOM.2011.6133623',
                                       'key': 'conf/globecom/WangGSRFN11',
                                       'pages': '1-5',
                                       'title': 'Stochastic Model on the '
                                                'Post-Fabrication Error for a '
                                                'Bragg Reflectors Based '
                                                'Photonic Allpass Filter.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/globecom/WangGSRFN11',
                                       'venue': 'GLOBECOM',
                                       'year': '2011'},
                              'url': 'URL#3310887'},
                             {'@id': '3314163',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '72/9188',
                                                               'text': 'Raghavendra '
                                                                       'Rajkumar'},
                                                              {'@pid': '58/5765-2',
                                                               'text': 'Andrew '
                                                                       'Wang '
                                                                       '0002'},
                                                              {'@pid': '88/5011',
                                                               'text': 'Jason '
                                                                       'Hiser'},
                                                              {'@pid': '06/6439',
                                                               'text': 'Anh '
                                                                       'Nguyen-Tuong'},
                                                              {'@pid': 'd/JWDavidson',
                                                               'text': 'Jack '
                                                                       'W. '
                                                                       'Davidson'},
                                                              {'@pid': '87/4375',
                                                               'text': 'John '
                                                                       'C. '
                                                                       'Knight'}]},
                                       'doi': '10.1109/HICSS.2011.122',
                                       'ee': 'https://doi.org/10.1109/HICSS.2011.122',
                                       'key': 'conf/hicss/RajkumarWHNDK11',
                                       'pages': '1-10',
                                       'title': 'Component-Oriented Monitoring '
                                                'of Binaries for Security.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/hicss/RajkumarWHNDK11',
                                       'venue': 'HICSS',
                                       'year': '2011'},
                              'url': 'URL#3314163'},
                             {'@id': '3319799',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '50/1341',
                                                               'text': 'Yujia '
                                                                       'Wang'},
                                                              {'@pid': '26/9878',
                                                               'text': 'Andrew '
                                                                       'Grieco'},
                                                              {'@pid': '23/9879',
                                                               'text': 'Boris '
                                                                       'Slutsky'},
                                                              {'@pid': '32/1480',
                                                               'text': 'Bhaskar '
                                                                       'Rao'},
                                                              {'@pid': '30/3427',
                                                               'text': 'Yeshaiahu '
                                                                       'Fainman'},
                                                              {'@pid': '23/5856',
                                                               'text': 'Truong '
                                                                       'Q. '
                                                                       'Nguyen'}]},
                                       'doi': '10.1109/ICASSP.2011.5946811',
                                       'ee': 'https://doi.org/10.1109/ICASSP.2011.5946811',
                                       'key': 'conf/icassp/WangGSRFN11',
                                       'pages': '1633-1636',
                                       'title': 'Design and analysis of a '
                                                'narrowband filter for optical '
                                                'platform.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icassp/WangGSRFN11',
                                       'venue': 'ICASSP',
                                       'year': '2011'},
                              'url': 'URL#3319799'},
                             {'@id': '3333417',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '30/4876',
                                                               'text': 'Quang '
                                                                       'Vinh '
                                                                       'Nguyen'},
                                                              {'@pid': '67/10461',
                                                               'text': 'Andrew '
                                                                       'Gleeson'},
                                                              {'@pid': '32/10462',
                                                               'text': 'Nicholas '
                                                                       'Ho'},
                                                              {'@pid': 'h/MaoLinHuang',
                                                               'text': 'Mao '
                                                                       'Lin '
                                                                       'Huang'},
                                                              {'@pid': '39/1218',
                                                               'text': 'Simeon '
                                                                       'J. '
                                                                       'Simoff'},
                                                              {'@pid': '40/744',
                                                               'text': 'Daniel '
                                                                       'R. '
                                                                       'Catchpoole'}]},
                                       'doi': '10.1007/978-3-642-24955-6_14',
                                       'ee': 'https://doi.org/10.1007/978-3-642-24955-6_14',
                                       'key': 'conf/iconip/NguyenGHHSC11',
                                       'pages': '113-120',
                                       'title': 'Visual Analytics of Clinical '
                                                'and Genetic Datasets of Acute '
                                                'Lymphoblastic Leukaemia.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/iconip/NguyenGHHSC11',
                                       'venue': 'ICONIP',
                                       'year': '2011'},
                              'url': 'URL#3333417'},
                             {'@id': '3353817',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': 'c/ChungKuanCheng',
                                                               'text': 'Chung-Kuan '
                                                                       'Cheng'},
                                                              {'@pid': '02/6086',
                                                               'text': 'Peng '
                                                                       'Du'},
                                                              {'@pid': 'k/AndrewBKahng',
                                                               'text': 'Andrew '
                                                                       'B. '
                                                                       'Kahng'},
                                                              {'@pid': '23/590',
                                                               'text': 'Grantham '
                                                                       'K. H. '
                                                                       'Pang'},
                                                              {'@pid': '12/8314',
                                                               'text': 'Yuanzhe '
                                                                       'Wang'},
                                                              {'@pid': '88/3656',
                                                               'text': 'Ngai '
                                                                       'Wong'}]},
                                       'doi': '10.1145/1960397.1960435',
                                       'ee': 'https://doi.org/10.1145/1960397.1960435',
                                       'key': 'conf/ispd/ChengDKPWW11',
                                       'pages': '159-166',
                                       'title': 'More realistic power grid '
                                                'verification based on '
                                                'hierarchical current and '
                                                'power constraints.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/ispd/ChengDKPWW11',
                                       'venue': 'ISPD',
                                       'year': '2011'},
                              'url': 'URL#3353817'},
                             {'@id': '3358537',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '03/3923-1',
                                                               'text': 'Xiaodong '
                                                                       'He '
                                                                       '0001'},
                                                              {'@pid': '86/9737',
                                                               'text': 'Amittai '
                                                                       'Axelrod'},
                                                              {'@pid': '31/1974-1',
                                                               'text': 'Li '
                                                                       'Deng '
                                                                       '0001'},
                                                              {'@pid': 'a/AlexAcero',
                                                               'text': 'Alex '
                                                                       'Acero'},
                                                              {'@pid': '72/3526',
                                                               'text': 'Mei-Yuh '
                                                                       'Hwang'},
                                                              {'@pid': '143/7019',
                                                               'text': 'Alisa '
                                                                       'Nguyen'},
                                                              {'@pid': '58/5765',
                                                               'text': 'Andrew '
                                                                       'Wang'},
                                                              {'@pid': '143/7022',
                                                               'text': 'Xiahui '
                                                                       'Huang'}]},
                                       'ee': 'http://www.isca-speech.org/archive/iwslt_11/sltb_057.html',
                                       'key': 'conf/iwslt/HeADAHNWH11',
                                       'pages': '57-61',
                                       'title': 'The MSR SYSTEM for IWSLT 2011 '
                                                'evaluation.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/iwslt/HeADAHNWH11',
                                       'venue': 'IWSLT',
                                       'year': '2011'},
                              'url': 'URL#3358537'},
                             {'@id': '3360170',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '73/8333',
                                                               'text': 'Suong '
                                                                       'H. '
                                                                       'Nguyen'},
                                                              {'@pid': '22/58',
                                                               'text': 'Lachlan '
                                                                       'L. H. '
                                                                       'Andrew'},
                                                              {'@pid': '20/5601',
                                                               'text': 'Hai Le '
                                                                       'Vu'}]},
                                       'doi': '10.1109/LCN.2011.6115165',
                                       'ee': 'https://doi.org/10.1109/LCN.2011.6115165',
                                       'key': 'conf/lcn/NguyenAV11',
                                       'pages': '109-116',
                                       'title': 'Service differentiation '
                                                'without prioritization in '
                                                'IEEE 802.11 WLANs.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/lcn/NguyenAV11',
                                       'venue': 'LCN',
                                       'year': '2011'},
                              'url': 'URL#3360170'},
                             {'@id': '3372564',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '71/5735',
                                                               'text': 'Keshav '
                                                                       'Pingali'},
                                                              {'@pid': '48/4701',
                                                               'text': 'Donald '
                                                                       'Nguyen'},
                                                              {'@pid': '47/1003',
                                                               'text': 'Milind '
                                                                       'Kulkarni '
                                                                       '0001'},
                                                              {'@pid': '93/903',
                                                               'text': 'Martin '
                                                                       'Burtscher'},
                                                              {'@pid': '92/7751',
                                                               'text': 'Muhammad '
                                                                       'Amber '
                                                                       'Hassaan'},
                                                              {'@pid': '38/9698',
                                                               'text': 'Rashid '
                                                                       'Kaleem'},
                                                              {'@pid': '91/7544',
                                                               'text': 'Tsung-Hsien '
                                                                       'Lee'},
                                                              {'@pid': '15/2621',
                                                               'text': 'Andrew '
                                                                       'Lenharth'},
                                                              {'@pid': '24/120',
                                                               'text': 'Roman '
                                                                       'Manevich'},
                                                              {'@pid': 'm/MarioMendezLojo',
                                                               'text': 'Mario '
                                                                       'Méndez-Lojo'},
                                                              {'@pid': '06/5033',
                                                               'text': 'Dimitrios '
                                                                       'Prountzos'},
                                                              {'@pid': '83/3853',
                                                               'text': 'Xin '
                                                                       'Sui'}]},
                                       'doi': '10.1145/1993498.1993501',
                                       'ee': 'https://doi.org/10.1145/1993498.1993501',
                                       'key': 'conf/pldi/PingaliNKBHKLLMMPS11',
                                       'pages': '12-25',
                                       'title': 'The tao of parallelism in '
                                                'algorithms.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/pldi/PingaliNKBHKLLMMPS11',
                                       'venue': 'PLDI',
                                       'year': '2011'},
                              'url': 'URL#3372564'},
                             {'@id': '3384976',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '60/9687',
                                                               'text': 'Bangdao '
                                                                       'Chen'},
                                                              {'@pid': '21/10309',
                                                               'text': 'Long '
                                                                       'Hoang '
                                                                       'Nguyen '
                                                                       '0001'},
                                                              {'@pid': 'r/AWRoscoe',
                                                               'text': 'Andrew '
                                                                       'William '
                                                                       'Roscoe'}]},
                                       'doi': '10.1007/978-3-642-25867-1_10',
                                       'ee': 'https://doi.org/10.1007/978-3-642-25867-1_10',
                                       'key': 'conf/spw/ChenNR11',
                                       'pages': '115-125',
                                       'title': 'When Context Is Better Than '
                                                'Identity - Authentication by '
                                                'Context Using Empirical '
                                                'Channels.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/spw/ChenNR11',
                                       'venue': 'Security Protocols Workshop',
                                       'year': '2011'},
                              'url': 'URL#3384976'},
                             {'@id': '3415579',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '21/10309',
                                                               'text': 'Long '
                                                                       'Hoang '
                                                                       'Nguyen '
                                                                       '0001'},
                                                              {'@pid': 'r/AWRoscoe',
                                                               'text': 'Andrew '
                                                                       'William '
                                                                       'Roscoe'}]},
                                       'ee': 'http://eprint.iacr.org/2011/116',
                                       'key': 'journals/iacr/NguyenR11',
                                       'pages': '116',
                                       'title': 'On the construction of digest '
                                                'functions for manual '
                                                'authentication protocols.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/iacr/NguyenR11',
                                       'venue': 'IACR Cryptol. ePrint Arch.',
                                       'volume': '2011',
                                       'year': '2011'},
                              'url': 'URL#3415579'},
                             {'@id': '3471652',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '38/234',
                                                               'text': 'Brian '
                                                                       'S. '
                                                                       'Leibowitz'},
                                                              {'@pid': '78/2056',
                                                               'text': 'Robert '
                                                                       'Palmer'},
                                                              {'@pid': '86/5771',
                                                               'text': 'John '
                                                                       'Poulton'},
                                                              {'@pid': '28/10712',
                                                               'text': 'Yohan '
                                                                       'Frans'},
                                                              {'@pid': '96/1774',
                                                               'text': 'Simon '
                                                                       'Li'},
                                                              {'@pid': '05/4137-2',
                                                               'text': 'John '
                                                                       'M. '
                                                                       'Wilson '
                                                                       '0002'},
                                                              {'@pid': '06/10711',
                                                               'text': 'Michael '
                                                                       'Bucher'},
                                                              {'@pid': '05/10710',
                                                               'text': 'Andrew '
                                                                       'M. '
                                                                       'Fuller'},
                                                              {'@pid': '12/3316',
                                                               'text': 'John '
                                                                       'G. '
                                                                       'Eyles'},
                                                              {'@pid': '87/687',
                                                               'text': 'Marko '
                                                                       'Aleksic'},
                                                              {'@pid': '94/499',
                                                               'text': 'Trey '
                                                                       'Greer'},
                                                              {'@pid': '66/1339',
                                                               'text': 'Nhat '
                                                                       'Nguyen'}]},
                                       'doi': '10.1109/JSSC.2010.2040230',
                                       'ee': 'https://doi.org/10.1109/JSSC.2010.2040230',
                                       'key': 'journals/jssc/LeibowitzPPFLWBFEAGN10',
                                       'number': '4',
                                       'pages': '889-898',
                                       'title': 'A 4.3 GB/s Mobile Memory '
                                                'Interface With '
                                                'Power-Efficient Bandwidth '
                                                'Scaling.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/jssc/LeibowitzPPFLWBFEAGN10',
                                       'venue': 'IEEE J. Solid State Circuits',
                                       'volume': '45',
                                       'year': '2010'},
                              'url': 'URL#3471652'},
                             {'@id': '3532966',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '06/6439',
                                                               'text': 'Anh '
                                                                       'Nguyen-Tuong'},
                                                              {'@pid': '58/5765-2',
                                                               'text': 'Andrew '
                                                                       'Wang '
                                                                       '0002'},
                                                              {'@pid': '88/5011',
                                                               'text': 'Jason '
                                                                       'Hiser'},
                                                              {'@pid': '87/4375',
                                                               'text': 'John '
                                                                       'C. '
                                                                       'Knight'},
                                                              {'@pid': 'd/JWDavidson',
                                                               'text': 'Jack '
                                                                       'W. '
                                                                       'Davidson'}]},
                                       'doi': '10.1145/1842752.1842788',
                                       'ee': 'https://doi.org/10.1145/1842752.1842788',
                                       'key': 'conf/ecsa/Nguyen-TuongWHKD10',
                                       'pages': '170-174',
                                       'title': 'On the effectiveness of the '
                                                'metamorphic shield.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/ecsa/Nguyen-TuongWHKD10',
                                       'venue': 'ECSA Companion Volume',
                                       'year': '2010'},
                              'url': 'URL#3532966'},
                             {'@id': '3536534',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '05/2943',
                                                               'text': 'Fábio '
                                                                       'Oliveira'},
                                                              {'@pid': '37/49',
                                                               'text': 'Andrew '
                                                                       'Tjang'},
                                                              {'@pid': '85/2722',
                                                               'text': 'Ricardo '
                                                                       'Bianchini'},
                                                              {'@pid': '55/3942',
                                                               'text': 'Richard '
                                                                       'P. '
                                                                       'Martin'},
                                                              {'@pid': 'n/ThuDNguyen',
                                                               'text': 'Thu D. '
                                                                       'Nguyen'}]},
                                       'doi': '10.1145/1755913.1755924',
                                       'ee': 'https://doi.org/10.1145/1755913.1755924',
                                       'key': 'conf/eurosys/OliveiraTBMN10',
                                       'pages': '83-96',
                                       'title': 'Barricade - defending systems '
                                                'against operator mistakes.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/eurosys/OliveiraTBMN10',
                                       'venue': 'EuroSys',
                                       'year': '2010'},
                              'url': 'URL#3536534'},
                             {'@id': '3585181',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '30/2562',
                                                               'text': 'Elisabeth '
                                                                       'A. '
                                                                       'Nguyen'},
                                                              {'@pid': '62/8782',
                                                               'text': 'Carlos '
                                                                       'F. '
                                                                       'Rexach'},
                                                              {'@pid': '95/8782',
                                                               'text': 'David '
                                                                       'P. '
                                                                       'Thorpe'},
                                                              {'@pid': '94/8782',
                                                               'text': 'Andrew '
                                                                       'E. '
                                                                       'Walther'}]},
                                       'doi': '10.1109/ISSRE.2010.49',
                                       'ee': 'https://doi.org/10.1109/ISSRE.2010.49',
                                       'key': 'conf/issre/NguyenRTW10',
                                       'pages': '220-228',
                                       'title': 'The Importance of Data '
                                                'Quality in Software '
                                                'Reliability Modeling.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/issre/NguyenRTW10',
                                       'venue': 'ISSRE',
                                       'year': '2010'},
                              'url': 'URL#3585181'},
                             {'@id': '3588390',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '60/9687',
                                                               'text': 'Chen '
                                                                       'Bangdao'},
                                                              {'@pid': 'r/AWRoscoe',
                                                               'text': 'A. W. '
                                                                       'Roscoe '
                                                                       '0001'},
                                                              {'@pid': '32/7188',
                                                               'text': 'Ronald '
                                                                       'Kainda'},
                                                              {'@pid': '21/10309',
                                                               'text': 'Long '
                                                                       'Hoang '
                                                                       'Nguyen '
                                                                       '0001'}]},
                                       'key': 'conf/iwsec/BangdaoRKN10',
                                       'pages': '94-109',
                                       'title': 'The Missing Link - Human '
                                                'Interactive Security '
                                                'Protocols in Mobile Payment.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/iwsec/BangdaoRKN10',
                                       'venue': 'IWSEC',
                                       'year': '2010'},
                              'url': 'URL#3588390'},
                             {'@id': '3608531',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '01/9034',
                                                               'text': 'Andrew '
                                                                       'V. '
                                                                       'Nguyen'},
                                                              {'@pid': '43/6402',
                                                               'text': 'Donna '
                                                                       'L. '
                                                                       'Hudson'},
                                                              {'@pid': '08/1501',
                                                               'text': 'Maurice '
                                                                       'E. '
                                                                       'Cohen'}]},
                                       'key': 'conf/sede/NguyenHC10',
                                       'pages': '366-369',
                                       'title': 'Hadoop and MapReduce for '
                                                'Storage and Processing of '
                                                'Physiological Data.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/sede/NguyenHC10',
                                       'venue': 'SEDE',
                                       'year': '2010'},
                              'url': 'URL#3608531'},
                             {'@id': '3621293',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '73/8333',
                                                               'text': 'Suong '
                                                                       'H. '
                                                                       'Nguyen'},
                                                              {'@pid': '20/5601',
                                                               'text': 'Hai Le '
                                                                       'Vu'},
                                                              {'@pid': '22/58',
                                                               'text': 'Lachlan '
                                                                       'L. H. '
                                                                       'Andrew'}]},
                                       'doi': '10.1109/WCNC.2010.5506226',
                                       'ee': 'https://doi.org/10.1109/WCNC.2010.5506226',
                                       'key': 'conf/wcnc/NguyenVA10',
                                       'pages': '1-6',
                                       'title': 'Packet Size Variability '
                                                'Affects Collisions and Energy '
                                                'Efficiency in WLANs.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/wcnc/NguyenVA10',
                                       'venue': 'WCNC',
                                       'year': '2010'},
                              'url': 'URL#3621293'},
                             {'@id': '3640715',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '21/10309',
                                                               'text': 'Long '
                                                                       'Hoang '
                                                                       'Nguyen '
                                                                       '0001'},
                                                              {'@pid': 'r/AWRoscoe',
                                                               'text': 'A. W. '
                                                                       'Roscoe '
                                                                       '0001'}]},
                                       'ee': 'http://eprint.iacr.org/2010/206',
                                       'key': 'journals/iacr/NguyenR10',
                                       'pages': '206',
                                       'title': 'Authentication protocols '
                                                'based on low-bandwidth '
                                                'unspoofable channels - a '
                                                'comparative survey.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/iacr/NguyenR10',
                                       'venue': 'IACR Cryptol. ePrint Arch.',
                                       'volume': '2010',
                                       'year': '2010'},
                              'url': 'URL#3640715'},
                             {'@id': '3719720',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '01/6410',
                                                               'text': 'Wen '
                                                                       'Hu'},
                                                              {'@pid': '04/6227',
                                                               'text': 'Nirupama '
                                                                       'Bulusu'},
                                                              {'@pid': '79/812',
                                                               'text': 'Chun '
                                                                       'Tung '
                                                                       'Chou'},
                                                              {'@pid': 'j/SanjayJha',
                                                               'text': 'Sanjay '
                                                                       'K. '
                                                                       'Jha'},
                                                              {'@pid': 't/AndrewTaylor',
                                                               'text': 'Andrew '
                                                                       'Taylor'},
                                                              {'@pid': '23/2192',
                                                               'text': 'Van '
                                                                       'Nghia '
                                                                       'Tran'}]},
                                       'doi': '10.1145/1464420.1464424',
                                       'ee': 'https://doi.org/10.1145/1464420.1464424',
                                       'key': 'journals/tosn/HuBCJTT09',
                                       'number': '1',
                                       'pages': '4:1-4:28',
                                       'title': 'Design and evaluation of a '
                                                'hybrid sensor network for '
                                                'cane toad monitoring.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/tosn/HuBCJTT09',
                                       'venue': 'ACM Trans. Sens. Networks',
                                       'volume': '5',
                                       'year': '2009'},
                              'url': 'URL#3719720'},
                             {'@id': '3726335',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '44/6047',
                                                               'text': 'Binh '
                                                                       'Nguyen'},
                                                              {'@pid': '61/3779',
                                                               'text': 'Andrew '
                                                                       'Skabar'}]},
                                       'doi': '10.1007/978-3-642-10427-5_8',
                                       'ee': 'https://doi.org/10.1007/978-3-642-10427-5_8',
                                       'key': 'conf/acal/NguyenS09',
                                       'pages': '73-85',
                                       'title': 'Evolutionary Intelligence and '
                                                'Communication in Societies of '
                                                'Virtually Embodied Agents.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/acal/NguyenS09',
                                       'venue': 'ACAL',
                                       'year': '2009'},
                              'url': 'URL#3726335'},
                             {'@id': '3742024',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '49/6876',
                                                               'text': 'S. '
                                                                       'Camille '
                                                                       'Peres'},
                                                              {'@pid': '71/1018',
                                                               'text': 'Vickie '
                                                                       'Nguyen'},
                                                              {'@pid': '39/1520',
                                                               'text': 'Philip '
                                                                       'T. '
                                                                       'Kortum'},
                                                              {'@pid': '38/6282',
                                                               'text': 'Magdy '
                                                                       'Akladios'},
                                                              {'@pid': '60/7018',
                                                               'text': 'S. '
                                                                       'Bart '
                                                                       'Wood'},
                                                              {'@pid': '43/5554',
                                                               'text': 'Andrew '
                                                                       'Muddimer'}]},
                                       'doi': '10.1145/1520340.1520599',
                                       'ee': 'https://doi.org/10.1145/1520340.1520599',
                                       'key': 'conf/chi/PeresNKAWM09',
                                       'pages': '3949-3954',
                                       'title': 'Software ergonomics - '
                                                'relating subjective and '
                                                'objective measures.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/chi/PeresNKAWM09',
                                       'venue': 'CHI Extended Abstracts',
                                       'year': '2009'},
                              'url': 'URL#3742024'},
                             {'@id': '3807377',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '16/2862',
                                                               'text': 'Lane '
                                                                       'Schwartz'},
                                                              {'@pid': '01/16',
                                                               'text': 'Luan '
                                                                       'Nguyen'},
                                                              {'@pid': '51/6834',
                                                               'text': 'Andrew '
                                                                       'Exley'},
                                                              {'@pid': '21/41',
                                                               'text': 'William '
                                                                       'Schuler'}]},
                                       'doi': '10.1145/1502650.1502682',
                                       'ee': 'https://doi.org/10.1145/1502650.1502682',
                                       'key': 'conf/iui/SchwartzNES09',
                                       'pages': '217-226',
                                       'title': 'Positive effects of redundant '
                                                'descriptions in an '
                                                'interactive semantic speech '
                                                'interface.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/iui/SchwartzNES09',
                                       'venue': 'IUI',
                                       'year': '2009'},
                              'url': 'URL#3807377'},
                             {'@id': '3834293',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '37/49',
                                                               'text': 'Andrew '
                                                                       'Tjang'},
                                                              {'@pid': '05/2943',
                                                               'text': 'Fábio '
                                                                       'Oliveira'},
                                                              {'@pid': '85/2722',
                                                               'text': 'Ricardo '
                                                                       'Bianchini'},
                                                              {'@pid': '55/3942',
                                                               'text': 'Richard '
                                                                       'P. '
                                                                       'Martin'},
                                                              {'@pid': 'n/ThuDNguyen',
                                                               'text': 'Thu D. '
                                                                       'Nguyen'}]},
                                       'doi': '10.1109/SRDS.2009.24',
                                       'ee': 'https://doi.org/10.1109/SRDS.2009.24',
                                       'key': 'conf/srds/TjangOBMN09',
                                       'pages': '61-70',
                                       'title': 'Model-Based Validation for '
                                                'Internet Services.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/srds/TjangOBMN09',
                                       'venue': 'SRDS',
                                       'year': '2009'},
                              'url': 'URL#3834293'},
                             {'@id': '3861562',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '21/10309',
                                                               'text': 'Long '
                                                                       'Hoang '
                                                                       'Nguyen '
                                                                       '0001'},
                                                              {'@pid': 'r/AWRoscoe',
                                                               'text': 'A. W. '
                                                                       'Roscoe '
                                                                       '0001'}]},
                                       'ee': 'http://eprint.iacr.org/2009/003',
                                       'key': 'journals/iacr/NguyenR09',
                                       'pages': '3',
                                       'title': 'Separating two roles of '
                                                'hashing in one-way message '
                                                'authentication.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/iacr/NguyenR09',
                                       'venue': 'IACR Cryptol. ePrint Arch.',
                                       'volume': '2009',
                                       'year': '2009'},
                              'url': 'URL#3861562'},
                             {'@id': '3861563',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '21/10309',
                                                               'text': 'Long '
                                                                       'Hoang '
                                                                       'Nguyen '
                                                                       '0001'},
                                                              {'@pid': 'r/AWRoscoe',
                                                               'text': 'A. W. '
                                                                       'Roscoe '
                                                                       '0001'}]},
                                       'ee': 'http://eprint.iacr.org/2009/150',
                                       'key': 'journals/iacr/NguyenR09a',
                                       'pages': '150',
                                       'title': 'Efficient group '
                                                'authentication protocols '
                                                'based on human interaction.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/iacr/NguyenR09a',
                                       'venue': 'IACR Cryptol. ePrint Arch.',
                                       'volume': '2009',
                                       'year': '2009'},
                              'url': 'URL#3861563'},
                             {'@id': '3861564',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '21/10309',
                                                               'text': 'Long '
                                                                       'Hoang '
                                                                       'Nguyen '
                                                                       '0001'},
                                                              {'@pid': 'r/AWRoscoe',
                                                               'text': 'A. W. '
                                                                       'Roscoe '
                                                                       '0001'}]},
                                       'ee': 'http://eprint.iacr.org/2009/153',
                                       'key': 'journals/iacr/NguyenR09b',
                                       'pages': '153',
                                       'title': 'New combinatorial bounds for '
                                                'universal hash functions.',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/iacr/NguyenR09b',
                                       'venue': 'IACR Cryptol. ePrint Arch.',
                                       'volume': '2009',
                                       'year': '2009'},
                              'url': 'URL#3861564'},
                             {'@id': '3888872',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '21/10309',
                                                               'text': 'Long '
                                                                       'Hoang '
                                                                       'Nguyen '
                                                                       '0001'},
                                                              {'@pid': 'r/AWRoscoe',
                                                               'text': 'A. W. '
                                                                       'Roscoe '
                                                                       '0001'}]},
                                       'doi': '10.1016/J.IC.2007.07.010',
                                       'ee': 'https://doi.org/10.1016/j.ic.2007.07.010',
                                       'key': 'journals/iandc/NguyenR08',
                                       'number': '2-4',
                                       'pages': '250-271',
                                       'title': 'Authenticating ad hoc '
                                                'networks by comparison of '
                                                'short digests.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/iandc/NguyenR08',
                                       'venue': 'Inf. Comput.',
                                       'volume': '206',
                                       'year': '2008'},
                              'url': 'URL#3888872'},
                             {'@id': '3923736',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '25/3221',
                                                               'text': 'Puneet '
                                                                       'Kapur'},
                                                              {'@pid': '64/6167',
                                                               'text': 'An '
                                                                       'Ngo-The'},
                                                              {'@pid': '42/6131',
                                                               'text': 'Günther '
                                                                       'Ruhe'},
                                                              {'@pid': '87/1676',
                                                               'text': 'Andrew '
                                                                       'Smith'}]},
                                       'doi': '10.1002/SMR.379',
                                       'ee': 'https://doi.org/10.1002/smr.379',
                                       'key': 'journals/smr/KapurNRS08',
                                       'number': '5',
                                       'pages': '365-386',
                                       'title': 'Optimized staffing for '
                                                'product releases and its '
                                                'application at Chartwell '
                                                'Technology.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/smr/KapurNRS08',
                                       'venue': 'J. Softw. Maintenance Res. '
                                                'Pract.',
                                       'volume': '20',
                                       'year': '2008'},
                              'url': 'URL#3923736'},
                             {'@id': '3924151',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': 'b/LadislauBoloni',
                                                               'text': 'Ladislau '
                                                                       'Bölöni'},
                                                              {'@pid': '42/5366',
                                                               'text': 'Linus '
                                                                       'J. '
                                                                       'Luotsinen'},
                                                              {'@pid': '38/3900',
                                                               'text': 'Joakim '
                                                                       'N. '
                                                                       'Ekblad'},
                                                              {'@pid': '96/5542',
                                                               'text': 'T. '
                                                                       'Ryan '
                                                                       'Fitz-Gibbon'},
                                                              {'@pid': '16/5174',
                                                               'text': 'Charles '
                                                                       'Andrew '
                                                                       'Houchin'},
                                                              {'@pid': '73/4740',
                                                               'text': 'Justin '
                                                                       'Logan '
                                                                       'Key'},
                                                              {'@pid': '61/1306',
                                                               'text': 'Majid '
                                                                       'Ali '
                                                                       'Khan'},
                                                              {'@pid': '48/3616',
                                                               'text': 'Jin '
                                                                       'Lyu'},
                                                              {'@pid': '04/1425',
                                                               'text': 'Johann '
                                                                       'Nguyen'},
                                                              {'@pid': '63/567',
                                                               'text': 'Rex R. '
                                                                       'Oleson'},
                                                              {'@pid': '36/1718',
                                                               'text': 'Gary '
                                                                       'Stein'},
                                                              {'@pid': '96/874',
                                                               'text': 'Scott '
                                                                       'A. '
                                                                       'Vander '
                                                                       'Weide'},
                                                              {'@pid': '67/4738',
                                                               'text': 'Viet '
                                                                       'Trinh'}]},
                                       'doi': '10.1002/SPE.832',
                                       'ee': 'https://doi.org/10.1002/spe.832',
                                       'key': 'journals/spe/BoloniLEFHKKLNOSWT08',
                                       'number': '3',
                                       'pages': '259-305',
                                       'title': 'A comparison study of 12 '
                                                'paradigms for developing '
                                                'embodied agents.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/spe/BoloniLEFHKKLNOSWT08',
                                       'venue': 'Softw. Pract. Exp.',
                                       'volume': '38',
                                       'year': '2008'},
                              'url': 'URL#3924151'},
                             {'@id': '3967118',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '03/1909',
                                                               'text': 'Muhammad '
                                                                       'Ali '
                                                                       'Babar'},
                                                              {'@pid': '66/4119',
                                                               'text': 'Andrew '
                                                                       'Northway'},
                                                              {'@pid': '74/3329',
                                                               'text': 'Ian '
                                                                       'Gorton'},
                                                              {'@pid': '41/4856',
                                                               'text': 'Paul '
                                                                       'Heuer'},
                                                              {'@pid': '29/5255',
                                                               'text': 'Thong '
                                                                       'Nguyen'}]},
                                       'doi': '10.1109/ECBS.2008.27',
                                       'ee': 'https://doi.org/10.1109/ECBS.2008.27',
                                       'key': 'conf/ecbs/BabarNGHN08',
                                       'pages': '105-113',
                                       'title': 'Introducing Tool Support for '
                                                'Managing Architectural '
                                                'Knowledge - An Experience '
                                                'Report.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/ecbs/BabarNGHN08',
                                       'venue': 'ECBS',
                                       'year': '2008'},
                              'url': 'URL#3967118'},
                             {'@id': '4123348',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '116/5682',
                                                               'text': 'T. D. '
                                                                       'Barbara '
                                                                       'Nguyen-Vu'},
                                                              {'@pid': '44/2144',
                                                               'text': 'Hua '
                                                                       'Chen'},
                                                              {'@pid': '116/5534',
                                                               'text': 'Alan '
                                                                       'M. '
                                                                       'Cassell'},
                                                              {'@pid': '67/6198',
                                                               'text': 'Russell '
                                                                       'J. '
                                                                       'Andrews'},
                                                              {'@pid': '68/6168',
                                                               'text': 'M. '
                                                                       'Meyyappan'},
                                                              {'@pid': '116/1011-30',
                                                               'text': 'Jun Li '
                                                                       '0030'}]},
                                       'doi': '10.1109/TBME.2007.891169',
                                       'ee': 'https://doi.org/10.1109/TBME.2007.891169',
                                       'key': 'journals/tbe/Nguyen-VuCCAML07',
                                       'number': '6',
                                       'pages': '1121-1128',
                                       'title': 'Vertically Aligned Carbon '
                                                'Nanofiber Architecture as a '
                                                'Multifunctional 3-D Neural '
                                                'Electrical Interface.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/tbe/Nguyen-VuCCAML07',
                                       'venue': 'IEEE Trans. Biomed. Eng.',
                                       'volume': '54',
                                       'year': '2007'},
                              'url': 'URL#4123348'},
                             {'@id': '4173842',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '75/3011',
                                                               'text': 'Jonathan '
                                                                       'C. '
                                                                       'Rowanhill'},
                                                              {'@pid': '13/6090',
                                                               'text': 'Glenn '
                                                                       'S. '
                                                                       'Wasson'},
                                                              {'@pid': '07/1930',
                                                               'text': 'Zach '
                                                                       'Hill'},
                                                              {'@pid': '13/3150',
                                                               'text': 'Jim '
                                                                       'Basney'},
                                                              {'@pid': '93/80',
                                                               'text': 'Yuliyan '
                                                                       'Kiryakov'},
                                                              {'@pid': '87/4375',
                                                               'text': 'John '
                                                                       'C. '
                                                                       'Knight'},
                                                              {'@pid': '06/6439',
                                                               'text': 'Anh '
                                                                       'Nguyen-Tuong'},
                                                              {'@pid': 'g/AndrewSGrimshaw',
                                                               'text': 'Andrew '
                                                                       'S. '
                                                                       'Grimshaw'},
                                                              {'@pid': 'h/MartyHumphrey',
                                                               'text': 'Marty '
                                                                       'Humphrey'}]},
                                       'doi': '10.1007/978-3-540-75444-2_29',
                                       'ee': 'https://doi.org/10.1007/978-3-540-75444-2_29',
                                       'key': 'conf/hpcc/RowanhillWHBKKNGH07',
                                       'pages': '260-272',
                                       'title': 'Dynamic System-Wide '
                                                'Reconfiguration of Grid '
                                                'Deployments in Response to '
                                                'Intrusion Detections.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/hpcc/RowanhillWHBKKNGH07',
                                       'venue': 'HPCC',
                                       'year': '2007'},
                              'url': 'URL#4173842'},
                             {'@id': '4206377',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '38/234',
                                                               'text': 'Brian '
                                                                       'S. '
                                                                       'Leibowitz'},
                                                              {'@pid': '144/2046',
                                                               'text': 'Jade '
                                                                       'Kizer'},
                                                              {'@pid': '18/11177',
                                                               'text': 'Haechang '
                                                                       'Lee'},
                                                              {'@pid': '88/5560',
                                                               'text': 'Fred '
                                                                       'Chen'},
                                                              {'@pid': '11/765',
                                                               'text': 'Andrew '
                                                                       'Ho'},
                                                              {'@pid': '26/1765',
                                                               'text': 'Metha '
                                                                       'Jeeradit'},
                                                              {'@pid': '21/8468',
                                                               'text': 'Akash '
                                                                       'Bansal'},
                                                              {'@pid': '94/499',
                                                               'text': 'Trey '
                                                                       'Greer'},
                                                              {'@pid': '96/1774',
                                                               'text': 'Simon '
                                                                       'Li'},
                                                              {'@pid': '03/2889',
                                                               'text': 'Ramin '
                                                                       'Farjad-Rad'},
                                                              {'@pid': '91/11128',
                                                               'text': 'William '
                                                                       'F. '
                                                                       'Stonecypher'},
                                                              {'@pid': '28/10712',
                                                               'text': 'Yohan '
                                                                       'Frans'},
                                                              {'@pid': '98/6507',
                                                               'text': 'Barry '
                                                                       'Daly'},
                                                              {'@pid': '37/10276',
                                                               'text': 'Fred '
                                                                       'Heaton'},
                                                              {'@pid': '09/4820',
                                                               'text': 'Bruno '
                                                                       'W. '
                                                                       'Garlepp'},
                                                              {'@pid': '144/1985',
                                                               'text': 'Carl '
                                                                       'W. '
                                                                       'Werner'},
                                                              {'@pid': '66/1339',
                                                               'text': 'Nhat '
                                                                       'Nguyen'},
                                                              {'@pid': '17/6937',
                                                               'text': 'Vladimir '
                                                                       'Stojanovic'},
                                                              {'@pid': '51/10186',
                                                               'text': 'Jared '
                                                                       'Zerbe'}]},
                                       'doi': '10.1109/ISSCC.2007.373377',
                                       'ee': 'https://doi.org/10.1109/ISSCC.2007.373377',
                                       'key': 'conf/isscc/LeibowitzKLCHJBGLFSFDHGWNSZ07',
                                       'pages': '228-599',
                                       'title': 'A 7.5Gb/s 10-Tap DFE Receiver '
                                                'with First Tap Partial '
                                                'Response, Spectrally Gated '
                                                'Adaptation, and 2nd-Order '
                                                'Data-Filtered CDR.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/isscc/LeibowitzKLCHJBGLFSFDHGWNSZ07',
                                       'venue': 'ISSCC',
                                       'year': '2007'},
                              'url': 'URL#4206377'},
                             {'@id': '4254579',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '57/4259',
                                                               'text': 'Cheun '
                                                                       'Ngen '
                                                                       'Chong'},
                                                              {'@pid': '75/5681',
                                                               'text': 'Ricardo '
                                                                       'Corin'},
                                                              {'@pid': '56/5087',
                                                               'text': 'Jeroen '
                                                                       'Doumen'},
                                                              {'@pid': 'e/SandroEtalle',
                                                               'text': 'Sandro '
                                                                       'Etalle'},
                                                              {'@pid': 'h/PieterHHartel',
                                                               'text': 'Pieter '
                                                                       'H. '
                                                                       'Hartel'},
                                                              {'@pid': '62/4404',
                                                               'text': 'Yee '
                                                                       'Wei '
                                                                       'Law'},
                                                              {'@pid': '14/5477',
                                                               'text': 'Andrew '
                                                                       'Tokmakoff'}]},
                                       'doi': '10.1007/BF03219910',
                                       'ee': 'https://doi.org/10.1007/BF03219910',
                                       'key': 'journals/adt/ChongCDEHLT06',
                                       'number': '3-4',
                                       'pages': '284-331',
                                       'title': 'LicenseScript - a logical '
                                                'language for digital rights '
                                                'management.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/adt/ChongCDEHLT06',
                                       'venue': 'Ann. des Télécommunications',
                                       'volume': '61',
                                       'year': '2006'},
                              'url': 'URL#4254579'},
                             {'@id': '4273529',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '04/2451',
                                                               'text': 'Wendy '
                                                                       'Belluomini'},
                                                              {'@pid': '14/2690',
                                                               'text': 'Damir '
                                                                       'Jamsek'},
                                                              {'@pid': '33/5498',
                                                               'text': 'Andrew '
                                                                       'K. '
                                                                       'Martin'},
                                                              {'@pid': '14/2072',
                                                               'text': 'Chandler '
                                                                       'McDowell'},
                                                              {'@pid': '91/5357',
                                                               'text': 'Robert '
                                                                       'K. '
                                                                       'Montoye'},
                                                              {'@pid': '08/1123',
                                                               'text': 'Hung '
                                                                       'C. '
                                                                       'Ngo'},
                                                              {'@pid': '94/3018',
                                                               'text': 'Jun '
                                                                       'Sawada'}]},
                                       'doi': '10.1147/RD.502.0277',
                                       'ee': 'https://doi.org/10.1147/rd.502.0277',
                                       'key': 'journals/ibmrd/BelluominiJMMMNS06',
                                       'number': '2-3',
                                       'pages': '277-286',
                                       'title': 'Limited switch dynamic logic '
                                                'circuits for high-speed '
                                                'low-power circuit design.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/ibmrd/BelluominiJMMMNS06',
                                       'venue': 'IBM J. Res. Dev.',
                                       'volume': '50',
                                       'year': '2006'},
                              'url': 'URL#4273529'},
                             {'@id': '4324687',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '37/49',
                                                               'text': 'Andrew '
                                                                       'Tjang'},
                                                              {'@pid': '05/2943',
                                                               'text': 'Fábio '
                                                                       'Oliveira'},
                                                              {'@pid': '55/3942',
                                                               'text': 'Richard '
                                                                       'P. '
                                                                       'Martin'},
                                                              {'@pid': 'n/ThuDNguyen',
                                                               'text': 'Thu D. '
                                                                       'Nguyen'}]},
                                       'doi': '10.1145/1215995.1216003',
                                       'ee': 'https://doi.org/10.1145/1215995.1216003',
                                       'key': 'conf/asplos/TjangOMN06',
                                       'pages': '8',
                                       'title': 'A - an assertion language for '
                                                'distributed systems.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/asplos/TjangOMN06',
                                       'venue': 'PLOS',
                                       'year': '2006'},
                              'url': 'URL#4324687'},
                             {'@id': '4325041',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '64/6229',
                                                               'text': 'Andrew '
                                                                       'Guillory'},
                                                              {'@pid': '70/1552',
                                                               'text': 'Hai '
                                                                       'Nguyen'},
                                                              {'@pid': 'b/TuckerRBalch',
                                                               'text': 'Tucker '
                                                                       'R. '
                                                                       'Balch'},
                                                              {'@pid': 'i/LCIsbell',
                                                               'text': 'Charles '
                                                                       'Lee '
                                                                       'Isbell '
                                                                       'Jr.'}]},
                                       'doi': '10.1145/1160633.1160774',
                                       'ee': 'https://doi.org/10.1145/1160633.1160774',
                                       'key': 'conf/atal/GuilloryNBI06',
                                       'pages': '795-797',
                                       'title': 'Learning executable agent '
                                                'behaviors from observation.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/atal/GuilloryNBI06',
                                       'venue': 'AAMAS',
                                       'year': '2006'},
                              'url': 'URL#4325041'},
                             {'@id': '4336730',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '41/4379',
                                                               'text': 'Charles '
                                                                       'J. '
                                                                       'Alpert'},
                                                              {'@pid': 'k/AndrewBKahng',
                                                               'text': 'Andrew '
                                                                       'B. '
                                                                       'Kahng'},
                                                              {'@pid': 's/CliffNSze',
                                                               'text': 'Cliff '
                                                                       'C. N. '
                                                                       'Sze'},
                                                              {'@pid': '36/2168',
                                                               'text': 'Qinke '
                                                                       'Wang'}]},
                                       'doi': '10.1145/1146909.1147012',
                                       'ee': 'https://doi.org/10.1145/1146909.1147012',
                                       'key': 'conf/dac/AlpertKSW06',
                                       'pages': '389-392',
                                       'title': 'Timing-driven Steiner trees '
                                                'are (practically) free.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/dac/AlpertKSW06',
                                       'venue': 'DAC',
                                       'year': '2006'},
                              'url': 'URL#4336730'},
                             {'@id': '4400679',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '42/5366',
                                                               'text': 'Linus '
                                                                       'J. '
                                                                       'Luotsinen'},
                                                              {'@pid': '38/3900',
                                                               'text': 'Joakim '
                                                                       'N. '
                                                                       'Ekblad'},
                                                              {'@pid': '96/5542',
                                                               'text': 'T. '
                                                                       'Ryan '
                                                                       'Fitz-Gibbon'},
                                                              {'@pid': '16/5174',
                                                               'text': 'Charles '
                                                                       'Andrew '
                                                                       'Houchin'},
                                                              {'@pid': '73/4740',
                                                               'text': 'Justin '
                                                                       'Logan '
                                                                       'Key'},
                                                              {'@pid': '61/1306',
                                                               'text': 'Majid '
                                                                       'Ali '
                                                                       'Khan'},
                                                              {'@pid': '48/3616',
                                                               'text': 'Jin '
                                                                       'Lyu'},
                                                              {'@pid': '04/1425',
                                                               'text': 'Johann '
                                                                       'Nguyen'},
                                                              {'@pid': '63/567',
                                                               'text': 'Rex R. '
                                                                       'Oleson'},
                                                              {'@pid': '36/1718',
                                                               'text': 'Gary '
                                                                       'Stein'},
                                                              {'@pid': '96/874',
                                                               'text': 'Scott '
                                                                       'A. '
                                                                       'Vander '
                                                                       'Weide'},
                                                              {'@pid': '67/4738',
                                                               'text': 'Viet '
                                                                       'Trinh'},
                                                              {'@pid': 'b/LadislauBoloni',
                                                               'text': 'Ladislau '
                                                                       'Bölöni'}]},
                                       'doi': '10.1007/978-3-540-71956-4_6',
                                       'ee': 'https://doi.org/10.1007/978-3-540-71956-4_6',
                                       'key': 'conf/promas/LuotsinenEFHKKLNOSWTB06',
                                       'pages': '93-112',
                                       'title': 'Comparing Apples with Oranges '
                                                '- Evaluating Twelve Paradigms '
                                                'of Agency.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/promas/LuotsinenEFHKKLNOSWTB06',
                                       'venue': 'PROMAS',
                                       'year': '2006'},
                              'url': 'URL#4400679'},
                             {'@id': '4456428',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '38/3622',
                                                               'text': 'Steve '
                                                                       'Haga'},
                                                              {'@pid': '54/3551',
                                                               'text': 'Andrew '
                                                                       'Webber'},
                                                              {'@pid': '64/6544',
                                                               'text': 'Yi '
                                                                       'Zhang'},
                                                              {'@pid': '40/5631',
                                                               'text': 'Nghi '
                                                                       'Nguyen'},
                                                              {'@pid': 'b/RajeevBarua',
                                                               'text': 'Rajeev '
                                                                       'Barua'}]},
                                       'ee': 'http://content.iospress.com/articles/journal-of-embedded-computing/jec00043',
                                       'key': 'journals/jec/HagaWZNB05',
                                       'number': '3',
                                       'pages': '415-433',
                                       'title': 'Reducing code size in VLIW '
                                                'instruction scheduling.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/jec/HagaWZNB05',
                                       'venue': 'J. Embed. Comput.',
                                       'volume': '1',
                                       'year': '2005'},
                              'url': 'URL#4456428'},
                             {'@id': '4519792',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': 'g/AndrewSGrimshaw',
                                                               'text': 'Andrew '
                                                                       'S. '
                                                                       'Grimshaw'},
                                                              {'@pid': 'h/MartyHumphrey',
                                                               'text': 'Marty '
                                                                       'A. '
                                                                       'Humphrey'},
                                                              {'@pid': '87/4375',
                                                               'text': 'John '
                                                                       'C. '
                                                                       'Knight'},
                                                              {'@pid': '06/6439',
                                                               'text': 'Anh '
                                                                       'Nguyen-Tuong'},
                                                              {'@pid': '75/3011',
                                                               'text': 'Jonathan '
                                                                       'C. '
                                                                       'Rowanhill'},
                                                              {'@pid': '13/6090',
                                                               'text': 'Glenn '
                                                                       'S. '
                                                                       'Wasson'},
                                                              {'@pid': '13/3150',
                                                               'text': 'Jim '
                                                                       'Basney'}]},
                                       'doi': '10.1007/11428848_94',
                                       'ee': 'https://doi.org/10.1007/11428848_94',
                                       'key': 'conf/iccS/GrimshawHKNRWB05',
                                       'pages': '729-737',
                                       'title': 'The Development of Dependable '
                                                'and Survivable Grids.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/iccS/GrimshawHKNRWB05',
                                       'venue': 'International Conference on '
                                                'Computational Science',
                                       'year': '2005'},
                              'url': 'URL#4519792'},
                             {'@id': '4536415',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '01/6410',
                                                               'text': 'Wen '
                                                                       'Hu'},
                                                              {'@pid': '23/2192',
                                                               'text': 'Van '
                                                                       'Nghia '
                                                                       'Tran'},
                                                              {'@pid': '04/6227',
                                                               'text': 'Nirupama '
                                                                       'Bulusu'},
                                                              {'@pid': '79/812',
                                                               'text': 'Chun '
                                                                       'Tung '
                                                                       'Chou'},
                                                              {'@pid': 'j/SanjayJha',
                                                               'text': 'Sanjay '
                                                                       'K. '
                                                                       'Jha'},
                                                              {'@pid': 't/AndrewTaylor',
                                                               'text': 'Andrew '
                                                                       'Taylor'}]},
                                       'doi': '10.1109/IPSN.2005.1440984',
                                       'ee': 'https://doi.org/10.1109/IPSN.2005.1440984',
                                       'key': 'conf/ipsn/HuTBCJT05',
                                       'pages': '503-508',
                                       'title': 'The design and evaluation of '
                                                'a hybrid sensor network for '
                                                'cane-toad monitoring.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/ipsn/HuTBCJT05',
                                       'venue': 'IPSN',
                                       'year': '2005'},
                              'url': 'URL#4536415'},
                             {'@id': '4559692',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '01/6410',
                                                               'text': 'Wen '
                                                                       'Hu'},
                                                              {'@pid': '04/6227',
                                                               'text': 'Nirupama '
                                                                       'Bulusu'},
                                                              {'@pid': '79/812',
                                                               'text': 'Chun '
                                                                       'Tung '
                                                                       'Chou'},
                                                              {'@pid': 'j/SanjayJha',
                                                               'text': 'Sanjay '
                                                                       'K. '
                                                                       'Jha'},
                                                              {'@pid': 't/AndrewTaylor',
                                                               'text': 'Andrew '
                                                                       'Taylor'},
                                                              {'@pid': '23/2192',
                                                               'text': 'Van '
                                                                       'Nghia '
                                                                       'Tran'}]},
                                       'doi': '10.1145/1098918.1098970',
                                       'ee': 'https://doi.org/10.1145/1098918.1098970',
                                       'key': 'conf/sensys/HuBCJTT05',
                                       'pages': '305',
                                       'title': 'A hybrid sensor network for '
                                                'cane-toad monitoring.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/sensys/HuBCJTT05',
                                       'venue': 'SenSys',
                                       'year': '2005'},
                              'url': 'URL#4559692'},
                             {'@id': '4575236',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '72/5342',
                                                               'text': 'Kim '
                                                                       'Nguyen'},
                                                              {'@pid': '174/6375',
                                                               'text': 'Andrew '
                                                                       'Weigl'}]},
                                       'doi': '10.1201/9781420034981.PT7',
                                       'ee': 'https://doi.org/10.1201/9781420034981.pt7',
                                       'key': 'reference/crc/NguyenW05',
                                       'pages': '616-646',
                                       'title': 'Fast Arithmetic in Hardware.',
                                       'type': 'Reference Works',
                                       'url': 'https://dblp.org/rec/reference/crc/NguyenW05',
                                       'venue': 'Handbook of Elliptic and '
                                                'Hyperelliptic Curve '
                                                'Cryptography',
                                       'year': '2005'},
                              'url': 'URL#4575236'},
                             {'@id': '4646679',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': 'd/GritDenker',
                                                               'text': 'Grit '
                                                                       'Denker'},
                                                              {'@pid': '58/2247',
                                                               'text': 'Son '
                                                                       'Nguyen'},
                                                              {'@pid': '35/150',
                                                               'text': 'Andrew '
                                                                       'Ton'}]},
                                       'doi': '10.1007/978-3-540-25956-5_17',
                                       'ee': 'https://doi.org/10.1007/978-3-540-25956-5_17',
                                       'key': 'conf/esws/DenkerNT04',
                                       'pages': '240-253',
                                       'title': 'OWL-S Semantics of Security '
                                                'Web Services - a Case Study.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/esws/DenkerNT04',
                                       'venue': 'ESWS',
                                       'year': '2004'},
                              'url': 'URL#4646679'},
                             {'@id': '4684790',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '10/9254',
                                                               'text': 'Robert '
                                                                       'H. '
                                                                       'Dolin'},
                                                              {'@pid': '76/11528',
                                                               'text': 'John '
                                                                       'E. '
                                                                       'Mattison'},
                                                              {'@pid': '116/1532',
                                                               'text': 'Simon '
                                                                       'P. '
                                                                       'Cohn'},
                                                              {'@pid': '04/1599',
                                                               'text': 'Keith '
                                                                       'E. '
                                                                       'Campbell'},
                                                              {'@pid': '200/3708',
                                                               'text': 'Andrew '
                                                                       'M. '
                                                                       'Wiesenthal'},
                                                              {'@pid': '200/3853',
                                                               'text': 'Brad '
                                                                       'Hochhalter'},
                                                              {'@pid': '200/3942',
                                                               'text': 'Diane '
                                                                       'Laberge'},
                                                              {'@pid': '200/3878',
                                                               'text': 'Rita '
                                                                       'Barsoum'},
                                                              {'@pid': '148/3726',
                                                               'text': 'James '
                                                                       'Shalaby'},
                                                              {'@pid': '149/5296',
                                                               'text': 'Alan '
                                                                       'Abilla'},
                                                              {'@pid': '200/3772',
                                                               'text': 'Robert '
                                                                       'J. '
                                                                       'Clements'},
                                                              {'@pid': '02/6895',
                                                               'text': 'Carol '
                                                                       'M. '
                                                                       'Correia'},
                                                              {'@pid': '200/3819',
                                                               'text': 'Diane '
                                                                       'Esteva'},
                                                              {'@pid': '200/3744',
                                                               'text': 'John '
                                                                       'M. '
                                                                       'Fedack'},
                                                              {'@pid': '149/5519',
                                                               'text': 'Bruce '
                                                                       'J. '
                                                                       'Goldberg'},
                                                              {'@pid': '200/3925',
                                                               'text': 'Sridhar '
                                                                       'Gopalarao'},
                                                              {'@pid': '200/3839',
                                                               'text': 'Eza '
                                                                       'Hafeza'},
                                                              {'@pid': '155/8462',
                                                               'text': 'Peter '
                                                                       'Hendler'},
                                                              {'@pid': '200/3888',
                                                               'text': 'Enrique '
                                                                       'Hernandez'},
                                                              {'@pid': '200/3882',
                                                               'text': 'Ron '
                                                                       'Kamangar'},
                                                              {'@pid': '200/3843',
                                                               'text': 'Rafique '
                                                                       'A. '
                                                                       'Khan'},
                                                              {'@pid': '200/3775',
                                                               'text': 'Georgina '
                                                                       'Kurtovich'},
                                                              {'@pid': '200/3915',
                                                               'text': 'Gerry '
                                                                       'Lazzareschi'},
                                                              {'@pid': '200/3737',
                                                               'text': 'Moon '
                                                                       'H. '
                                                                       'Lee'},
                                                              {'@pid': '200/3812',
                                                               'text': 'Tracy '
                                                                       'Lee'},
                                                              {'@pid': '149/8621',
                                                               'text': 'David '
                                                                       'H. '
                                                                       'Levy'},
                                                              {'@pid': '149/5408',
                                                               'text': 'Jonathan '
                                                                       'Y. '
                                                                       'Lukoff'},
                                                              {'@pid': '200/3368',
                                                               'text': 'Cyndie '
                                                                       'Lundberg'},
                                                              {'@pid': '200/3755',
                                                               'text': 'Michael '
                                                                       'P. '
                                                                       'Madden'},
                                                              {'@pid': '200/3907',
                                                               'text': 'Trongtu '
                                                                       'L. '
                                                                       'Ngo'},
                                                              {'@pid': '200/3965',
                                                               'text': 'Ben T. '
                                                                       'Nguyen'},
                                                              {'@pid': '200/3822',
                                                               'text': 'Nikhilkumar '
                                                                       'P. '
                                                                       'Patel'},
                                                              {'@pid': '200/3834',
                                                               'text': 'Jim '
                                                                       'Resneck'},
                                                              {'@pid': '165/4643',
                                                               'text': 'David '
                                                                       'E. '
                                                                       'Ross'},
                                                              {'@pid': '200/3867',
                                                               'text': 'Kathleen '
                                                                       'M. '
                                                                       'Schwarz'},
                                                              {'@pid': '200/3946',
                                                               'text': 'Charles '
                                                                       'C. '
                                                                       'Selhorst'},
                                                              {'@pid': '149/8841',
                                                               'text': 'Aaron '
                                                                       'Snyder'},
                                                              {'@pid': '200/3829',
                                                               'text': 'Mohamed '
                                                                       'I. '
                                                                       'Umarji'},
                                                              {'@pid': '200/3767',
                                                               'text': 'Max '
                                                                       'Vilner'},
                                                              {'@pid': '200/3927',
                                                               'text': 'Roy '
                                                                       'Zer-Chen'},
                                                              {'@pid': '116/1610',
                                                               'text': 'Chris '
                                                                       'Zingo'}]},
                                       'doi': '10.3233/978-1-60750-949-3-346',
                                       'ee': 'https://doi.org/10.3233/978-1-60750-949-3-346',
                                       'key': 'conf/medinfo/DolinMCCWHLBSAC04',
                                       'pages': '346-350',
                                       'title': 'Kaiser Permanente&apos;s '
                                                'Convergent Medical '
                                                'Terminology.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/medinfo/DolinMCCWHLBSAC04',
                                       'venue': 'MedInfo',
                                       'year': '2004'},
                              'url': 'URL#4684790'},
                             {'@id': '4709290',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '18/6599',
                                                               'text': 'Matthew '
                                                                       'J. '
                                                                       'Berryman'},
                                                              {'@pid': '04/4860',
                                                               'text': 'Wei-Li '
                                                                       'Khoo'},
                                                              {'@pid': '25/834',
                                                               'text': 'Hiep '
                                                                       'Nguyen'},
                                                              {'@pid': '44/2659',
                                                               'text': 'Erin '
                                                                       'O&apos;Neill'},
                                                              {'@pid': '71/4553',
                                                               'text': 'Andrew '
                                                                       'Allison'},
                                                              {'@pid': 'a/DerekAbbott',
                                                               'text': 'Derek '
                                                                       'Abbott'}]},
                                       'ee': 'http://arxiv.org/abs/cs/0404017',
                                       'key': 'journals/corr/cs-NE-0404017',
                                       'title': 'Exploring tradeoffs in '
                                                'pleiotropy and redundancy '
                                                'using evolutionary computing',
                                       'type': 'Informal Publications',
                                       'url': 'https://dblp.org/rec/journals/corr/cs-NE-0404017',
                                       'venue': 'CoRR',
                                       'volume': 'cs.NE/0404017',
                                       'year': '2004'},
                              'url': 'URL#4709290'},
                             {'@id': '4736890',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '11/3294',
                                                               'text': 'Michael '
                                                                       'J. '
                                                                       'Lewis'},
                                                              {'@pid': '05/3631',
                                                               'text': 'Adam '
                                                                       'Ferrari'},
                                                              {'@pid': 'h/MartyHumphrey',
                                                               'text': 'Marty '
                                                                       'Humphrey'},
                                                              {'@pid': '28/663',
                                                               'text': 'John '
                                                                       'F. '
                                                                       'Karpovich'},
                                                              {'@pid': '68/3481',
                                                               'text': 'Mark '
                                                                       'M. '
                                                                       'Morgan'},
                                                              {'@pid': '42/2728',
                                                               'text': 'Anand '
                                                                       'Natrajan'},
                                                              {'@pid': '06/6439',
                                                               'text': 'Anh '
                                                                       'Nguyen-Tuong'},
                                                              {'@pid': '13/6090',
                                                               'text': 'Glenn '
                                                                       'S. '
                                                                       'Wasson'},
                                                              {'@pid': 'g/AndrewSGrimshaw',
                                                               'text': 'Andrew '
                                                                       'S. '
                                                                       'Grimshaw'}]},
                                       'doi': '10.1016/S0743-7315(03)00012-1',
                                       'ee': 'https://doi.org/10.1016/S0743-7315(03)00012-1',
                                       'key': 'journals/jpdc/LewisFHKMNNWG03',
                                       'number': '5',
                                       'pages': '525-538',
                                       'title': 'Support for extensibility and '
                                                'site autonomy in the Legion '
                                                'grid system object model.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/jpdc/LewisFHKMNNWG03',
                                       'venue': 'J. Parallel Distributed '
                                                'Comput.',
                                       'volume': '63',
                                       'year': '2003'},
                              'url': 'URL#4736890'},
                             {'@id': '4825470',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '83/6453',
                                                               'text': 'Peggy '
                                                                       'Israel '
                                                                       'Doerschuk'},
                                                              {'@pid': '161/6330',
                                                               'text': 'Vinh '
                                                                       'D. '
                                                                       'Nguyen'},
                                                              {'@pid': '161/6315',
                                                               'text': 'Andrew '
                                                                       'L. '
                                                                       'Li'}]},
                                       'doi': '10.1023/A:1015731916039',
                                       'ee': 'https://doi.org/10.1023/A:1015731916039',
                                       'key': 'journals/apin/DoerschukNL02',
                                       'number': '1',
                                       'pages': '75-87',
                                       'title': 'A Scalable Intelligent '
                                                'Takeoff Controller for a '
                                                'Simulated Running Jointed '
                                                'Leg.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/apin/DoerschukNL02',
                                       'venue': 'Appl. Intell.',
                                       'volume': '17',
                                       'year': '2002'},
                              'url': 'URL#4825470'},
                             {'@id': '4830124',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '42/2728',
                                                               'text': 'Anand '
                                                                       'Natrajan'},
                                                              {'@pid': '06/6439',
                                                               'text': 'Anh '
                                                                       'Nguyen-Tuong'},
                                                              {'@pid': 'h/MartyHumphrey',
                                                               'text': 'Marty '
                                                                       'Humphrey'},
                                                              {'@pid': '81/4272',
                                                               'text': 'Michael '
                                                                       'Herrick'},
                                                              {'@pid': '68/4455',
                                                               'text': 'Brian '
                                                                       'P. '
                                                                       'Clarke'},
                                                              {'@pid': 'g/AndrewSGrimshaw',
                                                               'text': 'Andrew '
                                                                       'S. '
                                                                       'Grimshaw'}]},
                                       'doi': '10.1002/CPE.672',
                                       'ee': 'https://doi.org/10.1002/cpe.672',
                                       'key': 'journals/concurrency/NatrajanNHHCG02',
                                       'number': '13-15',
                                       'pages': '1365-1394',
                                       'title': 'The Legion Grid Portal.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/concurrency/NatrajanNHHCG02',
                                       'venue': 'Concurr. Comput. Pract. Exp.',
                                       'volume': '14',
                                       'year': '2002'},
                              'url': 'URL#4830124'},
                             {'@id': '5048784',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '61/3214',
                                                               'text': 'Brian '
                                                                       'S. '
                                                                       'White'},
                                                              {'@pid': 'g/AndrewSGrimshaw',
                                                               'text': 'Andrew '
                                                                       'S. '
                                                                       'Grimshaw'},
                                                              {'@pid': '06/6439',
                                                               'text': 'Anh '
                                                                       'Nguyen-Tuong'}]},
                                       'doi': '10.1109/HPDC.2000.868647',
                                       'ee': 'https://doi.org/10.1109/HPDC.2000.868647',
                                       'key': 'conf/hpdc/WhiteGN00',
                                       'pages': '165-174',
                                       'title': 'Grid-based File Access - The '
                                                'Legion I/O Model.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/hpdc/WhiteGN00',
                                       'venue': 'HPDC',
                                       'year': '2000'},
                              'url': 'URL#5048784'},
                             {'@id': '5099414',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '06/6439',
                                                               'text': 'Anh '
                                                                       'Nguyen-Tuong'},
                                                              {'@pid': 'g/AndrewSGrimshaw',
                                                               'text': 'Andrew '
                                                                       'S. '
                                                                       'Grimshaw'}]},
                                       'doi': '10.1142/S0129626499000268',
                                       'ee': 'https://doi.org/10.1142/S0129626499000268',
                                       'key': 'journals/ppl/Nguyen-TuongG99',
                                       'number': '2',
                                       'pages': '291-301',
                                       'title': 'Using Reflection for '
                                                'Incorporating Fault-Tolerance '
                                                'Techniques into Distributed '
                                                'Applications.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/ppl/Nguyen-TuongG99',
                                       'venue': 'Parallel Process. Lett.',
                                       'volume': '9',
                                       'year': '1999'},
                              'url': 'URL#5099414'},
                             {'@id': '5167623',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '83/6453',
                                                               'text': 'Peggy '
                                                                       'Israel '
                                                                       'Doerschuk'},
                                                              {'@pid': '135/4565',
                                                               'text': 'W. E. '
                                                                       'Simon'},
                                                              {'@pid': '161/6330',
                                                               'text': 'Vinh '
                                                                       'D. '
                                                                       'Nguyen'},
                                                              {'@pid': '161/6315',
                                                               'text': 'Andrew '
                                                                       'L. '
                                                                       'Li'}]},
                                       'doi': '10.1109/100.692336',
                                       'ee': 'https://doi.org/10.1109/100.692336',
                                       'key': 'journals/ram/DoerschukSNL98',
                                       'number': '2',
                                       'pages': '12-21',
                                       'title': 'A modular approach to '
                                                'intelligent control of a '
                                                'simulated jointed leg.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/ram/DoerschukSNL98',
                                       'venue': 'IEEE Robotics Autom. Mag.',
                                       'volume': '5',
                                       'year': '1998'},
                              'url': 'URL#5167623'},
                             {'@id': '5182003',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '89/3325',
                                                               'text': 'Vikram '
                                                                       'Chalana'},
                                                              {'@pid': '36/6603',
                                                               'text': 'Andrew '
                                                                       'G. '
                                                                       'Bruce'},
                                                              {'@pid': '76/4829',
                                                               'text': 'Thien '
                                                                       'Nguyen'}]},
                                       'doi': '10.1117/12.304630',
                                       'ee': 'https://doi.org/10.1117/12.304630',
                                       'key': 'conf/drr/ChalanaBN98',
                                       'pages': '169-178',
                                       'title': 'Duplicate document detection '
                                                'in DocBrowse.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/drr/ChalanaBN98',
                                       'venue': 'Document Recognition',
                                       'year': '1998'},
                              'url': 'URL#5182003'},
                             {'@id': '5187071',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '06/6439',
                                                               'text': 'Anh '
                                                                       'Nguyen-Tuong'},
                                                              {'@pid': 'c/SJChapin',
                                                               'text': 'Steve '
                                                                       'J. '
                                                                       'Chapin'},
                                                              {'@pid': 'g/AndrewSGrimshaw',
                                                               'text': 'Andrew '
                                                                       'S. '
                                                                       'Grimshaw'}]},
                                       'doi': '10.1109/HPDC.1998.710023',
                                       'ee': 'https://doi.org/10.1109/HPDC.1998.710023',
                                       'key': 'conf/hpdc/Nguyen-TuongCG98',
                                       'pages': '346-347',
                                       'title': 'Extending Metasystem '
                                                'Functionality Using '
                                                'Reflection.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/hpdc/Nguyen-TuongCG98',
                                       'venue': 'HPDC',
                                       'year': '1998'},
                              'url': 'URL#5187071'},
                             {'@id': '5187631',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '82/3605',
                                                               'text': 'Ngai-Man '
                                                                       'Cheung'},
                                                              {'@pid': '147/1751',
                                                               'text': 'Steven '
                                                                       'Trautmann'},
                                                              {'@pid': '09/5385',
                                                               'text': 'Andrew '
                                                                       'Horner'}]},
                                       'doi': '10.1109/ICASSP.1998.679630',
                                       'ee': 'https://doi.org/10.1109/ICASSP.1998.679630',
                                       'key': 'conf/icassp/CheungTH98',
                                       'pages': '3529-3532',
                                       'title': 'Head-related transfer '
                                                'function modeling in 3-D '
                                                'sound systems with genetic '
                                                'algorithms.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icassp/CheungTH98',
                                       'venue': 'ICASSP',
                                       'year': '1998'},
                              'url': 'URL#5187631'},
                             {'@id': '5220694',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': 'g/AndrewSGrimshaw',
                                                               'text': 'Andrew '
                                                                       'S. '
                                                                       'Grimshaw'},
                                                              {'@pid': '06/6439',
                                                               'text': 'Anh '
                                                                       'Nguyen-Tuong'},
                                                              {'@pid': '11/3294',
                                                               'text': 'Michael '
                                                                       'J. '
                                                                       'Lewis'},
                                                              {'@pid': '93/6030',
                                                               'text': 'Mark '
                                                                       'Hyett'}]},
                                       'doi': '10.1177/109434209701100206',
                                       'ee': 'https://doi.org/10.1177/109434209701100206',
                                       'key': 'journals/ijhpca/GrimshawNLH97',
                                       'number': '2',
                                       'pages': '129-143',
                                       'title': 'Campus-Wide Computing - Early '
                                                'Results Using Legion At the '
                                                'University of Virginia.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/ijhpca/GrimshawNLH97',
                                       'venue': 'Int. J. High Perform. Comput. '
                                                'Appl.',
                                       'volume': '11',
                                       'year': '1997'},
                              'url': 'URL#5220694'},
                             {'@id': '5223450',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '76/1760',
                                                               'text': 'T. '
                                                                       'Nguyen '
                                                                       'Dzung'},
                                                              {'@pid': '72/6918',
                                                               'text': 'Andrew '
                                                                       'C. '
                                                                       'Scheiner'},
                                                              {'@pid': '94/392',
                                                               'text': 'Jan W. '
                                                                       'Andzelm'},
                                                              {'@pid': '82/2041',
                                                               'text': 'Suzanne '
                                                                       'W. '
                                                                       'Sirois'},
                                                              {'@pid': '89/1450',
                                                               'text': 'Dennis '
                                                                       'R. '
                                                                       'Salahub'},
                                                              {'@pid': '34/4902',
                                                               'text': 'Arnold '
                                                                       'T. '
                                                                       'Hagler'}]},
                                       'doi': '10.1002/(SICI)1096-987X(199710)18:13&lt;1609::AID-JCC4&gt;3.0.CO;2-V',
                                       'ee': 'https://doi.org/10.1002/(SICI)1096-987X(199710)18:13&lt;1609::AID-JCC4&gt;3.0.CO;2-V',
                                       'key': 'journals/jcc/DzungSASSH97',
                                       'number': '13',
                                       'pages': '1609-1631',
                                       'title': 'A density functional study of '
                                                'the glycine molecule - '
                                                'Comparison with '
                                                'post-Hartree-Fock '
                                                'calculations and experiment.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/jcc/DzungSASSH97',
                                       'venue': 'J. Comput. Chem.',
                                       'volume': '18',
                                       'year': '1997'},
                              'url': 'URL#5223450'},
                             {'@id': '5258869',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': 'v/CharlesLViles',
                                                               'text': 'Charles '
                                                                       'L. '
                                                                       'Viles'},
                                                              {'@pid': '11/3294',
                                                               'text': 'Michael '
                                                                       'J. '
                                                                       'Lewis'},
                                                              {'@pid': '05/3631',
                                                               'text': 'Adam '
                                                                       'Ferrari'},
                                                              {'@pid': '06/6439',
                                                               'text': 'Anh '
                                                                       'Nguyen-Tuong'},
                                                              {'@pid': 'g/AndrewSGrimshaw',
                                                               'text': 'Andrew '
                                                                       'S. '
                                                                       'Grimshaw'}]},
                                       'key': 'conf/pdpta/VilesLFNG97',
                                       'pages': '265-274',
                                       'title': 'Enabling Flexibility in the '
                                                'Legion Run-Time Library.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/pdpta/VilesLFNG97',
                                       'venue': 'PDPTA',
                                       'year': '1997'},
                              'url': 'URL#5258869'},
                             {'@id': '5287526',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': 'n/KingNgiNgan',
                                                               'text': 'King '
                                                                       'N. '
                                                                       'Ngan'},
                                                              {'@pid': '82/3767',
                                                               'text': 'Douglas '
                                                                       'Chai'},
                                                              {'@pid': '115/8108',
                                                               'text': 'Andrew '
                                                                       'Millin'}]},
                                       'doi': '10.1109/76.499839',
                                       'ee': 'https://doi.org/10.1109/76.499839',
                                       'key': 'journals/tcsv/NganCM96',
                                       'number': '3',
                                       'pages': '308-312',
                                       'title': 'Very low bit rate video '
                                                'coding using H.263 coder.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/tcsv/NganCM96',
                                       'venue': 'IEEE Trans. Circuits Syst. '
                                                'Video Technol.',
                                       'volume': '6',
                                       'year': '1996'},
                              'url': 'URL#5287526'},
                             {'@id': '5294997',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '93/5342',
                                                               'text': 'Mysore '
                                                                       'Y. '
                                                                       'Jaisimha'},
                                                              {'@pid': '36/6603',
                                                               'text': 'Andrew '
                                                                       'G. '
                                                                       'Bruce'},
                                                              {'@pid': '76/4829',
                                                               'text': 'Thien '
                                                                       'Nguyen'}]},
                                       'doi': '10.1142/9789812797704_0022',
                                       'ee': 'https://doi.org/10.1142/9789812797704_0022',
                                       'key': 'conf/das/JaisimhaBN96',
                                       'pages': '409-432',
                                       'title': 'Docbrowse - a System for '
                                                'Textual and Graphical '
                                                'Querying on Degraded Document '
                                                'Image Data.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/das/JaisimhaBN96',
                                       'venue': 'DAS',
                                       'year': '1996'},
                              'url': 'URL#5294997'},
                             {'@id': '5309716',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '83/6453',
                                                               'text': 'Peggy '
                                                                       'Israel '
                                                                       'Doerschuk'},
                                                              {'@pid': '182/0737',
                                                               'text': 'Vihn '
                                                                       'Nguyen'},
                                                              {'@pid': '182/0757',
                                                               'text': 'Mani '
                                                                       'Venkatesh'},
                                                              {'@pid': '182/0819',
                                                               'text': 'Faqiang '
                                                                       'Kwong'},
                                                              {'@pid': '161/6315',
                                                               'text': 'Andrew '
                                                                       'L. '
                                                                       'Li'}]},
                                       'doi': '10.1117/12.265333',
                                       'ee': 'https://doi.org/10.1117/12.265333',
                                       'key': 'conf/mr/DoerschukNVKL96',
                                       'pages': '2-9',
                                       'title': 'Intelligent control of a '
                                                'simulated running jointed '
                                                'leg.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/mr/DoerschukNVKL96',
                                       'venue': 'Mobile Robots / Automated '
                                                'Vehicle Control Systems',
                                       'year': '1996'},
                              'url': 'URL#5309716'},
                             {'@id': '5313594',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '93/5342',
                                                               'text': 'Mysore '
                                                                       'Y. '
                                                                       'Jaisimha'},
                                                              {'@pid': '36/6603',
                                                               'text': 'Andrew '
                                                                       'G. '
                                                                       'Bruce'},
                                                              {'@pid': '76/4829',
                                                               'text': 'Thien '
                                                                       'Nguyen'}]},
                                       'doi': '10.1117/12.234774',
                                       'ee': 'https://doi.org/10.1117/12.234774',
                                       'key': 'conf/spieSR/JaisimhaBN96',
                                       'pages': '350-361',
                                       'title': 'DocBrowse - A System for '
                                                'Information Retrieval from '
                                                'Document Image Data.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/spieSR/JaisimhaBN96',
                                       'venue': 'Storage and Retrieval for '
                                                'Image and Video Databases',
                                       'year': '1996'},
                              'url': 'URL#5313594'},
                             {'@id': '5313670',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '06/6439',
                                                               'text': 'Anh '
                                                                       'Nguyen-Tuong'},
                                                              {'@pid': 'g/AndrewSGrimshaw',
                                                               'text': 'Andrew '
                                                                       'S. '
                                                                       'Grimshaw'},
                                                              {'@pid': '93/6030',
                                                               'text': 'Mark '
                                                                       'Hyett'}]},
                                       'doi': '10.1109/SRDS.1996.10001',
                                       'ee': 'http://doi.ieeecomputersociety.org/10.1109/SRDS.1996.10001',
                                       'key': 'conf/srds/Nguyen-TuongSH96',
                                       'pages': '2-11',
                                       'title': 'Exploiting Data-Flow for '
                                                'Fault-Tolerance in a '
                                                'Wide-Area Parallel System.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/srds/Nguyen-TuongSH96',
                                       'venue': 'SRDS',
                                       'year': '1996'},
                              'url': 'URL#5313670'},
                             {'@id': '5337977',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '73/5375',
                                                               'text': 'Joel '
                                                                       'Auslander'},
                                                              {'@pid': 'f/ASFukunaga',
                                                               'text': 'Alex '
                                                                       'S. '
                                                                       'Fukunaga'},
                                                              {'@pid': '65/1220',
                                                               'text': 'Hadi '
                                                                       'Partovi'},
                                                              {'@pid': '95/6362',
                                                               'text': 'Jon '
                                                                       'Christensen'},
                                                              {'@pid': '40/436',
                                                               'text': 'Lloyd '
                                                                       'Hsu'},
                                                              {'@pid': '74/2874',
                                                               'text': 'Peter '
                                                                       'Reiss'},
                                                              {'@pid': '70/5341',
                                                               'text': 'Andrew '
                                                                       'Shuman'},
                                                              {'@pid': '45/2351',
                                                               'text': 'Joe '
                                                                       'Marks'},
                                                              {'@pid': '08/648',
                                                               'text': 'J. '
                                                                       'Thomas '
                                                                       'Ngo'}]},
                                       'doi': '10.1145/225294.225295',
                                       'ee': 'https://doi.org/10.1145/225294.225295',
                                       'key': 'journals/tog/AuslanderFPCHRSMN95',
                                       'number': '4',
                                       'pages': '311-336',
                                       'title': 'Further Experience with '
                                                'Controller-Based Automatic '
                                                'Motion Synthesis for '
                                                'Articulated Figures.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/tog/AuslanderFPCHRSMN95',
                                       'venue': 'ACM Trans. Graph.',
                                       'volume': '14',
                                       'year': '1995'},
                              'url': 'URL#5337977'},
                             {'@id': '5345155',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '06/5295',
                                                               'text': 'Derek '
                                                                       'Chiou'},
                                                              {'@pid': '12/4504',
                                                               'text': 'Boon '
                                                                       'Seong '
                                                                       'Ang'},
                                                              {'@pid': '46/5775',
                                                               'text': 'Robert '
                                                                       'Greiner'},
                                                              {'@pid': 'a/Arvind',
                                                               'text': 'Arvind'},
                                                              {'@pid': '33/3960',
                                                               'text': 'James '
                                                                       'C. '
                                                                       'Hoe'},
                                                              {'@pid': '05/1093',
                                                               'text': 'Michael '
                                                                       'J. '
                                                                       'Beckerle'},
                                                              {'@pid': '06/5034',
                                                               'text': 'James '
                                                                       'E. '
                                                                       'Hicks'},
                                                              {'@pid': '63/5557',
                                                               'text': 'G. '
                                                                       'Andrew '
                                                                       'Boughton'}]},
                                       'doi': '10.1007/BFB0020458',
                                       'ee': 'https://doi.org/10.1007/BFb0020458',
                                       'key': 'conf/europar/ChiouAGAHBHB95',
                                       'pages': '101-116',
                                       'title': 'START-NG - Delivering '
                                                'Seamless Parallel Computing.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/europar/ChiouAGAHBHB95',
                                       'venue': 'Euro-Par',
                                       'year': '1995'},
                              'url': 'URL#5345155'},
                             {'@id': '5350254',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '09/5385',
                                                               'text': 'Andrew '
                                                                       'Horner'},
                                                              {'@pid': '82/3605',
                                                               'text': 'Ngai-Man '
                                                                       'Cheung'},
                                                              {'@pid': '96/769',
                                                               'text': 'James '
                                                                       'W. '
                                                                       'Beauchamp'}]},
                                       'ee': 'http://hdl.handle.net/2027/spo.bbp2372.1995.062',
                                       'key': 'conf/icmc/HornerCB95',
                                       'title': 'Genetic Algorithm '
                                                'Optimization of Additive '
                                                'Synthesis Envelope '
                                                'Breakpoints and Group '
                                                'Synthesis Parameters.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icmc/HornerCB95',
                                       'venue': 'ICMC',
                                       'year': '1995'},
                              'url': 'URL#5350254'},
                             {'@id': '5351953',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '83/6453',
                                                               'text': 'Peggy '
                                                                       'Israel '
                                                                       'Doerschuk'},
                                                              {'@pid': '161/6330',
                                                               'text': 'Vinh '
                                                                       'D. '
                                                                       'Nguyen'},
                                                              {'@pid': '161/6315',
                                                               'text': 'Andrew '
                                                                       'L. '
                                                                       'Li'}]},
                                       'doi': '10.1109/TAI.1995.479614',
                                       'ee': 'https://doi.org/10.1109/TAI.1995.479614',
                                       'key': 'conf/ictai/DoerschukNL95',
                                       'pages': '278-281',
                                       'title': 'Neural network control of a '
                                                'three-link leg.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/ictai/DoerschukNL95',
                                       'venue': 'ICTAI',
                                       'year': '1995'},
                              'url': 'URL#5351953'},
                             {'@id': '5358472',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '06/6439',
                                                               'text': 'Anh '
                                                                       'Nguyen-Tuong'},
                                                              {'@pid': 'g/AndrewSGrimshaw',
                                                               'text': 'Andrew '
                                                                       'S. '
                                                                       'Grimshaw'},
                                                              {'@pid': '28/663',
                                                               'text': 'John '
                                                                       'F. '
                                                                       'Karpovich'}]},
                                       'doi': '10.1007/BFB0023066',
                                       'ee': 'https://doi.org/10.1007/BFb0023066',
                                       'key': 'conf/psls/Nguyen-TuongGK95',
                                       'pages': '250-265',
                                       'title': 'Fault Tolerance via '
                                                'Replication in Coarse Grain '
                                                'Data-Flow.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/psls/Nguyen-TuongGK95',
                                       'venue': 'PSLS',
                                       'year': '1995'},
                              'url': 'URL#5358472'},
                             {'@id': '5460472',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '64/6364',
                                                               'text': 'Thang '
                                                                       'Nguyen '
                                                                       'Bui'},
                                                              {'@pid': '81/4365',
                                                               'text': 'Andrew '
                                                                       'Peck'}]},
                                       'doi': '10.1137/0221016',
                                       'ee': 'https://doi.org/10.1137/0221016',
                                       'key': 'journals/siamcomp/BuiP92',
                                       'number': '2',
                                       'pages': '203-215',
                                       'title': 'Partitioning Planar Graphs.',
                                       'type': 'Journal Articles',
                                       'url': 'https://dblp.org/rec/journals/siamcomp/BuiP92',
                                       'venue': 'SIAM J. Comput.',
                                       'volume': '21',
                                       'year': '1992'},
                              'url': 'URL#5460472'},
                             {'@id': '5472713',
                              '@score': '2',
                              'info': {'authors': {'author': [{'@pid': '14/2803',
                                                               'text': 'Brian '
                                                                       'H. '
                                                                       'Wilcox'},
                                                              {'@pid': 'm/LarryMatthies',
                                                               'text': 'Larry '
                                                                       'H. '
                                                                       'Matthies'},
                                                              {'@pid': '53/2932',
                                                               'text': 'Donald '
                                                                       'B. '
                                                                       'Gennery'},
                                                              {'@pid': '127/8428',
                                                               'text': 'Brian '
                                                                       'K. '
                                                                       'Cooper'},
                                                              {'@pid': '50/692',
                                                               'text': 'Tam '
                                                                       'Nguyen'},
                                                              {'@pid': '40/6691',
                                                               'text': 'Todd '
                                                                       'Litwin'},
                                                              {'@pid': '32/126',
                                                               'text': 'Andrew '
                                                                       'Mishkin'},
                                                              {'@pid': '139/2878',
                                                               'text': 'Henry '
                                                                       'W. '
                                                                       'Stone'}]},
                                       'doi': '10.1109/ROBOT.1992.220266',
                                       'ee': 'https://doi.org/10.1109/ROBOT.1992.220266',
                                       'key': 'conf/icra/WilcoxMGCNLMS92',
                                       'pages': '175-180',
                                       'title': 'Robotic vehicles for '
                                                'planetary exploration.',
                                       'type': 'Conference and Workshop Papers',
                                       'url': 'https://dblp.org/rec/conf/icra/WilcoxMGCNLMS92',
                                       'venue': 'ICRA',
                                       'year': '1992'},
                              'url': 'URL#5472713'}]},
            'query': 'andrew* ng',
            'status': {'@code': '200', 'text': 'OK'},
            'time': {'@unit': 'msecs', 'text': '138.40'}}}
In [30]:
# Navigating to a sub-part of the document
pprint.pprint(dblp_data_instance['result']['hits']['hit']) 
[{'@id': '195628',
  '@score': '9',
  'info': {'authors': {'author': [{'@pid': '263/3159', 'text': 'Akshay Smit'},
                                  {'@pid': '257/3291', 'text': 'Damir Vrabac'},
                                  {'@pid': '140/9459', 'text': 'Yujie He'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '154/3831',
                                   'text': 'Andrew L. Beam'},
                                  {'@pid': '161/3744',
                                   'text': 'Pranav Rajpurkar'}]},
           'ee': 'https://arxiv.org/abs/2103.14339',
           'key': 'journals/corr/abs-2103-14339',
           'title': 'MedSelect - Selective Labeling for Medical Image '
                    'Classification Combining Meta-Learning with Deep '
                    'Reinforcement Learning.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-2103-14339',
           'venue': 'CoRR',
           'volume': 'abs/2103.14339',
           'year': '2021'},
  'url': 'URL#195628'},
 {'@id': '4551466',
  '@score': '9',
  'info': {'authors': {'author': [{'@pid': '65/2021',
                                   'text': 'J. Andrew Bagnell'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'https://proceedings.neurips.cc/paper/2005/hash/02180771a9b609a26dcea07f272e141f-Abstract.html',
           'key': 'conf/nips/BagnellN05',
           'pages': '91-98',
           'title': 'On Local Rewards and Scaling Distributed Reinforcement '
                    'Learning.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/nips/BagnellN05',
           'venue': 'NIPS',
           'year': '2005'},
  'url': 'URL#4551466'},
 {'@id': '4804514',
  '@score': '9',
  'info': {'authors': {'author': [{'@pid': '65/2021',
                                   'text': 'J. Andrew Bagnell'},
                                  {'@pid': 's/SMKakade',
                                   'text': 'Sham M. Kakade'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '38/247',
                                   'text': 'Jeff G. Schneider'}]},
           'ee': 'https://proceedings.neurips.cc/paper/2003/hash/3837a451cd0abc5ce4069304c5442c87-Abstract.html',
           'key': 'conf/nips/BagnellKNS03',
           'pages': '831-838',
           'title': 'Policy Search by Dynamic Programming.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/nips/BagnellKNS03',
           'venue': 'NIPS',
           'year': '2003'},
  'url': 'URL#4804514'},
 {'@id': '1010771',
  '@score': '8',
  'info': {'authors': {'author': [{'@pid': '37/10718', 'text': 'David Rolnick'},
                                  {'@pid': '198/0500',
                                   'text': 'Priya L. Donti'},
                                  {'@pid': '243/3048', 'text': 'Lynn H. Kaack'},
                                  {'@pid': '243/2652',
                                   'text': 'Kelly Kochanski'},
                                  {'@pid': '59/6239',
                                   'text': 'Alexandre Lacoste'},
                                  {'@pid': '20/10451', 'text': 'Kris Sankaran'},
                                  {'@pid': '198/1478',
                                   'text': 'Andrew Slavin Ross'},
                                  {'@pid': '243/3185',
                                   'text': 'Nikola Milojevic-Dupont'},
                                  {'@pid': '145/7732',
                                   'text': 'Natasha Jaques'},
                                  {'@pid': '243/3003',
                                   'text': 'Anna Waldman-Brown'},
                                  {'@pid': '162/5449',
                                   'text': 'Alexandra Luccioni'},
                                  {'@pid': '182/2285', 'text': 'Tegan Maharaj'},
                                  {'@pid': '243/2678',
                                   'text': 'Evan D. Sherwin'},
                                  {'@pid': '241/5086',
                                   'text': 'S. Karthik Mukkavilli'},
                                  {'@pid': '93/2724',
                                   'text': 'Konrad P. Körding'},
                                  {'@pid': 'g/CarlaPGomes',
                                   'text': 'Carla P. Gomes'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '86/10732',
                                   'text': 'Demis Hassabis'},
                                  {'@pid': '27/1418', 'text': 'John C. Platt'},
                                  {'@pid': '33/68', 'text': 'Felix Creutzig'},
                                  {'@pid': 'c/JenniferTChayes',
                                   'text': 'Jennifer T. Chayes'},
                                  {'@pid': '56/953', 'text': 'Yoshua Bengio'}]},
           'ee': 'http://arxiv.org/abs/1906.05433',
           'key': 'journals/corr/abs-1906-05433',
           'title': 'Tackling Climate Change with Machine Learning.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-1906-05433',
           'venue': 'CoRR',
           'volume': 'abs/1906.05433',
           'year': '2019'},
  'url': 'URL#1010771'},
 {'@id': '1438500',
  '@score': '8',
  'info': {'authors': {'author': [{'@pid': '97/1011', 'text': 'Andrew L. Maas'},
                                  {'@pid': '59/9474-3', 'text': 'Peng Qi 0003'},
                                  {'@pid': '133/2394', 'text': 'Ziang Xie'},
                                  {'@pid': '147/5262',
                                   'text': 'Awni Y. Hannun'},
                                  {'@pid': '147/4826',
                                   'text': 'Christopher T. Lengerich'},
                                  {'@pid': '31/985', 'text': 'Daniel Jurafsky'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1016/J.CSL.2016.06.007',
           'ee': 'https://doi.org/10.1016/j.csl.2016.06.007',
           'key': 'journals/csl/MaasQXHLJN17',
           'pages': '195-213',
           'title': 'Building DNN acoustic models for large vocabulary speech '
                    'recognition.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/csl/MaasQXHLJN17',
           'venue': 'Comput. Speech Lang.',
           'volume': '41',
           'year': '2017'},
  'url': 'URL#1438500'},
 {'@id': '1620032',
  '@score': '8',
  'info': {'authors': {'author': [{'@pid': '78/10697',
                                   'text': 'Sercan Ömer Arik'},
                                  {'@pid': '173/5380',
                                   'text': 'Mike Chrzanowski'},
                                  {'@pid': '60/5515', 'text': 'Adam Coates'},
                                  {'@pid': '06/1767',
                                   'text': 'Gregory Frederick Diamos'},
                                  {'@pid': '195/5730',
                                   'text': 'Andrew Gibiansky'},
                                  {'@pid': '73/1700', 'text': 'Yongguo Kang'},
                                  {'@pid': '82/1763', 'text': 'Xian Li'},
                                  {'@pid': '70/4606', 'text': 'John Miller'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '164/5795',
                                   'text': 'Jonathan Raiman'},
                                  {'@pid': '147/1220',
                                   'text': 'Shubho Sengupta'},
                                  {'@pid': '53/9742',
                                   'text': 'Mohammad Shoeybi'}]},
           'ee': 'http://proceedings.mlr.press/v70/arik17a.html',
           'key': 'conf/icml/ArikCCDGKLMNRSS17',
           'pages': '195-204',
           'title': 'Deep Voice - Real-time Neural Text-to-Speech.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icml/ArikCCDGKLMNRSS17',
           'venue': 'ICML',
           'year': '2017'},
  'url': 'URL#1620032'},
 {'@id': '2283033',
  '@score': '8',
  'info': {'authors': {'author': [{'@pid': '97/1011', 'text': 'Andrew L. Maas'},
                                  {'@pid': '133/2394', 'text': 'Ziang Xie'},
                                  {'@pid': '31/985', 'text': 'Dan Jurafsky'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.3115/V1/N15-1038',
           'ee': 'https://doi.org/10.3115/v1/n15-1038',
           'key': 'conf/naacl/MaasXJN15',
           'pages': '345-354',
           'title': 'Lexicon-Free Conversational Speech Recognition with '
                    'Neural Networks.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/naacl/MaasXJN15',
           'venue': 'HLT-NAACL',
           'year': '2015'},
  'url': 'URL#2283033'},
 {'@id': '2453204',
  '@score': '8',
  'info': {'authors': {'author': [{'@pid': '97/1011', 'text': 'Andrew L. Maas'},
                                  {'@pid': '192/5217', 'text': 'Chris Heather'},
                                  {'@pid': '58/2809', 'text': 'Chuong B. Do'},
                                  {'@pid': '04/2083', 'text': 'Relly Brandman'},
                                  {'@pid': 'k/DaphneKoller',
                                   'text': 'Daphne Koller'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1145/2591684',
           'ee': 'https://doi.org/10.1145/2591684',
           'key': 'journals/ubiquity/MaasHDBKN14',
           'number': 'May',
           'pages': '2:1-2:11',
           'title': 'Offering Verified Credentials in Massive Open Online '
                    'Courses - MOOCs and technology to advance learning and '
                    'learning research (Ubiquity symposium).',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/ubiquity/MaasHDBKN14',
           'venue': 'Ubiquity',
           'volume': '2014',
           'year': '2014'},
  'url': 'URL#2453204'},
 {'@id': '2624780',
  '@score': '8',
  'info': {'authors': {'author': [{'@pid': '97/1011', 'text': 'Andrew L. Maas'},
                                  {'@pid': '147/5262',
                                   'text': 'Awni Y. Hannun'},
                                  {'@pid': '31/985', 'text': 'Daniel Jurafsky'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'http://arxiv.org/abs/1408.2873',
           'key': 'journals/corr/MaasHJN14',
           'title': 'First-Pass Large Vocabulary Continuous Speech Recognition '
                    'using Bi-Directional Recurrent DNNs.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/MaasHJN14',
           'venue': 'CoRR',
           'volume': 'abs/1408.2873',
           'year': '2014'},
  'url': 'URL#2624780'},
 {'@id': '2624781',
  '@score': '8',
  'info': {'authors': {'author': [{'@pid': '97/1011', 'text': 'Andrew L. Maas'},
                                  {'@pid': '147/5262',
                                   'text': 'Awni Y. Hannun'},
                                  {'@pid': '147/4826',
                                   'text': 'Christopher T. Lengerich'},
                                  {'@pid': '59/9474-3', 'text': 'Peng Qi 0003'},
                                  {'@pid': '31/985', 'text': 'Daniel Jurafsky'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'http://arxiv.org/abs/1406.7806',
           'key': 'journals/corr/MaasHLQJN14',
           'title': 'Increasing Deep Neural Network Acoustic Model Size for '
                    'Large Vocabulary Continuous Speech Recognition.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/MaasHLQJN14',
           'venue': 'CoRR',
           'volume': 'abs/1406.7806',
           'year': '2014'},
  'url': 'URL#2624781'},
 {'@id': '3091948',
  '@score': '8',
  'info': {'authors': {'author': [{'@pid': '97/1011', 'text': 'Andrew L. Maas'},
                                  {'@pid': '29/6166', 'text': 'Quoc V. Le'},
                                  {'@pid': '124/9120',
                                   'text': 'Tyler M. O&apos;Neil'},
                                  {'@pid': '05/726', 'text': 'Oriol Vinyals'},
                                  {'@pid': '81/657', 'text': 'Patrick Nguyen'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'http://www.isca-speech.org/archive/interspeech_2012/i12_0022.html',
           'key': 'conf/interspeech/MaasLOVNN12',
           'pages': '22-25',
           'title': 'Recurrent Neural Networks for Noise Reduction in Robust '
                    'ASR.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/interspeech/MaasLOVNN12',
           'venue': 'INTERSPEECH',
           'year': '2012'},
  'url': 'URL#3091948'},
 {'@id': '3117153',
  '@score': '8',
  'info': {'authors': {'author': [{'@pid': 'd/JeffreyDean',
                                   'text': 'Jeffrey Dean'},
                                  {'@pid': '05/8414', 'text': 'Greg Corrado'},
                                  {'@pid': '99/10669', 'text': 'Rajat Monga'},
                                  {'@pid': 'c/KaiChen10',
                                   'text': 'Kai Chen 0010'},
                                  {'@pid': '23/2143', 'text': 'Matthieu Devin'},
                                  {'@pid': '29/6166', 'text': 'Quoc V. Le'},
                                  {'@pid': '64/8010', 'text': 'Mark Z. Mao'},
                                  {'@pid': '28/1732',
                                   'text': 'Marc&apos;Aurelio Ranzato'},
                                  {'@pid': '88/3071',
                                   'text': 'Andrew W. Senior'},
                                  {'@pid': '39/814', 'text': 'Paul A. Tucker'},
                                  {'@pid': '80/4136', 'text': 'Ke Yang'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'https://proceedings.neurips.cc/paper/2012/hash/6aca97005c68f1206823815f66102863-Abstract.html',
           'key': 'conf/nips/DeanCMCDLMRSTYN12',
           'pages': '1232-1240',
           'title': 'Large Scale Distributed Deep Networks.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/nips/DeanCMCDLMRSTYN12',
           'venue': 'NIPS',
           'year': '2012'},
  'url': 'URL#3117153'},
 {'@id': '3265108',
  '@score': '8',
  'info': {'authors': {'author': [{'@pid': '97/1011', 'text': 'Andrew L. Maas'},
                                  {'@pid': '93/9767',
                                   'text': 'Raymond E. Daly'},
                                  {'@pid': '47/9768', 'text': 'Peter T. Pham'},
                                  {'@pid': '41/3836', 'text': 'Dan Huang'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '13/2617',
                                   'text': 'Christopher Potts'}]},
           'ee': 'https://aclanthology.org/P11-1015/',
           'key': 'conf/acl/MaasDPHNP11',
           'pages': '142-150',
           'title': 'Learning Word Vectors for Sentiment Analysis.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/acl/MaasDPHNP11',
           'venue': 'ACL',
           'year': '2011'},
  'url': 'URL#3265108'},
 {'@id': '3331714',
  '@score': '8',
  'info': {'authors': {'author': [{'@pid': '39/6894', 'text': 'Andrew M. Saxe'},
                                  {'@pid': '10/10453', 'text': 'Pang Wei Koh'},
                                  {'@pid': '88/10451', 'text': 'Zhenghao Chen'},
                                  {'@pid': '04/10624', 'text': 'Maneesh Bhand'},
                                  {'@pid': '93/9962', 'text': 'Bipin Suresh'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'https://icml.cc/2011/papers/551_icmlpaper.pdf',
           'key': 'conf/icml/SaxeKCBSN11',
           'pages': '1089-1096',
           'title': 'On Random Weights and Unsupervised Feature Learning.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icml/SaxeKCBSN11',
           'venue': 'ICML',
           'year': '2011'},
  'url': 'URL#3331714'},
 {'@id': '3368416',
  '@score': '8',
  'info': {'authors': {'author': [{'@pid': '39/6894', 'text': 'Andrew M. Saxe'},
                                  {'@pid': '04/10624', 'text': 'Maneesh Bhand'},
                                  {'@pid': '19/11107', 'text': 'Ritvik Mudur'},
                                  {'@pid': '93/9962', 'text': 'Bipin Suresh'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'https://proceedings.neurips.cc/paper/2011/hash/e19347e1c3ca0c0b97de5fb3b690855a-Abstract.html',
           'key': 'conf/nips/SaxeBMSN11',
           'pages': '1971-1979',
           'title': 'Unsupervised learning models of primary cortical '
                    'receptive fields and receptive field plasticity.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/nips/SaxeBMSN11',
           'venue': 'NIPS',
           'year': '2011'},
  'url': 'URL#3368416'},
 {'@id': '3818550',
  '@score': '8',
  'info': {'authors': {'author': [{'@pid': '43/7940',
                                   'text': 'Ian J. Goodfellow'},
                                  {'@pid': '29/6166', 'text': 'Quoc V. Le'},
                                  {'@pid': '39/6894', 'text': 'Andrew M. Saxe'},
                                  {'@pid': '58/2562', 'text': 'Honglak Lee'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'https://proceedings.neurips.cc/paper/2009/hash/428fca9bc1921c25c5121f9da7815cde-Abstract.html',
           'key': 'conf/nips/GoodfellowLSLN09',
           'pages': '646-654',
           'title': 'Measuring Invariances in Deep Networks.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/nips/GoodfellowLSLN09',
           'venue': 'NIPS',
           'year': '2009'},
  'url': 'URL#3818550'},
 {'@id': '4804630',
  '@score': '8',
  'info': {'authors': {'author': [{'@pid': '64/4254', 'text': 'Rajat Raina'},
                                  {'@pid': '03/2011', 'text': 'Yirong Shen'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': 'm/AndrewMcCallum',
                                   'text': 'Andrew McCallum'}]},
           'ee': 'https://proceedings.neurips.cc/paper/2003/hash/b53477c2821c1bf0da5d40e57b870d35-Abstract.html',
           'key': 'conf/nips/RainaSNM03',
           'pages': '545-552',
           'title': 'Classification with Hybrid Generative/Discriminative '
                    'Models.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/nips/RainaSNM03',
           'venue': 'NIPS',
           'year': '2003'},
  'url': 'URL#4804630'},
 {'@id': '5175612',
  '@score': '8',
  'info': {'authors': {'author': [{'@pid': '36/4025', 'text': 'Scott Davies'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '95/2279-1',
                                   'text': 'Andrew W. Moore 0001'}]},
           'ee': 'http://www.aaai.org/Library/AAAI/1998/aaai98-107.php',
           'key': 'conf/aaai/DaviesNM98',
           'pages': '753-760',
           'title': 'Applying Online Search Techniques to Continuous-State '
                    'Reinforcement Learning.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/aaai/DaviesNM98',
           'venue': 'AAAI/IAAI',
           'year': '1998'},
  'url': 'URL#5175612'},
 {'@id': '5191066',
  '@score': '8',
  'info': {'authors': {'author': [{'@pid': 'm/AndrewMcCallum',
                                   'text': 'Andrew McCallum'},
                                  {'@pid': 'r/RonaldRosenfeld',
                                   'text': 'Ronald Rosenfeld'},
                                  {'@pid': '81/1460',
                                   'text': 'Tom M. Mitchell'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'key': 'conf/icml/McCallumRMN98',
           'pages': '359-367',
           'title': 'Improving Text Classification by Shrinkage in a Hierarchy '
                    'of Classes.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icml/McCallumRMN98',
           'venue': 'ICML',
           'year': '1998'},
  'url': 'URL#5191066'},
 {'@id': '54425',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '03/1125', 'text': 'Michael Ko'},
                                  {'@pid': '287/8997', 'text': 'Emma Chen'},
                                  {'@pid': '288/2673',
                                   'text': 'Ashwin Agrawal'},
                                  {'@pid': '161/3744',
                                   'text': 'Pranav Rajpurkar'},
                                  {'@pid': '177/9122', 'text': 'Anand Avati'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Yan-Tak Ng'},
                                  {'@pid': '32/6623', 'text': 'Sanjay Basu'},
                                  {'@pid': 's/NHShah',
                                   'text': 'Nigam H. Shah'}]},
           'doi': '10.1016/J.JBI.2021.103826',
           'ee': 'https://doi.org/10.1016/j.jbi.2021.103826',
           'key': 'journals/jbi/KoCARANBS21',
           'pages': '103826',
           'title': 'Improving hospital readmission prediction using '
                    'individualized utility analysis.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/jbi/KoCARANBS21',
           'venue': 'J. Biomed. Informatics',
           'volume': '119',
           'year': '2021'},
  'url': 'URL#54425'},
 {'@id': '68190',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '179/4758', 'text': 'Sharon Zhou'},
                                  {'@pid': '258/0993', 'text': 'Jiequan Zhang'},
                                  {'@pid': '74/10861', 'text': 'Hang Jiang'},
                                  {'@pid': '66/992', 'text': 'Torbjörn Lundh'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1088/2632-2153/ABD615',
           'ee': 'https://doi.org/10.1088/2632-2153/abd615',
           'key': 'journals/mlst/ZhouZJLN21',
           'number': '2',
           'pages': '25016',
           'title': 'Data augmentation with Mobius transformations.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/mlst/ZhouZJLN21',
           'venue': 'Mach. Learn. Sci. Technol.',
           'volume': '2',
           'year': '2021'},
  'url': 'URL#68190'},
 {'@id': '129446',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '188/9235', 'text': 'Saahil Jain'},
                                  {'@pid': '263/3159', 'text': 'Akshay Smit'},
                                  {'@pid': '286/1403',
                                   'text': 'Steven Q. H. Truong'},
                                  {'@pid': '286/1265',
                                   'text': 'Chanh D. T. Nguyen'},
                                  {'@pid': '286/0777',
                                   'text': 'Minh-Thanh Huynh'},
                                  {'@pid': '145/2276', 'text': 'Mudit Jain'},
                                  {'@pid': '286/1210',
                                   'text': 'Victoria A. Young'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '209/9732',
                                   'text': 'Matthew P. Lungren'},
                                  {'@pid': '161/3744',
                                   'text': 'Pranav Rajpurkar'}]},
           'doi': '10.1145/3450439.3451862',
           'ee': 'https://doi.org/10.1145/3450439.3451862',
           'key': 'conf/chil/JainSTNHJYNLR21',
           'pages': '105-115',
           'title': 'VisualCheXbert - addressing the discrepancy between '
                    'radiology report labels and image labels.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/chil/JainSTNHJYNLR21',
           'venue': 'CHIL',
           'year': '2021'},
  'url': 'URL#129446'},
 {'@id': '129447',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '283/5376', 'text': 'Alexander Ke'},
                                  {'@pid': '252/5341',
                                   'text': 'William Ellsworth'},
                                  {'@pid': '283/5478',
                                   'text': 'Oishi Banerjee'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '161/3744',
                                   'text': 'Pranav Rajpurkar'}]},
           'doi': '10.1145/3450439.3451867',
           'ee': 'https://doi.org/10.1145/3450439.3451867',
           'key': 'conf/chil/KeEBNR21',
           'pages': '116-124',
           'title': 'CheXtransfer - performance and parameter efficiency of '
                    'ImageNet models for chest X-Ray interpretation.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/chil/KeEBNR21',
           'venue': 'CHIL',
           'year': '2021'},
  'url': 'URL#129447'},
 {'@id': '129458',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '161/3744',
                                   'text': 'Pranav Rajpurkar'},
                                  {'@pid': '206/8409', 'text': 'Anirudh Joshi'},
                                  {'@pid': '259/3231', 'text': 'Anuj Pareek'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '209/9732',
                                   'text': 'Matthew P. Lungren'}]},
           'doi': '10.1145/3450439.3451876',
           'ee': 'https://doi.org/10.1145/3450439.3451876',
           'key': 'conf/chil/RajpurkarJPNL21',
           'pages': '125-132',
           'title': 'CheXternal - generalization of deep learning models for '
                    'chest X-ray interpretation to photos of chest X-rays and '
                    'external clinical settings.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/chil/RajpurkarJPNL21',
           'venue': 'CHIL',
           'year': '2021'},
  'url': 'URL#129458'},
 {'@id': '149975',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '179/4758', 'text': 'Sharon Zhou'},
                                  {'@pid': '217/2378', 'text': 'Eric Zelikman'},
                                  {'@pid': '215/9557', 'text': 'Fred Lu'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '24/6871',
                                   'text': 'Gunnar E. Carlsson'},
                                  {'@pid': '47/8135',
                                   'text': 'Stefano Ermon'}]},
           'ee': 'https://openreview.net/forum?id=djwS0m4Ft_A',
           'key': 'conf/iclr/ZhouZLNCE21',
           'title': 'Evaluating the Disentanglement of Deep Generative Models '
                    'through Manifold Topology.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/iclr/ZhouZLNCE21',
           'venue': 'ICLR',
           'year': '2021'},
  'url': 'URL#149975'},
 {'@id': '181191',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '283/5376', 'text': 'Alexander Ke'},
                                  {'@pid': '252/5341',
                                   'text': 'William Ellsworth'},
                                  {'@pid': '283/5478',
                                   'text': 'Oishi Banerjee'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '161/3744',
                                   'text': 'Pranav Rajpurkar'}]},
           'ee': 'https://arxiv.org/abs/2101.06871',
           'key': 'journals/corr/abs-2101-06871',
           'title': 'CheXtransfer - Performance and Parameter Efficiency of '
                    'ImageNet Models for Chest X-Ray Interpretation.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-2101-06871',
           'venue': 'CoRR',
           'volume': 'abs/2101.06871',
           'year': '2021'},
  'url': 'URL#181191'},
 {'@id': '187337',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '161/3744',
                                   'text': 'Pranav Rajpurkar'},
                                  {'@pid': '206/8409', 'text': 'Anirudh Joshi'},
                                  {'@pid': '259/3231', 'text': 'Anuj Pareek'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '209/9732',
                                   'text': 'Matthew P. Lungren'}]},
           'ee': 'https://arxiv.org/abs/2102.08660',
           'key': 'journals/corr/abs-2102-08660',
           'title': 'CheXternal - Generalization of Deep Learning Models for '
                    'Chest X-ray Interpretation to Photos of Chest X-rays and '
                    'External Clinical Settings.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-2102-08660',
           'venue': 'CoRR',
           'volume': 'abs/2102.08660',
           'year': '2021'},
  'url': 'URL#187337'},
 {'@id': '188144',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '136/5972', 'text': 'Soham Gadgil'},
                                  {'@pid': '286/1492', 'text': 'Mark Endo'},
                                  {'@pid': '261/9077', 'text': 'Emily Wen'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '161/3744',
                                   'text': 'Pranav Rajpurkar'}]},
           'ee': 'https://arxiv.org/abs/2102.10484',
           'key': 'journals/corr/abs-2102-10484',
           'title': 'CheXseg - Combining Expert Annotations with DNN-generated '
                    'Saliency Maps for X-ray Segmentation.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-2102-10484',
           'venue': 'CoRR',
           'volume': 'abs/2102.10484',
           'year': '2021'},
  'url': 'URL#188144'},
 {'@id': '188230',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '260/8693',
                                   'text': 'Yen Nhi Truong Vu'},
                                  {'@pid': '29/4046', 'text': 'Richard Wang'},
                                  {'@pid': '206/6746',
                                   'text': 'Niranjan Balachandar'},
                                  {'@pid': '18/5099', 'text': 'Can Liu'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '161/3744',
                                   'text': 'Pranav Rajpurkar'}]},
           'ee': 'https://arxiv.org/abs/2102.10663',
           'key': 'journals/corr/abs-2102-10663',
           'title': 'MedAug - Contrastive learning leveraging patient metadata '
                    'improves representations for chest X-ray interpretation.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-2102-10663',
           'venue': 'CoRR',
           'volume': 'abs/2102.10663',
           'year': '2021'},
  'url': 'URL#188230'},
 {'@id': '188556',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '188/9235', 'text': 'Saahil Jain'},
                                  {'@pid': '263/3159', 'text': 'Akshay Smit'},
                                  {'@pid': '286/1403',
                                   'text': 'Steven Q. H. Truong'},
                                  {'@pid': '286/1265',
                                   'text': 'Chanh D. T. Nguyen'},
                                  {'@pid': '286/0777',
                                   'text': 'Minh-Thanh Huynh'},
                                  {'@pid': '145/2276', 'text': 'Mudit Jain'},
                                  {'@pid': '286/1210',
                                   'text': 'Victoria A. Young'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '209/9732',
                                   'text': 'Matthew P. Lungren'},
                                  {'@pid': '161/3744',
                                   'text': 'Pranav Rajpurkar'}]},
           'ee': 'https://arxiv.org/abs/2102.11467',
           'key': 'journals/corr/abs-2102-11467',
           'title': 'VisualCheXbert - Addressing the Discrepancy Between '
                    'Radiology Report Labels and Image Labels.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-2102-11467',
           'venue': 'CoRR',
           'volume': 'abs/2102.11467',
           'year': '2021'},
  'url': 'URL#188556'},
 {'@id': '191518',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '287/4560', 'text': 'Siyu Shi'},
                                  {'@pid': '287/4579', 'text': 'Ishaan Malhi'},
                                  {'@pid': '208/8162', 'text': 'Kevin Tran'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '161/3744',
                                   'text': 'Pranav Rajpurkar'}]},
           'ee': 'https://arxiv.org/abs/2103.04590',
           'key': 'journals/corr/abs-2103-04590',
           'title': 'CheXseen - Unseen Disease Detection for Deep Learning '
                    'Interpretation of Chest X-rays.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-2103-04590',
           'venue': 'CoRR',
           'volume': 'abs/2103.04590',
           'year': '2021'},
  'url': 'URL#191518'},
 {'@id': '193696',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '287/8997', 'text': 'Emma Chen'},
                                  {'@pid': '288/0395', 'text': 'Andy Kim'},
                                  {'@pid': '270/3249',
                                   'text': 'Rayan Krishnan'},
                                  {'@pid': '204/7457', 'text': 'Jin Long'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '161/3744',
                                   'text': 'Pranav Rajpurkar'}]},
           'ee': 'https://arxiv.org/abs/2103.09957',
           'key': 'journals/corr/abs-2103-09957',
           'title': 'CheXbreak - Misclassification Identification for Deep '
                    'Learning Models Interpreting Chest X-rays.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-2103-09957',
           'venue': 'CoRR',
           'volume': 'abs/2103.09957',
           'year': '2021'},
  'url': 'URL#193696'},
 {'@id': '197267',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '188/9235', 'text': 'Saahil Jain'},
                                  {'@pid': '263/3159', 'text': 'Akshay Smit'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '161/3744',
                                   'text': 'Pranav Rajpurkar'}]},
           'ee': 'https://arxiv.org/abs/2104.00793',
           'key': 'journals/corr/abs-2104-00793',
           'title': 'Effect of Radiology Report Labeler Quality on Deep '
                    'Learning Models for Chest X-Ray Interpretation.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-2104-00793',
           'venue': 'CoRR',
           'volume': 'abs/2104.00793',
           'year': '2021'},
  'url': 'URL#197267'},
 {'@id': '204689',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '252/8283',
                                   'text': 'Tianyuan Huang'},
                                  {'@pid': '251/3146', 'text': 'Zhecheng Wang'},
                                  {'@pid': '75/1078', 'text': 'Hao Sheng'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '69/3555',
                                   'text': 'Ram Rajagopal'}]},
           'ee': 'https://arxiv.org/abs/2105.02489',
           'key': 'journals/corr/abs-2105-02489',
           'title': 'Learning Neighborhood Representation from Multi-Modal '
                    'Multi-Graph - Image, Text, Mobility Graph and Beyond.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-2105-02489',
           'venue': 'CoRR',
           'volume': 'abs/2105.02489',
           'year': '2021'},
  'url': 'URL#204689'},
 {'@id': '212293',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '294/7059', 'text': 'Bryan Gopal'},
                                  {'@pid': '294/7082', 'text': 'Ryan W. Han'},
                                  {'@pid': '258/5077',
                                   'text': 'Gautham Raghupathi'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '215/3596',
                                   'text': 'Geoffrey H. Tison'},
                                  {'@pid': '161/3744',
                                   'text': 'Pranav Rajpurkar'}]},
           'ee': 'https://arxiv.org/abs/2106.04452',
           'key': 'journals/corr/abs-2106-04452',
           'title': '3KG - Contrastive Learning of 12-Lead Electrocardiograms '
                    'using Physiologically-Inspired Augmentations.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-2106-04452',
           'venue': 'CoRR',
           'volume': 'abs/2106.04452',
           'year': '2021'},
  'url': 'URL#212293'},
 {'@id': '216893',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '188/9235', 'text': 'Saahil Jain'},
                                  {'@pid': '288/2673',
                                   'text': 'Ashwin Agrawal'},
                                  {'@pid': '295/9771',
                                   'text': 'Adriel Saporta'},
                                  {'@pid': '286/1403',
                                   'text': 'Steven Q. H. Truong'},
                                  {'@pid': '295/9701',
                                   'text': 'Du Nguyen Duong'},
                                  {'@pid': '295/9769', 'text': 'Tan Bui'},
                                  {'@pid': '97/3995', 'text': 'Pierre Chambon'},
                                  {'@pid': '139/5876-4',
                                   'text': 'Yuhao Zhang 0004'},
                                  {'@pid': '209/9732',
                                   'text': 'Matthew P. Lungren'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '12/1751',
                                   'text': 'Curtis P. Langlotz'},
                                  {'@pid': '161/3744',
                                   'text': 'Pranav Rajpurkar'}]},
           'ee': 'https://arxiv.org/abs/2106.14463',
           'key': 'journals/corr/abs-2106-14463',
           'title': 'RadGraph - Extracting Clinical Entities and Relations '
                    'from Radiology Reports.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-2106-14463',
           'venue': 'CoRR',
           'volume': 'abs/2106.14463',
           'year': '2021'},
  'url': 'URL#216893'},
 {'@id': '224414',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '298/7866', 'text': 'Cécile Logé'},
                                  {'@pid': '298/7433', 'text': 'Emily Ross'},
                                  {'@pid': '298/8182',
                                   'text': 'David Yaw Amoah Dadey'},
                                  {'@pid': '188/9235', 'text': 'Saahil Jain'},
                                  {'@pid': '295/9771',
                                   'text': 'Adriel Saporta'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '161/3744',
                                   'text': 'Pranav Rajpurkar'}]},
           'ee': 'https://arxiv.org/abs/2108.01764',
           'key': 'journals/corr/abs-2108-01764',
           'title': 'Q-Pain - A Question Answering Dataset to Measure Social '
                    'Bias in Pain Management.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-2108-01764',
           'venue': 'CoRR',
           'volume': 'abs/2108.01764',
           'year': '2021'},
  'url': 'URL#224414'},
 {'@id': '439036',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '239/8558', 'text': 'Mang Tik Chiu'},
                                  {'@pid': '256/1005', 'text': 'Xingqian Xu'},
                                  {'@pid': '78/2022', 'text': 'Kai Wang'},
                                  {'@pid': '176/8329',
                                   'text': 'Jennifer A. Hobbs'},
                                  {'@pid': '38/4506',
                                   'text': 'Naira Hovakimyan'},
                                  {'@pid': 'h/ThomasSHuang',
                                   'text': 'Thomas S. Huang'},
                                  {'@pid': '176/5516', 'text': 'Honghui Shi'},
                                  {'@pid': '118/5394', 'text': 'Yunchao Wei'},
                                  {'@pid': '185/9199', 'text': 'Zilong Huang'},
                                  {'@pid': '79/9775',
                                   'text': 'Alexander G. Schwing'},
                                  {'@pid': '71/4954', 'text': 'Robert Brunner'},
                                  {'@pid': '256/1073', 'text': 'Ivan Dozier'},
                                  {'@pid': '263/7357', 'text': 'Wyatt Dozier'},
                                  {'@pid': '263/6846',
                                   'text': 'Karen Ghandilyan'},
                                  {'@pid': '23/794', 'text': 'David Wilson'},
                                  {'@pid': '263/7369',
                                   'text': 'Hyunseong Park'},
                                  {'@pid': '11/9267', 'text': 'Jun Hee Kim'},
                                  {'@pid': '09/623', 'text': 'Sungho Kim'},
                                  {'@pid': '26/1065', 'text': 'Qinghui Liu'},
                                  {'@pid': '191/9382',
                                   'text': 'Michael C. Kampffmeyer'},
                                  {'@pid': '45/5813', 'text': 'Robert Jenssen'},
                                  {'@pid': '52/929',
                                   'text': 'Arnt-Børre Salberg'},
                                  {'@pid': '152/3081',
                                   'text': 'Alexandre Barbosa'},
                                  {'@pid': '205/0847',
                                   'text': 'Rodrigo G. Trevisan'},
                                  {'@pid': '120/3602', 'text': 'Bingchen Zhao'},
                                  {'@pid': '263/6962', 'text': 'Shaozuo Yu'},
                                  {'@pid': '74/1686', 'text': 'Siwei Yang'},
                                  {'@pid': '70/4828', 'text': 'Yin Wang'},
                                  {'@pid': '75/1078', 'text': 'Hao Sheng'},
                                  {'@pid': '05/3054', 'text': 'Xiao Chen'},
                                  {'@pid': '209/9853', 'text': 'Jingyi Su'},
                                  {'@pid': '69/3555', 'text': 'Ram Rajagopal'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '251/1200',
                                   'text': 'Van Thong Huynh'},
                                  {'@pid': '15/5759', 'text': 'Soo-Hyung Kim'},
                                  {'@pid': '35/11117', 'text': 'In Seop Na'},
                                  {'@pid': '200/0516', 'text': 'Ujjwal Baid'},
                                  {'@pid': '263/7046',
                                   'text': 'Shubham Innani'},
                                  {'@pid': '255/1539',
                                   'text': 'Prasad Dutande'},
                                  {'@pid': '219/9851', 'text': 'Bhakti Baheti'},
                                  {'@pid': '39/7796',
                                   'text': 'Sanjay N. Talbar'},
                                  {'@pid': '58/6906', 'text': 'Jianyu Tang'}]},
           'doi': '10.1109/CVPRW50498.2020.00032',
           'ee': 'https://doi.org/10.1109/CVPRW50498.2020.00032',
           'key': 'conf/cvpr/ChiuXWHHHSWHSBD20',
           'pages': '212-218',
           'title': 'The 1st Agriculture-Vision Challenge - Methods and '
                    'Results.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/cvpr/ChiuXWHHHSWHSBD20',
           'venue': 'CVPR Workshops',
           'year': '2020'},
  'url': 'URL#439036'},
 {'@id': '440116',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '75/1078', 'text': 'Hao Sheng'},
                                  {'@pid': '05/3054', 'text': 'Xiao Chen'},
                                  {'@pid': '209/9853', 'text': 'Jingyi Su'},
                                  {'@pid': '69/3555', 'text': 'Ram Rajagopal'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1109/CVPRW50498.2020.00038',
           'ee': 'https://doi.org/10.1109/CVPRW50498.2020.00038',
           'key': 'conf/cvpr/ShengCSRN20',
           'pages': '267-276',
           'title': 'Effective Data Fusion with Generalized Vegetation Index - '
                    'Evidence from Land Cover Segmentation in Agriculture.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/cvpr/ShengCSRN20',
           'venue': 'CVPR Workshops',
           'year': '2020'},
  'url': 'URL#440116'},
 {'@id': '452196',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '263/3159', 'text': 'Akshay Smit'},
                                  {'@pid': '188/9235', 'text': 'Saahil Jain'},
                                  {'@pid': '161/3744',
                                   'text': 'Pranav Rajpurkar'},
                                  {'@pid': '259/3231', 'text': 'Anuj Pareek'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '209/9732',
                                   'text': 'Matthew P. Lungren'}]},
           'doi': '10.18653/V1/2020.EMNLP-MAIN.117',
           'ee': 'https://doi.org/10.18653/v1/2020.emnlp-main.117',
           'key': 'conf/emnlp/SmitJRPNL20',
           'pages': '1500-1519',
           'title': 'Combining Automatic Labelers and Expert Annotations for '
                    'Accurate Radiology Report Labeling Using BERT.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/emnlp/SmitJRPNL20',
           'venue': 'EMNLP',
           'year': '2020'},
  'url': 'URL#452196'},
 {'@id': '486012',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '209/9775', 'text': 'Tony Duan'},
                                  {'@pid': '280/1697', 'text': 'Avati Anand'},
                                  {'@pid': '225/6343', 'text': 'Daisy Yi Ding'},
                                  {'@pid': '280/1620', 'text': 'Khanh K. Thai'},
                                  {'@pid': '32/6623', 'text': 'Sanjay Basu'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '199/4820',
                                   'text': 'Alejandro Schuler'}]},
           'ee': 'http://proceedings.mlr.press/v119/duan20a.html',
           'key': 'conf/icml/DuanADTBNS20',
           'pages': '2690-2700',
           'title': 'NGBoost - Natural Gradient Boosting for Probabilistic '
                    'Prediction.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icml/DuanADTBNS20',
           'venue': 'ICML',
           'year': '2020'},
  'url': 'URL#486012'},
 {'@id': '573378',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '179/4758', 'text': 'Sharon Zhou'},
                                  {'@pid': '258/0993', 'text': 'Jiequan Zhang'},
                                  {'@pid': '74/10861', 'text': 'Hang Jiang'},
                                  {'@pid': '66/992', 'text': 'Torbjörn Lundh'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'https://arxiv.org/abs/2002.02917',
           'key': 'journals/corr/abs-2002-02917',
           'title': 'Data augmentation with Möbius transformations.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-2002-02917',
           'venue': 'CoRR',
           'volume': 'abs/2002.02917',
           'year': '2020'},
  'url': 'URL#573378'},
 {'@id': '576908',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '161/3744',
                                   'text': 'Pranav Rajpurkar'},
                                  {'@pid': '206/8409', 'text': 'Anirudh Joshi'},
                                  {'@pid': '259/3231', 'text': 'Anuj Pareek'},
                                  {'@pid': '259/3229', 'text': 'Phil Chen'},
                                  {'@pid': '118/6084',
                                   'text': 'Amirhossein Kiani'},
                                  {'@pid': '209/9633', 'text': 'Jeremy Irvin'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '209/9732',
                                   'text': 'Matthew P. Lungren'}]},
           'ee': 'https://arxiv.org/abs/2002.11379',
           'key': 'journals/corr/abs-2002-11379',
           'title': 'CheXpedition - Investigating Generalization Challenges '
                    'for Translation of Chest X-Ray Algorithms to the Clinical '
                    'Setting.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-2002-11379',
           'venue': 'CoRR',
           'volume': 'abs/2002.11379',
           'year': '2020'},
  'url': 'URL#576908'},
 {'@id': '586678',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '263/3159', 'text': 'Akshay Smit'},
                                  {'@pid': '188/9235', 'text': 'Saahil Jain'},
                                  {'@pid': '161/3744',
                                   'text': 'Pranav Rajpurkar'},
                                  {'@pid': '259/3231', 'text': 'Anuj Pareek'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '209/9732',
                                   'text': 'Matthew P. Lungren'}]},
           'ee': 'https://arxiv.org/abs/2004.09167',
           'key': 'journals/corr/abs-2004-09167',
           'title': 'CheXbert - Combining Automatic Labelers and Expert '
                    'Annotations for Accurate Radiology Report Labeling Using '
                    'BERT.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-2004-09167',
           'venue': 'CoRR',
           'volume': 'abs/2004.09167',
           'year': '2020'},
  'url': 'URL#586678'},
 {'@id': '586908',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '239/8558', 'text': 'Mang Tik Chiu'},
                                  {'@pid': '256/1005', 'text': 'Xingqian Xu'},
                                  {'@pid': '78/2022', 'text': 'Kai Wang'},
                                  {'@pid': '176/8329',
                                   'text': 'Jennifer A. Hobbs'},
                                  {'@pid': '38/4506',
                                   'text': 'Naira Hovakimyan'},
                                  {'@pid': 'h/ThomasSHuang',
                                   'text': 'Thomas S. Huang'},
                                  {'@pid': '176/5516', 'text': 'Honghui Shi'},
                                  {'@pid': '118/5394', 'text': 'Yunchao Wei'},
                                  {'@pid': '185/9199', 'text': 'Zilong Huang'},
                                  {'@pid': '79/9775',
                                   'text': 'Alexander G. Schwing'},
                                  {'@pid': '71/4954', 'text': 'Robert Brunner'},
                                  {'@pid': '256/1073', 'text': 'Ivan Dozier'},
                                  {'@pid': '263/7357', 'text': 'Wyatt Dozier'},
                                  {'@pid': '263/6846',
                                   'text': 'Karen Ghandilyan'},
                                  {'@pid': '23/794', 'text': 'David Wilson'},
                                  {'@pid': '263/7369',
                                   'text': 'Hyunseong Park'},
                                  {'@pid': '11/9267', 'text': 'Jun Hee Kim'},
                                  {'@pid': '09/623', 'text': 'Sungho Kim'},
                                  {'@pid': '26/1065', 'text': 'Qinghui Liu'},
                                  {'@pid': '191/9382',
                                   'text': 'Michael C. Kampffmeyer'},
                                  {'@pid': '45/5813', 'text': 'Robert Jenssen'},
                                  {'@pid': '52/929',
                                   'text': 'Arnt-Børre Salberg'},
                                  {'@pid': '152/3081',
                                   'text': 'Alexandre Barbosa'},
                                  {'@pid': '205/0847',
                                   'text': 'Rodrigo G. Trevisan'},
                                  {'@pid': '120/3602', 'text': 'Bingchen Zhao'},
                                  {'@pid': '263/6962', 'text': 'Shaozuo Yu'},
                                  {'@pid': '74/1686', 'text': 'Siwei Yang'},
                                  {'@pid': '70/4828', 'text': 'Yin Wang'},
                                  {'@pid': '75/1078', 'text': 'Hao Sheng'},
                                  {'@pid': '05/3054', 'text': 'Xiao Chen'},
                                  {'@pid': '209/9853', 'text': 'Jingyi Su'},
                                  {'@pid': '69/3555', 'text': 'Ram Rajagopal'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '251/1200',
                                   'text': 'Van Thong Huynh'},
                                  {'@pid': '15/5759', 'text': 'Soo-Hyung Kim'},
                                  {'@pid': '35/11117', 'text': 'In Seop Na'},
                                  {'@pid': '200/0516', 'text': 'Ujjwal Baid'},
                                  {'@pid': '263/7046',
                                   'text': 'Shubham Innani'},
                                  {'@pid': '255/1539',
                                   'text': 'Prasad Dutande'},
                                  {'@pid': '219/9851', 'text': 'Bhakti Baheti'},
                                  {'@pid': '39/7796',
                                   'text': 'Sanjay N. Talbar'},
                                  {'@pid': '58/6906', 'text': 'Jianyu Tang'}]},
           'ee': 'https://arxiv.org/abs/2004.09754',
           'key': 'journals/corr/abs-2004-09754',
           'title': 'The 1st Agriculture-Vision Challenge - Methods and '
                    'Results.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-2004-09754',
           'venue': 'CoRR',
           'volume': 'abs/2004.09754',
           'year': '2020'},
  'url': 'URL#586908'},
 {'@id': '590522',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '75/1078', 'text': 'Hao Sheng'},
                                  {'@pid': '05/3054', 'text': 'Xiao Chen'},
                                  {'@pid': '209/9853', 'text': 'Jingyi Su'},
                                  {'@pid': '69/3555', 'text': 'Ram Rajagopal'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'https://arxiv.org/abs/2005.03743',
           'key': 'journals/corr/abs-2005-03743',
           'title': 'Effective Data Fusion with Generalized Vegetation Index - '
                    'Evidence from Land Cover Segmentation in Agriculture.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-2005-03743',
           'venue': 'CoRR',
           'volume': 'abs/2005.03743',
           'year': '2020'},
  'url': 'URL#590522'},
 {'@id': '596146',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '179/4758', 'text': 'Sharon Zhou'},
                                  {'@pid': '217/2378', 'text': 'Eric Zelikman'},
                                  {'@pid': '215/9557', 'text': 'Fred Lu'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '47/8135',
                                   'text': 'Stefano Ermon'}]},
           'ee': 'https://arxiv.org/abs/2006.03680',
           'key': 'journals/corr/abs-2006-03680',
           'title': 'Evaluating the Disentanglement of Deep Generative Models '
                    'through Manifold Topology.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-2006-03680',
           'venue': 'CoRR',
           'volume': 'abs/2006.03680',
           'year': '2020'},
  'url': 'URL#596146'},
 {'@id': '604337',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '270/3658',
                                   'text': 'Nick A. Phillips'},
                                  {'@pid': '161/3744',
                                   'text': 'Pranav Rajpurkar'},
                                  {'@pid': '225/5451', 'text': 'Mark Sabini'},
                                  {'@pid': '270/3249',
                                   'text': 'Rayan Krishnan'},
                                  {'@pid': '179/4758', 'text': 'Sharon Zhou'},
                                  {'@pid': '259/3231', 'text': 'Anuj Pareek'},
                                  {'@pid': '270/3406',
                                   'text': 'Nguyet Minh Phu'},
                                  {'@pid': '50/8382', 'text': 'Chris Wang'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '209/9732',
                                   'text': 'Matthew P. Lungren'}]},
           'ee': 'https://arxiv.org/abs/2007.06199',
           'key': 'journals/corr/abs-2007-06199',
           'title': 'CheXphoto - 10, 000+ Smartphone Photos and Synthetic '
                    'Photographic Transformations of Chest X-rays for '
                    'Benchmarking Deep Learning Robustness.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-2007-06199',
           'venue': 'CoRR',
           'volume': 'abs/2007.06199',
           'year': '2020'},
  'url': 'URL#604337'},
 {'@id': '616681',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '257/3291', 'text': 'Damir Vrabac'},
                                  {'@pid': '263/3159', 'text': 'Akshay Smit'},
                                  {'@pid': '274/6848',
                                   'text': 'Rebecca Rojansky'},
                                  {'@pid': '83/6930',
                                   'text': 'Yasodha Natkunam'},
                                  {'@pid': '274/7261',
                                   'text': 'Ranjana H. Advani'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '274/7073',
                                   'text': 'Sebastian Fernandez-Pol'},
                                  {'@pid': '161/3744',
                                   'text': 'Pranav Rajpurkar'}]},
           'ee': 'https://arxiv.org/abs/2009.08123',
           'key': 'journals/corr/abs-2009-08123',
           'title': 'DLBCL-Morph - Morphological features computed using deep '
                    'learning for an annotated digital DLBCL image set.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-2009-08123',
           'venue': 'CoRR',
           'volume': 'abs/2009.08123',
           'year': '2020'},
  'url': 'URL#616681'},
 {'@id': '621361',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '217/2378', 'text': 'Eric Zelikman'},
                                  {'@pid': '179/4758', 'text': 'Sharon Zhou'},
                                  {'@pid': '209/9633', 'text': 'Jeremy Irvin'},
                                  {'@pid': '276/1291',
                                   'text': 'Cooper Raterink'},
                                  {'@pid': '75/1078', 'text': 'Hao Sheng'},
                                  {'@pid': '143/7497', 'text': 'Jack Kelly'},
                                  {'@pid': '69/3555', 'text': 'Ram Rajagopal'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '276/0940', 'text': 'David Gagne'}]},
           'ee': 'https://arxiv.org/abs/2010.04715',
           'key': 'journals/corr/abs-2010-04715',
           'title': 'Short-Term Solar Irradiance Forecasting Using Calibrated '
                    'Probabilistic Models.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-2010-04715',
           'venue': 'CoRR',
           'volume': 'abs/2010.04715',
           'year': '2020'},
  'url': 'URL#621361'},
 {'@id': '621668',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '276/5671',
                                   'text': 'Hari Sowrirajan'},
                                  {'@pid': '79/6095', 'text': 'Jingbo Yang'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '161/3744',
                                   'text': 'Pranav Rajpurkar'}]},
           'ee': 'https://arxiv.org/abs/2010.05352',
           'key': 'journals/corr/abs-2010-05352',
           'title': 'MoCo Pretraining Improves Representation and '
                    'Transferability of Chest X-ray Models.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-2010-05352',
           'venue': 'CoRR',
           'volume': 'abs/2010.05352',
           'year': '2020'},
  'url': 'URL#621668'},
 {'@id': '626188',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '277/5525',
                                   'text': 'Viswesh Krishna'},
                                  {'@pid': '206/8409', 'text': 'Anirudh Joshi'},
                                  {'@pid': '277/5628',
                                   'text': 'Philip L. Bulterys'},
                                  {'@pid': '76/6653', 'text': 'Eric Yang'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '161/3744',
                                   'text': 'Pranav Rajpurkar'}]},
           'ee': 'https://arxiv.org/abs/2010.15269',
           'key': 'journals/corr/abs-2010-15269',
           'title': 'GloFlow - Global Image Alignment for Creation of Whole '
                    'Slide Images for Pathology from Video.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-2010-15269',
           'venue': 'CoRR',
           'volume': 'abs/2010.15269',
           'year': '2020'},
  'url': 'URL#626188'},
 {'@id': '629033',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '209/9633', 'text': 'Jeremy Irvin'},
                                  {'@pid': '75/1078', 'text': 'Hao Sheng'},
                                  {'@pid': '278/3129',
                                   'text': 'Neel Ramachandran'},
                                  {'@pid': '278/3293',
                                   'text': 'Sonja Johnson-Yu'},
                                  {'@pid': '179/4758', 'text': 'Sharon Zhou'},
                                  {'@pid': '278/2653', 'text': 'Kyle Story'},
                                  {'@pid': '278/2714',
                                   'text': 'Rose Rustowicz'},
                                  {'@pid': '278/3047',
                                   'text': 'Cooper Elsworth'},
                                  {'@pid': '278/2911', 'text': 'Kemen Austin'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'https://arxiv.org/abs/2011.05479',
           'key': 'journals/corr/abs-2011-05479',
           'title': 'ForestNet - Classifying Drivers of Deforestation in '
                    'Indonesia using Deep Learning on Satellite Imagery.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-2011-05479',
           'venue': 'CoRR',
           'volume': 'abs/2011.05479',
           'year': '2020'},
  'url': 'URL#629033'},
 {'@id': '629309',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '161/3744',
                                   'text': 'Pranav Rajpurkar'},
                                  {'@pid': '206/8409', 'text': 'Anirudh Joshi'},
                                  {'@pid': '259/3231', 'text': 'Anuj Pareek'},
                                  {'@pid': '209/9633', 'text': 'Jeremy Irvin'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '209/9732',
                                   'text': 'Matthew P. Lungren'}]},
           'ee': 'https://arxiv.org/abs/2011.06129',
           'key': 'journals/corr/abs-2011-06129',
           'title': 'CheXphotogenic - Generalization of Deep Learning Models '
                    'for Chest X-ray Interpretation to Photos of Chest X-rays.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-2011-06129',
           'venue': 'CoRR',
           'volume': 'abs/2011.06129',
           'year': '2020'},
  'url': 'URL#629309'},
 {'@id': '629754',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '75/1078', 'text': 'Hao Sheng'},
                                  {'@pid': '209/9633', 'text': 'Jeremy Irvin'},
                                  {'@pid': '278/7868',
                                   'text': 'Sasankh Munukutla'},
                                  {'@pid': '23/1084', 'text': 'Shawn Zhang'},
                                  {'@pid': '278/8467',
                                   'text': 'Christopher Cross'},
                                  {'@pid': '278/2653', 'text': 'Kyle Story'},
                                  {'@pid': '278/2714',
                                   'text': 'Rose Rustowicz'},
                                  {'@pid': '278/3047',
                                   'text': 'Cooper Elsworth'},
                                  {'@pid': '278/8455', 'text': 'Zutao Yang'},
                                  {'@pid': '278/8377', 'text': 'Mark Omara'},
                                  {'@pid': '187/5049', 'text': 'Ritesh Gautam'},
                                  {'@pid': '81/6773',
                                   'text': 'Robert B. Jackson'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'https://arxiv.org/abs/2011.07227',
           'key': 'journals/corr/abs-2011-07227',
           'title': 'OGNet - Towards a Global Oil and Gas Infrastructure '
                    'Database using Deep Learning on Remotely Sensed Imagery.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-2011-07227',
           'venue': 'CoRR',
           'volume': 'abs/2011.07227',
           'year': '2020'},
  'url': 'URL#629754'},
 {'@id': '805258',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '209/9633', 'text': 'Jeremy Irvin'},
                                  {'@pid': '161/3744',
                                   'text': 'Pranav Rajpurkar'},
                                  {'@pid': '03/1125', 'text': 'Michael Ko'},
                                  {'@pid': '67/3150', 'text': 'Yifan Yu'},
                                  {'@pid': '234/7825',
                                   'text': 'Silviana Ciurea-Ilcus'},
                                  {'@pid': '234/7903', 'text': 'Chris Chute'},
                                  {'@pid': '234/7535',
                                   'text': 'Henrik Marklund'},
                                  {'@pid': '234/7782',
                                   'text': 'Behzad Haghgoo'},
                                  {'@pid': '19/11264', 'text': 'Robyn L. Ball'},
                                  {'@pid': '115/9205',
                                   'text': 'Katie S. Shpanskaya'},
                                  {'@pid': '234/8025', 'text': 'Jayne Seekins'},
                                  {'@pid': '191/4960', 'text': 'David A. Mong'},
                                  {'@pid': '181/0313',
                                   'text': 'Safwan S. Halabi'},
                                  {'@pid': '09/7425',
                                   'text': 'Jesse K. Sandberg'},
                                  {'@pid': '234/7859', 'text': 'Ricky Jones'},
                                  {'@pid': '234/7965',
                                   'text': 'David B. Larson'},
                                  {'@pid': '12/1751',
                                   'text': 'Curtis P. Langlotz'},
                                  {'@pid': '234/7876',
                                   'text': 'Bhavik N. Patel'},
                                  {'@pid': '209/9732',
                                   'text': 'Matthew P. Lungren'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1609/AAAI.V33I01.3301590',
           'ee': 'https://doi.org/10.1609/aaai.v33i01.3301590',
           'key': 'conf/aaai/IrvinRKYCCMHBSS19',
           'pages': '590-597',
           'title': 'CheXpert - A Large Chest Radiograph Dataset with '
                    'Uncertainty Labels and Expert Comparison.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/aaai/IrvinRKYCCMHBSS19',
           'venue': 'AAAI',
           'year': '2019'},
  'url': 'URL#805258'},
 {'@id': '930944',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '192/1315', 'text': 'Yichen Shen'},
                                  {'@pid': '188/6009', 'text': 'Maxime Voisin'},
                                  {'@pid': '79/9895',
                                   'text': 'Alireza Aliamiri'},
                                  {'@pid': '177/9122', 'text': 'Anand Avati'},
                                  {'@pid': '147/5262',
                                   'text': 'Awni Y. Hannun'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1145/3292500.3330657',
           'ee': 'https://doi.org/10.1145/3292500.3330657',
           'key': 'conf/kdd/ShenVAAHN19',
           'pages': '1909-1916',
           'title': 'Ambulatory Atrial Fibrillation Monitoring Using Wearable '
                    'Photoplethysmography with Deep Learning.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/kdd/ShenVAAHN19',
           'venue': 'KDD',
           'year': '2019'},
  'url': 'URL#930944'},
 {'@id': '970853',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '177/9122', 'text': 'Anand Avati'},
                                  {'@pid': '209/9775', 'text': 'Tony Duan'},
                                  {'@pid': '179/4758', 'text': 'Sharon Zhou'},
                                  {'@pid': '120/6526', 'text': 'Kenneth Jung'},
                                  {'@pid': 's/NHShah', 'text': 'Nigam H. Shah'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'http://proceedings.mlr.press/v115/avati20a.html',
           'key': 'conf/uai/AvatiDZJSN19',
           'pages': '145-155',
           'title': 'Countdown Regression - Sharp and Calibrated Survival '
                    'Predictions.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/uai/AvatiDZJSN19',
           'venue': 'UAI',
           'year': '2019'},
  'url': 'URL#970853'},
 {'@id': '990073',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '209/9633', 'text': 'Jeremy Irvin'},
                                  {'@pid': '161/3744',
                                   'text': 'Pranav Rajpurkar'},
                                  {'@pid': '03/1125', 'text': 'Michael Ko'},
                                  {'@pid': '67/3150', 'text': 'Yifan Yu'},
                                  {'@pid': '234/7825',
                                   'text': 'Silviana Ciurea-Ilcus'},
                                  {'@pid': '234/7903', 'text': 'Chris Chute'},
                                  {'@pid': '234/7535',
                                   'text': 'Henrik Marklund'},
                                  {'@pid': '234/7782',
                                   'text': 'Behzad Haghgoo'},
                                  {'@pid': '19/11264', 'text': 'Robyn L. Ball'},
                                  {'@pid': '115/9205',
                                   'text': 'Katie S. Shpanskaya'},
                                  {'@pid': '234/8025', 'text': 'Jayne Seekins'},
                                  {'@pid': '191/4960', 'text': 'David A. Mong'},
                                  {'@pid': '181/0313',
                                   'text': 'Safwan S. Halabi'},
                                  {'@pid': '09/7425',
                                   'text': 'Jesse K. Sandberg'},
                                  {'@pid': '234/7859', 'text': 'Ricky Jones'},
                                  {'@pid': '234/7965',
                                   'text': 'David B. Larson'},
                                  {'@pid': '12/1751',
                                   'text': 'Curtis P. Langlotz'},
                                  {'@pid': '234/7876',
                                   'text': 'Bhavik N. Patel'},
                                  {'@pid': '209/9732',
                                   'text': 'Matthew P. Lungren'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'http://arxiv.org/abs/1901.07031',
           'key': 'journals/corr/abs-1901-07031',
           'title': 'CheXpert - A Large Chest Radiograph Dataset with '
                    'Uncertainty Labels and Expert Comparison.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-1901-07031',
           'venue': 'CoRR',
           'volume': 'abs/1901.07031',
           'year': '2019'},
  'url': 'URL#990073'},
 {'@id': '1028684',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '209/9775', 'text': 'Tony Duan'},
                                  {'@pid': '177/9122', 'text': 'Anand Avati'},
                                  {'@pid': '225/6343', 'text': 'Daisy Yi Ding'},
                                  {'@pid': '32/6623', 'text': 'Sanjay Basu'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '199/4820',
                                   'text': 'Alejandro Schuler'}]},
           'ee': 'http://arxiv.org/abs/1910.03225',
           'key': 'journals/corr/abs-1910-03225',
           'title': 'NGBoost - Natural Gradient Boosting for Probabilistic '
                    'Prediction.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-1910-03225',
           'venue': 'CoRR',
           'volume': 'abs/1910.03225',
           'year': '2019'},
  'url': 'URL#1028684'},
 {'@id': '1135801',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '177/9122', 'text': 'Anand Avati'},
                                  {'@pid': '120/6526', 'text': 'Kenneth Jung'},
                                  {'@pid': '210/0822',
                                   'text': 'Stephanie Harman'},
                                  {'@pid': '210/0909', 'text': 'Lance Downing'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': 's/NHShah',
                                   'text': 'Nigam H. Shah'}]},
           'doi': '10.1186/S12911-018-0677-8',
           'ee': 'https://doi.org/10.1186/s12911-018-0677-8',
           'key': 'journals/midm/AvatiJHDNS18',
           'number': 'S-4',
           'pages': '55-64',
           'title': 'Improving palliative care with deep learning.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/midm/AvatiJHDNS18',
           'venue': 'BMC Medical Informatics Decis. Mak.',
           'volume': '18',
           'year': '2018'},
  'url': 'URL#1135801'},
 {'@id': '1319953',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '133/2394', 'text': 'Ziang Xie'},
                                  {'@pid': '220/2047',
                                   'text': 'Guillaume Genthial'},
                                  {'@pid': '220/2028', 'text': 'Stanley Xie'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '31/985', 'text': 'Dan Jurafsky'}]},
           'doi': '10.18653/V1/N18-1057',
           'ee': 'https://doi.org/10.18653/v1/n18-1057',
           'key': 'conf/naacl/XieGXNJ18',
           'pages': '619-628',
           'title': 'Noising and Denoising Natural Language - Diverse '
                    'Backtranslation for Grammar Correction.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/naacl/XieGXNJ18',
           'venue': 'NAACL-HLT',
           'year': '2018'},
  'url': 'URL#1319953'},
 {'@id': '1385725',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '177/9122', 'text': 'Anand Avati'},
                                  {'@pid': '209/9775', 'text': 'Tony Duan'},
                                  {'@pid': '120/6526', 'text': 'Kenneth Jung'},
                                  {'@pid': 's/NHShah', 'text': 'Nigam H. Shah'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'http://arxiv.org/abs/1806.08324',
           'key': 'journals/corr/abs-1806-08324',
           'title': 'Countdown Regression - Sharp and Calibrated Survival '
                    'Predictions.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-1806-08324',
           'venue': 'CoRR',
           'volume': 'abs/1806.08324',
           'year': '2018'},
  'url': 'URL#1385725'},
 {'@id': '1404693',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '177/9122', 'text': 'Anand Avati'},
                                  {'@pid': '225/6445', 'text': 'Stephen Pfohl'},
                                  {'@pid': '163/4747', 'text': 'Chris Lin'},
                                  {'@pid': '77/2922', 'text': 'Thao Nguyen'},
                                  {'@pid': '04/6901', 'text': 'Meng Zhang'},
                                  {'@pid': '182/4073', 'text': 'Philip Hwang'},
                                  {'@pid': '232/1667',
                                   'text': 'Jessica Wetstone'},
                                  {'@pid': '120/6526', 'text': 'Kenneth Jung'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': 's/NHShah',
                                   'text': 'Nigam H. Shah'}]},
           'ee': 'http://arxiv.org/abs/1812.00371',
           'key': 'journals/corr/abs-1812-00371',
           'title': 'Predicting Inpatient Discharge Prioritization With '
                    'Electronic Health Records.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-1812-00371',
           'venue': 'CoRR',
           'volume': 'abs/1812.00371',
           'year': '2018'},
  'url': 'URL#1404693'},
 {'@id': '1468677',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '185/0954', 'text': 'Sherry Ruan'},
                                  {'@pid': '18/6907',
                                   'text': 'Jacob O. Wobbrock'},
                                  {'@pid': '185/0692', 'text': 'Kenny Liou'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': 'l/JamesALanday',
                                   'text': 'James A. Landay'}]},
           'doi': '10.1145/3161187',
           'ee': 'https://doi.org/10.1145/3161187',
           'key': 'journals/imwut/RuanWLNL17',
           'number': '4',
           'pages': '159:1-159:23',
           'title': 'Comparing Speech and Keyboard Text Entry for Short '
                    'Messages in Two Languages on Touchscreen Phones.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/imwut/RuanWLNL17',
           'venue': 'Proc. ACM Interact. Mob. Wearable Ubiquitous Technol.',
           'volume': '1',
           'year': '2017'},
  'url': 'URL#1468677'},
 {'@id': '1555128',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '177/9122', 'text': 'Anand Avati'},
                                  {'@pid': '120/6526', 'text': 'Kenneth Jung'},
                                  {'@pid': '210/0822',
                                   'text': 'Stephanie Harman'},
                                  {'@pid': '210/0909', 'text': 'Lance Downing'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': 's/NHShah',
                                   'text': 'Nigam H. Shah'}]},
           'doi': '10.1109/BIBM.2017.8217669',
           'ee': 'https://doi.org/10.1109/BIBM.2017.8217669',
           'key': 'conf/bibm/AvatiJHDNS17',
           'pages': '311-316',
           'title': 'Improving palliative care with deep learning.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/bibm/AvatiJHDNS17',
           'venue': 'BIBM',
           'year': '2017'},
  'url': 'URL#1555128'},
 {'@id': '1619148',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '133/2394', 'text': 'Ziang Xie'},
                                  {'@pid': '153/9609', 'text': 'Sida I. Wang'},
                                  {'@pid': '73/5746', 'text': 'Jiwei Li'},
                                  {'@pid': '192/1660', 'text': 'Daniel Lévy'},
                                  {'@pid': '198/1357', 'text': 'Aiming Nie'},
                                  {'@pid': '31/985', 'text': 'Dan Jurafsky'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'https://openreview.net/forum?id=H1VyHY9gg',
           'key': 'conf/iclr/XieWLLNJN17',
           'title': 'Data Noising as Smoothing in Neural Network Language '
                    'Models.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/iclr/XieWLLNJN17',
           'venue': 'ICLR',
           'year': '2017'},
  'url': 'URL#1619148'},
 {'@id': '1707988',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': 'a/PieterAbbeel',
                                   'text': 'Pieter Abbeel'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1007/978-1-4899-7687-1_142',
           'ee': 'https://doi.org/10.1007/978-1-4899-7687-1_142',
           'key': 'reference/ml/AbbeelN17',
           'pages': '678-682',
           'title': 'Inverse Reinforcement Learning.',
           'type': 'Reference Works',
           'url': 'https://dblp.org/rec/reference/ml/AbbeelN17',
           'venue': 'Encyclopedia of Machine Learning and Data Mining',
           'year': '2017'},
  'url': 'URL#1707988'},
 {'@id': '1708022',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '60/5515', 'text': 'Adam Coates'},
                                  {'@pid': 'a/PieterAbbeel',
                                   'text': 'Pieter Abbeel'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1007/978-1-4899-7687-1_16',
           'ee': 'https://doi.org/10.1007/978-1-4899-7687-1_16',
           'key': 'reference/ml/CoatesAN17',
           'pages': '75-85',
           'title': 'Autonomous Helicopter Flight Using Reinforcement '
                    'Learning.',
           'type': 'Reference Works',
           'url': 'https://dblp.org/rec/reference/ml/CoatesAN17',
           'venue': 'Encyclopedia of Machine Learning and Data Mining',
           'year': '2017'},
  'url': 'URL#1708022'},
 {'@id': '1721551',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '161/3744',
                                   'text': 'Pranav Rajpurkar'},
                                  {'@pid': '147/5262',
                                   'text': 'Awni Y. Hannun'},
                                  {'@pid': '29/2940',
                                   'text': 'Masoumeh Haghpanahi'},
                                  {'@pid': '203/8375', 'text': 'Codie Bourn'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'http://arxiv.org/abs/1707.01836',
           'key': 'journals/corr/RajpurkarHHBN17',
           'title': 'Cardiologist-Level Arrhythmia Detection with '
                    'Convolutional Neural Networks.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/RajpurkarHHBN17',
           'venue': 'CoRR',
           'volume': 'abs/1707.01836',
           'year': '2017'},
  'url': 'URL#1721551'},
 {'@id': '1724993',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '133/2394', 'text': 'Ziang Xie'},
                                  {'@pid': '153/9609', 'text': 'Sida I. Wang'},
                                  {'@pid': '73/5746', 'text': 'Jiwei Li'},
                                  {'@pid': '192/1660', 'text': 'Daniel Lévy'},
                                  {'@pid': '198/1357', 'text': 'Aiming Nie'},
                                  {'@pid': '31/985', 'text': 'Dan Jurafsky'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'http://arxiv.org/abs/1703.02573',
           'key': 'journals/corr/XieWLLNJN17',
           'title': 'Data Noising as Smoothing in Neural Network Language '
                    'Models.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/XieWLLNJN17',
           'venue': 'CoRR',
           'volume': 'abs/1703.02573',
           'year': '2017'},
  'url': 'URL#1724993'},
 {'@id': '1735326',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '161/3744',
                                   'text': 'Pranav Rajpurkar'},
                                  {'@pid': '209/9633', 'text': 'Jeremy Irvin'},
                                  {'@pid': '209/9616', 'text': 'Kaylie Zhu'},
                                  {'@pid': '209/9594', 'text': 'Brandon Yang'},
                                  {'@pid': '209/9650', 'text': 'Hershel Mehta'},
                                  {'@pid': '209/9775', 'text': 'Tony Duan'},
                                  {'@pid': '225/6343', 'text': 'Daisy Yi Ding'},
                                  {'@pid': '209/9532', 'text': 'Aarti Bagul'},
                                  {'@pid': '12/1751',
                                   'text': 'Curtis Langlotz'},
                                  {'@pid': '115/9205',
                                   'text': 'Katie S. Shpanskaya'},
                                  {'@pid': '209/9732',
                                   'text': 'Matthew P. Lungren'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'http://arxiv.org/abs/1711.05225',
           'key': 'journals/corr/abs-1711-05225',
           'title': 'CheXNet - Radiologist-Level Pneumonia Detection on Chest '
                    'X-Rays with Deep Learning.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-1711-05225',
           'venue': 'CoRR',
           'volume': 'abs/1711.05225',
           'year': '2017'},
  'url': 'URL#1735326'},
 {'@id': '1735638',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '177/9122', 'text': 'Anand Avati'},
                                  {'@pid': '120/6526', 'text': 'Kenneth Jung'},
                                  {'@pid': '210/0822',
                                   'text': 'Stephanie Harman'},
                                  {'@pid': '210/0909', 'text': 'Lance Downing'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': 's/NHShah',
                                   'text': 'Nigam H. Shah'}]},
           'ee': 'http://arxiv.org/abs/1711.06402',
           'key': 'journals/corr/abs-1711-06402',
           'title': 'Improving Palliative Care with Deep Learning.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-1711-06402',
           'venue': 'CoRR',
           'volume': 'abs/1711.06402',
           'year': '2017'},
  'url': 'URL#1735638'},
 {'@id': '1738696',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '161/3744',
                                   'text': 'Pranav Rajpurkar'},
                                  {'@pid': '209/9633', 'text': 'Jeremy Irvin'},
                                  {'@pid': '209/9532', 'text': 'Aarti Bagul'},
                                  {'@pid': '225/6343', 'text': 'Daisy Yi Ding'},
                                  {'@pid': '209/9775', 'text': 'Tony Duan'},
                                  {'@pid': '209/9650', 'text': 'Hershel Mehta'},
                                  {'@pid': '209/9594', 'text': 'Brandon Yang'},
                                  {'@pid': '209/9616', 'text': 'Kaylie Zhu'},
                                  {'@pid': '155/1932', 'text': 'Dillon Laird'},
                                  {'@pid': '19/11264', 'text': 'Robyn L. Ball'},
                                  {'@pid': '12/1751',
                                   'text': 'Curtis Langlotz'},
                                  {'@pid': '115/9205',
                                   'text': 'Katie S. Shpanskaya'},
                                  {'@pid': '209/9732',
                                   'text': 'Matthew P. Lungren'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'http://arxiv.org/abs/1712.06957',
           'key': 'journals/corr/abs-1712-06957',
           'title': 'MURA Dataset - Towards Radiologist-Level Abnormality '
                    'Detection in Musculoskeletal Radiographs.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-1712-06957',
           'venue': 'CoRR',
           'volume': 'abs/1712.06957',
           'year': '2017'},
  'url': 'URL#1738696'},
 {'@id': '1852471',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '25/6501',
                                   'text': 'Michiel Kallenberg'},
                                  {'@pid': '42/3393',
                                   'text': 'Kersten Petersen'},
                                  {'@pid': '80/1754', 'text': 'Mads Nielsen'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '147/2100', 'text': 'Pengfei Diao'},
                                  {'@pid': '38/6146', 'text': 'Christian Igel'},
                                  {'@pid': '136/6040',
                                   'text': 'Celine M. Vachon'},
                                  {'@pid': '147/2300',
                                   'text': 'Katharina Holland'},
                                  {'@pid': '179/4129',
                                   'text': 'Rikke Rass Winkel'},
                                  {'@pid': '09/93',
                                   'text': 'Nico Karssemeijer'},
                                  {'@pid': '90/4942',
                                   'text': 'Martin Lillholm'}]},
           'doi': '10.1109/TMI.2016.2532122',
           'ee': 'https://doi.org/10.1109/TMI.2016.2532122',
           'key': 'journals/tmi/KallenbergPNNDI16',
           'number': '5',
           'pages': '1322-1331',
           'title': 'Unsupervised Deep Learning Applied to Breast Density '
                    'Segmentation and Mammographic Risk Scoring.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/tmi/KallenbergPNNDI16',
           'venue': 'IEEE Trans. Medical Imaging',
           'volume': '35',
           'year': '2016'},
  'url': 'URL#1852471'},
 {'@id': '1874135',
  '@score': '7',
  'info': {'authors': {'author': {'@pid': 'n/AndrewYNg',
                                  'text': 'Andrew Y. Ng'}},
           'ee': 'http://dl.acm.org/citation.cfm?id=2936926',
           'key': 'conf/atal/Ng16',
           'pages': '1',
           'title': 'Deep Learning - What&apos;s Next.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/atal/Ng16',
           'venue': 'AAMAS',
           'year': '2016'},
  'url': 'URL#1874135'},
 {'@id': '1895542',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '164/5990',
                                   'text': 'Russell Stewart'},
                                  {'@pid': '54/4495',
                                   'text': 'Mykhaylo Andriluka'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1109/CVPR.2016.255',
           'ee': 'https://doi.org/10.1109/CVPR.2016.255',
           'key': 'conf/cvpr/StewartAN16',
           'pages': '2325-2333',
           'title': 'End-to-End People Detection in Crowded Scenes.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/cvpr/StewartAN16',
           'venue': 'CVPR',
           'year': '2016'},
  'url': 'URL#1895542'},
 {'@id': '1937857',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '155/3328', 'text': 'Dario Amodei'},
                                  {'@pid': '80/10926',
                                   'text': 'Sundaram Ananthanarayanan'},
                                  {'@pid': '119/7727',
                                   'text': 'Rishita Anubhai'},
                                  {'@pid': '229/2257', 'text': 'Jingliang Bai'},
                                  {'@pid': '82/9955',
                                   'text': 'Eric Battenberg'},
                                  {'@pid': '69/9967', 'text': 'Carl Case'},
                                  {'@pid': '23/6529', 'text': 'Jared Casper'},
                                  {'@pid': '14/4826',
                                   'text': 'Bryan Catanzaro'},
                                  {'@pid': '33/5656', 'text': 'Jingdong Chen'},
                                  {'@pid': '173/5380',
                                   'text': 'Mike Chrzanowski'},
                                  {'@pid': '60/5515', 'text': 'Adam Coates'},
                                  {'@pid': '06/1767', 'text': 'Greg Diamos'},
                                  {'@pid': '94/3606', 'text': 'Erich Elsen'},
                                  {'@pid': '173/5298',
                                   'text': 'Jesse H. Engel'},
                                  {'@pid': '154/6778', 'text': 'Linxi Fan'},
                                  {'@pid': '173/5319',
                                   'text': 'Christopher Fougner'},
                                  {'@pid': '147/5262',
                                   'text': 'Awni Y. Hannun'},
                                  {'@pid': '173/5259', 'text': 'Billy Jun'},
                                  {'@pid': '52/6805', 'text': 'Tony Han'},
                                  {'@pid': '73/7575',
                                   'text': 'Patrick LeGresley'},
                                  {'@pid': '124/9046', 'text': 'Xiangang Li'},
                                  {'@pid': '173/4944', 'text': 'Libby Lin'},
                                  {'@pid': '173/5215', 'text': 'Sharan Narang'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '139/0736', 'text': 'Sherjil Ozair'},
                                  {'@pid': '117/0712', 'text': 'Ryan Prenger'},
                                  {'@pid': '165/9577', 'text': 'Sheng Qian'},
                                  {'@pid': '164/5795',
                                   'text': 'Jonathan Raiman'},
                                  {'@pid': '46/7573',
                                   'text': 'Sanjeev Satheesh'},
                                  {'@pid': '51/5445', 'text': 'David Seetapun'},
                                  {'@pid': '147/1220',
                                   'text': 'Shubho Sengupta'},
                                  {'@pid': 'w/ChongWang2',
                                   'text': 'Chong Wang 0002'},
                                  {'@pid': '17/221', 'text': 'Yi Wang'},
                                  {'@pid': '90/4036', 'text': 'Zhiqian Wang'},
                                  {'@pid': '92/6046', 'text': 'Bo Xiao'},
                                  {'@pid': '62/6285', 'text': 'Yan Xie'},
                                  {'@pid': '08/8178', 'text': 'Dani Yogatama'},
                                  {'@pid': '05/7814', 'text': 'Jun Zhan'},
                                  {'@pid': '142/2453', 'text': 'Zhenyao Zhu'}]},
           'ee': 'http://proceedings.mlr.press/v48/amodei16.html',
           'key': 'conf/icml/AmodeiABCCCCCCD16',
           'pages': '173-182',
           'title': 'Deep Speech 2 - End-to-End Speech Recognition in English '
                    'and Mandarin.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icml/AmodeiABCCCCCCD16',
           'venue': 'ICML',
           'year': '2016'},
  'url': 'URL#1937857'},
 {'@id': '2041154',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '185/0954', 'text': 'Sherry Ruan'},
                                  {'@pid': '18/6907',
                                   'text': 'Jacob O. Wobbrock'},
                                  {'@pid': '185/0692', 'text': 'Kenny Liou'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': 'l/JamesALanday',
                                   'text': 'James A. Landay'}]},
           'ee': 'http://arxiv.org/abs/1608.07323',
           'key': 'journals/corr/RuanWLNL16',
           'title': 'Speech Is 3x Faster than Typing for English and Mandarin '
                    'Text Entry on Mobile Devices.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/RuanWLNL16',
           'venue': 'CoRR',
           'volume': 'abs/1608.07323',
           'year': '2016'},
  'url': 'URL#2041154'},
 {'@id': '2045408',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '133/2394', 'text': 'Ziang Xie'},
                                  {'@pid': '177/9122', 'text': 'Anand Avati'},
                                  {'@pid': '177/8974',
                                   'text': 'Naveen Arivazhagan'},
                                  {'@pid': '31/985', 'text': 'Dan Jurafsky'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'http://arxiv.org/abs/1603.09727',
           'key': 'journals/corr/XieAAJN16',
           'title': 'Neural Language Correction with Character-Based '
                    'Attention.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/XieAAJN16',
           'venue': 'CoRR',
           'volume': 'abs/1603.09727',
           'year': '2016'},
  'url': 'URL#2045408'},
 {'@id': '2326151',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '155/3328', 'text': 'Dario Amodei'},
                                  {'@pid': '119/7727',
                                   'text': 'Rishita Anubhai'},
                                  {'@pid': '82/9955',
                                   'text': 'Eric Battenberg'},
                                  {'@pid': '69/9967', 'text': 'Carl Case'},
                                  {'@pid': '23/6529', 'text': 'Jared Casper'},
                                  {'@pid': '14/4826',
                                   'text': 'Bryan Catanzaro'},
                                  {'@pid': '33/5656', 'text': 'Jingdong Chen'},
                                  {'@pid': '173/5380',
                                   'text': 'Mike Chrzanowski'},
                                  {'@pid': '60/5515', 'text': 'Adam Coates'},
                                  {'@pid': '06/1767', 'text': 'Greg Diamos'},
                                  {'@pid': '94/3606', 'text': 'Erich Elsen'},
                                  {'@pid': '173/5298',
                                   'text': 'Jesse H. Engel'},
                                  {'@pid': '154/6778', 'text': 'Linxi Fan'},
                                  {'@pid': '173/5319',
                                   'text': 'Christopher Fougner'},
                                  {'@pid': '52/6805', 'text': 'Tony Han'},
                                  {'@pid': '147/5262',
                                   'text': 'Awni Y. Hannun'},
                                  {'@pid': '173/5259', 'text': 'Billy Jun'},
                                  {'@pid': '73/7575',
                                   'text': 'Patrick LeGresley'},
                                  {'@pid': '173/4944', 'text': 'Libby Lin'},
                                  {'@pid': '173/5215', 'text': 'Sharan Narang'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '139/0736', 'text': 'Sherjil Ozair'},
                                  {'@pid': '117/0712', 'text': 'Ryan Prenger'},
                                  {'@pid': '164/5795',
                                   'text': 'Jonathan Raiman'},
                                  {'@pid': '46/7573',
                                   'text': 'Sanjeev Satheesh'},
                                  {'@pid': '51/5445', 'text': 'David Seetapun'},
                                  {'@pid': '147/1220',
                                   'text': 'Shubho Sengupta'},
                                  {'@pid': '17/221', 'text': 'Yi Wang'},
                                  {'@pid': '90/4036', 'text': 'Zhiqian Wang'},
                                  {'@pid': 'w/ChongWang2',
                                   'text': 'Chong Wang 0002'},
                                  {'@pid': '92/6046', 'text': 'Bo Xiao'},
                                  {'@pid': '08/8178', 'text': 'Dani Yogatama'},
                                  {'@pid': '05/7814', 'text': 'Jun Zhan'},
                                  {'@pid': '142/2453', 'text': 'Zhenyao Zhu'}]},
           'ee': 'http://arxiv.org/abs/1512.02595',
           'key': 'journals/corr/AmodeiABCCCCCCD15',
           'title': 'Deep Speech 2 - End-to-End Speech Recognition in English '
                    'and Mandarin.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/AmodeiABCCCCCCD15',
           'venue': 'CoRR',
           'volume': 'abs/1512.02595',
           'year': '2015'},
  'url': 'URL#2326151'},
 {'@id': '2332902',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '117/4058', 'text': 'Brody Huval'},
                                  {'@pid': '12/5838', 'text': 'Tao Wang'},
                                  {'@pid': '03/9969', 'text': 'Sameep Tandon'},
                                  {'@pid': '161/9966', 'text': 'Jeff Kiske'},
                                  {'@pid': '162/0144', 'text': 'Will Song'},
                                  {'@pid': '162/0124',
                                   'text': 'Joel Pazhayampallil'},
                                  {'@pid': '54/4495',
                                   'text': 'Mykhaylo Andriluka'},
                                  {'@pid': '161/3744',
                                   'text': 'Pranav Rajpurkar'},
                                  {'@pid': '162/0225',
                                   'text': 'Toki Migimatsu'},
                                  {'@pid': '162/0088',
                                   'text': 'Royce Cheng-Yue'},
                                  {'@pid': '27/1360',
                                   'text': 'Fernando A. Mujica'},
                                  {'@pid': '60/5515', 'text': 'Adam Coates'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'http://arxiv.org/abs/1504.01716',
           'key': 'journals/corr/HuvalWTKSPARMCM15',
           'title': 'An Empirical Evaluation of Deep Learning on Highway '
                    'Driving.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/HuvalWTKSPARMCM15',
           'venue': 'CoRR',
           'volume': 'abs/1504.01716',
           'year': '2015'},
  'url': 'URL#2332902'},
 {'@id': '2338605',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '161/3744',
                                   'text': 'Pranav Rajpurkar'},
                                  {'@pid': '162/0225',
                                   'text': 'Toki Migimatsu'},
                                  {'@pid': '161/9966', 'text': 'Jeff Kiske'},
                                  {'@pid': '162/0088',
                                   'text': 'Royce Cheng-Yue'},
                                  {'@pid': '03/9969', 'text': 'Sameep Tandon'},
                                  {'@pid': '12/5838', 'text': 'Tao Wang'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'http://arxiv.org/abs/1512.01872',
           'key': 'journals/corr/RajpurkarMKCTWN15',
           'title': 'Driverseat - Crowdstrapping Learning Tasks for Autonomous '
                    'Driving.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/RajpurkarMKCTWN15',
           'venue': 'CoRR',
           'volume': 'abs/1512.01872',
           'year': '2015'},
  'url': 'URL#2338605'},
 {'@id': '2393868',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '78/1197', 'text': 'Morgan Quigley'},
                                  {'@pid': '35/7809', 'text': 'Curt Salisbury'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': 's/JohnKennethSalisburyJr',
                                   'text': 'J. Kenneth Salisbury'}]},
           'doi': '10.1177/0278364913515032',
           'ee': 'https://doi.org/10.1177/0278364913515032',
           'key': 'journals/ijrr/QuigleySNS14',
           'number': '5',
           'pages': '706-720',
           'title': 'Mechatronic design of an integrated robotic hand.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/ijrr/QuigleySNS14',
           'venue': 'Int. J. Robotics Res.',
           'volume': '33',
           'year': '2014'},
  'url': 'URL#2393868'},
 {'@id': '2438567',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '79/128', 'text': 'Richard Socher'},
                                  {'@pid': '04/9925',
                                   'text': 'Andrej Karpathy'},
                                  {'@pid': '29/6166', 'text': 'Quoc V. Le'},
                                  {'@pid': 'm/ChristopherDManning',
                                   'text': 'Christopher D. Manning'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'https://tacl2013.cs.columbia.edu/ojs/index.php/tacl/article/view/325',
           'key': 'journals/tacl/SocherKLMN14',
           'pages': '207-218',
           'title': 'Grounded Compositional Semantics for Finding and '
                    'Describing Images with Sentences.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/tacl/SocherKLMN14',
           'venue': 'Trans. Assoc. Comput. Linguistics',
           'volume': '2',
           'year': '2014'},
  'url': 'URL#2438567'},
 {'@id': '2607157',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '117/4058', 'text': 'Brody Huval'},
                                  {'@pid': '60/5515', 'text': 'Adam Coates'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'http://arxiv.org/abs/1312.6885',
           'key': 'journals/corr/HuvalCN13',
           'title': 'Deep learning for class-generic object detection.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/journals/corr/HuvalCN13',
           'venue': 'ICLR',
           'year': '2014'},
  'url': 'URL#2607157'},
 {'@id': '2621612',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '147/5262',
                                   'text': 'Awni Y. Hannun'},
                                  {'@pid': '69/9967', 'text': 'Carl Case'},
                                  {'@pid': '23/6529', 'text': 'Jared Casper'},
                                  {'@pid': '14/4826',
                                   'text': 'Bryan Catanzaro'},
                                  {'@pid': '06/1767', 'text': 'Greg Diamos'},
                                  {'@pid': '94/3606', 'text': 'Erich Elsen'},
                                  {'@pid': '117/0712', 'text': 'Ryan Prenger'},
                                  {'@pid': '46/7573',
                                   'text': 'Sanjeev Satheesh'},
                                  {'@pid': '147/1220',
                                   'text': 'Shubho Sengupta'},
                                  {'@pid': '60/5515', 'text': 'Adam Coates'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'http://arxiv.org/abs/1412.5567',
           'key': 'journals/corr/HannunCCCDEPSSCN14',
           'title': 'Deep Speech - Scaling up end-to-end speech recognition.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/HannunCCCDEPSSCN14',
           'venue': 'CoRR',
           'volume': 'abs/1412.5567',
           'year': '2014'},
  'url': 'URL#2621612'},
 {'@id': '2740450',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '79/128', 'text': 'Richard Socher'},
                                  {'@pid': '07/7435', 'text': 'John Bauer'},
                                  {'@pid': 'm/ChristopherDManning',
                                   'text': 'Christopher D. Manning'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'https://aclanthology.org/P13-1045/',
           'key': 'conf/acl/SocherBMN13',
           'pages': '455-465',
           'title': 'Parsing with Compositional Vector Grammars.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/acl/SocherBMN13',
           'venue': 'ACL',
           'year': '2013'},
  'url': 'URL#2740450'},
 {'@id': '2761822',
  '@score': '7',
  'info': {'authors': {'author': {'@pid': 'n/AndrewYNg',
                                  'text': 'Andrew Y. Ng'}},
           'doi': '10.1145/2505515.2514698',
           'ee': 'https://doi.org/10.1145/2505515.2514698',
           'key': 'conf/cikm/Ng13',
           'pages': '1913-1914',
           'title': 'The online revolution - education for everyone.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/cikm/Ng13',
           'venue': 'CIKM',
           'year': '2013'},
  'url': 'URL#2761822'},
 {'@id': '2775822',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '35/10987', 'text': 'Chris Piech'},
                                  {'@pid': '55/2421', 'text': 'Jonathan Huang'},
                                  {'@pid': '88/10451', 'text': 'Zhenghao Chen'},
                                  {'@pid': '58/2809', 'text': 'Chuong B. Do'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': 'k/DaphneKoller',
                                   'text': 'Daphne Koller'}]},
           'ee': 'http://www.educationaldatamining.org/EDM2013/papers/rn_paper_23.pdf',
           'key': 'conf/edm/PiechHCDNK13',
           'pages': '153-160',
           'title': 'Tuned Models of Peer Assessment in MOOCs.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/edm/PiechHCDNK13',
           'venue': 'EDM',
           'year': '2013'},
  'url': 'URL#2775822'},
 {'@id': '2778961',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '79/128', 'text': 'Richard Socher'},
                                  {'@pid': '225/4948',
                                   'text': 'Alex Perelygin'},
                                  {'@pid': '153/9509', 'text': 'Jean Wu'},
                                  {'@pid': '03/9138', 'text': 'Jason Chuang'},
                                  {'@pid': 'm/ChristopherDManning',
                                   'text': 'Christopher D. Manning'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '13/2617',
                                   'text': 'Christopher Potts'}]},
           'ee': 'https://aclanthology.org/D13-1170/',
           'key': 'conf/emnlp/SocherPWCMNP13',
           'pages': '1631-1642',
           'title': 'Recursive Deep Models for Semantic Compositionality Over '
                    'a Sentiment Treebank.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/emnlp/SocherPWCMNP13',
           'venue': 'EMNLP',
           'year': '2013'},
  'url': 'URL#2778961'},
 {'@id': '2813997',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '60/5515', 'text': 'Adam Coates'},
                                  {'@pid': '117/4058', 'text': 'Brody Huval'},
                                  {'@pid': '12/5838', 'text': 'Tao Wang'},
                                  {'@pid': '32/10400', 'text': 'David J. Wu'},
                                  {'@pid': '14/4826',
                                   'text': 'Bryan Catanzaro'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'http://proceedings.mlr.press/v28/coates13.html',
           'key': 'conf/icml/CoatesHWWCN13',
           'pages': '1337-1345',
           'title': 'Deep learning with COTS HPC systems.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icml/CoatesHWWCN13',
           'venue': 'ICML',
           'year': '2013'},
  'url': 'URL#2813997'},
 {'@id': '2843047',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': 'k/DaphneKoller',
                                   'text': 'Daphne Koller'}]},
           'doi': '10.1145/2487575.2492148',
           'ee': 'https://doi.org/10.1145/2487575.2492148',
           'key': 'conf/kdd/NgK13',
           'pages': '2',
           'title': 'The online revolution - education for everyone.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/kdd/NgK13',
           'venue': 'KDD',
           'year': '2013'},
  'url': 'URL#2843047'},
 {'@id': '2854469',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '79/128', 'text': 'Richard Socher'},
                                  {'@pid': '87/7949', 'text': 'Danqi Chen'},
                                  {'@pid': 'm/ChristopherDManning',
                                   'text': 'Christopher D. Manning'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'https://proceedings.neurips.cc/paper/2013/hash/b337e84de8752b27eda3a12363109e80-Abstract.html',
           'key': 'conf/nips/SocherCMN13',
           'pages': '926-934',
           'title': 'Reasoning With Neural Tensor Networks for Knowledge Base '
                    'Completion.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/nips/SocherCMN13',
           'venue': 'NIPS',
           'year': '2013'},
  'url': 'URL#2854469'},
 {'@id': '2854470',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '79/128', 'text': 'Richard Socher'},
                                  {'@pid': '125/1966', 'text': 'Milind Ganjoo'},
                                  {'@pid': 'm/ChristopherDManning',
                                   'text': 'Christopher D. Manning'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'https://proceedings.neurips.cc/paper/2013/hash/2d6cc4b2d139a53512fb8cbb3086ae2e-Abstract.html',
           'key': 'conf/nips/SocherGMN13',
           'pages': '935-943',
           'title': 'Zero-Shot Learning Through Cross-Modal Transfer.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/nips/SocherGMN13',
           'venue': 'NIPS',
           'year': '2013'},
  'url': 'URL#2854470'},
 {'@id': '2887036',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '87/7949', 'text': 'Danqi Chen'},
                                  {'@pid': '79/128', 'text': 'Richard Socher'},
                                  {'@pid': 'm/ChristopherDManning',
                                   'text': 'Christopher D. Manning'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'http://arxiv.org/abs/1301.3618',
           'key': 'journals/corr/abs-1301-3618',
           'title': 'Learning New Facts From Knowledge Bases With Neural '
                    'Tensor Networks and Semantic Word Vectors',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/journals/corr/abs-1301-3618',
           'venue': 'ICLR',
           'year': '2013'},
  'url': 'URL#2887036'},
 {'@id': '2887040',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '79/128', 'text': 'Richard Socher'},
                                  {'@pid': '125/1966', 'text': 'Milind Ganjoo'},
                                  {'@pid': '125/1978', 'text': 'Hamsa Sridhar'},
                                  {'@pid': '21/11275',
                                   'text': 'Osbert Bastani'},
                                  {'@pid': 'm/ChristopherDManning',
                                   'text': 'Christopher D. Manning'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'http://arxiv.org/abs/1301.3666',
           'key': 'journals/corr/abs-1301-3666',
           'title': 'Zero-Shot Learning Through Cross-Modal Transfer',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/journals/corr/abs-1301-3666',
           'venue': 'ICLR',
           'year': '2013'},
  'url': 'URL#2887040'},
 {'@id': '2899069',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '35/10987', 'text': 'Chris Piech'},
                                  {'@pid': '55/2421', 'text': 'Jonathan Huang'},
                                  {'@pid': '88/10451', 'text': 'Zhenghao Chen'},
                                  {'@pid': '58/2809', 'text': 'Chuong B. Do'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': 'k/DaphneKoller',
                                   'text': 'Daphne Koller'}]},
           'ee': 'http://arxiv.org/abs/1307.2579',
           'key': 'journals/corr/PiechHCDNK13',
           'title': 'Tuned Models of Peer Assessment in MOOCs.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/PiechHCDNK13',
           'venue': 'CoRR',
           'volume': 'abs/1307.2579',
           'year': '2013'},
  'url': 'URL#2899069'},
 {'@id': '2901826',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': 'j/MichaelIJordan',
                                   'text': 'Michael I. Jordan'}]},
           'ee': 'http://arxiv.org/abs/1301.3878',
           'key': 'journals/corr/abs-1301-3878',
           'title': 'PEGASUS - A Policy Search Method for Large MDPs and '
                    'POMDPs',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-1301-3878',
           'venue': 'CoRR',
           'volume': 'abs/1301.3878',
           'year': '2013'},
  'url': 'URL#2901826'},
 {'@id': '2902756',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '78/6858',
                                   'text': 'Michael J. Kearns'},
                                  {'@pid': 'm/YishayMansour',
                                   'text': 'Yishay Mansour'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'http://arxiv.org/abs/1302.1552',
           'key': 'journals/corr/abs-1302-1552',
           'title': 'An Information-Theoretic Analysis of Hard and Soft '
                    'Assignment Methods for Clustering',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-1302-1552',
           'venue': 'CoRR',
           'volume': 'abs/1302.1552',
           'year': '2013'},
  'url': 'URL#2902756'},
 {'@id': '3011599',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '63/10489', 'text': 'Eric H. Huang'},
                                  {'@pid': '79/128', 'text': 'Richard Socher'},
                                  {'@pid': 'm/ChristopherDManning',
                                   'text': 'Christopher D. Manning'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'https://aclanthology.org/P12-1092/',
           'key': 'conf/acl/HuangSMN12',
           'pages': '873-882',
           'title': 'Improving Word Representations via Global Context and '
                    'Multiple Word Prototypes.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/acl/HuangSMN12',
           'venue': 'ACL',
           'year': '2012'},
  'url': 'URL#3011599'},
 {'@id': '3047476',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '79/128', 'text': 'Richard Socher'},
                                  {'@pid': '117/4058', 'text': 'Brody Huval'},
                                  {'@pid': 'm/ChristopherDManning',
                                   'text': 'Christopher D. Manning'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'https://aclanthology.org/D12-1110/',
           'key': 'conf/emnlp/SocherHMN12',
           'pages': '1201-1211',
           'title': 'Semantic Compositionality through Recursive Matrix-Vector '
                    'Spaces.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/emnlp/SocherHMN12',
           'venue': 'EMNLP-CoNLL',
           'year': '2012'},
  'url': 'URL#3047476'},
 {'@id': '3076443',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '29/6166', 'text': 'Quoc V. Le'},
                                  {'@pid': '28/1732',
                                   'text': 'Marc&apos;Aurelio Ranzato'},
                                  {'@pid': '99/10669', 'text': 'Rajat Monga'},
                                  {'@pid': '23/2143', 'text': 'Matthieu Devin'},
                                  {'@pid': '05/8414', 'text': 'Greg Corrado'},
                                  {'@pid': 'c/KaiChen10',
                                   'text': 'Kai Chen 0010'},
                                  {'@pid': 'd/JeffreyDean',
                                   'text': 'Jeffrey Dean'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'http://icml.cc/2012/papers/73.pdf',
           'key': 'conf/icml/LeRMDCCDN12',
           'title': 'Building high-level features using large scale '
                    'unsupervised learning.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icml/LeRMDCCDN12',
           'venue': 'ICML',
           'year': '2012'},
  'url': 'URL#3076443'},
 {'@id': '3079728',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '12/5838', 'text': 'Tao Wang'},
                                  {'@pid': '32/10400', 'text': 'David J. Wu'},
                                  {'@pid': '60/5515', 'text': 'Adam Coates'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'https://ieeexplore.ieee.org/document/6460871/',
           'key': 'conf/icpr/WangWCN12',
           'pages': '3304-3308',
           'title': 'End-to-end text recognition with convolutional neural '
                    'networks.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icpr/WangWCN12',
           'venue': 'ICPR',
           'year': '2012'},
  'url': 'URL#3079728'},
 {'@id': '3117143',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '60/5515', 'text': 'Adam Coates'},
                                  {'@pid': '04/9925',
                                   'text': 'Andrej Karpathy'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'https://proceedings.neurips.cc/paper/2012/hash/39e4973ba3321b80f37d9b55f63ed8b8-Abstract.html',
           'key': 'conf/nips/CoatesKN12',
           'pages': '2690-2698',
           'title': 'Emergence of Object-Selective Features in Unsupervised '
                    'Feature Learning.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/nips/CoatesKN12',
           'venue': 'NIPS',
           'year': '2012'},
  'url': 'URL#3117143'},
 {'@id': '3117369',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '79/128', 'text': 'Richard Socher'},
                                  {'@pid': '117/4058', 'text': 'Brody Huval'},
                                  {'@pid': '126/1701',
                                   'text': 'Bharath Putta Bath'},
                                  {'@pid': 'm/ChristopherDManning',
                                   'text': 'Christopher D. Manning'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'https://proceedings.neurips.cc/paper/2012/hash/3eae62bba9ddf64f69d49dc48e2dd214-Abstract.html',
           'key': 'conf/nips/SocherHBMN12',
           'pages': '665-673',
           'title': 'Convolutional-Recursive Deep Learning for 3D Object '
                    'Classification.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/nips/SocherHBMN12',
           'venue': 'NIPS',
           'year': '2012'},
  'url': 'URL#3117369'},
 {'@id': '3117445',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '95/9989', 'text': 'Will Y. Zou'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '81/4341', 'text': 'Shenghuo Zhu'},
                                  {'@pid': 'y/KaiYu', 'text': 'Kai Yu 0001'}]},
           'ee': 'https://proceedings.neurips.cc/paper/2012/hash/13d7dc096493e1f77fb4ccf3eaf79df1-Abstract.html',
           'key': 'conf/nips/ZouNZY12',
           'pages': '3212-3220',
           'title': 'Deep Learning of Invariant Features via Simulated '
                    'Fixations in Video.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/nips/ZouNZY12',
           'venue': 'NIPS',
           'year': '2012'},
  'url': 'URL#3117445'},
 {'@id': '3152563',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '60/5515', 'text': 'Adam Coates'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1007/978-3-642-35289-8_30',
           'ee': 'https://doi.org/10.1007/978-3-642-35289-8_30',
           'key': 'series/lncs/CoatesN12',
           'pages': '561-580',
           'title': 'Learning Feature Representations with K-Means.',
           'type': 'Parts in Books or Collections',
           'url': 'https://dblp.org/rec/series/lncs/CoatesN12',
           'venue': 'Neural Networks - Tricks of the Trade',
           'year': '2012'},
  'url': 'URL#3152563'},
 {'@id': '3161443',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': 'b/JeffABilmes',
                                   'text': 'Jeff A. Bilmes'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'http://arxiv.org/abs/1206.3959',
           'key': 'journals/corr/abs-1206-3959',
           'title': 'Proceedings of the Twenty-Fifth Conference on Uncertainty '
                    'in Artificial Intelligence (2009)',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-1206-3959',
           'venue': 'CoRR',
           'volume': 'abs/1206.3959',
           'year': '2012'},
  'url': 'URL#3161443'},
 {'@id': '3161677',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '26/7058',
                                   'text': 'Roger B. Grosse'},
                                  {'@pid': '64/4254', 'text': 'Rajat Raina'},
                                  {'@pid': '48/7442', 'text': 'Helen Kwong'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'http://arxiv.org/abs/1206.5241',
           'key': 'journals/corr/abs-1206-5241',
           'title': 'Shift-Invariance Sparse Coding for Audio Classification',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-1206-5241',
           'venue': 'CoRR',
           'volume': 'abs/1206.5241',
           'year': '2012'},
  'url': 'URL#3161677'},
 {'@id': '3162116',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': 'a/PieterAbbeel',
                                   'text': 'Pieter Abbeel'},
                                  {'@pid': 'k/DaphneKoller',
                                   'text': 'Daphne Koller'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'http://arxiv.org/abs/1207.1366',
           'key': 'journals/corr/abs-1207-1366',
           'title': 'Learning Factor Graphs in Polynomial Time &amp; Sample '
                    'Complexity',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-1207-1366',
           'venue': 'CoRR',
           'volume': 'abs/1207.1366',
           'year': '2012'},
  'url': 'URL#3162116'},
 {'@id': '3182035',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '58/2562', 'text': 'Honglak Lee'},
                                  {'@pid': '26/7058',
                                   'text': 'Roger B. Grosse'},
                                  {'@pid': '97/7057',
                                   'text': 'Rajesh Ranganath'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1145/2001269.2001295',
           'ee': 'https://doi.org/10.1145/2001269.2001295',
           'key': 'journals/cacm/LeeGRN11',
           'number': '10',
           'pages': '95-103',
           'title': 'Unsupervised learning of hierarchical representations '
                    'with convolutional deep belief networks.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/cacm/LeeGRN11',
           'venue': 'Commun. ACM',
           'volume': '54',
           'year': '2011'},
  'url': 'URL#3182035'},
 {'@id': '3211921',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '67/2526', 'text': 'J. Zico Kolter'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1177/0278364910390537',
           'ee': 'https://doi.org/10.1177/0278364910390537',
           'key': 'journals/ijrr/KolterN11',
           'number': '2',
           'pages': '150-174',
           'title': 'The Stanford LittleDog - A learning and rapid replanning '
                    'approach to quadruped locomotion.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/ijrr/KolterN11',
           'venue': 'Int. J. Robotics Res.',
           'volume': '30',
           'year': '2011'},
  'url': 'URL#3211921'},
 {'@id': '3289973',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '29/6166', 'text': 'Quoc V. Le'},
                                  {'@pid': '95/9989', 'text': 'Will Y. Zou'},
                                  {'@pid': '11/9990',
                                   'text': 'Serena Y. Yeung'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1109/CVPR.2011.5995496',
           'ee': 'https://doi.org/10.1109/CVPR.2011.5995496',
           'key': 'conf/cvpr/LeZYN11',
           'pages': '3361-3368',
           'title': 'Learning hierarchical invariant spatio-temporal features '
                    'for action recognition with independent subspace '
                    'analysis.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/cvpr/LeZYN11',
           'venue': 'CVPR',
           'year': '2011'},
  'url': 'URL#3289973'},
 {'@id': '3299862',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '79/128', 'text': 'Richard Socher'},
                                  {'@pid': '57/10489',
                                   'text': 'Jeffrey Pennington'},
                                  {'@pid': '63/10489', 'text': 'Eric H. Huang'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': 'm/ChristopherDManning',
                                   'text': 'Christopher D. Manning'}]},
           'ee': 'https://aclanthology.org/D11-1014/',
           'key': 'conf/emnlp/SocherPHNM11',
           'pages': '151-161',
           'title': 'Semi-Supervised Recursive Autoencoders for Predicting '
                    'Sentiment Distributions.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/emnlp/SocherPHNM11',
           'venue': 'EMNLP',
           'year': '2011'},
  'url': 'URL#3299862'},
 {'@id': '3323855',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '60/5515', 'text': 'Adam Coates'},
                                  {'@pid': '72/8365',
                                   'text': 'Blake Carpenter'},
                                  {'@pid': '69/9967', 'text': 'Carl Case'},
                                  {'@pid': '46/7573',
                                   'text': 'Sanjeev Satheesh'},
                                  {'@pid': '93/9962', 'text': 'Bipin Suresh'},
                                  {'@pid': '12/5838', 'text': 'Tao Wang'},
                                  {'@pid': '32/10400', 'text': 'David J. Wu'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1109/ICDAR.2011.95',
           'ee': 'https://doi.org/10.1109/ICDAR.2011.95',
           'key': 'conf/icdar/CoatesCCSSWWN11',
           'pages': '440-445',
           'title': 'Text Detection and Character Recognition in Scene Images '
                    'with Unsupervised Feature Learning.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icdar/CoatesCCSSWWN11',
           'venue': 'ICDAR',
           'year': '2011'},
  'url': 'URL#3323855'},
 {'@id': '3331617',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '60/5515', 'text': 'Adam Coates'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'https://icml.cc/2011/papers/485_icmlpaper.pdf',
           'key': 'conf/icml/CoatesN11',
           'pages': '921-928',
           'title': 'The Importance of Encoding Versus Training with Sparse '
                    'Coding and Vector Quantization.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icml/CoatesN11',
           'venue': 'ICML',
           'year': '2011'},
  'url': 'URL#3331617'},
 {'@id': '3331673',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '29/6166', 'text': 'Quoc V. Le'},
                                  {'@pid': '72/8781', 'text': 'Jiquan Ngiam'},
                                  {'@pid': '60/5515', 'text': 'Adam Coates'},
                                  {'@pid': '85/10622', 'text': 'Ahbik Lahiri'},
                                  {'@pid': '19/10624',
                                   'text': 'Bobby Prochnow'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'https://icml.cc/2011/papers/210_icmlpaper.pdf',
           'key': 'conf/icml/LeNCLPN11',
           'pages': '265-272',
           'title': 'On optimization methods for deep learning.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icml/LeNCLPN11',
           'venue': 'ICML',
           'year': '2011'},
  'url': 'URL#3331673'},
 {'@id': '3331695',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '72/8781', 'text': 'Jiquan Ngiam'},
                                  {'@pid': '88/10451', 'text': 'Zhenghao Chen'},
                                  {'@pid': '10/10453', 'text': 'Pang Wei Koh'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'https://icml.cc/2011/papers/557_icmlpaper.pdf',
           'key': 'conf/icml/NgiamCKN11',
           'pages': '1105-1112',
           'title': 'Learning Deep Energy Models.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icml/NgiamCKN11',
           'venue': 'ICML',
           'year': '2011'},
  'url': 'URL#3331695'},
 {'@id': '3331696',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '72/8781', 'text': 'Jiquan Ngiam'},
                                  {'@pid': '01/8315', 'text': 'Aditya Khosla'},
                                  {'@pid': '64/10624', 'text': 'Mingyu Kim'},
                                  {'@pid': '16/8308', 'text': 'Juhan Nam'},
                                  {'@pid': '58/2562', 'text': 'Honglak Lee'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'https://icml.cc/2011/papers/399_icmlpaper.pdf',
           'key': 'conf/icml/NgiamKKNLN11',
           'pages': '689-696',
           'title': 'Multimodal Deep Learning.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icml/NgiamKKNLN11',
           'venue': 'ICML',
           'year': '2011'},
  'url': 'URL#3331696'},
 {'@id': '3331720',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '79/128', 'text': 'Richard Socher'},
                                  {'@pid': '31/7450',
                                   'text': 'Cliff Chiung-Yu Lin'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': 'm/ChristopherDManning',
                                   'text': 'Christopher D. Manning'}]},
           'ee': 'https://icml.cc/2011/papers/125_icmlpaper.pdf',
           'key': 'conf/icml/SocherLNM11',
           'pages': '129-136',
           'title': 'Parsing Natural Scenes and Natural Language with '
                    'Recursive Neural Networks.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icml/SocherLNM11',
           'venue': 'ICML',
           'year': '2011'},
  'url': 'URL#3331720'},
 {'@id': '3334586',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '69/9967', 'text': 'Carl Case'},
                                  {'@pid': '93/9962', 'text': 'Bipin Suresh'},
                                  {'@pid': '60/5515', 'text': 'Adam Coates'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1109/ICRA.2011.5980523',
           'ee': 'https://doi.org/10.1109/ICRA.2011.5980523',
           'key': 'conf/icra/CaseSCN11',
           'pages': '3297-3303',
           'title': 'Autonomous sign reading for semantic mapping.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icra/CaseSCN11',
           'venue': 'ICRA',
           'year': '2011'},
  'url': 'URL#3334586'},
 {'@id': '3334866',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '48/7792',
                                   'text': 'Ellen Klingbeil'},
                                  {'@pid': '50/9966', 'text': 'Deepak Rao'},
                                  {'@pid': '72/8365',
                                   'text': 'Blake Carpenter'},
                                  {'@pid': '73/3944',
                                   'text': 'Varun Ganapathi'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '77/811',
                                   'text': 'Oussama Khatib'}]},
           'doi': '10.1109/ICRA.2011.5980287',
           'ee': 'https://doi.org/10.1109/ICRA.2011.5980287',
           'key': 'conf/icra/KlingbeilRCGNK11',
           'pages': '2837-2844',
           'title': 'Grasping with application to an autonomous checkout '
                    'robot.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icra/KlingbeilRCGNK11',
           'venue': 'ICRA',
           'year': '2011'},
  'url': 'URL#3334866'},
 {'@id': '3335184',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '78/1197', 'text': 'Morgan Quigley'},
                                  {'@pid': '42/6120', 'text': 'Alan T. Asbeck'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1109/ICRA.2011.5980332',
           'ee': 'https://doi.org/10.1109/ICRA.2011.5980332',
           'key': 'conf/icra/QuigleyAN11',
           'pages': '6051-6058',
           'title': 'A low-cost compliant 7-DOF robotic manipulator.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icra/QuigleyAN11',
           'venue': 'ICRA',
           'year': '2011'},
  'url': 'URL#3335184'},
 {'@id': '3368222',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '60/5515', 'text': 'Adam Coates'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'https://proceedings.neurips.cc/paper/2011/hash/6c1da886822c67822bcf3679d04369fa-Abstract.html',
           'key': 'conf/nips/CoatesN11',
           'pages': '2528-2536',
           'title': 'Selecting Receptive Fields in Deep Networks.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/nips/CoatesN11',
           'venue': 'NIPS',
           'year': '2011'},
  'url': 'URL#3368222'},
 {'@id': '3368336',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '29/6166', 'text': 'Quoc V. Le'},
                                  {'@pid': '27/3000',
                                   'text': 'Alexandre Karpenko'},
                                  {'@pid': '72/8781', 'text': 'Jiquan Ngiam'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'https://proceedings.neurips.cc/paper/2011/hash/233509073ed3432027d48b1a83f5fbd2-Abstract.html',
           'key': 'conf/nips/LeKNN11',
           'pages': '1017-1025',
           'title': 'ICA with Reconstruction Cost for Efficient Overcomplete '
                    'Feature Learning.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/nips/LeKNN11',
           'venue': 'NIPS',
           'year': '2011'},
  'url': 'URL#3368336'},
 {'@id': '3368377',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '72/8781', 'text': 'Jiquan Ngiam'},
                                  {'@pid': '10/10453', 'text': 'Pang Wei Koh'},
                                  {'@pid': '88/10451', 'text': 'Zhenghao Chen'},
                                  {'@pid': '06/11107',
                                   'text': 'Sonia A. Bhaskar'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'https://proceedings.neurips.cc/paper/2011/hash/192fc044e74dffea144f9ac5dc9f3395-Abstract.html',
           'key': 'conf/nips/NgiamKCBN11',
           'pages': '1125-1133',
           'title': 'Sparse Filtering.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/nips/NgiamKCBN11',
           'venue': 'NIPS',
           'year': '2011'},
  'url': 'URL#3368377'},
 {'@id': '3368432',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '79/128', 'text': 'Richard Socher'},
                                  {'@pid': '63/10489', 'text': 'Eric H. Huang'},
                                  {'@pid': '57/10489',
                                   'text': 'Jeffrey Pennington'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': 'm/ChristopherDManning',
                                   'text': 'Christopher D. Manning'}]},
           'ee': 'https://proceedings.neurips.cc/paper/2011/hash/3335881e06d4d23091389226225e17c7-Abstract.html',
           'key': 'conf/nips/SocherHPNM11',
           'pages': '801-809',
           'title': 'Dynamic Pooling and Unfolding Recursive Autoencoders for '
                    'Paraphrase Detection.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/nips/SocherHPNM11',
           'venue': 'NIPS',
           'year': '2011'},
  'url': 'URL#3368432'},
 {'@id': '3396604',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '60/5515', 'text': 'Adam Coates'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '58/2562', 'text': 'Honglak Lee'}]},
           'ee': 'http://proceedings.mlr.press/v15/coates11a/coates11a.pdf',
           'key': 'journals/jmlr/CoatesNL11',
           'pages': '215-223',
           'title': 'An Analysis of Single-Layer Networks in Unsupervised '
                    'Feature Learning.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/journals/jmlr/CoatesNL11',
           'venue': 'AISTATS',
           'year': '2011'},
  'url': 'URL#3396604'},
 {'@id': '3414726',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '29/6166', 'text': 'Quoc V. Le'},
                                  {'@pid': '99/10669', 'text': 'Rajat Monga'},
                                  {'@pid': '23/2143', 'text': 'Matthieu Devin'},
                                  {'@pid': '05/8414', 'text': 'Greg Corrado'},
                                  {'@pid': 'c/KaiChen10',
                                   'text': 'Kai Chen 0010'},
                                  {'@pid': '28/1732',
                                   'text': 'Marc&apos;Aurelio Ranzato'},
                                  {'@pid': 'd/JeffreyDean',
                                   'text': 'Jeffrey Dean'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'http://arxiv.org/abs/1112.6209',
           'key': 'journals/corr/abs-1112-6209',
           'title': 'Building high-level features using large scale '
                    'unsupervised learning',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-1112-6209',
           'venue': 'CoRR',
           'volume': 'abs/1112.6209',
           'year': '2011'},
  'url': 'URL#3414726'},
 {'@id': '3456317',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': 'a/PieterAbbeel',
                                   'text': 'Pieter Abbeel'},
                                  {'@pid': '60/5515', 'text': 'Adam Coates'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1177/0278364910371999',
           'ee': 'https://doi.org/10.1177/0278364910371999',
           'key': 'journals/ijrr/AbbeelCN10',
           'number': '13',
           'pages': '1608-1639',
           'title': 'Autonomous Helicopter Aerobatics through Apprenticeship '
                    'Learning.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/ijrr/AbbeelCN10',
           'venue': 'Int. J. Robotics Res.',
           'volume': '29',
           'year': '2010'},
  'url': 'URL#3456317'},
 {'@id': '3505331',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '78/1197', 'text': 'Morgan Quigley'},
                                  {'@pid': '42/6120', 'text': 'Alan T. Asbeck'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'http://www.aaai.org/ocs/index.php/WS/ROBOT10/paper/view/2343',
           'key': 'conf/aaai/QuigleyAN10',
           'title': 'Low-Cost Manipulation Powered by ROS.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/aaai/QuigleyAN10',
           'venue': 'Enabling Intelligence through Middleware',
           'year': '2010'},
  'url': 'URL#3505331'},
 {'@id': '3527763',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '52/6883',
                                   'text': 'Olga Russakovsky'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1109/CVPR.2010.5540097',
           'ee': 'https://doi.org/10.1109/CVPR.2010.5540097',
           'key': 'conf/cvpr/RussakovskyN10',
           'pages': '1070-1077',
           'title': 'A Steiner tree approach to efficient object detection.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/cvpr/RussakovskyN10',
           'venue': 'CVPR',
           'year': '2010'},
  'url': 'URL#3527763'},
 {'@id': '3565778',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '60/5515', 'text': 'Adam Coates'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1109/ROBOT.2010.5509644',
           'ee': 'https://doi.org/10.1109/ROBOT.2010.5509644',
           'key': 'conf/icra/CoatesN10',
           'pages': '412-419',
           'title': 'Multi-camera object detection for robotics.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icra/CoatesN10',
           'venue': 'ICRA',
           'year': '2010'},
  'url': 'URL#3565778'},
 {'@id': '3566017',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '48/7792',
                                   'text': 'Ellen Klingbeil'},
                                  {'@pid': '72/8365',
                                   'text': 'Blake Carpenter'},
                                  {'@pid': '52/6883',
                                   'text': 'Olga Russakovsky'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1109/ROBOT.2010.5509466',
           'ee': 'https://doi.org/10.1109/ROBOT.2010.5509466',
           'key': 'conf/icra/KlingbeilCRN10',
           'pages': '751-758',
           'title': 'Autonomous operation of novel elevators for robot '
                    'navigation.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icra/KlingbeilCRN10',
           'venue': 'ICRA',
           'year': '2010'},
  'url': 'URL#3566017'},
 {'@id': '3566026',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '67/2526', 'text': 'J. Zico Kolter'},
                                  {'@pid': '00/5624',
                                   'text': 'Christian Plagemann'},
                                  {'@pid': '58/8368',
                                   'text': 'David T. Jackson'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': 't/SebastianThrun',
                                   'text': 'Sebastian Thrun'}]},
           'doi': '10.1109/ROBOT.2010.5509562',
           'ee': 'https://doi.org/10.1109/ROBOT.2010.5509562',
           'key': 'conf/icra/KolterPJNT10',
           'pages': '839-845',
           'title': 'A probabilistic approach to mixed open-loop and '
                    'closed-loop control, with application to extreme '
                    'autonomous driving.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icra/KolterPJNT10',
           'venue': 'ICRA',
           'year': '2010'},
  'url': 'URL#3566026'},
 {'@id': '3566058',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '29/6166', 'text': 'Quoc V. Le'},
                                  {'@pid': '41/8370', 'text': 'David Kamm'},
                                  {'@pid': '87/8368', 'text': 'A. F. Kara'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1109/ROBOT.2010.5509508',
           'ee': 'https://doi.org/10.1109/ROBOT.2010.5509508',
           'key': 'conf/icra/LeKKN10',
           'pages': '5062-5069',
           'title': 'Learning to grasp objects with multiple contact points.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icra/LeKKN10',
           'venue': 'ICRA',
           'year': '2010'},
  'url': 'URL#3566058'},
 {'@id': '3578673',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '48/7792',
                                   'text': 'Ellen Klingbeil'},
                                  {'@pid': '82/6189',
                                   'text': 'Ashutosh Saxena'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1109/IROS.2010.5649847',
           'ee': 'https://doi.org/10.1109/IROS.2010.5649847',
           'key': 'conf/iros/KlingbeilSN10',
           'pages': '2751-2757',
           'title': 'Learning to open new doors.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/iros/KlingbeilSN10',
           'venue': 'IROS',
           'year': '2010'},
  'url': 'URL#3578673'},
 {'@id': '3578944',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '78/1197', 'text': 'Morgan Quigley'},
                                  {'@pid': '40/8366',
                                   'text': 'Reuben D. Brewer'},
                                  {'@pid': '87/7743',
                                   'text': 'Sai Prashanth Soundararaj'},
                                  {'@pid': '48/7441', 'text': 'Vijay Pradeep'},
                                  {'@pid': '29/6166', 'text': 'Quoc V. Le'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1109/IROS.2010.5649804',
           'ee': 'https://doi.org/10.1109/IROS.2010.5649804',
           'key': 'conf/iros/QuigleyBSPLN10',
           'pages': '6168-6174',
           'title': 'Low-cost accelerometers for robotic manipulator '
                    'perception.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/iros/QuigleyBSPLN10',
           'venue': 'IROS',
           'year': '2010'},
  'url': 'URL#3578944'},
 {'@id': '3578954',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '50/9966', 'text': 'Deepak Rao'},
                                  {'@pid': '29/6166', 'text': 'Quoc V. Le'},
                                  {'@pid': '80/1165',
                                   'text': 'Thanathorn Phoka'},
                                  {'@pid': '78/1197', 'text': 'Morgan Quigley'},
                                  {'@pid': '87/5655',
                                   'text': 'Attawith Sudsang'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1109/IROS.2010.5650493',
           'ee': 'https://doi.org/10.1109/IROS.2010.5650493',
           'key': 'conf/iros/RaoLPQSN10',
           'pages': '2578-2585',
           'title': 'Grasping novel objects with depth segmentation.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/iros/RaoLPQSN10',
           'venue': 'IROS',
           'year': '2010'},
  'url': 'URL#3578954'},
 {'@id': '3598231',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '67/2526', 'text': 'J. Zico Kolter'},
                                  {'@pid': '65/7464',
                                   'text': 'Siddharth Batra'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'https://proceedings.neurips.cc/paper/2010/hash/7810ccd41bf26faaa2c4e1f20db70a71-Abstract.html',
           'key': 'conf/nips/KolterBN10',
           'pages': '1153-1161',
           'title': 'Energy Disaggregation via Discriminative Sparse Coding.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/nips/KolterBN10',
           'venue': 'NIPS',
           'year': '2010'},
  'url': 'URL#3598231'},
 {'@id': '3598244',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '29/6166', 'text': 'Quoc V. Le'},
                                  {'@pid': '72/8781', 'text': 'Jiquan Ngiam'},
                                  {'@pid': '88/10451', 'text': 'Zhenghao Chen'},
                                  {'@pid': '57/10453',
                                   'text': 'Daniel Jin hao Chia'},
                                  {'@pid': '10/10453', 'text': 'Pang Wei Koh'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'https://proceedings.neurips.cc/paper/2010/hash/01f78be6f7cad02658508fe4616098a9-Abstract.html',
           'key': 'conf/nips/LeNCCKN10',
           'pages': '1279-1287',
           'title': 'Tiled convolutional neural networks.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/nips/LeNCCKN10',
           'venue': 'NIPS',
           'year': '2010'},
  'url': 'URL#3598244'},
 {'@id': '3631460',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': 'a/PieterAbbeel',
                                   'text': 'Pieter Abbeel'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1007/978-0-387-30164-8_417',
           'ee': 'https://doi.org/10.1007/978-0-387-30164-8_417',
           'key': 'reference/ml/AbbeelN10',
           'pages': '554-558',
           'title': 'Inverse Reinforcement Learning.',
           'type': 'Reference Works',
           'url': 'https://dblp.org/rec/reference/ml/AbbeelN10',
           'venue': 'Encyclopedia of Machine Learning',
           'year': '2010'},
  'url': 'URL#3631460'},
 {'@id': '3631489',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '60/5515', 'text': 'Adam Coates'},
                                  {'@pid': 'a/PieterAbbeel',
                                   'text': 'Pieter Abbeel'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1007/978-0-387-30164-8_45',
           'ee': 'https://doi.org/10.1007/978-0-387-30164-8_45',
           'key': 'reference/ml/CoatesAN10',
           'pages': '53-61',
           'title': 'Autonomous Helicopter Flight Using Reinforcement '
                    'Learning.',
           'type': 'Reference Works',
           'url': 'https://dblp.org/rec/reference/ml/CoatesAN10',
           'venue': 'Encyclopedia of Machine Learning',
           'year': '2010'},
  'url': 'URL#3631489'},
 {'@id': '3649135',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': 'p/JanPeters1',
                                   'text': 'Jan Peters 0001'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1007/S10514-009-9122-2',
           'ee': 'https://doi.org/10.1007/s10514-009-9122-2',
           'key': 'journals/arobots/PetersN09',
           'number': '1',
           'pages': '1-2',
           'title': 'Guest editorial - Special issue on robot learning, Part '
                    'A.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/arobots/PetersN09',
           'venue': 'Auton. Robots',
           'volume': '27',
           'year': '2009'},
  'url': 'URL#3649135'},
 {'@id': '3649136',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': 'p/JanPeters1',
                                   'text': 'Jan Peters 0001'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1007/S10514-009-9131-1',
           'ee': 'https://doi.org/10.1007/s10514-009-9131-1',
           'key': 'journals/arobots/PetersN09a',
           'number': '2',
           'pages': '91-92',
           'title': 'Guest editorial - Special issue on robot learning, Part '
                    'B.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/arobots/PetersN09a',
           'venue': 'Auton. Robots',
           'volume': '27',
           'year': '2009'},
  'url': 'URL#3649136'},
 {'@id': '3652564',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '60/5515', 'text': 'Adam Coates'},
                                  {'@pid': 'a/PieterAbbeel',
                                   'text': 'Pieter Abbeel'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1145/1538788.1538812',
           'ee': 'https://doi.org/10.1145/1538788.1538812',
           'key': 'journals/cacm/CoatesAN09',
           'number': '7',
           'pages': '97-105',
           'title': 'Apprenticeship learning for helicopter control.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/cacm/CoatesAN09',
           'venue': 'Commun. ACM',
           'volume': '52',
           'year': '2009'},
  'url': 'URL#3652564'},
 {'@id': '3701990',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '82/6189',
                                   'text': 'Ashutosh Saxena'},
                                  {'@pid': '62/2750', 'text': 'Min Sun'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1109/TPAMI.2008.132',
           'ee': 'https://doi.org/10.1109/TPAMI.2008.132',
           'key': 'journals/pami/SaxenaSN09',
           'number': '5',
           'pages': '824-840',
           'title': 'Make3D - Learning 3D Scene Structure from a Single Still '
                    'Image.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/pami/SaxenaSN09',
           'venue': 'IEEE Trans. Pattern Anal. Mach. Intell.',
           'volume': '31',
           'year': '2009'},
  'url': 'URL#3701990'},
 {'@id': '3786014',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '73/1823',
                                   'text': 'Chuan-Sheng Foo'},
                                  {'@pid': '58/2809', 'text': 'Chuong B. Do'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1145/1553374.1553415',
           'ee': 'https://doi.org/10.1145/1553374.1553415',
           'key': 'conf/icml/FooDN09',
           'pages': '321-328',
           'title': 'A majorization-minimization algorithm for (multiple) '
                    'hyperparameter learning.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icml/FooDN09',
           'venue': 'ICML',
           'year': '2009'},
  'url': 'URL#3786014'},
 {'@id': '3786038',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '67/2526', 'text': 'J. Zico Kolter'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1145/1553374.1553441',
           'ee': 'https://doi.org/10.1145/1553374.1553441',
           'key': 'conf/icml/KolterN09',
           'pages': '513-520',
           'title': 'Near-Bayesian exploration in polynomial time.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icml/KolterN09',
           'venue': 'ICML',
           'year': '2009'},
  'url': 'URL#3786038'},
 {'@id': '3786039',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '67/2526', 'text': 'J. Zico Kolter'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1145/1553374.1553442',
           'ee': 'https://doi.org/10.1145/1553374.1553442',
           'key': 'conf/icml/KolterN09a',
           'pages': '521-528',
           'title': 'Regularization and feature selection in least-squares '
                    'temporal difference learning.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icml/KolterN09a',
           'venue': 'ICML',
           'year': '2009'},
  'url': 'URL#3786039'},
 {'@id': '3786050',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '58/2562', 'text': 'Honglak Lee'},
                                  {'@pid': '26/7058',
                                   'text': 'Roger B. Grosse'},
                                  {'@pid': '97/7057',
                                   'text': 'Rajesh Ranganath'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1145/1553374.1553453',
           'ee': 'https://doi.org/10.1145/1553374.1553453',
           'key': 'conf/icml/LeeGRN09',
           'pages': '609-616',
           'title': 'Convolutional deep belief networks for scalable '
                    'unsupervised learning of hierarchical representations.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icml/LeeGRN09',
           'venue': 'ICML',
           'year': '2009'},
  'url': 'URL#3786050'},
 {'@id': '3786087',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '64/4254', 'text': 'Rajat Raina'},
                                  {'@pid': '62/7056', 'text': 'Anand Madhavan'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1145/1553374.1553486',
           'ee': 'https://doi.org/10.1145/1553374.1553486',
           'key': 'conf/icml/RainaMN09',
           'pages': '873-880',
           'title': 'Large-scale deep unsupervised learning using graphics '
                    'processors.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icml/RainaMN09',
           'venue': 'ICML',
           'year': '2009'},
  'url': 'URL#3786087'},
 {'@id': '3788376',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '43/6738', 'text': 'Kaijen Hsiao'},
                                  {'@pid': '35/7793', 'text': 'Paul Nangeroni'},
                                  {'@pid': '81/682', 'text': 'Manfred Huber'},
                                  {'@pid': '82/6189',
                                   'text': 'Ashutosh Saxena'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1109/ROBOT.2009.5152849',
           'ee': 'https://doi.org/10.1109/ROBOT.2009.5152849',
           'key': 'conf/icra/HsiaoNHSN09',
           'pages': '2098-2105',
           'title': 'Reactive grasping using optical proximity sensors.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icra/HsiaoNHSN09',
           'venue': 'ICRA',
           'year': '2009'},
  'url': 'URL#3788376'},
 {'@id': '3788456',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '67/2526', 'text': 'J. Zico Kolter'},
                                  {'@pid': '34/3252', 'text': 'Youngjun Kim'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1109/ROBOT.2009.5152795',
           'ee': 'https://doi.org/10.1109/ROBOT.2009.5152795',
           'key': 'conf/icra/KolterKN09',
           'pages': '1557-1564',
           'title': 'Stereo vision and terrain modeling for quadruped robots.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icra/KolterKN09',
           'venue': 'ICRA',
           'year': '2009'},
  'url': 'URL#3788456'},
 {'@id': '3788457',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '67/2526', 'text': 'J. Zico Kolter'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1109/ROBOT.2009.5152554',
           'ee': 'https://doi.org/10.1109/ROBOT.2009.5152554',
           'key': 'conf/icra/KolterN09',
           'pages': '1675-1682',
           'title': 'Task-space trajectories via cubic spline optimization.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icra/KolterN09',
           'venue': 'ICRA',
           'year': '2009'},
  'url': 'URL#3788457'},
 {'@id': '3788646',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '78/1197', 'text': 'Morgan Quigley'},
                                  {'@pid': '65/7464',
                                   'text': 'Siddharth Batra'},
                                  {'@pid': '89/1569', 'text': 'Stephen Gould'},
                                  {'@pid': '48/7792',
                                   'text': 'Ellen Klingbeil'},
                                  {'@pid': '29/6166', 'text': 'Quoc V. Le'},
                                  {'@pid': '77/7793', 'text': 'Ashley Wellman'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1109/ROBOT.2009.5152750',
           'ee': 'https://doi.org/10.1109/ROBOT.2009.5152750',
           'key': 'conf/icra/QuigleyBGKLWN09',
           'pages': '2816-2822',
           'title': 'High-accuracy 3D sensing for mobile manipulation - '
                    'Improving object detection and door opening.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icra/QuigleyBGKLWN09',
           'venue': 'ICRA',
           'year': '2009'},
  'url': 'URL#3788646'},
 {'@id': '3788681',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '82/6189',
                                   'text': 'Ashutosh Saxena'},
                                  {'@pid': '88/6457',
                                   'text': 'Justin Driemeyer'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1109/ROBOT.2009.5152855',
           'ee': 'https://doi.org/10.1109/ROBOT.2009.5152855',
           'key': 'conf/icra/SaxenaDN09',
           'pages': '794-800',
           'title': 'Learning 3-D object orientation from images.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icra/SaxenaDN09',
           'venue': 'ICRA',
           'year': '2009'},
  'url': 'URL#3788681'},
 {'@id': '3788682',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '82/6189',
                                   'text': 'Ashutosh Saxena'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1109/ROBOT.2009.5152861',
           'ee': 'https://doi.org/10.1109/ROBOT.2009.5152861',
           'key': 'conf/icra/SaxenaN09',
           'pages': '1737-1742',
           'title': 'Learning sound location from a single microphone.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icra/SaxenaN09',
           'venue': 'ICRA',
           'year': '2009'},
  'url': 'URL#3788682'},
 {'@id': '3794780',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '58/2562', 'text': 'Honglak Lee'},
                                  {'@pid': '64/4254', 'text': 'Rajat Raina'},
                                  {'@pid': '50/7395', 'text': 'Alex Teichman'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'http://ijcai.org/Proceedings/09/Papers/188.pdf',
           'key': 'conf/ijcai/LeeRTN09',
           'pages': '1113-1119',
           'title': 'Exponential Family Sparse Coding with Application to '
                    'Self-taught Learning.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/ijcai/LeeRTN09',
           'venue': 'IJCAI',
           'year': '2009'},
  'url': 'URL#3794780'},
 {'@id': '3799785',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '60/5515', 'text': 'Adam Coates'},
                                  {'@pid': '47/3568',
                                   'text': 'Paul Baumstarck'},
                                  {'@pid': '29/6166', 'text': 'Quoc V. Le'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1109/IROS.2009.5354084',
           'ee': 'https://doi.org/10.1109/IROS.2009.5354084',
           'key': 'conf/iros/CoatesBLN09',
           'pages': '4287-4293',
           'title': 'Scalable learning for object detection with GPU hardware.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/iros/CoatesBLN09',
           'venue': 'IROS',
           'year': '2009'},
  'url': 'URL#3799785'},
 {'@id': '3800072',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '29/6166', 'text': 'Quoc V. Le'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1109/IROS.2009.5354272',
           'ee': 'https://doi.org/10.1109/IROS.2009.5354272',
           'key': 'conf/iros/LeN09',
           'pages': '3651-3658',
           'title': 'Joint calibration of multiple sensors.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/iros/LeN09',
           'venue': 'IROS',
           'year': '2009'},
  'url': 'URL#3800072'},
 {'@id': '3818598',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '58/2562', 'text': 'Honglak Lee'},
                                  {'@pid': '47/9768', 'text': 'Peter T. Pham'},
                                  {'@pid': '48/10432', 'text': 'Yan Largman'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'https://proceedings.neurips.cc/paper/2009/hash/a113c1ecd3cace2237256f4c712f61b5-Abstract.html',
           'key': 'conf/nips/LeePLN09',
           'pages': '1096-1104',
           'title': 'Unsupervised feature learning for audio classification '
                    'using convolutional deep belief networks.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/nips/LeePLN09',
           'venue': 'NIPS',
           'year': '2009'},
  'url': 'URL#3818598'},
 {'@id': '3825825',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '67/2526', 'text': 'J. Zico Kolter'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.15607/RSS.2009.V.027',
           'ee': 'http://www.roboticsproceedings.org/rss05/p27.html',
           'key': 'conf/rss/KolterN09',
           'title': 'Policy search via the signed derivative.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/rss/KolterN09',
           'venue': 'Robotics - Science and Systems',
           'year': '2009'},
  'url': 'URL#3825825'},
 {'@id': '3837619',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '12/7983',
                                   'text': 'Savil Srivastava'},
                                  {'@pid': '82/6189',
                                   'text': 'Ashutosh Saxena'},
                                  {'@pid': '55/3346',
                                   'text': 'Christian Theobalt'},
                                  {'@pid': 't/SebastianThrun',
                                   'text': 'Sebastian Thrun'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'key': 'conf/vmv/SrivastavaSTTN09',
           'pages': '19-28',
           'title': 'i23 - Rapid Interactive 3D Reconstruction from a Single '
                    'Image.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/vmv/SrivastavaSTTN09',
           'venue': 'VMV',
           'year': '2009'},
  'url': 'URL#3837619'},
 {'@id': '3849057',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': 'b/JeffABilmes',
                                   'text': 'Jeff A. Bilmes'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'https://dslpitt.org/uai/displayArticles.jsp?mmnu=1&amp;smnu=1&amp;proceeding_id=25',
           'key': 'conf/uai/2009',
           'publisher': 'AUAI Press',
           'title': 'UAI 2009, Proceedings of the Twenty-Fifth Conference on '
                    'Uncertainty in Artificial Intelligence, Montreal, QC, '
                    'Canada, June 18-21, 2009',
           'type': 'Editorship',
           'url': 'https://dblp.org/rec/conf/uai/2009',
           'venue': 'UAI',
           'year': '2009'},
  'url': 'URL#3849057'},
 {'@id': '3894194',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '82/6189',
                                   'text': 'Ashutosh Saxena'},
                                  {'@pid': '37/4573', 'text': 'Sung H. Chung'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1007/S11263-007-0071-Y',
           'ee': 'https://doi.org/10.1007/s11263-007-0071-y',
           'key': 'journals/ijcv/SaxenaCN08',
           'number': '1',
           'pages': '53-69',
           'title': '3-D Depth Reconstruction from a Single Still Image.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/ijcv/SaxenaCN08',
           'venue': 'Int. J. Comput. Vis.',
           'volume': '76',
           'year': '2008'},
  'url': 'URL#3894194'},
 {'@id': '3897362',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '82/6189',
                                   'text': 'Ashutosh Saxena'},
                                  {'@pid': '88/6457',
                                   'text': 'Justin Driemeyer'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1177/0278364907087172',
           'ee': 'https://doi.org/10.1177/0278364907087172',
           'key': 'journals/ijrr/SaxenaDN08',
           'number': '2',
           'pages': '157-173',
           'title': 'Robotic Grasping of Novel Objects using Vision.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/ijrr/SaxenaDN08',
           'venue': 'Int. J. Robotics Res.',
           'volume': '27',
           'year': '2008'},
  'url': 'URL#3897362'},
 {'@id': '3939268',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '54/5582', 'text': 'Benjamin Sapp'},
                                  {'@pid': '82/6189',
                                   'text': 'Ashutosh Saxena'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'http://www.aaai.org/Library/AAAI/2008/aaai08-222.php',
           'key': 'conf/aaai/SappSN08',
           'pages': '1402-1408',
           'title': 'A Fast Data Collection and Augmentation Procedure for '
                    'Object Recognition.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/aaai/SappSN08',
           'venue': 'AAAI',
           'year': '2008'},
  'url': 'URL#3939268'},
 {'@id': '3939269',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '82/6189',
                                   'text': 'Ashutosh Saxena'},
                                  {'@pid': '62/2750', 'text': 'Min Sun'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'http://www.aaai.org/Library/AAAI/2008/aaai08-265.php',
           'key': 'conf/aaai/SaxenaSN08',
           'pages': '1571-1576',
           'title': 'Make3D - Depth Perception from a Single Still Image.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/aaai/SaxenaSN08',
           'venue': 'AAAI',
           'year': '2008'},
  'url': 'URL#3939269'},
 {'@id': '3939270',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '82/6189',
                                   'text': 'Ashutosh Saxena'},
                                  {'@pid': '35/2573',
                                   'text': 'Lawson L. S. Wong'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'http://www.aaai.org/Library/AAAI/2008/aaai08-246.php',
           'key': 'conf/aaai/SaxenaWN08',
           'pages': '1491-1494',
           'title': 'Learning Grasp Strategies with Partial Shape Information.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/aaai/SaxenaWN08',
           'venue': 'AAAI',
           'year': '2008'},
  'url': 'URL#3939270'},
 {'@id': '3969010',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '42/1066', 'text': 'Rion Snow'},
                                  {'@pid': '10/1481',
                                   'text': 'Brendan O&apos;Connor'},
                                  {'@pid': '31/985', 'text': 'Daniel Jurafsky'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'https://aclanthology.org/D08-1027/',
           'key': 'conf/emnlp/SnowOJN08',
           'pages': '254-263',
           'title': 'Cheap and Fast - But is it Good? Evaluating Non-Expert '
                    'Annotations for Natural Language Tasks.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/emnlp/SnowOJN08',
           'venue': 'EMNLP',
           'year': '2008'},
  'url': 'URL#3969010'},
 {'@id': '3993283',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '60/5515', 'text': 'Adam Coates'},
                                  {'@pid': 'a/PieterAbbeel',
                                   'text': 'Pieter Abbeel'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1145/1390156.1390175',
           'ee': 'https://doi.org/10.1145/1390156.1390175',
           'key': 'conf/icml/CoatesAN08',
           'pages': '144-151',
           'title': 'Learning for control from multiple demonstrations.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icml/CoatesAN08',
           'venue': 'ICML',
           'year': '2008'},
  'url': 'URL#3993283'},
 {'@id': '3993326',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '67/2526', 'text': 'J. Zico Kolter'},
                                  {'@pid': '60/5515', 'text': 'Adam Coates'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '83/5894', 'text': 'Yi Gu'},
                                  {'@pid': '00/5982',
                                   'text': 'Charles DuHadway'}]},
           'doi': '10.1145/1390156.1390218',
           'ee': 'https://doi.org/10.1145/1390156.1390218',
           'key': 'conf/icml/KolterCNGD08',
           'pages': '488-495',
           'title': 'Space-indexed dynamic programming - learning to follow '
                    'trajectories.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icml/KolterCNGD08',
           'venue': 'ICML',
           'year': '2008'},
  'url': 'URL#3993326'},
 {'@id': '3997237',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '67/2526', 'text': 'J. Zico Kolter'},
                                  {'@pid': '68/3999',
                                   'text': 'Mike P. Rodgers'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1109/ROBOT.2008.4543305',
           'ee': 'https://doi.org/10.1109/ROBOT.2008.4543305',
           'key': 'conf/icra/KolterRN08',
           'pages': '811-818',
           'title': 'A control architecture for quadruped locomotion over '
                    'rough terrain.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icra/KolterRN08',
           'venue': 'ICRA',
           'year': '2008'},
  'url': 'URL#3997237'},
 {'@id': '4007637',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': 'a/PieterAbbeel',
                                   'text': 'Pieter Abbeel'},
                                  {'@pid': '01/5878', 'text': 'Dmitri Dolgov'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': 't/SebastianThrun',
                                   'text': 'Sebastian Thrun'}]},
           'doi': '10.1109/IROS.2008.4651222',
           'ee': 'https://doi.org/10.1109/IROS.2008.4651222',
           'key': 'conf/iros/AbbeelDNT08',
           'pages': '1083-1090',
           'title': 'Apprenticeship learning for motion planning with '
                    'application to parking lot navigation.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/iros/AbbeelDNT08',
           'venue': 'IROS',
           'year': '2008'},
  'url': 'URL#4007637'},
 {'@id': '4011241',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': 'a/PieterAbbeel',
                                   'text': 'Pieter Abbeel'},
                                  {'@pid': '60/5515', 'text': 'Adam Coates'},
                                  {'@pid': '01/877', 'text': 'Timothy Hunter'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1007/978-3-642-00196-3_45',
           'ee': 'https://doi.org/10.1007/978-3-642-00196-3_45',
           'key': 'conf/iser/AbbeelCHN08',
           'pages': '385-394',
           'title': 'Autonomous Autorotation of an RC Helicopter.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/iser/AbbeelCHN08',
           'venue': 'ISER',
           'year': '2008'},
  'url': 'URL#4011241'},
 {'@id': '4095839',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '84/4724',
                                   'text': 'Masayoshi Matsuoka'},
                                  {'@pid': '82/2010', 'text': 'Alan Chen 0001'},
                                  {'@pid': '03/1138',
                                   'text': 'Surya P. N. Singh'},
                                  {'@pid': '60/5515', 'text': 'Adam Coates'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': 't/SebastianThrun',
                                   'text': 'Sebastian Thrun'}]},
           'doi': '10.1177/0278364906074898',
           'ee': 'https://doi.org/10.1177/0278364906074898',
           'key': 'journals/ijrr/MatsuokaCSCNT07',
           'number': '2',
           'pages': '205-215',
           'title': 'Autonomous Helicopter Tracking and Localization Using a '
                    'Self-surveying Camera Array.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/ijrr/MatsuokaCSCNT07',
           'venue': 'Int. J. Robotics Res.',
           'volume': '26',
           'year': '2007'},
  'url': 'URL#4095839'},
 {'@id': '4161356',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '42/1066', 'text': 'Rion Snow'},
                                  {'@pid': '15/8160',
                                   'text': 'Sushant Prakash'},
                                  {'@pid': '31/985', 'text': 'Daniel Jurafsky'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'https://aclanthology.org/D07-1107/',
           'key': 'conf/emnlp/SnowPJN07',
           'pages': '1005-1014',
           'title': 'Learning to Merge Word Senses.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/emnlp/SnowPJN07',
           'venue': 'EMNLP-CoNLL',
           'year': '2007'},
  'url': 'URL#4161356'},
 {'@id': '4181387',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '82/6189',
                                   'text': 'Ashutosh Saxena'},
                                  {'@pid': '62/2750', 'text': 'Min Sun'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1109/ICCV.2007.4408828',
           'ee': 'https://doi.org/10.1109/ICCV.2007.4408828',
           'key': 'conf/iccv/SaxenaSN07',
           'pages': '1-8',
           'title': 'Learning 3-D Scene Structure from a Single Still Image.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/iccv/SaxenaSN07',
           'venue': 'ICCV',
           'year': '2007'},
  'url': 'URL#4181387'},
 {'@id': '4181388',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '82/6189',
                                   'text': 'Ashutosh Saxena'},
                                  {'@pid': '62/2750', 'text': 'Min Sun'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1109/ICCV.2007.4409219',
           'ee': 'https://doi.org/10.1109/ICCV.2007.4409219',
           'key': 'conf/iccv/SaxenaSN07a',
           'pages': '1-8',
           'title': '3-D Reconstruction from Sparse Views using Monocular '
                    'Vision.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/iccv/SaxenaSN07a',
           'venue': 'ICCV',
           'year': '2007'},
  'url': 'URL#4181388'},
 {'@id': '4187592',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '64/4254', 'text': 'Rajat Raina'},
                                  {'@pid': '75/5304', 'text': 'Alexis Battle'},
                                  {'@pid': '58/2562', 'text': 'Honglak Lee'},
                                  {'@pid': '56/5290',
                                   'text': 'Benjamin Packer'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1145/1273496.1273592',
           'ee': 'https://doi.org/10.1145/1273496.1273592',
           'key': 'conf/icml/RainaBLPN07',
           'pages': '759-766',
           'title': 'Self-taught learning - transfer learning from unlabeled '
                    'data.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icml/RainaBLPN07',
           'venue': 'ICML',
           'year': '2007'},
  'url': 'URL#4187592'},
 {'@id': '4196350',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '89/1569', 'text': 'Stephen Gould'},
                                  {'@pid': '11/1327',
                                   'text': 'Joakim Arfvidsson'},
                                  {'@pid': '05/6550', 'text': 'Adrian Kaehler'},
                                  {'@pid': '54/5582', 'text': 'Benjamin Sapp'},
                                  {'@pid': '57/1971', 'text': 'Marius Messner'},
                                  {'@pid': 'b/GaryRBradski',
                                   'text': 'Gary R. Bradski'},
                                  {'@pid': '47/3568',
                                   'text': 'Paul Baumstarck'},
                                  {'@pid': '01/2799', 'text': 'Sukwon Chung'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'http://ijcai.org/Proceedings/07/Papers/341.pdf',
           'key': 'conf/ijcai/GouldAKSMBBCN07',
           'pages': '2115-2121',
           'title': 'Peripheral-Foveal Vision for Real-time Object Recognition '
                    'and Tracking in Video.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/ijcai/GouldAKSMBBCN07',
           'venue': 'IJCAI',
           'year': '2007'},
  'url': 'URL#4196350'},
 {'@id': '4196416',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '62/4095', 'text': 'Ted Kremenek'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': 'e/DREngler',
                                   'text': 'Dawson R. Engler'}]},
           'ee': 'http://ijcai.org/Proceedings/07/Papers/404.pdf',
           'key': 'conf/ijcai/KremenekNE07',
           'pages': '2510-2516',
           'title': 'A Factor Graph Model for Software Bug Finding.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/ijcai/KremenekNE07',
           'venue': 'IJCAI',
           'year': '2007'},
  'url': 'URL#4196416'},
 {'@id': '4196522',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '31/1310',
                                   'text': 'Anna Petrovskaya'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'http://ijcai.org/Proceedings/07/Papers/351.pdf',
           'key': 'conf/ijcai/PetrovskayaN07',
           'pages': '2178-2184',
           'title': 'Probabilistic Mobile Manipulation in Dynamic '
                    'Environments, with Application to Opening Doors.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/ijcai/PetrovskayaN07',
           'venue': 'IJCAI',
           'year': '2007'},
  'url': 'URL#4196522'},
 {'@id': '4196566',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '82/6189',
                                   'text': 'Ashutosh Saxena'},
                                  {'@pid': '37/2776', 'text': 'Jamie Schulte'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'http://ijcai.org/Proceedings/07/Papers/354.pdf',
           'key': 'conf/ijcai/SaxenaSN07',
           'pages': '2197-2203',
           'title': 'Depth Estimation Using Monocular and Stereo Cues.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/ijcai/SaxenaSN07',
           'venue': 'IJCAI',
           'year': '2007'},
  'url': 'URL#4196566'},
 {'@id': '4206117',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '82/6189',
                                   'text': 'Ashutosh Saxena'},
                                  {'@pid': '35/2573',
                                   'text': 'Lawson L. S. Wong'},
                                  {'@pid': '78/1197', 'text': 'Morgan Quigley'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1007/978-3-642-14743-2_28',
           'ee': 'https://doi.org/10.1007/978-3-642-14743-2_28',
           'key': 'conf/isrr/SaxenaWQN07',
           'pages': '337-348',
           'title': 'A Vision-Based System for Grasping Novel Objects in '
                    'Cluttered Environments.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/isrr/SaxenaWQN07',
           'venue': 'ISRR',
           'year': '2007'},
  'url': 'URL#4206117'},
 {'@id': '4217581',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '58/2809', 'text': 'Chuong B. Do'},
                                  {'@pid': '73/1823',
                                   'text': 'Chuan-Sheng Foo'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'https://proceedings.neurips.cc/paper/2007/hash/851ddf5058cf22df63d3344ad89919cf-Abstract.html',
           'key': 'conf/nips/DoFN07',
           'pages': '377-384',
           'title': 'Efficient multiple hyperparameter learning for log-linear '
                    'models.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/nips/DoFN07',
           'venue': 'NIPS',
           'year': '2007'},
  'url': 'URL#4217581'},
 {'@id': '4217629',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '67/2526', 'text': 'J. Zico Kolter'},
                                  {'@pid': 'a/PieterAbbeel',
                                   'text': 'Pieter Abbeel'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'https://proceedings.neurips.cc/paper/2007/hash/54a367d629152b720749e187b3eaa11b-Abstract.html',
           'key': 'conf/nips/KolterAN07',
           'pages': '769-776',
           'title': 'Hierarchical Apprenticeship Learning with Application to '
                    'Quadruped Locomotion.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/nips/KolterAN07',
           'venue': 'NIPS',
           'year': '2007'},
  'url': 'URL#4217629'},
 {'@id': '4217640',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '58/2562', 'text': 'Honglak Lee'},
                                  {'@pid': '20/614',
                                   'text': 'Chaitanya Ekanadham'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'https://proceedings.neurips.cc/paper/2007/hash/4daa3db355ef2b0e64b472968cb70f0d-Abstract.html',
           'key': 'conf/nips/LeeEN07',
           'pages': '873-880',
           'title': 'Sparse deep belief net model for visual area V2.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/nips/LeeEN07',
           'venue': 'NIPS',
           'year': '2007'},
  'url': 'URL#4217640'},
 {'@id': '4224449',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '67/2526', 'text': 'J. Zico Kolter'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.15607/RSS.2007.III.033',
           'ee': 'http://www.roboticsproceedings.org/rss03/p33.html',
           'key': 'conf/rss/KolterN07',
           'title': 'Learning omnidirectional path following using '
                    'dimensionality reduction.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/rss/KolterN07',
           'venue': 'Robotics - Science and Systems',
           'year': '2007'},
  'url': 'URL#4224449'},
 {'@id': '4235393',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '26/7058',
                                   'text': 'Roger B. Grosse'},
                                  {'@pid': '64/4254', 'text': 'Rajat Raina'},
                                  {'@pid': '48/7442', 'text': 'Helen Kwong'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.5555/3020488.3020507',
           'ee': 'https://dl.acm.org/doi/abs/10.5555/3020488.3020507',
           'key': 'conf/uai/GrosseRKN07',
           'pages': '149-158',
           'title': 'Shift-Invariance Sparse Coding for Audio Classification.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/uai/GrosseRKN07',
           'venue': 'UAI',
           'year': '2007'},
  'url': 'URL#4235393'},
 {'@id': '4288932',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': 'a/PieterAbbeel',
                                   'text': 'Pieter Abbeel'},
                                  {'@pid': 'k/DaphneKoller',
                                   'text': 'Daphne Koller'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'http://jmlr.org/papers/v7/abbeel06a.html',
           'key': 'journals/jmlr/AbbeelKN06',
           'pages': '1743-1788',
           'title': 'Learning Factor Graphs in Polynomial Time and Sample '
                    'Complexity.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/jmlr/AbbeelKN06',
           'venue': 'J. Mach. Learn. Res.',
           'volume': '7',
           'year': '2006'},
  'url': 'URL#4288932'},
 {'@id': '4317209',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '17/1784', 'text': 'Su-In Lee'},
                                  {'@pid': '58/2562', 'text': 'Honglak Lee'},
                                  {'@pid': 'a/PieterAbbeel',
                                   'text': 'Pieter Abbeel'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'http://www.aaai.org/Library/AAAI/2006/aaai06-064.php',
           'key': 'conf/aaai/LeeLAN06',
           'pages': '401-408',
           'title': 'Efficient L1 Regularized Logistic Regression.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/aaai/LeeLAN06',
           'venue': 'AAAI',
           'year': '2006'},
  'url': 'URL#4317209'},
 {'@id': '4318513',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '42/1066', 'text': 'Rion Snow'},
                                  {'@pid': '31/985', 'text': 'Daniel Jurafsky'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.3115/1220175.1220276',
           'ee': 'https://aclanthology.org/P06-1101/',
           'key': 'conf/acl/SnowJN06',
           'title': 'Semantic Taxonomy Induction from Heterogenous Evidence.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/acl/SnowJN06',
           'venue': 'ACL',
           'year': '2006'},
  'url': 'URL#4318513'},
 {'@id': '4320854',
  '@score': '7',
  'info': {'authors': {'author': {'@pid': 'n/AndrewYNg',
                                  'text': 'Andrew Y. Ng'}},
           'doi': '10.1007/11894841_6',
           'ee': 'https://doi.org/10.1007/11894841_6',
           'key': 'conf/alt/Ng06',
           'pages': '29-31',
           'title': 'Reinforcement Learning and Apprenticeship Learning for '
                    'Robotic Control.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/alt/Ng06',
           'venue': 'ALT',
           'year': '2006'},
  'url': 'URL#4320854'},
 {'@id': '4331315',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '42/1918',
                                   'text': 'Mike Brzozowski'},
                                  {'@pid': '09/5193',
                                   'text': 'Kendra Carattini'},
                                  {'@pid': '97/4414',
                                   'text': 'Scott R. Klemmer'},
                                  {'@pid': '70/5679',
                                   'text': 'Patrick Mihelich'},
                                  {'@pid': '20/5455', 'text': 'Jiang Hu'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1145/1124772.1124929',
           'ee': 'https://doi.org/10.1145/1124772.1124929',
           'key': 'conf/chi/BrzozowskiCKMHN06',
           'pages': '1047-1056',
           'title': 'groupTime - preference based group scheduling.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/chi/BrzozowskiCKMHN06',
           'venue': 'CHI',
           'year': '2006'},
  'url': 'URL#4331315'},
 {'@id': '4336263',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '26/1546', 'text': 'Erick Delage'},
                                  {'@pid': '58/2562', 'text': 'Honglak Lee'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1109/CVPR.2006.23',
           'ee': 'https://doi.org/10.1109/CVPR.2006.23',
           'key': 'conf/cvpr/DelageLN06',
           'pages': '2418-2428',
           'title': 'A Dynamic Bayesian Network Model for Autonomous 3D '
                    'Reconstruction from a Single Indoor Image.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/cvpr/DelageLN06',
           'venue': 'CVPR',
           'year': '2006'},
  'url': 'URL#4336263'},
 {'@id': '4339063',
  '@score': '7',
  'info': {'authors': {'author': {'@pid': 'n/AndrewYNg',
                                  'text': 'Andrew Y. Ng'}},
           'doi': '10.1007/11893318_3',
           'ee': 'https://doi.org/10.1007/11893318_3',
           'key': 'conf/dis/Ng06',
           'pages': '14',
           'title': 'Reinforcement Learning and Apprenticeship Learning for '
                    'Robotic Control.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/dis/Ng06',
           'venue': 'Discovery Science',
           'year': '2006'},
  'url': 'URL#4339063'},
 {'@id': '4343889',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '16/5422',
                                   'text': 'Jenny Rose Finkel'},
                                  {'@pid': 'm/ChristopherDManning',
                                   'text': 'Christopher D. Manning'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'https://aclanthology.org/W06-1673/',
           'key': 'conf/emnlp/FinkelMN06',
           'pages': '618-626',
           'title': 'Solving the Problem of Cascading Errors - Approximate '
                    'Bayesian Inference for Linguistic Annotation Pipelines.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/emnlp/FinkelMN06',
           'venue': 'EMNLP',
           'year': '2006'},
  'url': 'URL#4343889'},
 {'@id': '4366907',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': 'a/PieterAbbeel',
                                   'text': 'Pieter Abbeel'},
                                  {'@pid': '78/1197', 'text': 'Morgan Quigley'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1145/1143844.1143845',
           'ee': 'https://doi.org/10.1145/1143844.1143845',
           'key': 'conf/icml/AbbeelQN06',
           'pages': '1-8',
           'title': 'Using inaccurate models in reinforcement learning.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icml/AbbeelQN06',
           'venue': 'ICML',
           'year': '2006'},
  'url': 'URL#4366907'},
 {'@id': '4367005',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '64/4254', 'text': 'Rajat Raina'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': 'k/DaphneKoller',
                                   'text': 'Daphne Koller'}]},
           'doi': '10.1145/1143844.1143934',
           'ee': 'https://doi.org/10.1145/1143844.1143934',
           'key': 'conf/icml/RainaNK06',
           'pages': '713-720',
           'title': 'Constructing informative priors using transfer learning.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icml/RainaNK06',
           'venue': 'ICML',
           'year': '2006'},
  'url': 'URL#4367005'},
 {'@id': '4370180',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '58/2562', 'text': 'Honglak Lee'},
                                  {'@pid': '03/2011', 'text': 'Yirong Shen'},
                                  {'@pid': '16/1142', 'text': 'Chih-Han Yu'},
                                  {'@pid': '34/810', 'text': 'Gurjeet Singh'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1109/ROBOT.2006.1642158',
           'ee': 'https://doi.org/10.1109/ROBOT.2006.1642158',
           'key': 'conf/icra/LeeSYSN06',
           'pages': '3003-3010',
           'title': 'Quadruped Robot Obstacle Negotiation via Reinforcement '
                    'Learning.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icra/LeeSYSN06',
           'venue': 'ICRA',
           'year': '2006'},
  'url': 'URL#4370180'},
 {'@id': '4370316',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '31/1310',
                                   'text': 'Anna Petrovskaya'},
                                  {'@pid': '77/811', 'text': 'Oussama Khatib'},
                                  {'@pid': 't/SebastianThrun',
                                   'text': 'Sebastian Thrun'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1109/ROBOT.2006.1641793',
           'ee': 'https://doi.org/10.1109/ROBOT.2006.1641793',
           'key': 'conf/icra/PetrovskayaKTN06',
           'pages': '707-714',
           'title': 'Bayesian Estimation for Autonomous Object Manipulation '
                    'based on Tactile Sensors.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icra/PetrovskayaKTN06',
           'venue': 'ICRA',
           'year': '2006'},
  'url': 'URL#4370316'},
 {'@id': '4377293',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '50/9261',
                                   'text': 'Filip Krsmanovic'},
                                  {'@pid': '75/9262', 'text': 'Curtis Spencer'},
                                  {'@pid': '31/985', 'text': 'Daniel Jurafsky'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'http://www.isca-speech.org/archive/interspeech_2006/i06_1193.html',
           'key': 'conf/interspeech/KrsmanovicSJN06',
           'title': 'Have we met? MDP based speaker ID for robot dialogue.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/interspeech/KrsmanovicSJN06',
           'venue': 'INTERSPEECH',
           'year': '2006'},
  'url': 'URL#4377293'},
 {'@id': '4382719',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '82/6189',
                                   'text': 'Ashutosh Saxena'},
                                  {'@pid': '88/6457',
                                   'text': 'Justin Driemeyer'},
                                  {'@pid': '25/6216', 'text': 'Justin Kearns'},
                                  {'@pid': '88/5870', 'text': 'Chioma Osondu'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1007/978-3-540-77457-0_4',
           'ee': 'https://doi.org/10.1007/978-3-540-77457-0_4',
           'key': 'conf/iser/SaxenaDKON06',
           'pages': '33-42',
           'title': 'Learning to Grasp Novel Objects Using Vision.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/iser/SaxenaDKON06',
           'venue': 'ISER',
           'year': '2006'},
  'url': 'URL#4382719'},
 {'@id': '4395761',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': 'a/PieterAbbeel',
                                   'text': 'Pieter Abbeel'},
                                  {'@pid': '60/5515', 'text': 'Adam Coates'},
                                  {'@pid': '78/1197', 'text': 'Morgan Quigley'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'https://proceedings.neurips.cc/paper/2006/hash/98c39996bf1543e974747a2549b3107c-Abstract.html',
           'key': 'conf/nips/AbbeelCQN06',
           'pages': '1-8',
           'title': 'An Application of Reinforcement Learning to Aerobatic '
                    'Helicopter Flight.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/nips/AbbeelCQN06',
           'venue': 'NIPS',
           'year': '2006'},
  'url': 'URL#4395761'},
 {'@id': '4395795',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '35/6348', 'text': 'Cheng-Tao Chu'},
                                  {'@pid': '15/1867', 'text': 'Sang Kyun Kim'},
                                  {'@pid': '27/2290', 'text': 'Yi-An Lin'},
                                  {'@pid': '85/3095', 'text': 'YuanYuan Yu'},
                                  {'@pid': 'b/GaryRBradski',
                                   'text': 'Gary R. Bradski'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': 'o/KunleOlukotun',
                                   'text': 'Kunle Olukotun'}]},
           'ee': 'https://proceedings.neurips.cc/paper/2006/hash/77ee3bc58ce560b86c2b59363281e914-Abstract.html',
           'key': 'conf/nips/ChuKLYBNO06',
           'pages': '281-288',
           'title': 'Map-Reduce for Machine Learning on Multicore.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/nips/ChuKLYBNO06',
           'venue': 'NIPS',
           'year': '2006'},
  'url': 'URL#4395795'},
 {'@id': '4395859',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '58/2562', 'text': 'Honglak Lee'},
                                  {'@pid': '75/5304', 'text': 'Alexis Battle'},
                                  {'@pid': '64/4254', 'text': 'Rajat Raina'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'https://proceedings.neurips.cc/paper/2006/hash/2d71b2ae158c7c5912cc0bbde2bb9d95-Abstract.html',
           'key': 'conf/nips/LeeBRN06',
           'pages': '801-808',
           'title': 'Efficient sparse coding algorithms.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/nips/LeeBRN06',
           'venue': 'NIPS',
           'year': '2006'},
  'url': 'URL#4395859'},
 {'@id': '4395911',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '82/6189',
                                   'text': 'Ashutosh Saxena'},
                                  {'@pid': '88/6457',
                                   'text': 'Justin Driemeyer'},
                                  {'@pid': '25/6216', 'text': 'Justin Kearns'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'https://proceedings.neurips.cc/paper/2006/hash/22722a343513ed45f14905eb07621686-Abstract.html',
           'key': 'conf/nips/SaxenaDKN06',
           'pages': '1209-1216',
           'title': 'Robotic Grasping of Novel Objects.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/nips/SaxenaDKN06',
           'venue': 'NIPS',
           'year': '2006'},
  'url': 'URL#4395911'},
 {'@id': '4396757',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '62/4095', 'text': 'Ted Kremenek'},
                                  {'@pid': '09/2839', 'text': 'Paul Twohey'},
                                  {'@pid': '47/2634', 'text': 'Godmar Back'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': 'e/DREngler',
                                   'text': 'Dawson R. Engler'}]},
           'ee': 'http://www.usenix.org/events/osdi06/tech/kremenek.html',
           'key': 'conf/osdi/KremenekTBNE06',
           'pages': '161-176',
           'title': 'From Uncertainty to Belief - Inferring the Specification '
                    'Within.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/osdi/KremenekTBNE06',
           'venue': 'OSDI',
           'year': '2006'},
  'url': 'URL#4396757'},
 {'@id': '4407448',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '25/559', 'text': 'Einat Minkov'},
                                  {'@pid': 'c/WWCohen',
                                   'text': 'William W. Cohen'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1145/1148170.1148179',
           'ee': 'https://doi.org/10.1145/1148170.1148179',
           'key': 'conf/sigir/MinkovCN06',
           'pages': '27-34',
           'title': 'Contextual search and name disambiguation in email using '
                    'graphs.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/sigir/MinkovCN06',
           'venue': 'SIGIR',
           'year': '2006'},
  'url': 'URL#4407448'},
 {'@id': '4428367',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': 'h/DavidHeckerman',
                                   'text': 'David Heckerman'},
                                  {'@pid': '77/5178', 'text': 'Tom Berson'},
                                  {'@pid': 'g/JoshuaGoodman',
                                   'text': 'Joshua Goodman 0001'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1609/AIMAG.V26I1.1803',
           'ee': 'https://doi.org/10.1609/aimag.v26i1.1803',
           'key': 'journals/aim/HeckermanBGN05',
           'number': '1',
           'pages': '96',
           'title': 'The First Conference on E-mail and Anti-Spam.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/aim/HeckermanBGN05',
           'venue': 'AI Mag.',
           'volume': '26',
           'year': '2005'},
  'url': 'URL#4428367'},
 {'@id': '4483168',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '64/4254', 'text': 'Rajat Raina'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': 'm/ChristopherDManning',
                                   'text': 'Christopher D. Manning'}]},
           'ee': 'http://www.aaai.org/Library/AAAI/2005/aaai05-174.php',
           'key': 'conf/aaai/RainaNM05',
           'pages': '1099-1105',
           'title': 'Robust Textual Inference Via Learning and Abductive '
                    'Reasoning.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/aaai/RainaNM05',
           'venue': 'AAAI',
           'year': '2005'},
  'url': 'URL#4483168'},
 {'@id': '4492917',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '58/2562', 'text': 'Honglak Lee'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'http://www.ceas.cc/papers-2005/166.pdf',
           'key': 'conf/ceas/LeeN05',
           'title': 'Spam Deobfuscation using a Hidden Markov Model.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/ceas/LeeN05',
           'venue': 'CEAS',
           'year': '2005'},
  'url': 'URL#4492917'},
 {'@id': '4499531',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': 'a/DragomirAnguelov',
                                   'text': 'Dragomir Anguelov'},
                                  {'@pid': 't/BenjaminTaskar',
                                   'text': 'Benjamin Taskar'},
                                  {'@pid': '39/2976',
                                   'text': 'Vassil Chatalbashev'},
                                  {'@pid': 'k/DaphneKoller',
                                   'text': 'Daphne Koller'},
                                  {'@pid': '45/1448', 'text': 'Dinkar Gupta'},
                                  {'@pid': '19/2592', 'text': 'Geremy Heitz'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1109/CVPR.2005.133',
           'ee': 'https://doi.org/10.1109/CVPR.2005.133',
           'key': 'conf/cvpr/AnguelovTCKGHN05',
           'pages': '169-176',
           'title': 'Discriminative Learning of Markov Random Fields for '
                    'Segmentation of 3D Scan Data.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/cvpr/AnguelovTCKGHN05',
           'venue': 'CVPR',
           'year': '2005'},
  'url': 'URL#4499531'},
 {'@id': '4510438',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '84/4724',
                                   'text': 'Masayoshi Matsuoka'},
                                  {'@pid': '82/2010', 'text': 'Alan Chen 0001'},
                                  {'@pid': '03/1138',
                                   'text': 'Surya P. N. Singh'},
                                  {'@pid': '60/5515', 'text': 'Adam Coates'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': 't/SebastianThrun',
                                   'text': 'Sebastian Thrun'}]},
           'doi': '10.1007/978-3-540-33453-8_3',
           'ee': 'https://doi.org/10.1007/978-3-540-33453-8_3',
           'key': 'conf/fsr/MatsuokaCSCNT05',
           'pages': '19-30',
           'title': 'Autonomous Helicopter Tracking and Localization Using a '
                    'Self-Surveying Camera Array.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/fsr/MatsuokaCSCNT05',
           'venue': 'FSR',
           'year': '2005'},
  'url': 'URL#4510438'},
 {'@id': '4527029',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': 'a/PieterAbbeel',
                                   'text': 'Pieter Abbeel'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1145/1102351.1102352',
           'ee': 'https://doi.org/10.1145/1102351.1102352',
           'key': 'conf/icml/AbbeelN05',
           'pages': '1-8',
           'title': 'Exploration and apprenticeship learning in reinforcement '
                    'learning.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icml/AbbeelN05',
           'venue': 'ICML',
           'year': '2005'},
  'url': 'URL#4527029'},
 {'@id': '4527102',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '82/5735', 'text': 'Jeff Michels'},
                                  {'@pid': '82/6189',
                                   'text': 'Ashutosh Saxena'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1145/1102351.1102426',
           'ee': 'https://doi.org/10.1145/1102351.1102426',
           'key': 'conf/icml/MichelsSN05',
           'pages': '593-600',
           'title': 'High speed obstacle avoidance using monocular vision and '
                    'reinforcement learning.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icml/MichelsSN05',
           'venue': 'ICML',
           'year': '2005'},
  'url': 'URL#4527102'},
 {'@id': '4542023',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '26/1546', 'text': 'Erick Delage'},
                                  {'@pid': '58/2562', 'text': 'Honglak Lee'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1007/978-3-540-48113-3_28',
           'ee': 'https://doi.org/10.1007/978-3-540-48113-3_28',
           'key': 'conf/isrr/DelageLN05',
           'pages': '305-321',
           'title': 'Automatic Single-Image 3d Reconstructions of Indoor '
                    'Manhattan World Scenes.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/isrr/DelageLN05',
           'venue': 'ISRR',
           'year': '2005'},
  'url': 'URL#4542023'},
 {'@id': '4551043',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '13/1739', 'text': 'Aria Haghighi'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': 'm/ChristopherDManning',
                                   'text': 'Christopher D. Manning'}]},
           'ee': 'https://aclanthology.org/H05-1049/',
           'key': 'conf/naacl/HaghighiNM05',
           'pages': '387-394',
           'title': 'Robust Textual Inference via Graph Matching.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/naacl/HaghighiNM05',
           'venue': 'HLT/EMNLP',
           'year': '2005'},
  'url': 'URL#4551043'},
 {'@id': '4551455',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': 'a/PieterAbbeel',
                                   'text': 'Pieter Abbeel'},
                                  {'@pid': '73/3944',
                                   'text': 'Varun Ganapathi'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'https://proceedings.neurips.cc/paper/2005/hash/09b69adcd7cbae914c6204984097d2da-Abstract.html',
           'key': 'conf/nips/AbbeelGN05',
           'pages': '1-8',
           'title': 'Learning vehicular dynamics, with application to modeling '
                    'helicopters.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/nips/AbbeelGN05',
           'venue': 'NIPS',
           'year': '2005'},
  'url': 'URL#4551455'},
 {'@id': '4551491',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '58/2809', 'text': 'Chuong B. Do'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'https://proceedings.neurips.cc/paper/2005/hash/bf2fb7d1825a1df3ca308ad0bf48591e-Abstract.html',
           'key': 'conf/nips/DoN05',
           'pages': '299-306',
           'title': 'Transfer learning for text classification.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/nips/DoN05',
           'venue': 'NIPS',
           'year': '2005'},
  'url': 'URL#4551491'},
 {'@id': '4551601',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '82/6189',
                                   'text': 'Ashutosh Saxena'},
                                  {'@pid': '37/4573', 'text': 'Sung H. Chung'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'https://proceedings.neurips.cc/paper/2005/hash/17d8da815fa21c57af9829fb0a869602-Abstract.html',
           'key': 'conf/nips/SaxenaCN05',
           'pages': '1161-1168',
           'title': 'Learning Depth from Single Monocular Images.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/nips/SaxenaCN05',
           'venue': 'NIPS',
           'year': '2005'},
  'url': 'URL#4551601'},
 {'@id': '4551610',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '03/2011', 'text': 'Yirong Shen'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '43/5832',
                                   'text': 'Matthias W. Seeger'}]},
           'ee': 'https://proceedings.neurips.cc/paper/2005/hash/6775a0635c302542da2c32aa19d86be0-Abstract.html',
           'key': 'conf/nips/ShenNS05',
           'pages': '1225-1232',
           'title': 'Fast Gaussian Process Regression using KD-Trees.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/nips/ShenNS05',
           'venue': 'NIPS',
           'year': '2005'},
  'url': 'URL#4551610'},
 {'@id': '4557306',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': 'a/PieterAbbeel',
                                   'text': 'Pieter Abbeel'},
                                  {'@pid': '60/5515', 'text': 'Adam Coates'},
                                  {'@pid': '31/1116',
                                   'text': 'Michael Montemerlo'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': 't/SebastianThrun',
                                   'text': 'Sebastian Thrun'}]},
           'doi': '10.15607/RSS.2005.I.038',
           'ee': 'http://www.roboticsproceedings.org/rss01/p38.html',
           'key': 'conf/rss/AbbeelCMNT05',
           'pages': '289-296',
           'title': 'Discriminative Training of Kalman Filters.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/rss/AbbeelCMNT05',
           'venue': 'Robotics - Science and Systems',
           'year': '2005'},
  'url': 'URL#4557306'},
 {'@id': '4565254',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': 'a/PieterAbbeel',
                                   'text': 'Pieter Abbeel'},
                                  {'@pid': 'k/DaphneKoller',
                                   'text': 'Daphne Koller'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'https://dslpitt.org/uai/displayArticleDetails.jsp?mmnu=1&amp;smnu=2&amp;article_id=1199&amp;proceeding_id=21',
           'key': 'conf/uai/AbbeelKN05',
           'pages': '1-9',
           'title': 'Learning Factor Graphs in Polynomial Time &amp; Sample '
                    'Complexity.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/uai/AbbeelKN05',
           'venue': 'UAI',
           'year': '2005'},
  'url': 'URL#4565254'},
 {'@id': '4600259',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': 't/SebastianThrun',
                                   'text': 'Sebastian Thrun'},
                                  {'@pid': '07/6778', 'text': 'Yufeng Liu'},
                                  {'@pid': 'k/DaphneKoller',
                                   'text': 'Daphne Koller'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': 'g/ZoubinGhahramani',
                                   'text': 'Zoubin Ghahramani'},
                                  {'@pid': '13/6852',
                                   'text': 'Hugh F. Durrant-Whyte'}]},
           'doi': '10.1177/0278364904045479',
           'ee': 'https://doi.org/10.1177/0278364904045479',
           'key': 'journals/ijrr/ThrunLKNGD04',
           'number': '7-8',
           'pages': '693-716',
           'title': 'Simultaneous Localization and Mapping with Sparse '
                    'Extended Information Filters.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/ijrr/ThrunLKNGD04',
           'venue': 'Int. J. Robotics Res.',
           'volume': '23',
           'year': '2004'},
  'url': 'URL#4600259'},
 {'@id': '4665215',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': 'a/PieterAbbeel',
                                   'text': 'Pieter Abbeel'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1145/1015330.1015430',
           'ee': 'https://doi.org/10.1145/1015330.1015430',
           'key': 'conf/icml/PieterN04',
           'title': 'Apprenticeship learning via inverse reinforcement '
                    'learning.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icml/PieterN04',
           'venue': 'ICML',
           'year': '2004'},
  'url': 'URL#4665215'},
 {'@id': '4665226',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '95/2750',
                                   'text': 'Shai Shalev-Shwartz'},
                                  {'@pid': 's/YoramSinger',
                                   'text': 'Yoram Singer'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1145/1015330.1015376',
           'ee': 'https://doi.org/10.1145/1015330.1015376',
           'key': 'conf/icml/Shalev-ShwartzSN04',
           'title': 'Online and batch learning of pseudo-metrics.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icml/Shalev-ShwartzSN04',
           'venue': 'ICML',
           'year': '2004'},
  'url': 'URL#4665226'},
 {'@id': '4665235',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '25/1520',
                                   'text': 'Kristina Toutanova'},
                                  {'@pid': 'm/ChristopherDManning',
                                   'text': 'Christopher D. Manning'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1145/1015330.1015442',
           'ee': 'https://doi.org/10.1145/1015330.1015442',
           'key': 'conf/icml/ToutanovaMN04',
           'title': 'Learning random walk models for inducing word dependency '
                    'distributions.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icml/ToutanovaMN04',
           'venue': 'ICML',
           'year': '2004'},
  'url': 'URL#4665235'},
 {'@id': '4677475',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '60/5515', 'text': 'Adam Coates'},
                                  {'@pid': '73/5524', 'text': 'Mark Diel'},
                                  {'@pid': '73/3944',
                                   'text': 'Varun Ganapathi'},
                                  {'@pid': '37/2776', 'text': 'Jamie Schulte'},
                                  {'@pid': '22/4488', 'text': 'Ben Tse'},
                                  {'@pid': '89/1455', 'text': 'Eric Berger'},
                                  {'@pid': '29/2973', 'text': 'Eric Liang'}]},
           'doi': '10.1007/11552246_35',
           'ee': 'https://doi.org/10.1007/11552246_35',
           'key': 'conf/iser/NgCDGSTBL04',
           'pages': '363-372',
           'title': 'Autonomous Inverted Helicopter Flight via Reinforcement '
                    'Learning.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/iser/NgCDGSTBL04',
           'venue': 'ISER',
           'year': '2004'},
  'url': 'URL#4677475'},
 {'@id': '4688090',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': 'a/PieterAbbeel',
                                   'text': 'Pieter Abbeel'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'https://proceedings.neurips.cc/paper/2004/hash/02f657d55eaf1c4840ce8d66fcdaf90c-Abstract.html',
           'key': 'conf/nips/AbbeelN04',
           'pages': '1-8',
           'title': 'Learning first-order Markov models for control.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/nips/AbbeelN04',
           'venue': 'NIPS',
           'year': '2004'},
  'url': 'URL#4688090'},
 {'@id': '4688169',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': 's/SMKakade',
                                   'text': 'Sham M. Kakade'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'https://proceedings.neurips.cc/paper/2004/hash/c60d870eaad6a3946ab3e8734466e532-Abstract.html',
           'key': 'conf/nips/KakadeN04',
           'pages': '641-648',
           'title': 'Online Bounds for Bayesian Algorithms.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/nips/KakadeN04',
           'venue': 'NIPS',
           'year': '2004'},
  'url': 'URL#4688169'},
 {'@id': '4688211',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '91/5753', 'text': 'H. Jin Kim'}]},
           'ee': 'https://proceedings.neurips.cc/paper/2004/hash/8e68c3c7bf14ad0bcaba52babfa470bd-Abstract.html',
           'key': 'conf/nips/NgK04',
           'pages': '977-984',
           'title': 'Stable adaptive control with online learning.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/nips/NgK04',
           'venue': 'NIPS',
           'year': '2004'},
  'url': 'URL#4688211'},
 {'@id': '4688251',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '42/1066', 'text': 'Rion Snow'},
                                  {'@pid': '31/985', 'text': 'Daniel Jurafsky'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'https://proceedings.neurips.cc/paper/2004/hash/358aee4cc897452c00244351e4d91f69-Abstract.html',
           'key': 'conf/nips/SnowJN04',
           'pages': '1297-1304',
           'title': 'Learning Syntactic Patterns for Automatic Hypernym '
                    'Discovery.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/nips/SnowJN04',
           'venue': 'NIPS',
           'year': '2004'},
  'url': 'URL#4688251'},
 {'@id': '4736234',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '86/1910', 'text': 'David M. Blei'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': 'j/MichaelIJordan',
                                   'text': 'Michael I. Jordan'}]},
           'ee': 'http://jmlr.org/papers/v3/blei03a.html',
           'key': 'journals/jmlr/BleiNJ03',
           'pages': '993-1022',
           'title': 'Latent Dirichlet Allocation.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/jmlr/BleiNJ03',
           'venue': 'J. Mach. Learn. Res.',
           'volume': '3',
           'year': '2003'},
  'url': 'URL#4736234'},
 {'@id': '4804613',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '91/5753', 'text': 'H. Jin Kim'},
                                  {'@pid': 'j/MichaelIJordan',
                                   'text': 'Michael I. Jordan'},
                                  {'@pid': 's/ShankarSastry',
                                   'text': 'Shankar Sastry'}]},
           'ee': 'https://proceedings.neurips.cc/paper/2003/hash/b427426b8acd2c2e53827970f2c2f526-Abstract.html',
           'key': 'conf/nips/NgKJS03',
           'pages': '799-806',
           'title': 'Autonomous Helicopter Flight via Reinforcement Learning.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/nips/NgKJS03',
           'venue': 'NIPS',
           'year': '2003'},
  'url': 'URL#4804613'},
 {'@id': '4847224',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '78/6858',
                                   'text': 'Michael J. Kearns'},
                                  {'@pid': 'm/YishayMansour',
                                   'text': 'Yishay Mansour'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1023/A:1017932429737',
           'ee': 'https://doi.org/10.1023/A:1017932429737',
           'key': 'journals/ml/KearnsMN02',
           'number': '2-3',
           'pages': '193-208',
           'title': 'A Sparse Sampling Algorithm for Near-Optimal Planning in '
                    'Large Markov Decision Processes.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/ml/KearnsMN02',
           'venue': 'Mach. Learn.',
           'volume': '49',
           'year': '2002'},
  'url': 'URL#4847224'},
 {'@id': '4901896',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '36/3855', 'text': 'Eric P. Xing'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': 'j/MichaelIJordan',
                                   'text': 'Michael I. Jordan'},
                                  {'@pid': 'r/SJRussell',
                                   'text': 'Stuart J. Russell'}]},
           'ee': 'https://proceedings.neurips.cc/paper/2002/hash/c3e4035af2a1cde9f21e1ae1951ac80b-Abstract.html',
           'key': 'conf/nips/XingNJR02',
           'pages': '505-512',
           'title': 'Distance Metric Learning with Application to Clustering '
                    'with Side-Information.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/nips/XingNJR02',
           'venue': 'NIPS',
           'year': '2002'},
  'url': 'URL#4901896'},
 {'@id': '4908236',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': 'd/SusanTDumais',
                                   'text': 'Susan T. Dumais'},
                                  {'@pid': '34/5010', 'text': 'Michele Banko'},
                                  {'@pid': '18/3677', 'text': 'Eric Brill'},
                                  {'@pid': '00/7739', 'text': 'Jimmy J. Lin'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1145/564376.564428',
           'ee': 'https://doi.org/10.1145/564376.564428',
           'key': 'conf/sigir/DumaisBBLN02',
           'pages': '291-298',
           'title': 'Web question answering - is more always better?.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/sigir/DumaisBBLN02',
           'venue': 'SIGIR',
           'year': '2002'},
  'url': 'URL#4908236'},
 {'@id': '4912339',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': 't/SebastianThrun',
                                   'text': 'Sebastian Thrun'},
                                  {'@pid': 'k/DaphneKoller',
                                   'text': 'Daphne Koller'},
                                  {'@pid': 'g/ZoubinGhahramani',
                                   'text': 'Zoubin Ghahramani'},
                                  {'@pid': '13/6852',
                                   'text': 'Hugh F. Durrant-Whyte'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1007/978-3-540-45058-0_22',
           'ee': 'https://doi.org/10.1007/978-3-540-45058-0_22',
           'key': 'conf/wafr/ThrunKGDN02',
           'pages': '363-380',
           'title': 'Simultaneous Mapping and Localization with Sparse '
                    'Extended Information Filters - Theory and Initial '
                    'Results.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/wafr/ThrunKGDN02',
           'venue': 'WAFR',
           'year': '2002'},
  'url': 'URL#4912339'},
 {'@id': '4974946',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': 'j/MichaelIJordan',
                                   'text': 'Michael I. Jordan'}]},
           'key': 'conf/icml/NgJ01',
           'pages': '377-384',
           'title': 'Convergence rates of the Voting Gibbs classifier, with '
                    'application to Bayesian feature selection.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icml/NgJ01',
           'venue': 'ICML',
           'year': '2001'},
  'url': 'URL#4974946'},
 {'@id': '4977301',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '79/3207', 'text': 'Alice X. Zheng'},
                                  {'@pid': 'j/MichaelIJordan',
                                   'text': 'Michael I. Jordan'}]},
           'key': 'conf/ijcai/NgZJ01',
           'pages': '903-910',
           'title': 'Link Analysis, Eigenvectors and Stability.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/ijcai/NgZJ01',
           'venue': 'IJCAI',
           'year': '2001'},
  'url': 'URL#4977301'},
 {'@id': '4987025',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '86/1910', 'text': 'David M. Blei'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': 'j/MichaelIJordan',
                                   'text': 'Michael I. Jordan'}]},
           'ee': 'https://proceedings.neurips.cc/paper/2001/hash/296472c9542ad4d4788d543508116cbc-Abstract.html',
           'key': 'conf/nips/BleiNJ01',
           'pages': '601-608',
           'title': 'Latent Dirichlet Allocation.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/nips/BleiNJ01',
           'venue': 'NIPS',
           'year': '2001'},
  'url': 'URL#4987025'},
 {'@id': '4987127',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': 'j/MichaelIJordan',
                                   'text': 'Michael I. Jordan'}]},
           'ee': 'https://proceedings.neurips.cc/paper/2001/hash/7b7a53e239400a13bd6be6c91c4f6c4e-Abstract.html',
           'key': 'conf/nips/NgJ01',
           'pages': '841-848',
           'title': 'On Discriminative vs. Generative Classifiers - A '
                    'comparison of logistic regression and naive Bayes.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/nips/NgJ01',
           'venue': 'NIPS',
           'year': '2001'},
  'url': 'URL#4987127'},
 {'@id': '4987128',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': 'j/MichaelIJordan',
                                   'text': 'Michael I. Jordan'},
                                  {'@pid': '44/1092', 'text': 'Yair Weiss'}]},
           'ee': 'https://proceedings.neurips.cc/paper/2001/hash/801272ee79cfde7fa5960571fee36b9b-Abstract.html',
           'key': 'conf/nips/NgJW01',
           'pages': '849-856',
           'title': 'On Spectral Clustering - Analysis and an algorithm.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/nips/NgJW01',
           'venue': 'NIPS',
           'year': '2001'},
  'url': 'URL#4987128'},
 {'@id': '4991395',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '79/3207', 'text': 'Alice X. Zheng'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': 'j/MichaelIJordan',
                                   'text': 'Michael I. Jordan'}]},
           'doi': '10.1145/383952.384003',
           'ee': 'https://doi.org/10.1145/383952.384003',
           'key': 'conf/sigir/ZhengNJ01',
           'pages': '258-266',
           'title': 'Stable Algorithms for Link Analysis.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/sigir/ZhengNJ01',
           'venue': 'SIGIR',
           'year': '2001'},
  'url': 'URL#4991395'},
 {'@id': '4993736',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '18/3677', 'text': 'Eric Brill'},
                                  {'@pid': '00/7739', 'text': 'Jimmy J. Lin'},
                                  {'@pid': '34/5010', 'text': 'Michele Banko'},
                                  {'@pid': 'd/SusanTDumais',
                                   'text': 'Susan T. Dumais'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'http://trec.nist.gov/pubs/trec10/papers/Trec2001Notebook.AskMSRFinal.pdf',
           'key': 'conf/trec/BrillLBDN01',
           'title': 'Data-Intensive Question Answering.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/trec/BrillLBDN01',
           'venue': 'TREC',
           'year': '2001'},
  'url': 'URL#4993736'},
 {'@id': '5053245',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': 'r/SJRussell',
                                   'text': 'Stuart J. Russell'}]},
           'key': 'conf/icml/NgR00',
           'pages': '663-670',
           'title': 'Algorithms for Inverse Reinforcement Learning.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icml/NgR00',
           'venue': 'ICML',
           'year': '2000'},
  'url': 'URL#5053245'},
 {'@id': '5072716',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': 'j/MichaelIJordan',
                                   'text': 'Michael I. Jordan'}]},
           'ee': 'https://dslpitt.org/uai/displayArticleDetails.jsp?mmnu=1&amp;smnu=2&amp;article_id=48&amp;proceeding_id=16',
           'key': 'conf/uai/NgJ00',
           'pages': '406-415',
           'title': 'PEGASUS - A policy search method for large MDPs and '
                    'POMDPs.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/uai/NgJ00',
           'venue': 'UAI',
           'year': '2000'},
  'url': 'URL#5072716'},
 {'@id': '5126266',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '67/3618', 'text': 'Daishi Harada'},
                                  {'@pid': 'r/SJRussell',
                                   'text': 'Stuart J. Russell'}]},
           'key': 'conf/icml/NgHR99',
           'pages': '278-287',
           'title': 'Policy Invariance Under Reward Transformations - Theory '
                    'and Application to Reward Shaping.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icml/NgHR99',
           'venue': 'ICML',
           'year': '1999'},
  'url': 'URL#5126266'},
 {'@id': '5128235',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '78/6858',
                                   'text': 'Michael J. Kearns'},
                                  {'@pid': 'm/YishayMansour',
                                   'text': 'Yishay Mansour'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'http://ijcai.org/Proceedings/99-2/Papers/093.pdf',
           'key': 'conf/ijcai/KearnsMN99',
           'pages': '1324-1231',
           'title': 'A Sparse Sampling Algorithm for Near-Optimal Planning in '
                    'Large Markov Decision Processes.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/ijcai/KearnsMN99',
           'venue': 'IJCAI',
           'year': '1999'},
  'url': 'URL#5128235'},
 {'@id': '5136728',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '78/6858',
                                   'text': 'Michael J. Kearns'},
                                  {'@pid': 'm/YishayMansour',
                                   'text': 'Yishay Mansour'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'http://papers.nips.cc/paper/1664-approximate-planning-in-large-pomdps-via-reusable-trajectories',
           'key': 'conf/nips/KearnsMN99',
           'pages': '1001-1007',
           'title': 'Approximate Planning in Large POMDPs via Reusable '
                    'Trajectories.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/nips/KearnsMN99',
           'venue': 'NIPS',
           'year': '1999'},
  'url': 'URL#5136728'},
 {'@id': '5136755',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': 'j/MichaelIJordan',
                                   'text': 'Michael I. Jordan'}]},
           'ee': 'http://papers.nips.cc/paper/1640-approximate-inference-a-lgorithms-for-two-layer-bayesian-networks',
           'key': 'conf/nips/NgJ99',
           'pages': '533-539',
           'title': 'Approximate Inference A lgorithms for Two-Layer Bayesian '
                    'Networks.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/nips/NgJ99',
           'venue': 'NIPS',
           'year': '1999'},
  'url': 'URL#5136755'},
 {'@id': '5136756',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '26/4670', 'text': 'Ronald Parr'},
                                  {'@pid': 'k/DaphneKoller',
                                   'text': 'Daphne Koller'}]},
           'ee': 'http://papers.nips.cc/paper/1748-policy-search-via-density-estimation',
           'key': 'conf/nips/NgPK99',
           'pages': '1022-1028',
           'title': 'Policy Search via Density Estimation.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/nips/NgPK99',
           'venue': 'NIPS',
           'year': '1999'},
  'url': 'URL#5136756'},
 {'@id': '5191071',
  '@score': '7',
  'info': {'authors': {'author': {'@pid': 'n/AndrewYNg',
                                  'text': 'Andrew Y. Ng'}},
           'key': 'conf/icml/Ng98',
           'pages': '404-412',
           'title': 'On Feature Selection - Learning with Exponentially Many '
                    'Irrelevant Features as Training Examples.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icml/Ng98',
           'venue': 'ICML',
           'year': '1998'},
  'url': 'URL#5191071'},
 {'@id': '5208723',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '78/6858',
                                   'text': 'Michael J. Kearns'},
                                  {'@pid': 'm/YishayMansour',
                                   'text': 'Yishay Mansour'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'doi': '10.1007/978-94-011-5014-9_18',
           'ee': 'https://doi.org/10.1007/978-94-011-5014-9_18',
           'key': 'books/sp/12/KearnsMN98',
           'pages': '495-520',
           'title': 'An Information-Theoretic Analysis of Hard and Soft '
                    'Assignment Methods for Clustering.',
           'type': 'Parts in Books or Collections',
           'url': 'https://dblp.org/rec/books/sp/12/KearnsMN98',
           'venue': 'Learning in Graphical Models',
           'year': '1998'},
  'url': 'URL#5208723'},
 {'@id': '5226991',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '78/6858',
                                   'text': 'Michael J. Kearns'},
                                  {'@pid': 'm/YishayMansour',
                                   'text': 'Yishay Mansour'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '85/4800', 'text': 'Dana Ron'}]},
           'doi': '10.1023/A:1007344726582',
           'ee': 'https://doi.org/10.1023/A:1007344726582',
           'key': 'journals/ml/KearnsMNR97',
           'number': '1',
           'pages': '7-50',
           'title': 'An Experimental and Theoretical Comparison of Model '
                    'Selection Methods.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/ml/KearnsMNR97',
           'venue': 'Mach. Learn.',
           'volume': '27',
           'year': '1997'},
  'url': 'URL#5226991'},
 {'@id': '5250596',
  '@score': '7',
  'info': {'authors': {'author': {'@pid': 'n/AndrewYNg',
                                  'text': 'Andrew Y. Ng'}},
           'key': 'conf/icml/Ng97',
           'pages': '245-253',
           'title': 'Preventing &quot;Overfitting&quot; of Cross-Validation '
                    'Data.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icml/Ng97',
           'venue': 'ICML',
           'year': '1997'},
  'url': 'URL#5250596'},
 {'@id': '5262945',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '78/6858',
                                   'text': 'Michael J. Kearns'},
                                  {'@pid': 'm/YishayMansour',
                                   'text': 'Yishay Mansour'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'}]},
           'ee': 'https://dslpitt.org/uai/displayArticleDetails.jsp?mmnu=1&amp;smnu=2&amp;article_id=322&amp;proceeding_id=13',
           'key': 'conf/uai/KearnsMN97',
           'pages': '282-293',
           'title': 'An Information-Theoretic Analysis of Hard and Soft '
                    'Assignment Methods for Clustering.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/uai/KearnsMN97',
           'venue': 'UAI',
           'year': '1997'},
  'url': 'URL#5262945'},
 {'@id': '5342231',
  '@score': '7',
  'info': {'authors': {'author': [{'@pid': '78/6858',
                                   'text': 'Michael J. Kearns'},
                                  {'@pid': 'm/YishayMansour',
                                   'text': 'Yishay Mansour'},
                                  {'@pid': 'n/AndrewYNg',
                                   'text': 'Andrew Y. Ng'},
                                  {'@pid': '85/4800', 'text': 'Dana Ron'}]},
           'doi': '10.1145/225298.225301',
           'ee': 'https://doi.org/10.1145/225298.225301',
           'key': 'conf/colt/KearnsMNR95',
           'pages': '21-30',
           'title': 'An Experimental and Theoretical Comparison of Model '
                    'Selection Methods.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/colt/KearnsMNR95',
           'venue': 'COLT',
           'year': '1995'},
  'url': 'URL#5342231'},
 {'@id': '1259382',
  '@score': '6',
  'info': {'authors': {'author': [{'@pid': '233/6452', 'text': 'Andrew Luke'},
                                  {'@pid': '22/410', 'text': 'Joseph Johnson'},
                                  {'@pid': '08/4453', 'text': 'Yiu-Kai Ng'}]},
           'doi': '10.1109/ICBK.2018.00024',
           'ee': 'https://doi.org/10.1109/ICBK.2018.00024',
           'key': 'conf/icbk/LukeJN18',
           'pages': '123-130',
           'title': 'Recommending Long-Tail Items Using Extended Tripartite '
                    'Graphs.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icbk/LukeJN18',
           'venue': 'ICBK',
           'year': '2018'},
  'url': 'URL#1259382'},
 {'@id': '2533941',
  '@score': '6',
  'info': {'authors': {'author': [{'@pid': '136/9458', 'text': 'Ruibin Feng'},
                                  {'@pid': 'l/AndrewChiSingLeung',
                                   'text': 'Chi-Sing Leung'},
                                  {'@pid': '39/6890', 'text': 'Kai-Tat Ng'},
                                  {'@pid': 's/JohnSum', 'text': 'John Sum'}]},
           'doi': '10.1007/978-3-319-12637-1_35',
           'ee': 'https://doi.org/10.1007/978-3-319-12637-1_35',
           'key': 'conf/iconip/FengLNS14',
           'pages': '279-286',
           'title': 'The Performance of the Stochastic DNN-kWTA Network.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/iconip/FengLNS14',
           'venue': 'ICONIP',
           'year': '2014'},
  'url': 'URL#2533941'},
 {'@id': '3078235',
  '@score': '6',
  'info': {'authors': {'author': [{'@pid': 'l/AndrewChiSingLeung',
                                   'text': 'Chi-Sing Leung'},
                                  {'@pid': 's/JohnSum', 'text': 'Pui-Fai Sum'},
                                  {'@pid': '39/6890', 'text': 'Kai-Tat Ng'}]},
           'doi': '10.1007/978-3-642-34487-9_26',
           'ee': 'https://doi.org/10.1007/978-3-642-34487-9_26',
           'key': 'conf/iconip/LeungSN12',
           'pages': '208-216',
           'title': 'On the Objective Function and Learning Algorithm for '
                    'Concurrent Open Node Fault.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/iconip/LeungSN12',
           'venue': 'ICONIP',
           'year': '2012'},
  'url': 'URL#3078235'},
 {'@id': '3078394',
  '@score': '6',
  'info': {'authors': {'author': [{'@pid': 't/PeterWaiMingTsang',
                                   'text': 'Peter Wai-Ming Tsang'},
                                  {'@pid': '19/8017', 'text': 'W. C. Situ'},
                                  {'@pid': 'l/AndrewChiSingLeung',
                                   'text': 'Chi-Sing Leung'},
                                  {'@pid': '39/6890', 'text': 'Kai-Tat Ng'}]},
           'doi': '10.1007/978-3-642-34478-7_26',
           'ee': 'https://doi.org/10.1007/978-3-642-34478-7_26',
           'key': 'conf/iconip/TsangSLN12',
           'pages': '204-211',
           'title': 'Fast Affine Invariant Shape Matching from 3D Images Based '
                    'on the Distance Association Map and the Genetic '
                    'Algorithm.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/iconip/TsangSLN12',
           'venue': 'ICONIP',
           'year': '2012'},
  'url': 'URL#3078394'},
 {'@id': '239424',
  '@score': '5',
  'info': {'authors': {'author': [{'@pid': '151/4270', 'text': 'Man-Fai Leung'},
                                  {'@pid': '43/7183',
                                   'text': 'Carlos Artemio Coello Coello'},
                                  {'@pid': '40/3667',
                                   'text': 'Chi-Chung Cheung'},
                                  {'@pid': '58/6491', 'text': 'Sin Chun Ng'},
                                  {'@pid': '61/489',
                                   'text': 'Andrew Kwok-Fai Lui'}]},
           'doi': '10.1109/ACCESS.2020.3031002',
           'ee': 'https://doi.org/10.1109/ACCESS.2020.3031002',
           'key': 'journals/access/LeungCCNL20',
           'pages': '189527-189545',
           'title': 'A Hybrid Leader Selection Strategy for Many-Objective '
                    'Particle Swarm Optimization.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/access/LeungCCNL20',
           'venue': 'IEEE Access',
           'volume': '8',
           'year': '2020'},
  'url': 'URL#239424'},
 {'@id': '550986',
  '@score': '5',
  'info': {'authors': {'author': [{'@pid': '61/489',
                                   'text': 'Andrew Kwok-Fai Lui'},
                                  {'@pid': '58/6491', 'text': 'Sin Chun Ng'},
                                  {'@pid': '282/7739',
                                   'text': 'Stella Wing-Nga Cheung'}]},
           'doi': '10.1109/SSCI47803.2020.9308137',
           'ee': 'https://doi.org/10.1109/SSCI47803.2020.9308137',
           'key': 'conf/ssci/LuiNC20',
           'pages': '3091-3098',
           'title': 'Entropy-based Recognition of Anomalous Answers for '
                    'Efficient Grading of Short Answers with an Evolutionary '
                    'Clustering Algorithm.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/ssci/LuiNC20',
           'venue': 'SSCI',
           'year': '2020'},
  'url': 'URL#550986'},
 {'@id': '1259429',
  '@score': '5',
  'info': {'authors': {'author': [{'@pid': '61/489',
                                   'text': 'Andrew Kwok-Fai Lui'},
                                  {'@pid': '223/4921',
                                   'text': 'Maria Hiu Man Poon'},
                                  {'@pid': '58/6491', 'text': 'Sin Chun Ng'}]},
           'doi': '10.1007/978-3-319-94505-7_11',
           'ee': 'https://doi.org/10.1007/978-3-319-94505-7_11',
           'key': 'conf/icbl/LuiPN18',
           'pages': '136-147',
           'title': 'A Digital Storytelling Group Assignment for Fostering '
                    'Sense of Belonging of First-Year Students.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icbl/LuiPN18',
           'venue': 'ICBL',
           'year': '2018'},
  'url': 'URL#1259429'},
 {'@id': '1275600',
  '@score': '5',
  'info': {'authors': {'author': [{'@pid': '230/8640', 'text': 'Chun-Wa Leung'},
                                  {'@pid': '58/6491', 'text': 'Sin Chun Ng'},
                                  {'@pid': '61/489', 'text': 'Andrew K. Lui'}]},
           'doi': '10.1007/978-3-030-04179-3_50',
           'ee': 'https://doi.org/10.1007/978-3-030-04179-3_50',
           'key': 'conf/iconip/LeungNL18',
           'pages': '564-576',
           'title': 'Combining Two-Phase Local Search with Multi-objective Ant '
                    'Colony Optimization.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/iconip/LeungNL18',
           'venue': 'ICONIP',
           'year': '2018'},
  'url': 'URL#1275600'},
 {'@id': '1341517',
  '@score': '5',
  'info': {'authors': {'author': [{'@pid': '190/2587', 'text': 'Hiu-Hin Tam'},
                                  {'@pid': '58/6491', 'text': 'Sin Chun Ng'},
                                  {'@pid': '61/489', 'text': 'Andrew K. Lui'}]},
           'doi': '10.1109/SMC.2018.00269',
           'ee': 'https://doi.org/10.1109/SMC.2018.00269',
           'key': 'conf/smc/TamNL18',
           'pages': '1552-1557',
           'title': 'Accommodating Perturbation of Cluster Memberships in '
                    'Optimal Trend by Multi-model Evolutionary Clustering.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/smc/TamNL18',
           'venue': 'SMC',
           'year': '2018'},
  'url': 'URL#1341517'},
 {'@id': '1563886',
  '@score': '5',
  'info': {'authors': {'author': [{'@pid': '190/2587', 'text': 'Hiu-Hin Tam'},
                                  {'@pid': '58/6491', 'text': 'Sin Chun Ng'},
                                  {'@pid': '61/489', 'text': 'Andrew K. Lui'},
                                  {'@pid': '151/4270',
                                   'text': 'Man-Fai Leung'}]},
           'doi': '10.1109/CEC.2017.7969513',
           'ee': 'https://doi.org/10.1109/CEC.2017.7969513',
           'key': 'conf/cec/TamNLL17',
           'pages': '1749-1756',
           'title': 'Improved activation schema on Automatic Clustering using '
                    'Differential Evolution algorithm.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/cec/TamNLL17',
           'venue': 'CEC',
           'year': '2017'},
  'url': 'URL#1563886'},
 {'@id': '1884306',
  '@score': '5',
  'info': {'authors': {'author': [{'@pid': '190/2587', 'text': 'Hiu-Hin Tam'},
                                  {'@pid': '151/4270', 'text': 'Man-Fai Leung'},
                                  {'@pid': '96/9114', 'text': 'Zhenkun Wang'},
                                  {'@pid': '58/6491', 'text': 'Sin Chun Ng'},
                                  {'@pid': '40/3667',
                                   'text': 'Chi-Chung Cheung'},
                                  {'@pid': '61/489', 'text': 'Andrew K. Lui'}]},
           'doi': '10.1109/CEC.2016.7744054',
           'ee': 'https://doi.org/10.1109/CEC.2016.7744054',
           'key': 'conf/cec/TamLWNCL16',
           'pages': '2153-2160',
           'title': 'Improved adaptive global replacement scheme for '
                    'MOEA/D-AGR.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/cec/TamLWNCL16',
           'venue': 'CEC',
           'year': '2016'},
  'url': 'URL#1884306'},
 {'@id': '2185926',
  '@score': '5',
  'info': {'authors': {'author': [{'@pid': '151/4270', 'text': 'Man-Fai Leung'},
                                  {'@pid': '58/6491', 'text': 'Sin Chun Ng'},
                                  {'@pid': '40/3667',
                                   'text': 'Chi-Chung Cheung'},
                                  {'@pid': '61/489', 'text': 'Andrew K. Lui'}]},
           'doi': '10.1109/CEC.2015.7257283',
           'ee': 'https://doi.org/10.1109/CEC.2015.7257283',
           'key': 'conf/cec/LeungNCL15',
           'pages': '3156-3162',
           'title': 'A new algorithm based on PSO for Multi-Objective '
                    'Optimization.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/cec/LeungNCL15',
           'venue': 'CEC',
           'year': '2015'},
  'url': 'URL#2185926'},
 {'@id': '2476517',
  '@score': '5',
  'info': {'authors': {'author': [{'@pid': '151/4270', 'text': 'Man-Fai Leung'},
                                  {'@pid': '58/6491', 'text': 'Sin Chun Ng'},
                                  {'@pid': '40/3667',
                                   'text': 'Chi-Chung Cheung'},
                                  {'@pid': '61/489', 'text': 'Andrew K. Lui'}]},
           'doi': '10.1109/CEC.2014.6900449',
           'ee': 'https://doi.org/10.1109/CEC.2014.6900449',
           'key': 'conf/cec/LeungNCL14',
           'pages': '1990-1997',
           'title': 'A new strategy for finding good local guides in MOPSO.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/cec/LeungNCL14',
           'venue': 'IEEE Congress on Evolutionary Computation',
           'year': '2014'},
  'url': 'URL#2476517'},
 {'@id': '2545095',
  '@score': '5',
  'info': {'authors': {'author': [{'@pid': '40/3667',
                                   'text': 'Chi-Chung Cheung'},
                                  {'@pid': '58/6491', 'text': 'Sin Chun Ng'},
                                  {'@pid': '61/489', 'text': 'Andrew K. Lui'},
                                  {'@pid': '15/10068',
                                   'text': 'Sean Shensheng Xu'}]},
           'doi': '10.1109/IJCNN.2014.6889622',
           'ee': 'https://doi.org/10.1109/IJCNN.2014.6889622',
           'key': 'conf/ijcnn/CheungNLX14',
           'pages': '1225-1230',
           'title': 'Further enhancements in WOM algorithm to solve the local '
                    'minimum and flat-spot problem in feed-forward neural '
                    'networks.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/ijcnn/CheungNLX14',
           'venue': 'IJCNN',
           'year': '2014'},
  'url': 'URL#2545095'},
 {'@id': '2826970',
  '@score': '5',
  'info': {'authors': {'author': [{'@pid': '40/3667',
                                   'text': 'Chi-Chung Cheung'},
                                  {'@pid': '58/6491', 'text': 'Sin Chun Ng'},
                                  {'@pid': '61/489', 'text': 'Andrew K. Lui'},
                                  {'@pid': '15/10068',
                                   'text': 'Sean Shensheng Xu'}]},
           'doi': '10.1109/IJCNN.2013.6707006',
           'ee': 'https://doi.org/10.1109/IJCNN.2013.6707006',
           'key': 'conf/ijcnn/CheungNLX13',
           'pages': '1-6',
           'title': 'A new fast learning algorithm with promising global '
                    'convergence capability for feed-forward neural networks.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/ijcnn/CheungNLX13',
           'venue': 'IJCNN',
           'year': '2013'},
  'url': 'URL#2826970'},
 {'@id': '3070744',
  '@score': '5',
  'info': {'authors': {'author': [{'@pid': '61/489',
                                   'text': 'Andrew Kwok-Fai Lui'},
                                  {'@pid': '126/7534', 'text': 'Ka-Fai Wong'},
                                  {'@pid': '58/6491', 'text': 'Sin Chun Ng'},
                                  {'@pid': '126/7545', 'text': 'Ka-Hing Law'}]},
           'ee': 'https://ieeexplore.ieee.org/document/6470123/',
           'key': 'conf/icdsc/LuiWNL12',
           'pages': '1-6',
           'title': 'Development of a mental stress relaxation tool based on '
                    'guided imagery and Microsoft Kinect.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icdsc/LuiWNL12',
           'venue': 'ICDSC',
           'year': '2012'},
  'url': 'URL#3070744'},
 {'@id': '3089351',
  '@score': '5',
  'info': {'authors': {'author': [{'@pid': '40/3667',
                                   'text': 'Chi-Chung Cheung'},
                                  {'@pid': '58/6491', 'text': 'Sin Chun Ng'},
                                  {'@pid': '61/489', 'text': 'Andrew K. Lui'}]},
           'doi': '10.1109/IJCNN.2012.6252546',
           'ee': 'https://doi.org/10.1109/IJCNN.2012.6252546',
           'key': 'conf/ijcnn/CheungNL12',
           'pages': '1-6',
           'title': 'Improving the Quickprop algorithm.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/ijcnn/CheungNL12',
           'venue': 'IJCNN',
           'year': '2012'},
  'url': 'URL#3089351'},
 {'@id': '3100140',
  '@score': '5',
  'info': {'authors': {'author': [{'@pid': '40/3667',
                                   'text': 'Chi-Chung Cheung'},
                                  {'@pid': '58/6491', 'text': 'Sin Chun Ng'},
                                  {'@pid': '61/489',
                                   'text': 'Andrew Kwok-Fai Lui'}]},
           'doi': '10.1007/978-3-642-31346-2_65',
           'ee': 'https://doi.org/10.1007/978-3-642-31346-2_65',
           'key': 'conf/isnn/CheungNL12',
           'pages': '580-589',
           'title': 'Multi-phase Fast Learning Algorithms for Solving the '
                    'Local Minimum Problem in Feed-Forward Neural Networks.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/isnn/CheungNL12',
           'venue': 'ISNN',
           'year': '2012'},
  'url': 'URL#3100140'},
 {'@id': '3100198',
  '@score': '5',
  'info': {'authors': {'author': [{'@pid': '58/6491', 'text': 'Sin Chun Ng'},
                                  {'@pid': '40/3667',
                                   'text': 'Chi-Chung Cheung'},
                                  {'@pid': '61/489',
                                   'text': 'Andrew Kwok-Fai Lui'},
                                  {'@pid': '117/3062',
                                   'text': 'Hau-Ting Tse'}]},
           'doi': '10.1007/978-3-642-31346-2_24',
           'ee': 'https://doi.org/10.1007/978-3-642-31346-2_24',
           'key': 'conf/isnn/NgCLT12',
           'pages': '206-216',
           'title': 'Addressing the Local Minima Problem by Output Monitoring '
                    'and Modification Algorithms.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/isnn/NgCLT12',
           'venue': 'ISNN',
           'year': '2012'},
  'url': 'URL#3100198'},
 {'@id': '3100199',
  '@score': '5',
  'info': {'authors': {'author': [{'@pid': '58/6491', 'text': 'Sin Chun Ng'},
                                  {'@pid': '40/3667',
                                   'text': 'Chi-Chung Cheung'},
                                  {'@pid': '61/489',
                                   'text': 'Andrew Kwok-Fai Lui'},
                                  {'@pid': '15/10068',
                                   'text': 'Sean Shensheng Xu'}]},
           'doi': '10.1007/978-3-642-31346-2_51',
           'ee': 'https://doi.org/10.1007/978-3-642-31346-2_51',
           'key': 'conf/isnn/NgCLX12',
           'pages': '448-457',
           'title': 'Magnified Gradient Function to Improve First-Order '
                    'Gradient-Based Learning Algorithms.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/isnn/NgCLX12',
           'venue': 'ISNN',
           'year': '2012'},
  'url': 'URL#3100199'},
 {'@id': '3343208',
  '@score': '5',
  'info': {'authors': {'author': [{'@pid': '40/3667',
                                   'text': 'Chi-Chung Cheung'},
                                  {'@pid': '58/6491', 'text': 'Sin Chun Ng'},
                                  {'@pid': '61/489', 'text': 'Andrew K. Lui'},
                                  {'@pid': '15/10068',
                                   'text': 'Sean Shensheng Xu'}]},
           'doi': '10.1109/IJCNN.2011.6033323',
           'ee': 'https://doi.org/10.1109/IJCNN.2011.6033323',
           'key': 'conf/ijcnn/CheungNLX11',
           'pages': '937-942',
           'title': 'A fast learning algorithm with Promising Convergence '
                    'Capability.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/ijcnn/CheungNLX11',
           'venue': 'IJCNN',
           'year': '2011'},
  'url': 'URL#3343208'},
 {'@id': '3458263',
  '@score': '5',
  'info': {'authors': {'author': [{'@pid': '61/489', 'text': 'Andrew K. Lui'},
                                  {'@pid': '58/6491', 'text': 'Sin Chun Ng'},
                                  {'@pid': '46/1712',
                                   'text': 'Yannie H. Y. Cheung'},
                                  {'@pid': '162/8386',
                                   'text': 'Prabhat Gurung'}]},
           'doi': '10.1145/1869746.1869762',
           'ee': 'https://doi.org/10.1145/1869746.1869762',
           'key': 'journals/inroads/LuiNCG10',
           'number': '4',
           'pages': '49-53',
           'title': 'Facilitating independent learning with Lego Mindstorms '
                    'robots.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/inroads/LuiNCG10',
           'venue': 'Inroads',
           'volume': '1',
           'year': '2010'},
  'url': 'URL#3458263'},
 {'@id': '3573756',
  '@score': '5',
  'info': {'authors': {'author': [{'@pid': '40/3667',
                                   'text': 'Chi-Chung Cheung'},
                                  {'@pid': '58/6491', 'text': 'Sin Chun Ng'},
                                  {'@pid': '61/489', 'text': 'Andrew K. Lui'},
                                  {'@pid': '15/10068',
                                   'text': 'Sean Shensheng Xu'}]},
           'doi': '10.1109/IJCNN.2010.5596519',
           'ee': 'https://doi.org/10.1109/IJCNN.2010.5596519',
           'key': 'conf/ijcnn/CheungNLX10',
           'pages': '1-7',
           'title': 'Enhanced Two-Phase method in fast learning algorithms.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/ijcnn/CheungNLX10',
           'venue': 'IJCNN',
           'year': '2010'},
  'url': 'URL#3573756'},
 {'@id': '4072210',
  '@score': '5',
  'info': {'authors': {'author': [{'@pid': '61/489', 'text': 'Andrew K. Lui'},
                                  {'@pid': '29/7464',
                                   'text': 'Philip M. Tsang'},
                                  {'@pid': '43/5628', 'text': 'Reggie Kwan'},
                                  {'@pid': '58/6491', 'text': 'Sin Chun Ng'},
                                  {'@pid': '46/1712',
                                   'text': 'Yannie H. Y. Cheung'},
                                  {'@pid': '71/509',
                                   'text': 'Sheung-On Choy'}]},
           'doi': '10.1111/J.1467-8535.2006.00690.X',
           'ee': 'https://doi.org/10.1111/j.1467-8535.2006.00690.x',
           'key': 'journals/bjet/LuiTKNCC07',
           'number': '6',
           'pages': '1020-1036',
           'title': 'An evaluation framework of expertise presence in computer '
                    'conferences.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/bjet/LuiTKNCC07',
           'venue': 'Br. J. Educ. Technol.',
           'volume': '38',
           'year': '2007'},
  'url': 'URL#4072210'},
 {'@id': '493343',
  '@score': '4',
  'info': {'authors': {'author': [{'@pid': '58/7703', 'text': 'Qingqing Cheng'},
                                  {'@pid': '204/8317-1',
                                   'text': 'Zhipeng Lin 0001'},
                                  {'@pid': '07/314-a',
                                   'text': 'J. Andrew Zhang'},
                                  {'@pid': '95/10112',
                                   'text': 'Diep N. Nguyen'},
                                  {'@pid': '18/6096-1',
                                   'text': 'Xiaojing Huang 0001'},
                                  {'@pid': '210/6676',
                                   'text': 'Asanka Kekirigoda'},
                                  {'@pid': '62/1745', 'text': 'Kin-Ping Hui'}]},
           'doi': '10.1109/ICSPCS50536.2020.9310062',
           'ee': 'https://doi.org/10.1109/ICSPCS50536.2020.9310062',
           'key': 'conf/icspcs/ChengLZNHKH20',
           'pages': '1-6',
           'title': 'Multi-user MIMO with Jamming Suppression for '
                    'Spectrum-Efficient Tactical Communications.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icspcs/ChengLZNHKH20',
           'venue': 'ICSPCS',
           'year': '2020'},
  'url': 'URL#493343'},
 {'@id': '493398',
  '@score': '4',
  'info': {'authors': {'author': [{'@pid': '07/314-a',
                                   'text': 'J. Andrew Zhang'},
                                  {'@pid': '98/730', 'text': 'Linh Hoang'},
                                  {'@pid': '95/10112',
                                   'text': 'Diep N. Nguyen'},
                                  {'@pid': '18/6096-1',
                                   'text': 'Xiaojing Huang 0001'},
                                  {'@pid': '210/6676',
                                   'text': 'Asanka Kekirigoda'},
                                  {'@pid': '62/1745', 'text': 'Kin-Ping Hui'}]},
           'doi': '10.1109/ICSPCS50536.2020.9310055',
           'ee': 'https://doi.org/10.1109/ICSPCS50536.2020.9310055',
           'key': 'conf/icspcs/ZhangHNHKH20',
           'pages': '1-7',
           'title': 'Multi-user MIMO Communications with Interference '
                    'Mitigation in Time-varying Channels.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icspcs/ZhangHNHKH20',
           'venue': 'ICSPCS',
           'year': '2020'},
  'url': 'URL#493398'},
 {'@id': '749657',
  '@score': '4',
  'info': {'authors': {'author': [{'@pid': '213/6879',
                                   'text': 'Floris P. Barthel'},
                                  {'@pid': '184/4954',
                                   'text': 'Kevin C. Johnson'},
                                  {'@pid': '163/6674',
                                   'text': 'Frederick S. Varn'},
                                  {'@pid': '270/7866',
                                   'text': 'Anzhela D. Moskalik'},
                                  {'@pid': '247/1792',
                                   'text': 'Georgette Tanner'},
                                  {'@pid': '270/8845',
                                   'text': 'Emre Kocakavuk'},
                                  {'@pid': '06/5221',
                                   'text': 'Kevin J. Anderson'},
                                  {'@pid': '270/9203',
                                   'text': 'Olajide Abiola'},
                                  {'@pid': '16/8659',
                                   'text': 'Kenneth D. Aldape'},
                                  {'@pid': '270/9501',
                                   'text': 'Kristin D. Alfaro'},
                                  {'@pid': '270/8003', 'text': 'Donat Alpar'},
                                  {'@pid': '46/9331',
                                   'text': 'Samirkumar B. Amin'},
                                  {'@pid': '270/8534',
                                   'text': 'David M. Ashley'},
                                  {'@pid': '270/8071',
                                   'text': 'Pratiti Bandopadhayay'},
                                  {'@pid': '123/8538',
                                   'text': 'Jill S. Barnholtz-Sloan'},
                                  {'@pid': '75/7109',
                                   'text': 'Rameen Beroukhim'},
                                  {'@pid': '87/6748', 'text': 'Christoph Bock'},
                                  {'@pid': '270/9339',
                                   'text': 'Priscilla K. Brastianos'},
                                  {'@pid': '07/8760', 'text': 'Daniel J. Brat'},
                                  {'@pid': '270/7950',
                                   'text': 'Andrew R. Brodbelt'},
                                  {'@pid': '270/9247',
                                   'text': 'Alexander F. Bruns'},
                                  {'@pid': '82/6452',
                                   'text': 'Ketan R. Bulsara'},
                                  {'@pid': '270/8695',
                                   'text': 'Aruna Chakrabarty'},
                                  {'@pid': '270/9371',
                                   'text': 'Arnab Chakravarti'},
                                  {'@pid': '77/3008',
                                   'text': 'Jeffrey H. Chuang'},
                                  {'@pid': '270/8452',
                                   'text': 'Elizabeth B. Claus'},
                                  {'@pid': '270/8978',
                                   'text': 'Elizabeth J. Cochran'},
                                  {'@pid': '270/9170',
                                   'text': 'Jennifer Connelly'},
                                  {'@pid': '126/9739',
                                   'text': 'Joseph F. Costello'},
                                  {'@pid': '270/9104',
                                   'text': 'Gaetano Finocchiaro'},
                                  {'@pid': '270/9197',
                                   'text': 'Michael N. Fletcher'},
                                  {'@pid': '270/8165', 'text': 'Pim J. French'},
                                  {'@pid': '270/8816', 'text': 'Hui K. Gan'},
                                  {'@pid': '270/8427',
                                   'text': 'Mark R. Gilbert'},
                                  {'@pid': '270/9279',
                                   'text': 'Peter V. Gould'},
                                  {'@pid': '270/8248',
                                   'text': 'Matthew R. Grimmer'},
                                  {'@pid': '151/8088',
                                   'text': 'Antonio Iavarone'},
                                  {'@pid': '270/8068', 'text': 'Azzam Ismail'},
                                  {'@pid': '150/2055',
                                   'text': 'Michael D. Jenkinson'},
                                  {'@pid': '270/9045',
                                   'text': 'Mustafa Khasraw'},
                                  {'@pid': '52/589', 'text': 'Hoon Kim'},
                                  {'@pid': '270/8812',
                                   'text': 'Mathilde C. M. Kouwenhoven'},
                                  {'@pid': '232/4093',
                                   'text': 'Peter S. LaViolette'},
                                  {'@pid': '136/3484', 'text': 'Meihong Li'},
                                  {'@pid': '35/6392', 'text': 'Peter Lichter'},
                                  {'@pid': '270/7884',
                                   'text': 'Keith L. Ligon'},
                                  {'@pid': '249/3270',
                                   'text': 'Allison K. Lowman'},
                                  {'@pid': '270/7885',
                                   'text': 'Tathiane M. Malta'},
                                  {'@pid': '16/11009', 'text': 'Tali Mazor'},
                                  {'@pid': '270/8161',
                                   'text': 'Kerrie L. McDonald'},
                                  {'@pid': '23/1755',
                                   'text': 'Annette M. Molinaro'},
                                  {'@pid': '56/6433', 'text': 'Do-Hyun Nam'},
                                  {'@pid': '270/8930', 'text': 'Naema Nayyar'},
                                  {'@pid': '270/8962', 'text': 'Ho Keung Ng'},
                                  {'@pid': '270/7911', 'text': 'Chew Yee Ngan'},
                                  {'@pid': '270/9253',
                                   'text': 'Simone P. Niclou'},
                                  {'@pid': '270/9317',
                                   'text': 'Johanna M. Niers'},
                                  {'@pid': '242/5334',
                                   'text': 'Houtan Noushmehr'},
                                  {'@pid': '157/3305',
                                   'text': 'Javad Noorbakhsh'},
                                  {'@pid': '270/8707',
                                   'text': 'D. Ryan Ormond'},
                                  {'@pid': '220/5389', 'text': 'Chul-Kee Park'},
                                  {'@pid': '123/6052',
                                   'text': 'Laila M. Poisson'},
                                  {'@pid': '01/11007', 'text': 'Raul Rabadan'},
                                  {'@pid': '270/4536',
                                   'text': 'Bernhard Radlwimmer'},
                                  {'@pid': '141/2058', 'text': 'Ganesh Rao'},
                                  {'@pid': '270/4750',
                                   'text': 'Guido Reifenberger'},
                                  {'@pid': '270/8232', 'text': 'Jason K. Sa'},
                                  {'@pid': '62/4798',
                                   'text': 'Michael Schuster'},
                                  {'@pid': '270/8386', 'text': 'Brian L. Shaw'},
                                  {'@pid': '270/8030',
                                   'text': 'Susan C. Short'},
                                  {'@pid': '42/7106',
                                   'text': 'Peter A. E. Sillevis Smitt'},
                                  {'@pid': '155/2547',
                                   'text': 'Andrew E. Sloan'},
                                  {'@pid': '25/11382', 'text': 'Marion Smits'},
                                  {'@pid': '66/1389',
                                   'text': 'Hiromichi Suzuki'},
                                  {'@pid': '270/8142',
                                   'text': 'Ghazaleh Tabatabai'},
                                  {'@pid': '07/10560',
                                   'text': 'Erwin G. Van Meir'},
                                  {'@pid': '270/9036', 'text': 'Colin Watts'},
                                  {'@pid': '68/6465', 'text': 'Michael Weller'},
                                  {'@pid': '35/3865',
                                   'text': 'Pieter Wesseling'},
                                  {'@pid': '270/7934',
                                   'text': 'Bart A. Westerman'},
                                  {'@pid': '07/11397', 'text': 'Georg Widhalm'},
                                  {'@pid': '270/8370',
                                   'text': 'Adelheid Woehrer'},
                                  {'@pid': '270/8393',
                                   'text': 'W. K. Alfred Yung'},
                                  {'@pid': '270/8291', 'text': 'Gelareh Zadeh'},
                                  {'@pid': '270/7904', 'text': 'Jason T. Huse'},
                                  {'@pid': '270/8272',
                                   'text': 'John F. De Groot'},
                                  {'@pid': '32/9983', 'text': 'Lucy F. Stead'},
                                  {'@pid': '24/2254',
                                   'text': 'Roel G. W. Verhaak'}]},
           'doi': '10.1038/S41586-019-1775-1',
           'ee': 'https://doi.org/10.1038/s41586-019-1775-1',
           'key': 'journals/nature/BarthelJVMTKAAA19',
           'number': '7785',
           'pages': '112-120',
           'title': 'Longitudinal molecular trajectories of diffuse glioma in '
                    'adults.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/nature/BarthelJVMTKAAA19',
           'venue': 'Nat.',
           'volume': '576',
           'year': '2019'},
  'url': 'URL#749657'},
 {'@id': '785144',
  '@score': '4',
  'info': {'authors': {'author': [{'@pid': '65/3050', 'text': 'Cheng-Yaw Low'},
                                  {'@pid': 't/AndrewTeohBengJin',
                                   'text': 'Andrew Beng Jin Teoh'},
                                  {'@pid': '152/5634', 'text': 'Cong Jie Ng'}]},
           'doi': '10.1109/TCSVT.2017.2761829',
           'ee': 'https://doi.org/10.1109/TCSVT.2017.2761829',
           'key': 'journals/tcsv/LowTN19',
           'number': '1',
           'pages': '115-129',
           'title': 'Multi-Fold Gabor, PCA, and ICA Filter Convolution '
                    'Descriptor for Face Recognition.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/tcsv/LowTN19',
           'venue': 'IEEE Trans. Circuits Syst. Video Technol.',
           'volume': '29',
           'year': '2019'},
  'url': 'URL#785144'},
 {'@id': '937774',
  '@score': '4',
  'info': {'authors': {'author': [{'@pid': '210/6676',
                                   'text': 'Asanka Kekirigoda'},
                                  {'@pid': '62/1745', 'text': 'Kin-Ping Hui'},
                                  {'@pid': '58/7703', 'text': 'Qingqing Cheng'},
                                  {'@pid': '204/8317-1',
                                   'text': 'Zhipeng Lin 0001'},
                                  {'@pid': '07/314-a',
                                   'text': 'J. Andrew Zhang'},
                                  {'@pid': '95/10112',
                                   'text': 'Diep N. Nguyen'},
                                  {'@pid': '18/6096-1',
                                   'text': 'Xiaojing Huang 0001'}]},
           'doi': '10.1109/MILCOM47813.2019.9020756',
           'ee': 'https://doi.org/10.1109/MILCOM47813.2019.9020756',
           'key': 'conf/milcom/KekirigodaHCLZN19',
           'pages': '658-663',
           'title': 'Massive MIMO for Tactical Ad-hoc Networks in RF Contested '
                    'Environments.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/milcom/KekirigodaHCLZN19',
           'venue': 'MILCOM',
           'year': '2019'},
  'url': 'URL#937774'},
 {'@id': '1132522',
  '@score': '4',
  'info': {'authors': {'author': [{'@pid': '152/5634', 'text': 'Cong Jie Ng'},
                                  {'@pid': '65/3050', 'text': 'Cheng-Yaw Low'},
                                  {'@pid': '18/1519', 'text': 'Kar-Ann Toh'},
                                  {'@pid': '37/6321', 'text': 'Jaihie Kim'},
                                  {'@pid': 't/AndrewTeohBengJin',
                                   'text': 'Andrew Beng Jin Teoh'}]},
           'doi': '10.1016/J.JVCIR.2018.07.002',
           'ee': 'https://doi.org/10.1016/j.jvcir.2018.07.002',
           'key': 'journals/jvcir/NgLTKT18',
           'pages': '548-560',
           'title': 'Orthogonal filter banks with region Log-TiedRank '
                    'covariance matrices for face recognition.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/jvcir/NgLTKT18',
           'venue': 'J. Vis. Commun. Image Represent.',
           'volume': '55',
           'year': '2018'},
  'url': 'URL#1132522'},
 {'@id': '1215655',
  '@score': '4',
  'info': {'authors': {'author': [{'@pid': '31/7727', 'text': 'Jie Qi'},
                                  {'@pid': '25/6737', 'text': 'Leah Buechley'},
                                  {'@pid': '217/9243',
                                   'text': 'Andrew &quot;bunnie&quot; Huang'},
                                  {'@pid': '217/9477', 'text': 'Patricia Ng'},
                                  {'@pid': '217/9274', 'text': 'Sean Cross'},
                                  {'@pid': '46/4069',
                                   'text': 'Joseph A. Paradiso'}]},
           'doi': '10.1145/3173574.3173826',
           'ee': 'https://doi.org/10.1145/3173574.3173826',
           'key': 'conf/chi/QiBHNCP18',
           'pages': '252',
           'title': 'Chibitronics in the Wild - Engaging New Communities in '
                    'Creating Technology with Paper Electronics.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/chi/QiBHNCP18',
           'venue': 'CHI',
           'year': '2018'},
  'url': 'URL#1215655'},
 {'@id': '1809354',
  '@score': '4',
  'info': {'authors': {'author': [{'@pid': '30/10935', 'text': 'Luca Saba'},
                                  {'@pid': '135/5024',
                                   'text': 'Joel Chia Ming Than'},
                                  {'@pid': '38/9160',
                                   'text': 'Norliza Mohd. Noor'},
                                  {'@pid': '09/9448',
                                   'text': 'Omar Mohd. Rijal'},
                                  {'@pid': '135/5233',
                                   'text': 'Rosminah M. Kassim'},
                                  {'@pid': '41/9160', 'text': 'Ashari Yunus'},
                                  {'@pid': '176/7645', 'text': 'Chuen Rue Ng'},
                                  {'@pid': '48/4080',
                                   'text': 'Jasjit S. Suri'}]},
           'doi': '10.1007/S10916-016-0504-7',
           'ee': 'https://doi.org/10.1007/s10916-016-0504-7',
           'key': 'journals/jms/SabaTNRKYNS16',
           'number': '6',
           'pages': '142:1-142:18',
           'title': 'Inter-observer Variability Analysis of Automatic Lung '
                    'Delineation in Normal and Disease Patients.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/jms/SabaTNRKYNS16',
           'venue': 'J. Medical Syst.',
           'volume': '40',
           'year': '2016'},
  'url': 'URL#1809354'},
 {'@id': '1925604',
  '@score': '4',
  'info': {'authors': {'author': [{'@pid': '65/3050', 'text': 'Cheng-Yaw Low'},
                                  {'@pid': 't/AndrewTeohBengJin',
                                   'text': 'Andrew Beng Jin Teoh'},
                                  {'@pid': '152/5634', 'text': 'Cong Jie Ng'}]},
           'doi': '10.1109/ICASSP.2016.7472046',
           'ee': 'https://doi.org/10.1109/ICASSP.2016.7472046',
           'key': 'conf/icassp/LowTN16',
           'pages': '2094-2098',
           'title': 'Multi-fold Gabor filter convolution descriptor for face '
                    'recognition.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icassp/LowTN16',
           'venue': 'ICASSP',
           'year': '2016'},
  'url': 'URL#1925604'},
 {'@id': '1925708',
  '@score': '4',
  'info': {'authors': {'author': [{'@pid': '152/5634', 'text': 'Cong Jie Ng'},
                                  {'@pid': 't/AndrewTeohBengJin',
                                   'text': 'Andrew Beng Jin Teoh'},
                                  {'@pid': '65/3050',
                                   'text': 'Cheng-Yaw Low'}]},
           'doi': '10.1109/ICASSP.2016.7472047',
           'ee': 'https://doi.org/10.1109/ICASSP.2016.7472047',
           'key': 'conf/icassp/NgTL16',
           'pages': '2099-2103',
           'title': 'DCT based region log-tiedrank covariance matrices for '
                    'face recognition.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icassp/NgTL16',
           'venue': 'ICASSP',
           'year': '2016'},
  'url': 'URL#1925708'},
 {'@id': '2036883',
  '@score': '4',
  'info': {'authors': {'author': [{'@pid': '65/3050', 'text': 'Cheng-Yaw Low'},
                                  {'@pid': 't/AndrewTeohBengJin',
                                   'text': 'Andrew Beng Jin Teoh'},
                                  {'@pid': '152/5634', 'text': 'Cong Jie Ng'}]},
           'ee': 'http://arxiv.org/abs/1604.07057',
           'key': 'journals/corr/LowTN16',
           'title': 'Multi-Fold Gabor, PCA and ICA Filter Convolution '
                    'Descriptor for Face Recognition.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/LowTN16',
           'venue': 'CoRR',
           'volume': 'abs/1604.07057',
           'year': '2016'},
  'url': 'URL#2036883'},
 {'@id': '2173926',
  '@score': '4',
  'info': {'authors': {'author': [{'@pid': '152/5634', 'text': 'Cong Jie Ng'},
                                  {'@pid': 't/AndrewTeohBengJin',
                                   'text': 'Andrew Beng Jin Teoh'}]},
           'doi': '10.1109/APSIPA.2015.7415375',
           'ee': 'https://doi.org/10.1109/APSIPA.2015.7415375',
           'key': 'conf/apsipa/NgT15',
           'pages': '761-768',
           'title': 'DCTNet - A simple learning-free approach for face '
                    'recognition.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/apsipa/NgT15',
           'venue': 'APSIPA',
           'year': '2015'},
  'url': 'URL#2173926'},
 {'@id': '2247283',
  '@score': '4',
  'info': {'authors': {'author': [{'@pid': '176/7645', 'text': 'Chuen Rue Ng'},
                                  {'@pid': '135/5024',
                                   'text': 'Joel Chia Ming Than'},
                                  {'@pid': '38/9160',
                                   'text': 'Norliza Mohd. Noor'},
                                  {'@pid': '09/9448',
                                   'text': 'Omar Mohd. Rijal'}]},
           'doi': '10.1109/ICSIPA.2015.7412232',
           'ee': 'https://doi.org/10.1109/ICSIPA.2015.7412232',
           'key': 'conf/icsipa/NgTNR15',
           'pages': '443-446',
           'title': 'Double segmentation method for brain region using FCM and '
                    'graph cut for CT scan images.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icsipa/NgTNR15',
           'venue': 'ICSIPA',
           'year': '2015'},
  'url': 'URL#2247283'},
 {'@id': '2337304',
  '@score': '4',
  'info': {'authors': {'author': [{'@pid': '152/5634', 'text': 'Cong Jie Ng'},
                                  {'@pid': 't/AndrewTeohBengJin',
                                   'text': 'Andrew Beng Jin Teoh'}]},
           'ee': 'http://arxiv.org/abs/1507.02049',
           'key': 'journals/corr/NgT15',
           'title': 'DCTNet - A Simple Learning-free Approach for Face '
                    'Recognition.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/NgT15',
           'venue': 'CoRR',
           'volume': 'abs/1507.02049',
           'year': '2015'},
  'url': 'URL#2337304'},
 {'@id': '2360128',
  '@score': '4',
  'info': {'authors': {'author': [{'@pid': '176/7645',
                                   'text': 'C. R. Andrew Ng'},
                                  {'@pid': '40/3571',
                                   'text': 'Wai Yie Leong'}]},
           'doi': '10.1016/J.BSPC.2014.01.005',
           'ee': 'https://doi.org/10.1016/j.bspc.2014.01.005',
           'key': 'journals/bspc/NgL14',
           'pages': '92-101',
           'title': 'An EEG-based approach for left-handedness detection.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/bspc/NgL14',
           'venue': 'Biomed. Signal Process. Control.',
           'volume': '10',
           'year': '2014'},
  'url': 'URL#2360128'},
 {'@id': '2379111',
  '@score': '4',
  'info': {'authors': {'author': [{'@pid': '35/5229',
                                   'text': 'Wojtek Goscinski'},
                                  {'@pid': '38/3008', 'text': 'Paul McIntosh'},
                                  {'@pid': '155/6870',
                                   'text': 'Ulrich Claus Felzmann'},
                                  {'@pid': '04/3929',
                                   'text': 'Anton Maksimenko'},
                                  {'@pid': '58/8698',
                                   'text': 'Christopher Hall'},
                                  {'@pid': '124/2215', 'text': 'Timur Gureyev'},
                                  {'@pid': '92/8911',
                                   'text': 'Darren Thompson'},
                                  {'@pid': '64/2690',
                                   'text': 'Andrew L. Janke'},
                                  {'@pid': '23/10742',
                                   'text': 'Graham J. Galloway'},
                                  {'@pid': '124/2310',
                                   'text': 'Neil E. B. Killeen'},
                                  {'@pid': '86/4709', 'text': 'Parnesh Raniga'},
                                  {'@pid': '136/7372', 'text': 'Owen Kaluza'},
                                  {'@pid': '155/6506', 'text': 'Amanda Ng'},
                                  {'@pid': '138/6518',
                                   'text': 'Govinda R. Poudel'},
                                  {'@pid': '16/6684',
                                   'text': 'David G. Barnes'},
                                  {'@pid': '188/5663',
                                   'text': 'Toàn D. Nguyên'},
                                  {'@pid': '28/2316',
                                   'text': 'C. Paul Bonnington'},
                                  {'@pid': '01/6937', 'text': 'Gary F. Egan'}]},
           'doi': '10.3389/FNINF.2014.00030',
           'ee': 'https://doi.org/10.3389/fninf.2014.00030',
           'key': 'journals/fini/GoscinskiMFMHGTJGKRKNPBNBE14',
           'pages': '30',
           'title': 'The multi-modal Australian ScienceS Imaging and '
                    'Visualization Environment (MASSIVE) high performance '
                    'computing infrastructure - applications in neuroscience '
                    'and neuroinformatics research.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/fini/GoscinskiMFMHGTJGKRKNPBNBE14',
           'venue': 'Frontiers Neuroinformatics',
           'volume': '8',
           'year': '2014'},
  'url': 'URL#2379111'},
 {'@id': '3180934',
  '@score': '4',
  'info': {'authors': {'author': [{'@pid': '82/7122', 'text': 'Yan Jiao'},
                                  {'@pid': '28/10305',
                                   'text': 'Katherine Lawler'},
                                  {'@pid': '20/10306',
                                   'text': 'Gargi S. Patel'},
                                  {'@pid': '23/10306',
                                   'text': 'Arnie Purushotham'},
                                  {'@pid': '31/10306',
                                   'text': 'Annete F. Jones'},
                                  {'@pid': '34/10305',
                                   'text': 'Anita Grigoriadis'},
                                  {'@pid': '15/10305', 'text': 'Andrew Tutt'},
                                  {'@pid': '64/5029', 'text': 'Tony C. Ng'},
                                  {'@pid': '01/2543',
                                   'text': 'Andrew E. Teschendorff'}]},
           'doi': '10.1186/1471-2105-12-403',
           'ee': 'https://doi.org/10.1186/1471-2105-12-403',
           'key': 'journals/bmcbi/JiaoLPPJGTNT11',
           'pages': '403',
           'title': 'DART - Denoising Algorithm based on Relevance network '
                    'Topology improves molecular pathway activity inference.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/bmcbi/JiaoLPPJGTNT11',
           'venue': 'BMC Bioinform.',
           'volume': '12',
           'year': '2011'},
  'url': 'URL#3180934'},
 {'@id': '3276628',
  '@score': '4',
  'info': {'authors': {'author': [{'@pid': '96/295',
                                   'text': 'Madalin Mihailescu'},
                                  {'@pid': '128/2541',
                                   'text': 'Andres Rodriguez 0003'},
                                  {'@pid': 'a/CristianaAmza',
                                   'text': 'Cristiana Amza'},
                                  {'@pid': '128/2544',
                                   'text': 'Dmitrijs Palcikovs'},
                                  {'@pid': '14/108', 'text': 'Gabriel Iszlai'},
                                  {'@pid': '128/2503',
                                   'text': 'Andrew Trossman'},
                                  {'@pid': '63/8816', 'text': 'Joanna Ng'}]},
           'ee': 'http://dl.acm.org/citation.cfm?id=2093906',
           'key': 'conf/cascon/MihailescuRAPITN11',
           'pages': '133-147',
           'title': 'Enhancing application robustness in cloud data centers.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/cascon/MihailescuRAPITN11',
           'venue': 'CASCON',
           'year': '2011'},
  'url': 'URL#3276628'},
 {'@id': '3716942',
  '@score': '4',
  'info': {'authors': {'author': [{'@pid': '01/8981', 'text': 'Sing K. Ng'},
                                  {'@pid': '29/1805', 'text': 'Andrew Gibson'},
                                  {'@pid': '65/8980',
                                   'text': 'Graham Parkinson'},
                                  {'@pid': '26/8982', 'text': 'Arthur Haigh'},
                                  {'@pid': '52/8982', 'text': 'Paul Ainsworth'},
                                  {'@pid': '39/8979',
                                   'text': 'Andrew Plunkett'}]},
           'doi': '10.1109/TIM.2009.2019717',
           'ee': 'https://doi.org/10.1109/TIM.2009.2019717',
           'key': 'journals/tim/NgGPHAP09',
           'number': '10',
           'pages': '3778-3787',
           'title': 'Bimodal Method of Determining Fat and Salt Content in '
                    'Beef Products by Microwave Techniques.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/tim/NgGPHAP09',
           'venue': 'IEEE Trans. Instrum. Meas.',
           'volume': '58',
           'year': '2009'},
  'url': 'URL#3716942'},
 {'@id': '4715946',
  '@score': '4',
  'info': {'authors': {'author': [{'@pid': '74/6782',
                                   'text': 'Andrew Tae-Jun Kwon'},
                                  {'@pid': 'h/HolgerHHoos',
                                   'text': 'Holger H. Hoos'},
                                  {'@pid': 'n/RTNg', 'text': 'Raymond T. Ng'}]},
           'doi': '10.1093/BIOINFORMATICS/BTG106',
           'ee': 'https://doi.org/10.1093/bioinformatics/btg106',
           'key': 'journals/bioinformatics/KwonHN03',
           'number': '8',
           'pages': '905-912',
           'title': 'Inference of Transcriptional Regulation Relationships '
                    'from Gene Expression Data.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/bioinformatics/KwonHN03',
           'venue': 'Bioinform.',
           'volume': '19',
           'year': '2003'},
  'url': 'URL#4715946'},
 {'@id': '4808944',
  '@score': '4',
  'info': {'authors': {'author': [{'@pid': '74/6782',
                                   'text': 'Andrew Tae-Jun Kwon'},
                                  {'@pid': 'h/HolgerHHoos',
                                   'text': 'Holger H. Hoos'},
                                  {'@pid': 'n/RTNg', 'text': 'Raymond T. Ng'}]},
           'doi': '10.1145/952532.952561',
           'ee': 'https://doi.org/10.1145/952532.952561',
           'key': 'conf/sac/KwonHN03',
           'pages': '135-140',
           'title': 'Inference of Transcriptional Regulation Relationships '
                    'from Gene Expression Data.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/sac/KwonHN03',
           'venue': 'SAC',
           'year': '2003'},
  'url': 'URL#4808944'},
 {'@id': '5129327',
  '@score': '4',
  'info': {'authors': {'author': [{'@pid': '15/5550', 'text': 'Walfrey Ng'},
                                  {'@pid': '05/10082',
                                   'text': 'Andrew Do-Sung Jun'},
                                  {'@pid': '20/3978',
                                   'text': 'HungKei Keith Chow'},
                                  {'@pid': 'b/RaoufBoutaba',
                                   'text': 'Raouf Boutaba'},
                                  {'@pid': '58/4358',
                                   'text': 'Alberto Leon-Garcia'}]},
           'doi': '10.1109/INM.1999.770684',
           'ee': 'https://doi.org/10.1109/INM.1999.770684',
           'key': 'conf/im/NgJCBL99',
           'pages': '201-216',
           'title': 'MIBlets - A Practical Approach to Virtual Network '
                    'Management.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/im/NgJCBL99',
           'venue': 'Integrated Network Management',
           'year': '1999'},
  'url': 'URL#5129327'},
 {'@id': '5356506',
  '@score': '4',
  'info': {'authors': {'author': [{'@pid': 'a/DerekAbbott',
                                   'text': 'Derek Abbott'},
                                  {'@pid': '74/1291',
                                   'text': 'Andre Yakovleff'},
                                  {'@pid': '23/6703', 'text': 'Alireza Moini'},
                                  {'@pid': '74/6952',
                                   'text': 'X. Thong Nguyen'},
                                  {'@pid': '24/103',
                                   'text': 'Andrew J. Blanksby'},
                                  {'@pid': '24/5917', 'text': 'Richard Beare'},
                                  {'@pid': '26/2327',
                                   'text': 'Andrew Beaumont-Smith'},
                                  {'@pid': '97/7003', 'text': 'Gyudong Kim'},
                                  {'@pid': '00/5421',
                                   'text': 'Abdesselam Bouzerdoum'},
                                  {'@pid': '44/3381',
                                   'text': 'Robert E. Bogner'},
                                  {'@pid': '184/4409',
                                   'text': 'Kamran Eshraghian'}]},
           'doi': '10.1117/12.228964',
           'ee': 'https://doi.org/10.1117/12.228964',
           'key': 'conf/mr/AbbottYMNBBBKBBE95',
           'pages': '2-12',
           'title': 'Biologically inspired obstacle avoidance - a technology '
                    'independent paradigm.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/mr/AbbottYMNBBBKBBE95',
           'venue': 'Mobile Robots',
           'year': '1995'},
  'url': 'URL#5356506'},
 {'@id': '22088',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '198/8599', 'text': 'Yuqiang Heng'},
                                  {'@pid': '84/4900',
                                   'text': 'Jeffrey G. Andrews'},
                                  {'@pid': '61/8397',
                                   'text': 'Jianhua Mo 0001'},
                                  {'@pid': '122/5649', 'text': 'Vutha Va'},
                                  {'@pid': '127/4757', 'text': 'Anum Ali'},
                                  {'@pid': '32/300', 'text': 'Boon Loong Ng'},
                                  {'@pid': '78/6091-2',
                                   'text': 'Jianzhong Charlie Zhang'}]},
           'doi': '10.1109/MCOM.001.2001184',
           'ee': 'https://doi.org/10.1109/MCOM.001.2001184',
           'key': 'journals/cm/HengAMVANZ21',
           'number': '7',
           'pages': '74-79',
           'title': 'Six Key Challenges for Beam Management in 5.5G and 6G '
                    'Systems.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/cm/HengAMVANZ21',
           'venue': 'IEEE Commun. Mag.',
           'volume': '59',
           'year': '2021'},
  'url': 'URL#22088'},
 {'@id': '36059',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '286/6246',
                                   'text': 'Ayman Alkhalifah'},
                                  {'@pid': '16/3523', 'text': 'Alex Ng'},
                                  {'@pid': '85/10911',
                                   'text': 'Paul A. Watters'},
                                  {'@pid': '116/7137',
                                   'text': 'A. S. M. Kayes'}]},
           'doi': '10.3389/FCOMP.2021.598780',
           'ee': 'https://doi.org/10.3389/fcomp.2021.598780',
           'key': 'journals/fcomp/AlkhalifahNWK21',
           'pages': '598780',
           'title': 'A Mechanism to Detect and Prevent Ethereum Blockchain '
                    'Smart Contract Reentrancy Attacks.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/fcomp/AlkhalifahNWK21',
           'venue': 'Frontiers Comput. Sci.',
           'volume': '3',
           'year': '2021'},
  'url': 'URL#36059'},
 {'@id': '36625',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '231/1041',
                                   'text': 'Timothy R. McIntosh'},
                                  {'@pid': '85/10911',
                                   'text': 'Paul A. Watters'},
                                  {'@pid': '116/7137',
                                   'text': 'A. S. M. Kayes'},
                                  {'@pid': '16/3523', 'text': 'Alex Ng'},
                                  {'@pid': 'c/YPPhoebeChen',
                                   'text': 'Yi-Ping Phoebe Chen'}]},
           'doi': '10.1016/J.FUTURE.2020.09.035',
           'ee': 'https://doi.org/10.1016/j.future.2020.09.035',
           'key': 'journals/fgcs/McIntoshWKNC21',
           'pages': '568-582',
           'title': 'Enforcing situation-aware access control to build '
                    'malware-resilient file systems.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/fgcs/McIntoshWKNC21',
           'venue': 'Future Gener. Comput. Syst.',
           'volume': '115',
           'year': '2021'},
  'url': 'URL#36625'},
 {'@id': '54625',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '41/6828', 'text': 'Yuk-Ming Tang'},
                                  {'@pid': '289/2701',
                                   'text': 'George Wing Yiu Ng'},
                                  {'@pid': '289/2556', 'text': 'Nam Hung Chia'},
                                  {'@pid': '289/2641',
                                   'text': 'Eric Hang Kwong So'},
                                  {'@pid': '70/6889', 'text': 'Chun-Ho Wu'},
                                  {'@pid': '36/2935', 'text': 'Wai-Hung Ip'}]},
           'doi': '10.1111/JCAL.12494',
           'ee': 'https://doi.org/10.1111/jcal.12494',
           'key': 'journals/jcal/TangNCSWI21',
           'number': '2',
           'pages': '359-369',
           'title': 'Application of virtual reality (VR) technology for '
                    'medical practitioners in type and screen (T&amp;S) '
                    'training.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/jcal/TangNCSWI21',
           'venue': 'J. Comput. Assist. Learn.',
           'volume': '37',
           'year': '2021'},
  'url': 'URL#54625'},
 {'@id': '77631',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '238/1254',
                                   'text': 'Melanie Florine Simons'},
                                  {'@pid': '204/1113',
                                   'text': 'Krishna Manaswi Digumarti'},
                                  {'@pid': '288/7955', 'text': 'Nguyen Hao Le'},
                                  {'@pid': '115/6237', 'text': 'Hsing-Yu Chen'},
                                  {'@pid': '288/8089',
                                   'text': 'Sara Correia Carreira'},
                                  {'@pid': '288/8229',
                                   'text': 'Nouf S. S. Zaghloul'},
                                  {'@pid': '223/6394',
                                   'text': 'Richard Suphapol Diteesawat'},
                                  {'@pid': '195/0221',
                                   'text': 'Martin Stephen Garrad'},
                                  {'@pid': '70/7377', 'text': 'Andrew T. Conn'},
                                  {'@pid': '182/9007',
                                   'text': 'Christopher Kent'},
                                  {'@pid': '43/4360',
                                   'text': 'Jonathan Rossiter'}]},
           'doi': '10.1109/LRA.2021.3064269',
           'ee': 'https://doi.org/10.1109/LRA.2021.3064269',
           'key': 'journals/ral/SimonsDLCCZDGCK21',
           'number': '2',
           'pages': '3311-3316',
           'title': 'B - Ionic Glove - A Soft Smart Wearable Sensory Feedback '
                    'Device for Upper Limb Robotic Prostheses.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/ral/SimonsDLCCZDGCK21',
           'venue': 'IEEE Robotics Autom. Lett.',
           'volume': '6',
           'year': '2021'},
  'url': 'URL#77631'},
 {'@id': '86323',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '292/1461',
                                   'text': 'Anna B. N. Nguyen'},
                                  {'@pid': '136/2460',
                                   'text': 'Marcos Maldonado'},
                                  {'@pid': '292/1774', 'text': 'Dylan Poch'},
                                  {'@pid': '292/1216', 'text': 'Tyler Sodia'},
                                  {'@pid': '87/1676', 'text': 'Andrew Smith'},
                                  {'@pid': '292/1248',
                                   'text': 'Teisha J. Rowland'},
                                  {'@pid': '292/1034',
                                   'text': 'Andrew J. Bonham'}]},
           'doi': '10.3390/S21082671',
           'ee': 'https://doi.org/10.3390/s21082671',
           'key': 'journals/sensors/NguyenMPSSRB21',
           'number': '8',
           'pages': '2671',
           'title': 'Electrochemical DNA Biosensor That Detects Early Celiac '
                    'Disease Autoantibodies.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/sensors/NguyenMPSSRB21',
           'venue': 'Sensors',
           'volume': '21',
           'year': '2021'},
  'url': 'URL#86323'},
 {'@id': '120146',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '79/3190-1',
                                   'text': 'Yifan Gao 0001'},
                                  {'@pid': '150/4170', 'text': 'Henghui Zhu'},
                                  {'@pid': '92/3908', 'text': 'Patrick Ng'},
                                  {'@pid': '14/5278',
                                   'text': 'Cícero Nogueira dos Santos'},
                                  {'@pid': '80/709', 'text': 'Zhiguo Wang'},
                                  {'@pid': '126/6412', 'text': 'Feng Nan'},
                                  {'@pid': '131/6876', 'text': 'Dejiao Zhang'},
                                  {'@pid': '59/4797',
                                   'text': 'Ramesh Nallapati'},
                                  {'@pid': '254/1112',
                                   'text': 'Andrew O. Arnold'},
                                  {'@pid': '82/5456', 'text': 'Bing Xiang'}]},
           'doi': '10.18653/V1/2021.ACL-LONG.253',
           'ee': 'https://doi.org/10.18653/v1/2021.acl-long.253',
           'key': 'conf/acl/GaoZNSWNZNAX20',
           'pages': '3263-3276',
           'title': 'Answering Ambiguous Questions through Generative Evidence '
                    'Fusion and Round-Trip Prediction.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/acl/GaoZNSWNZNAX20',
           'venue': 'ACL/IJCNLP',
           'year': '2021'},
  'url': 'URL#120146'},
 {'@id': '120517',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '126/6412', 'text': 'Feng Nan'},
                                  {'@pid': '14/5278',
                                   'text': 'Cícero Nogueira dos Santos'},
                                  {'@pid': '150/4170', 'text': 'Henghui Zhu'},
                                  {'@pid': '92/3908', 'text': 'Patrick Ng'},
                                  {'@pid': 'm/KathleenMcKeown',
                                   'text': 'Kathleen R. McKeown'},
                                  {'@pid': '59/4797',
                                   'text': 'Ramesh Nallapati'},
                                  {'@pid': '131/6876', 'text': 'Dejiao Zhang'},
                                  {'@pid': '80/709', 'text': 'Zhiguo Wang'},
                                  {'@pid': '254/1112',
                                   'text': 'Andrew O. Arnold'},
                                  {'@pid': '82/5456', 'text': 'Bing Xiang'}]},
           'doi': '10.18653/V1/2021.ACL-LONG.536',
           'ee': 'https://doi.org/10.18653/v1/2021.acl-long.536',
           'key': 'conf/acl/NanSZNMNZWAX20',
           'pages': '6881-6894',
           'title': 'Improving Factual Consistency of Abstractive '
                    'Summarization via Question Answering.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/acl/NanSZNMNZWAX20',
           'venue': 'ACL/IJCNLP',
           'year': '2021'},
  'url': 'URL#120517'},
 {'@id': '205609',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '126/6412', 'text': 'Feng Nan'},
                                  {'@pid': '14/5278',
                                   'text': 'Cícero Nogueira dos Santos'},
                                  {'@pid': '150/4170', 'text': 'Henghui Zhu'},
                                  {'@pid': '92/3908', 'text': 'Patrick Ng'},
                                  {'@pid': 'm/KathleenMcKeown',
                                   'text': 'Kathleen R. McKeown'},
                                  {'@pid': '59/4797',
                                   'text': 'Ramesh Nallapati'},
                                  {'@pid': '131/6876', 'text': 'Dejiao Zhang'},
                                  {'@pid': '80/709', 'text': 'Zhiguo Wang'},
                                  {'@pid': '254/1112',
                                   'text': 'Andrew O. Arnold'},
                                  {'@pid': '82/5456', 'text': 'Bing Xiang'}]},
           'ee': 'https://arxiv.org/abs/2105.04623',
           'key': 'journals/corr/abs-2105-04623',
           'title': 'Improving Factual Consistency of Abstractive '
                    'Summarization via Question Answering.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-2105-04623',
           'venue': 'CoRR',
           'volume': 'abs/2105.04623',
           'year': '2021'},
  'url': 'URL#205609'},
 {'@id': '218329',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '120/7266',
                                   'text': 'Raj Thilak Rajan'},
                                  {'@pid': '296/3656',
                                   'text': 'Shoshana Ben-Maor'},
                                  {'@pid': '296/4311',
                                   'text': 'Shaziana Kaderali'},
                                  {'@pid': '296/3775', 'text': 'Calum Turner'},
                                  {'@pid': '296/4222',
                                   'text': 'Mohammed Milhim'},
                                  {'@pid': '296/4108',
                                   'text': 'Catrina Melograna'},
                                  {'@pid': '296/3720', 'text': 'Dawn Haken'},
                                  {'@pid': '296/4240', 'text': 'Gary Paul'},
                                  {'@pid': '296/4339', 'text': 'Vedant'},
                                  {'@pid': '296/3646', 'text': 'Sreekumar V'},
                                  {'@pid': '296/4280',
                                   'text': 'Johannes Weppler'},
                                  {'@pid': '212/1478',
                                   'text': 'Yosephine Gumulya'},
                                  {'@pid': '296/3954', 'text': 'Riccardo Bunt'},
                                  {'@pid': '296/3956',
                                   'text': 'Asia Bulgarini'},
                                  {'@pid': '296/3733',
                                   'text': 'Maurice Marnat'},
                                  {'@pid': '296/3706', 'text': 'Kadri Bussov'},
                                  {'@pid': '296/3822',
                                   'text': 'Frederick Pringle'},
                                  {'@pid': '296/4193', 'text': 'Jusha Ma'},
                                  {'@pid': '296/3856',
                                   'text': 'Rushanka Amrutkar'},
                                  {'@pid': '296/3985', 'text': 'Miguel Coto'},
                                  {'@pid': '54/2545', 'text': 'Jiang He'},
                                  {'@pid': '224/0531', 'text': 'Zijian Shi'},
                                  {'@pid': '296/3748', 'text': 'Shahd Hayder'},
                                  {'@pid': '296/4206',
                                   'text': 'Dina Saad Fayez Jaber'},
                                  {'@pid': '296/4012', 'text': 'Junchao Zuo'},
                                  {'@pid': '296/3685',
                                   'text': 'Mohammad Alsukour'},
                                  {'@pid': '296/3968', 'text': 'Cecile Renaud'},
                                  {'@pid': '272/2289',
                                   'text': 'Matthew Christie'},
                                  {'@pid': '296/3648', 'text': 'Neta Engad'},
                                  {'@pid': '173/5563', 'text': 'Yu Lian'},
                                  {'@pid': '272/9730', 'text': 'Jie Wen'},
                                  {'@pid': '296/3764', 'text': 'Ruth McAvinia'},
                                  {'@pid': '296/4039',
                                   'text': 'Andrew Simon-Butler'},
                                  {'@pid': '52/5285', 'text': 'Anh Nguyen'},
                                  {'@pid': '162/2468', 'text': 'Jacob Cohen'}]},
           'ee': 'https://arxiv.org/abs/2107.01601',
           'key': 'journals/corr/abs-2107-01601',
           'title': 'Applications And Potentials Of Intelligent Swarms For '
                    'Magnetospheric Studies.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-2107-01601',
           'venue': 'CoRR',
           'volume': 'abs/2107.01601',
           'year': '2021'},
  'url': 'URL#218329'},
 {'@id': '251114',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '217/4047', 'text': 'Samuel Hislop'},
                                  {'@pid': '86/7547', 'text': 'Andrew Haywood'},
                                  {'@pid': '142/6114',
                                   'text': 'Simon D. Jones'},
                                  {'@pid': '142/6204',
                                   'text': 'Mariela Soto-Berelov'},
                                  {'@pid': '97/4491',
                                   'text': 'Andrew K. Skidmore'},
                                  {'@pid': '217/4094',
                                   'text': 'Trung H. Nguyen'}]},
           'doi': '10.1016/J.JAG.2019.102034',
           'ee': 'https://doi.org/10.1016/j.jag.2019.102034',
           'key': 'journals/aeog/HislopHJSSN20',
           'pages': '102034',
           'title': 'A satellite data driven approach to monitoring and '
                    'reporting fire disturbance and recovery across boreal and '
                    'temperate forests.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/aeog/HislopHJSSN20',
           'venue': 'Int. J. Appl. Earth Obs. Geoinformation',
           'volume': '87',
           'year': '2020'},
  'url': 'URL#251114'},
 {'@id': '261792',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '214/9186', 'text': 'Julia Liang'},
                                  {'@pid': '272/2662',
                                   'text': 'Chris Karagiannis'},
                                  {'@pid': '267/2211',
                                   'text': 'Eleni Pitsillou'},
                                  {'@pid': '272/2656',
                                   'text': 'Kevion K. Darmawan'},
                                  {'@pid': '272/2759', 'text': 'Ken Ng'},
                                  {'@pid': '214/9416', 'text': 'Andrew Hung'},
                                  {'@pid': '214/8990',
                                   'text': 'Tom C. Karagiannis'}]},
           'doi': '10.1016/J.COMPBIOLCHEM.2020.107372',
           'ee': 'https://doi.org/10.1016/j.compbiolchem.2020.107372',
           'key': 'journals/candc/LiangKPDNHK20',
           'pages': '107372',
           'title': 'Site mapping and small molecule blind docking reveal a '
                    'possible target site on the SARS-CoV-2 main protease '
                    'dimer interface.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/candc/LiangKPDNHK20',
           'venue': 'Comput. Biol. Chem.',
           'volume': '89',
           'year': '2020'},
  'url': 'URL#261792'},
 {'@id': '261793',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '214/9186', 'text': 'Julia Liang'},
                                  {'@pid': '267/2211',
                                   'text': 'Eleni Pitsillou'},
                                  {'@pid': '272/2662',
                                   'text': 'Chris Karagiannis'},
                                  {'@pid': '272/2656',
                                   'text': 'Kevion K. Darmawan'},
                                  {'@pid': '272/2759', 'text': 'Ken Ng'},
                                  {'@pid': '214/9416', 'text': 'Andrew Hung'},
                                  {'@pid': '214/8990',
                                   'text': 'Tom C. Karagiannis'}]},
           'doi': '10.1016/J.COMPBIOLCHEM.2020.107292',
           'ee': 'https://doi.org/10.1016/j.compbiolchem.2020.107292',
           'key': 'journals/candc/LiangPKDNHK20',
           'pages': '107292',
           'title': 'Interaction of the prototypical α-ketoamide inhibitor '
                    'with the SARS-CoV-2 main protease active site in silico - '
                    'Molecular dynamic simulations highlight the stability of '
                    'the ligand-protein complex.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/candc/LiangPKDNHK20',
           'venue': 'Comput. Biol. Chem.',
           'volume': '87',
           'year': '2020'},
  'url': 'URL#261793'},
 {'@id': '261830',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '267/2211',
                                   'text': 'Eleni Pitsillou'},
                                  {'@pid': '214/9186', 'text': 'Julia Liang'},
                                  {'@pid': '272/2662',
                                   'text': 'Chris Karagiannis'},
                                  {'@pid': '282/7703',
                                   'text': 'Katherine Ververis'},
                                  {'@pid': '272/2656',
                                   'text': 'Kevion K. Darmawan'},
                                  {'@pid': '272/2759', 'text': 'Ken Ng'},
                                  {'@pid': '214/9416', 'text': 'Andrew Hung'},
                                  {'@pid': '214/8990',
                                   'text': 'Tom C. Karagiannis'}]},
           'doi': '10.1016/J.COMPBIOLCHEM.2020.107408',
           'ee': 'https://doi.org/10.1016/j.compbiolchem.2020.107408',
           'key': 'journals/candc/PitsillouLKVDNH20',
           'pages': '107408',
           'title': 'Interaction of small molecules with the SARS-CoV-2 main '
                    'protease in silico and in vitro validation of potential '
                    'lead compounds using an enzyme-linked immunosorbent '
                    'assay.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/candc/PitsillouLKVDNH20',
           'venue': 'Comput. Biol. Chem.',
           'volume': '89',
           'year': '2020'},
  'url': 'URL#261830'},
 {'@id': '286438',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '277/7530',
                                   'text': 'Yosephine Susanto'},
                                  {'@pid': '230/6563',
                                   'text': 'Andrew G. Livingstone'},
                                  {'@pid': '134/8389', 'text': 'Ng Bee Chin'},
                                  {'@pid': '80/7421', 'text': 'Erik Cambria'}]},
           'doi': '10.1109/MIS.2020.2992799',
           'ee': 'https://doi.org/10.1109/MIS.2020.2992799',
           'key': 'journals/expert/SusantoLCC20',
           'number': '5',
           'pages': '96-102',
           'title': 'The Hourglass Model Revisited.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/expert/SusantoLCC20',
           'venue': 'IEEE Intell. Syst.',
           'volume': '35',
           'year': '2020'},
  'url': 'URL#286438'},
 {'@id': '311164',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '89/89',
                                   'text': 'Christian P. Janssen'},
                                  {'@pid': '66/5901',
                                   'text': 'Ronald Schroeter'},
                                  {'@pid': 'b/NicolaJBidwell',
                                   'text': 'Nicola J. Bidwell'},
                                  {'@pid': '51/107', 'text': 'Yong Gu Ji'},
                                  {'@pid': '220/7783',
                                   'text': 'Ignacio J. Alvarez'},
                                  {'@pid': '120/9946', 'text': 'Shan Bao'},
                                  {'@pid': '24/7521',
                                   'text': 'Myounghoon Jeon'},
                                  {'@pid': '64/7918', 'text': 'Linda Ng Boyle'},
                                  {'@pid': '226/7550',
                                   'text': 'Stella F. Donker'},
                                  {'@pid': '51/2008',
                                   'text': 'Lewis L. Chuang'},
                                  {'@pid': '04/4068', 'text': 'Wendy Ju'},
                                  {'@pid': '21/4153',
                                   'text': 'Andrew L. Kun'}]},
           'doi': '10.1145/3429265',
           'ee': 'https://doi.org/10.1145/3429265',
           'key': 'journals/interactions/JanssenSBJABJBD20',
           'number': '6',
           'pages': '7-9',
           'title': 'Auto-UI - global perspectives.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/interactions/JanssenSBJABJBD20',
           'venue': 'Interactions',
           'volume': '27',
           'year': '2020'},
  'url': 'URL#311164'},
 {'@id': '317587',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '132/9105',
                                   'text': 'Iqbal H. Sarker'},
                                  {'@pid': '116/7137',
                                   'text': 'A. S. M. Kayes'},
                                  {'@pid': '122/3123',
                                   'text': 'Shahriar Badsha'},
                                  {'@pid': '230/3850',
                                   'text': 'Hamed AlQahtani'},
                                  {'@pid': '85/10911',
                                   'text': 'Paul A. Watters'},
                                  {'@pid': '16/3523', 'text': 'Alex Ng'}]},
           'doi': '10.1186/S40537-020-00318-5',
           'ee': 'https://doi.org/10.1186/s40537-020-00318-5',
           'key': 'journals/jbd/SarkerKBAWN20',
           'number': '1',
           'pages': '41',
           'title': 'Cybersecurity data science - an overview from machine '
                    'learning perspective.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/jbd/SarkerKBAWN20',
           'venue': 'J. Big Data',
           'volume': '7',
           'year': '2020'},
  'url': 'URL#317587'},
 {'@id': '341201',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '140/2422-2',
                                   'text': 'James J. Davis 0002'},
                                  {'@pid': '42/5958',
                                   'text': 'Alice R. Wattam'},
                                  {'@pid': '64/4403', 'text': 'Ramy K. Aziz'},
                                  {'@pid': '81/5091',
                                   'text': 'Thomas S. Brettin'},
                                  {'@pid': 'b/RalphMButler',
                                   'text': 'Ralph Butler'},
                                  {'@pid': '144/9989', 'text': 'Rory Butler'},
                                  {'@pid': '250/6177',
                                   'text': 'Philippe Chlenski'},
                                  {'@pid': '197/3622', 'text': 'Neal Conrad'},
                                  {'@pid': '79/5503',
                                   'text': 'Allan Dickerman'},
                                  {'@pid': '197/3777',
                                   'text': 'Emily M. Dietrich'},
                                  {'@pid': '64/6646',
                                   'text': 'Joseph L. Gabbard'},
                                  {'@pid': '41/2155',
                                   'text': 'Svetlana Gerdes'},
                                  {'@pid': '290/7631', 'text': 'Andrew Guard'},
                                  {'@pid': '16/6446',
                                   'text': 'Ronald W. Kenyon'},
                                  {'@pid': '141/5357', 'text': 'Dustin Machi'},
                                  {'@pid': '01/6524', 'text': 'Chunhong Mao'},
                                  {'@pid': '161/6614',
                                   'text': 'Daniel E. Murphy-Olson'},
                                  {'@pid': '290/7811', 'text': 'Marcus Nguyen'},
                                  {'@pid': '92/3041',
                                   'text': 'Eric K. Nordberg'},
                                  {'@pid': '23/5018', 'text': 'Gary J. Olsen'},
                                  {'@pid': 'o/RobertOlson',
                                   'text': 'Robert Olson'},
                                  {'@pid': '250/6036',
                                   'text': 'Jamie C. Overbeek'},
                                  {'@pid': 'o/RossAOverbeek',
                                   'text': 'Ross A. Overbeek'},
                                  {'@pid': '78/160',
                                   'text': 'Bruce D. Parrello'},
                                  {'@pid': '26/1801',
                                   'text': 'Gordon D. Pusch'},
                                  {'@pid': '44/2562', 'text': 'Maulik Shukla'},
                                  {'@pid': '39/183', 'text': 'Chris Thomas'},
                                  {'@pid': '254/3355',
                                   'text': 'Margo VanOeffelen'},
                                  {'@pid': '43/83',
                                   'text': 'Veronika Vonstein'},
                                  {'@pid': '11/7235',
                                   'text': 'Andrew S. Warren'},
                                  {'@pid': '90/6711', 'text': 'Fangfang Xia'},
                                  {'@pid': '42/383', 'text': 'Dawen Xie'},
                                  {'@pid': '14/10531',
                                   'text': 'Hyun Seung Yoo'},
                                  {'@pid': 's/RickLStevens',
                                   'text': 'Rick Stevens'}]},
           'doi': '10.1093/NAR/GKZ943',
           'ee': 'https://doi.org/10.1093/nar/gkz943',
           'key': 'journals/nar/0002WABBBCCDDGG20',
           'number': 'Database-Issue',
           'pages': 'D606-D612',
           'title': 'The PATRIC Bioinformatics Resource Center - expanding '
                    'data and analysis capabilities.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/nar/0002WABBBCCDDGG20',
           'venue': 'Nucleic Acids Res.',
           'volume': '48',
           'year': '2020'},
  'url': 'URL#341201'},
 {'@id': '341207',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '197/3663',
                                   'text': 'Brian P. Alcock'},
                                  {'@pid': '197/3945',
                                   'text': 'Amogelang R. Raphenya'},
                                  {'@pid': '290/7743',
                                   'text': 'Tammy T. Y. Lau'},
                                  {'@pid': '197/4128', 'text': 'Kara K. Tsang'},
                                  {'@pid': '290/7555',
                                   'text': 'Mégane Bouchard'},
                                  {'@pid': '290/7419',
                                   'text': 'Arman Edalatmand'},
                                  {'@pid': '290/7331', 'text': 'William Huynh'},
                                  {'@pid': '290/8046',
                                   'text': 'Anna-Lisa V. Nguyen'},
                                  {'@pid': '290/7317',
                                   'text': 'Annie A. Cheng'},
                                  {'@pid': '47/8958', 'text': 'Sihan Liu'},
                                  {'@pid': '290/7185', 'text': 'Sally Y. Min'},
                                  {'@pid': '290/7248',
                                   'text': 'Anatoly Miroshnichenko'},
                                  {'@pid': '290/7494', 'text': 'Hiu-Ki Tran'},
                                  {'@pid': '290/7606',
                                   'text': 'Rafik E. Werfalli'},
                                  {'@pid': '290/8092',
                                   'text': 'Jalees A. Nasir'},
                                  {'@pid': '290/8201', 'text': 'Martins Oloni'},
                                  {'@pid': '290/7223',
                                   'text': 'David J. Speicher'},
                                  {'@pid': '290/7686',
                                   'text': 'Alexandra Florescu'},
                                  {'@pid': '290/7590', 'text': 'Bhavya Singh'},
                                  {'@pid': '290/8047',
                                   'text': 'Mateusz Faltyn'},
                                  {'@pid': '175/2136',
                                   'text': 'Anastasia Hernández-Koutoucheva'},
                                  {'@pid': '217/0203',
                                   'text': 'Arjun N. Sharma'},
                                  {'@pid': '290/8175',
                                   'text': 'Emily Bordeleau'},
                                  {'@pid': '197/4043',
                                   'text': 'Andrew C. Pawlowski'},
                                  {'@pid': '290/8017',
                                   'text': 'Haley L. Zubyk'},
                                  {'@pid': '178/7743',
                                   'text': 'Damion M. Dooley'},
                                  {'@pid': '175/2052',
                                   'text': 'Emma J. Griffiths'},
                                  {'@pid': '276/1267',
                                   'text': 'Finlay Maguire'},
                                  {'@pid': '18/4393',
                                   'text': 'Geoffrey L. Winsor'},
                                  {'@pid': '57/5209',
                                   'text': 'Robert G. Beiko'},
                                  {'@pid': '44/663',
                                   'text': 'Fiona S. L. Brinkman'},
                                  {'@pid': '75/7111',
                                   'text': 'William W. L. Hsiao'},
                                  {'@pid': '57/3721',
                                   'text': 'Gary H. Van Domselaar'},
                                  {'@pid': '180/8088',
                                   'text': 'Andrew G. McArthur'}]},
           'doi': '10.1093/NAR/GKZ935',
           'ee': 'https://doi.org/10.1093/nar/gkz935',
           'key': 'journals/nar/AlcockRLTBEHNCL20',
           'number': 'Database-Issue',
           'pages': 'D517-D525',
           'title': 'CARD 2020 - antibiotic resistome surveillance with the '
                    'comprehensive antibiotic resistance database.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/nar/AlcockRLTBEHNCL20',
           'venue': 'Nucleic Acids Res.',
           'volume': '48',
           'year': '2020'},
  'url': 'URL#341207'},
 {'@id': '363036',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '116/7137',
                                   'text': 'A. S. M. Kayes'},
                                  {'@pid': '265/2531', 'text': 'Rudri Kalaria'},
                                  {'@pid': '132/9105',
                                   'text': 'Iqbal H. Sarker'},
                                  {'@pid': '04/3572-3',
                                   'text': 'Md. Saiful Islam 0003'},
                                  {'@pid': '85/10911',
                                   'text': 'Paul A. Watters'},
                                  {'@pid': '16/3523', 'text': 'Alex Ng'},
                                  {'@pid': '39/1032',
                                   'text': 'Mohammad Hammoudeh'},
                                  {'@pid': '122/3123',
                                   'text': 'Shahriar Badsha'},
                                  {'@pid': '94/10118',
                                   'text': 'Indika Kumara'}]},
           'doi': '10.3390/S20092464',
           'ee': 'https://doi.org/10.3390/s20092464',
           'key': 'journals/sensors/KayesKSIWNHBK20',
           'number': '9',
           'pages': '2464',
           'title': 'A Survey of Context-Aware Access Control Mechanisms for '
                    'Cloud and Fog Networks - Taxonomy and Open Research '
                    'Issues.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/sensors/KayesKSIWNHBK20',
           'venue': 'Sensors',
           'volume': '20',
           'year': '2020'},
  'url': 'URL#363036'},
 {'@id': '395983',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '124/9107', 'text': 'Grace Kuo'},
                                  {'@pid': '120/6842', 'text': 'Laura Waller'},
                                  {'@pid': '38/5510', 'text': 'Ren Ng'},
                                  {'@pid': '06/10608',
                                   'text': 'Andrew Maimone'}]},
           'doi': '10.1145/3386569.3392414',
           'ee': 'https://doi.org/10.1145/3386569.3392414',
           'key': 'journals/tog/KuoWNM20',
           'number': '4',
           'pages': '66',
           'title': 'High resolution étendue expansion for holographic '
                    'displays.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/tog/KuoWNM20',
           'venue': 'ACM Trans. Graph.',
           'volume': '39',
           'year': '2020'},
  'url': 'URL#395983'},
 {'@id': '429191',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '167/6356',
                                   'text': 'Clemens Schartmüller'},
                                  {'@pid': '128/3140', 'text': 'Sayan Sarcar'},
                                  {'@pid': '45/2726', 'text': 'Andreas Riener'},
                                  {'@pid': '21/4153', 'text': 'Andrew L. Kun'},
                                  {'@pid': '01/1662', 'text': 'Orit Shaer'},
                                  {'@pid': '64/7918', 'text': 'Linda Ng Boyle'},
                                  {'@pid': '28/6452',
                                   'text': 'Shamsi T. Iqbal'}]},
           'doi': '10.1145/3334480.3381054',
           'ee': 'https://doi.org/10.1145/3334480.3381054',
           'key': 'conf/chi/SchartmullerSRK20',
           'pages': '1-4',
           'title': 'Automated Cars as Living Rooms and Offices - Challenges '
                    'and Opportunities.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/chi/SchartmullerSRK20',
           'venue': 'CHI Extended Abstracts',
           'year': '2020'},
  'url': 'URL#429191'},
 {'@id': '465242',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '40/11004',
                                   'text': 'Mohammad Jabed Morshed Chowdhury'},
                                  {'@pid': '116/7137',
                                   'text': 'A. S. M. Kayes'},
                                  {'@pid': '85/10911',
                                   'text': 'Paul A. Watters'},
                                  {'@pid': '244/6162',
                                   'text': 'Patrick Scolyer-Gray'},
                                  {'@pid': '16/3523', 'text': 'Alex Ng'}]},
           'ee': 'http://hdl.handle.net/10125/64195',
           'key': 'conf/hicss/ChowdhuryKWSN20',
           'pages': '1-11',
           'title': 'Patient Controlled, Privacy Preserving IoT Healthcare '
                    'Data Sharing Framework.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/hicss/ChowdhuryKWSN20',
           'venue': 'HICSS',
           'year': '2020'},
  'url': 'URL#465242'},
 {'@id': '481577',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '116/7137',
                                   'text': 'A. S. M. Kayes'},
                                  {'@pid': '39/1032',
                                   'text': 'Mohammad Hammoudeh'},
                                  {'@pid': '122/3123',
                                   'text': 'Shahriar Badsha'},
                                  {'@pid': '85/10911',
                                   'text': 'Paul A. Watters'},
                                  {'@pid': '16/3523', 'text': 'Alex Ng'},
                                  {'@pid': '265/7792',
                                   'text': 'Fatma Mohammed'},
                                  {'@pid': '96/1473',
                                   'text': 'Mofakharul Islam'}]},
           'doi': '10.1109/ICIOT48696.2020.9089466',
           'ee': 'https://doi.org/10.1109/ICIoT48696.2020.9089466',
           'key': 'conf/iciot3/KayesHBWNMI20',
           'pages': '498-503',
           'title': 'Responsibility Attribution Against Data Breaches.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/iciot3/KayesHBWNMI20',
           'venue': 'ICIoT',
           'year': '2020'},
  'url': 'URL#481577'},
 {'@id': '483262',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '277/2345', 'text': 'Hai Rong Lee'},
                                  {'@pid': '16/11513',
                                   'text': 'Andrew Keong Ng'},
                                  {'@pid': '261/8979',
                                   'text': 'Raymond Kong Hee Tay'}]},
           'doi': '10.1109/ICITE50838.2020.9231412',
           'ee': 'https://doi.org/10.1109/ICITE50838.2020.9231412',
           'key': 'conf/icite/LeeNT20',
           'pages': '383-387',
           'title': 'Optimization of Pneumatic Overhaul Workflows in Rolling '
                    'Stock Workshop for Increased Process Efficiency.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icite/LeeNT20',
           'venue': 'ICITE',
           'year': '2020'},
  'url': 'URL#483262'},
 {'@id': '632166',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '79/3190-1',
                                   'text': 'Yifan Gao 0001'},
                                  {'@pid': '150/4170', 'text': 'Henghui Zhu'},
                                  {'@pid': '92/3908', 'text': 'Patrick Ng'},
                                  {'@pid': '14/5278',
                                   'text': 'Cícero Nogueira dos Santos'},
                                  {'@pid': '80/709', 'text': 'Zhiguo Wang'},
                                  {'@pid': '126/6412', 'text': 'Feng Nan'},
                                  {'@pid': '131/6876', 'text': 'Dejiao Zhang'},
                                  {'@pid': '59/4797',
                                   'text': 'Ramesh Nallapati'},
                                  {'@pid': '254/1112',
                                   'text': 'Andrew O. Arnold'},
                                  {'@pid': '82/5456', 'text': 'Bing Xiang'}]},
           'ee': 'https://arxiv.org/abs/2011.13137',
           'key': 'journals/corr/abs-2011-13137',
           'title': 'Answering Ambiguous Questions through Generative Evidence '
                    'Fusion and Round-Trip Prediction.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-2011-13137',
           'venue': 'CoRR',
           'volume': 'abs/2011.13137',
           'year': '2020'},
  'url': 'URL#632166'},
 {'@id': '645774',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '164/6530',
                                   'text': 'Ahmad AlAmmouri'},
                                  {'@pid': '61/8397',
                                   'text': 'Jianhua Mo 0001'},
                                  {'@pid': '32/300', 'text': 'Boon Loong Ng'},
                                  {'@pid': '78/6091-2',
                                   'text': 'Jianzhong Charlie Zhang'},
                                  {'@pid': '84/4900',
                                   'text': 'Jeffrey G. Andrews'}]},
           'doi': '10.1109/ACCESS.2019.2914685',
           'ee': 'https://doi.org/10.1109/ACCESS.2019.2914685',
           'key': 'journals/access/AlAmmouriMNZA19',
           'pages': '60532-60544',
           'title': 'Hand Grip Impact on 5G mmWave Mobile Devices.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/access/AlAmmouriMNZA19',
           'venue': 'IEEE Access',
           'volume': '7',
           'year': '2019'},
  'url': 'URL#645774'},
 {'@id': '694843',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '228/6912',
                                   'text': 'Sergei Alyamkin'},
                                  {'@pid': '228/6815', 'text': 'Matthew Ardi'},
                                  {'@pid': '73/2348',
                                   'text': 'Alexander C. Berg'},
                                  {'@pid': '228/6665',
                                   'text': 'Achille Brighton'},
                                  {'@pid': '89/5615-19',
                                   'text': 'Bo Chen 0019'},
                                  {'@pid': '80/1641', 'text': 'Yiran Chen'},
                                  {'@pid': '185/8729',
                                   'text': 'Hsin-Pai Cheng'},
                                  {'@pid': '206/2833', 'text': 'Zichen Fan'},
                                  {'@pid': '01/161', 'text': 'Chen Feng'},
                                  {'@pid': '89/1563', 'text': 'Bo Fu'},
                                  {'@pid': '195/4143', 'text': 'Kent Gauen'},
                                  {'@pid': '124/2914', 'text': 'Abhinav Goel'},
                                  {'@pid': '228/6657',
                                   'text': 'Alexander Goncharenko'},
                                  {'@pid': '86/10861', 'text': 'Xuyang Guo'},
                                  {'@pid': 'h/SoonhoiHa', 'text': 'Soonhoi Ha'},
                                  {'@pid': '139/0987',
                                   'text': 'Andrew Howard 0002'},
                                  {'@pid': '19/1374', 'text': 'Xiao Hu'},
                                  {'@pid': '168/0702', 'text': 'Yuanjun Huang'},
                                  {'@pid': '28/11197', 'text': 'Donghyun Kang'},
                                  {'@pid': '10/6516', 'text': 'Jaeyoun Kim'},
                                  {'@pid': '08/3073', 'text': 'Jong-gook Ko'},
                                  {'@pid': '228/6916',
                                   'text': 'Alexander Kondratyev'},
                                  {'@pid': '228/6764', 'text': 'Junhyeok Lee'},
                                  {'@pid': '02/2475', 'text': 'Seungjae Lee'},
                                  {'@pid': '19/2053', 'text': 'Suwoong Lee'},
                                  {'@pid': '95/147', 'text': 'Zichao Li'},
                                  {'@pid': '139/6492', 'text': 'Zhiyu Liang'},
                                  {'@pid': '227/2299', 'text': 'Juzheng Liu'},
                                  {'@pid': '76/1820', 'text': 'Xin Liu'},
                                  {'@pid': '16/6317', 'text': 'Yang Lu'},
                                  {'@pid': '12/5138', 'text': 'Yung-Hsiang Lu'},
                                  {'@pid': '228/6681',
                                   'text': 'Deeptanshu Malik'},
                                  {'@pid': '228/6900',
                                   'text': 'Hong Hanh Nguyen'},
                                  {'@pid': '92/9727', 'text': 'Eunbyung Park'},
                                  {'@pid': '228/6969', 'text': 'Denis Repin'},
                                  {'@pid': '52/3709', 'text': 'Liang Shen'},
                                  {'@pid': '61/3395', 'text': 'Tao Sheng'},
                                  {'@pid': '51/394', 'text': 'Fei Sun'},
                                  {'@pid': '228/6695', 'text': 'David Svitov'},
                                  {'@pid': '97/6279',
                                   'text': 'George K. Thiruvathukal'},
                                  {'@pid': '191/1478', 'text': 'Baiwu Zhang'},
                                  {'@pid': '205/0387', 'text': 'Jingchi Zhang'},
                                  {'@pid': '45/5193-3',
                                   'text': 'Xiaopeng Zhang 0003'},
                                  {'@pid': '49/7407', 'text': 'Shaojie Zhuo'}]},
           'doi': '10.1109/JETCAS.2019.2911899',
           'ee': 'https://doi.org/10.1109/JETCAS.2019.2911899',
           'key': 'journals/esticas/AlyamkinABBCCCF19',
           'number': '2',
           'pages': '411-421',
           'title': 'Low-Power Computer Vision - Status, Challenges, and '
                    'Opportunities.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/esticas/AlyamkinABBCCCF19',
           'venue': 'IEEE J. Emerg. Sel. Topics Circuits Syst.',
           'volume': '9',
           'year': '2019'},
  'url': 'URL#694843'},
 {'@id': '710566',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '89/89',
                                   'text': 'Christian P. Janssen'},
                                  {'@pid': '64/7918', 'text': 'Linda Ng Boyle'},
                                  {'@pid': '21/4153', 'text': 'Andrew L. Kun'},
                                  {'@pid': '04/4068', 'text': 'Wendy Ju'},
                                  {'@pid': '51/2008',
                                   'text': 'Lewis L. Chuang'}]},
           'doi': '10.1080/10447318.2018.1561789',
           'ee': 'https://doi.org/10.1080/10447318.2018.1561789',
           'key': 'journals/ijhci/JanssenBKJC19',
           'number': '11',
           'pages': '947-955',
           'title': 'A Hidden Markov Framework to Capture Human-Machine '
                    'Interaction in Automated Vehicles.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/ijhci/JanssenBKJC19',
           'venue': 'Int. J. Hum. Comput. Interact.',
           'volume': '35',
           'year': '2019'},
  'url': 'URL#710566'},
 {'@id': '749667',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '270/8626',
                                   'text': 'Julie A. Harris'},
                                  {'@pid': '90/7228', 'text': 'Stefan Mihalas'},
                                  {'@pid': '270/8888',
                                   'text': 'Karla E. Hirokawa'},
                                  {'@pid': '270/8214',
                                   'text': 'Jennifer D. Whitesell'},
                                  {'@pid': '218/9092', 'text': 'Hannah Choi'},
                                  {'@pid': '144/0313', 'text': 'Amy Bernard'},
                                  {'@pid': '270/8524', 'text': 'Phillip Bohn'},
                                  {'@pid': '270/8206',
                                   'text': 'Shiella Caldejon'},
                                  {'@pid': '270/8027', 'text': 'Linzy Casal'},
                                  {'@pid': '69/3878', 'text': 'Andrew Cho'},
                                  {'@pid': '270/8690', 'text': 'Aaron Feiner'},
                                  {'@pid': '16/3471-1',
                                   'text': 'David Feng 0001'},
                                  {'@pid': '270/9224',
                                   'text': 'Nathalie Gaudreault'},
                                  {'@pid': '270/9408',
                                   'text': 'Charles R. Gerfen'},
                                  {'@pid': '270/9303', 'text': 'Nile Graddis'},
                                  {'@pid': '270/9264',
                                   'text': 'Peter A. Groblewski'},
                                  {'@pid': '270/8044', 'text': 'Alex M. Henry'},
                                  {'@pid': '270/8923', 'text': 'Anh Ho'},
                                  {'@pid': '29/4707', 'text': 'Robert Howard'},
                                  {'@pid': '270/9388',
                                   'text': 'Joseph E. Knox'},
                                  {'@pid': '47/5652', 'text': 'Leonard Kuan'},
                                  {'@pid': '270/8792', 'text': 'Xiuli Kuang'},
                                  {'@pid': '270/2525',
                                   'text': 'Jérôme A. Lecoq'},
                                  {'@pid': '270/8573', 'text': 'Phil Lesnar'},
                                  {'@pid': '145/7816', 'text': 'Yaoyao Li'},
                                  {'@pid': '270/8510',
                                   'text': 'Jennifer Luviano'},
                                  {'@pid': '270/8057',
                                   'text': 'Stephen McConoughey'},
                                  {'@pid': '270/8824',
                                   'text': 'Marty T. Mortrud'},
                                  {'@pid': '270/8814',
                                   'text': 'Maitham Naeemi'},
                                  {'@pid': '01/678', 'text': 'Lydia Ng'},
                                  {'@pid': '123/8911', 'text': 'Seung-Wook Oh'},
                                  {'@pid': '270/8391',
                                   'text': 'Benjamin Ouellette'},
                                  {'@pid': '270/9267', 'text': 'Elise Shen'},
                                  {'@pid': '163/1333',
                                   'text': 'Staci A. Sorensen'},
                                  {'@pid': '270/9374', 'text': 'Wayne Wakeman'},
                                  {'@pid': '51/7000', 'text': 'Quanxin Wang'},
                                  {'@pid': '36/3235', 'text': 'Yun Wang'},
                                  {'@pid': '270/9186', 'text': 'Ali Williford'},
                                  {'@pid': '270/8502',
                                   'text': 'John W. Phillips'},
                                  {'@pid': '35/3212', 'text': 'Allan R. Jones'},
                                  {'@pid': '71/4603', 'text': 'Christof Koch'},
                                  {'@pid': '163/1354',
                                   'text': 'Hongkui Zeng'}]},
           'doi': '10.1038/S41586-019-1716-Z',
           'ee': 'https://doi.org/10.1038/s41586-019-1716-z',
           'key': 'journals/nature/HarrisMHWCBBCCC19',
           'number': '7781',
           'pages': '195-202',
           'title': 'Hierarchical organization of cortical and thalamic '
                    'connectivity.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/nature/HarrisMHWCBBCCC19',
           'venue': 'Nat.',
           'volume': '575',
           'year': '2019'},
  'url': 'URL#749667'},
 {'@id': '749679',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '270/6781',
                                   'text': 'Robert A. Langan'},
                                  {'@pid': '178/1197',
                                   'text': 'Scott E. Boyken'},
                                  {'@pid': '270/8202', 'text': 'Andrew H. Ng'},
                                  {'@pid': '270/9287',
                                   'text': 'Jennifer A. Samson'},
                                  {'@pid': '270/9335', 'text': 'Galen Dods'},
                                  {'@pid': '270/8477',
                                   'text': 'Alexandra M. Westbrook'},
                                  {'@pid': '270/8706',
                                   'text': 'Taylor H. Nguyen'},
                                  {'@pid': '196/3905',
                                   'text': 'Marc J. Lajoie'},
                                  {'@pid': '270/6594', 'text': 'Zibo Chen'},
                                  {'@pid': '263/4608',
                                   'text': 'Stephanie Berger'},
                                  {'@pid': '196/3486',
                                   'text': 'Vikram Khipple Mulligan'},
                                  {'@pid': '270/8787',
                                   'text': 'John E. Dueber'},
                                  {'@pid': '14/1226',
                                   'text': 'Walter R. P. Novak'},
                                  {'@pid': '11/4894', 'text': 'Hana El-Samad'},
                                  {'@pid': '87/3352', 'text': 'David Baker'}]},
           'doi': '10.1038/S41586-019-1432-8',
           'ee': 'https://doi.org/10.1038/s41586-019-1432-8',
           'key': 'journals/nature/LanganBNSDWNLCB19',
           'number': '7768',
           'pages': '205-210',
           'title': 'De novo design of bioactive protein switches.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/nature/LanganBNSDWNLCB19',
           'venue': 'Nat.',
           'volume': '572',
           'year': '2019'},
  'url': 'URL#749679'},
 {'@id': '749689',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '270/8202', 'text': 'Andrew H. Ng'},
                                  {'@pid': '270/8706',
                                   'text': 'Taylor H. Nguyen'},
                                  {'@pid': '269/0722',
                                   'text': 'Mariana Gómez-Schiavon'},
                                  {'@pid': '270/9335', 'text': 'Galen Dods'},
                                  {'@pid': '270/6781',
                                   'text': 'Robert A. Langan'},
                                  {'@pid': '178/1197',
                                   'text': 'Scott E. Boyken'},
                                  {'@pid': '270/9287',
                                   'text': 'Jennifer A. Samson'},
                                  {'@pid': '270/8657',
                                   'text': 'Lucas M. Waldburger'},
                                  {'@pid': '270/8787',
                                   'text': 'John E. Dueber'},
                                  {'@pid': '87/3352', 'text': 'David Baker'},
                                  {'@pid': '11/4894',
                                   'text': 'Hana El-Samad'}]},
           'doi': '10.1038/S41586-019-1425-7',
           'ee': 'https://doi.org/10.1038/s41586-019-1425-7',
           'key': 'journals/nature/NgNGDLBSWDBE19',
           'number': '7768',
           'pages': '265-269',
           'title': 'Modular and tunable biological feedback control using a '
                    'de novo protein switch.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/nature/NgNGDLBSWDBE19',
           'venue': 'Nat.',
           'volume': '572',
           'year': '2019'},
  'url': 'URL#749689'},
 {'@id': '819288',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '89/89',
                                   'text': 'Christian P. Janssen'},
                                  {'@pid': '21/4153', 'text': 'Andrew L. Kun'},
                                  {'@pid': 'b/StephenABrewster',
                                   'text': 'Stephen A. Brewster'},
                                  {'@pid': '64/7918', 'text': 'Linda Ng Boyle'},
                                  {'@pid': '05/1353',
                                   'text': 'Duncan P. Brumby'},
                                  {'@pid': '51/2008',
                                   'text': 'Lewis L. Chuang'}]},
           'doi': '10.1145/3349263.3349600',
           'ee': 'https://doi.org/10.1145/3349263.3349600',
           'key': 'conf/automotiveUI/JanssenKBBBC19',
           'pages': '465-467',
           'title': 'Exploring the concept of the (future) mobile office.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/automotiveUI/JanssenKBBBC19',
           'venue': 'AutomotiveUI',
           'year': '2019'},
  'url': 'URL#819288'},
 {'@id': '835125',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '40/11004',
                                   'text': 'Mohammad Jabed Morshed Chowdhury'},
                                  {'@pid': '63/7409',
                                   'text': 'Md. Sadek Ferdous'},
                                  {'@pid': '19/7412',
                                   'text': 'Kamanashis Biswas'},
                                  {'@pid': '183/9855',
                                   'text': 'Niaz Chowdhury'},
                                  {'@pid': '116/7137',
                                   'text': 'A. S. M. Kayes'},
                                  {'@pid': '85/10911',
                                   'text': 'Paul A. Watters'},
                                  {'@pid': '16/3523', 'text': 'Alex Ng'}]},
           'doi': '10.1109/CLOUDCOM.2019.00070',
           'ee': 'https://doi.org/10.1109/CloudCom.2019.00070',
           'key': 'conf/cloudcom/ChowdhuryFBCKWN19',
           'pages': '411-417',
           'title': 'Trust Modeling for Blockchain-Based Wearable Data Market.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/cloudcom/ChowdhuryFBCKWN19',
           'venue': 'CloudCom',
           'year': '2019'},
  'url': 'URL#835125'},
 {'@id': '864760',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '164/6530',
                                   'text': 'Ahmad AlAmmouri'},
                                  {'@pid': '61/8397',
                                   'text': 'Jianhua Mo 0001'},
                                  {'@pid': '32/300', 'text': 'Boon Loong Ng'},
                                  {'@pid': '78/6091-2',
                                   'text': 'Jianzhong Charlie Zhang'},
                                  {'@pid': '84/4900',
                                   'text': 'Jeffrey G. Andrews'}]},
           'doi': '10.1109/GLOBECOM38437.2019.9014196',
           'ee': 'https://doi.org/10.1109/GLOBECOM38437.2019.9014196',
           'key': 'conf/globecom/AlAmmouri0NZA19',
           'pages': '1-6',
           'title': 'Grip-Aware Analog mmWave Beam Codebook Adaptation for 5G '
                    'Mobile Handsets.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/globecom/AlAmmouri0NZA19',
           'venue': 'GLOBECOM',
           'year': '2019'},
  'url': 'URL#864760'},
 {'@id': '891701',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '261/8967', 'text': 'Ze Siong Chan'},
                                  {'@pid': '16/11513',
                                   'text': 'Andrew Keong Ng'},
                                  {'@pid': '261/8979',
                                   'text': 'Raymond Kong Hee Tay'}]},
           'doi': '10.1109/ICITE.2019.8880179',
           'ee': 'https://doi.org/10.1109/ICITE.2019.8880179',
           'key': 'conf/icite/ChanNT19',
           'pages': '276-280',
           'title': 'Establishing Vibration Threshold for Effective Health '
                    'Monitoring of SL20-5 Motor Compressor Set.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icite/ChanNT19',
           'venue': 'ICITE',
           'year': '2019'},
  'url': 'URL#891701'},
 {'@id': '891713',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '261/8996',
                                   'text': 'Benjamin Jia Ming Heng'},
                                  {'@pid': '16/11513',
                                   'text': 'Andrew Keong Ng'},
                                  {'@pid': '261/8979',
                                   'text': 'Raymond Kong Hee Tay'}]},
           'doi': '10.1109/ICITE.2019.8880219',
           'ee': 'https://doi.org/10.1109/ICITE.2019.8880219',
           'key': 'conf/icite/HengNT19',
           'pages': '79-83',
           'title': 'Digitization of Work Instructions and Checklists for '
                    'Improved Data Management and Work Productivity.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icite/HengNT19',
           'venue': 'ICITE',
           'year': '2019'},
  'url': 'URL#891713'},
 {'@id': '891729',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '16/11513',
                                   'text': 'Andrew Keong Ng'},
                                  {'@pid': '261/9006',
                                   'text': 'Landong Martua'},
                                  {'@pid': '261/8990', 'text': 'George Sun'}]},
           'doi': '10.1109/ICITE.2019.8880246',
           'ee': 'https://doi.org/10.1109/ICITE.2019.8880246',
           'key': 'conf/icite/NgMS19',
           'pages': '69-73',
           'title': 'Dynamic Modelling and Acceleration Signal Analysis of '
                    'Rail Surface Defects for Enhanced Rail Condition '
                    'Monitoring and Diagnosis.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icite/NgMS19',
           'venue': 'ICITE',
           'year': '2019'},
  'url': 'URL#891729'},
 {'@id': '968780',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '27/1531',
                                   'text': 'Mihaela Sighireanu'},
                                  {'@pid': '39/5938',
                                   'text': 'Juan Antonio Navarro Pérez'},
                                  {'@pid': 'r/AndreyRybalchenko',
                                   'text': 'Andrey Rybalchenko'},
                                  {'@pid': '86/4535',
                                   'text': 'Nikos Gorogiannis'},
                                  {'@pid': '81/5510', 'text': 'Radu Iosif'},
                                  {'@pid': '41/9861',
                                   'text': 'Andrew Reynolds 0001'},
                                  {'@pid': '27/5922',
                                   'text': 'Cristina Serban'},
                                  {'@pid': '66/10257', 'text': 'Jens Katelaan'},
                                  {'@pid': '172/5070',
                                   'text': 'Christoph Matheja'},
                                  {'@pid': '31/248-1',
                                   'text': 'Thomas Noll 0001'},
                                  {'@pid': '69/2671',
                                   'text': 'Florian Zuleger'},
                                  {'@pid': 'c/WeiNganChin',
                                   'text': 'Wei-Ngan Chin'},
                                  {'@pid': '32/8098', 'text': 'Quang Loc Le'},
                                  {'@pid': '134/3046',
                                   'text': 'Quang-Trung Ta'},
                                  {'@pid': '135/6224', 'text': 'Ton-Chanh Le'},
                                  {'@pid': '207/0921',
                                   'text': 'Thanh-Toan Nguyen'},
                                  {'@pid': 'k/SiauChenKhoo',
                                   'text': 'Siau-Cheng Khoo'},
                                  {'@pid': '238/2987',
                                   'text': 'Michal Cyprian'},
                                  {'@pid': '87/2946',
                                   'text': 'Adam Rogalewicz'},
                                  {'@pid': '51/533', 'text': 'Tomás Vojnar'},
                                  {'@pid': '72/2839',
                                   'text': 'Constantin Enea'},
                                  {'@pid': '47/7646', 'text': 'Ondrej Lengál'},
                                  {'@pid': '99/6294', 'text': 'Chong Gao'},
                                  {'@pid': '71/3710', 'text': 'Zhilin Wu'}]},
           'doi': '10.1007/978-3-030-17502-3_8',
           'ee': 'https://doi.org/10.1007/978-3-030-17502-3_8',
           'key': 'conf/tacas/SighireanuPRGIR19',
           'pages': '116-132',
           'title': 'SL-COMP - Competition of Solvers for Separation Logic.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/tacas/SighireanuPRGIR19',
           'venue': 'TACAS',
           'year': '2019'},
  'url': 'URL#968780'},
 {'@id': '971387',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '62/8271', 'text': 'Brad Wheeler'},
                                  {'@pid': '246/0820',
                                   'text': 'Andrew Ng 0002'},
                                  {'@pid': '228/3475',
                                   'text': 'Brian G. Kilberg'},
                                  {'@pid': '187/9721',
                                   'text': 'Filip Maksimovic'},
                                  {'@pid': '50/6450',
                                   'text': 'Kristofer S. J. Pister'}]},
           'doi': '10.1109/UEMCON47517.2019.8992964',
           'ee': 'https://doi.org/10.1109/UEMCON47517.2019.8992964',
           'key': 'conf/uemcom/Wheeler0KMP19',
           'pages': '371-376',
           'title': 'A Low-Power Optical Receiver for Contact-free Programming '
                    'and 3D Localization of Autonomous Microsystems.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/uemcom/Wheeler0KMP19',
           'venue': 'UEMCON',
           'year': '2019'},
  'url': 'URL#971387'},
 {'@id': '973487',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '187/9721',
                                   'text': 'Filip Maksimovic'},
                                  {'@pid': '62/8271', 'text': 'Brad Wheeler'},
                                  {'@pid': '185/4079',
                                   'text': 'David C. Burnett'},
                                  {'@pid': '01/5245', 'text': 'Osama Khan'},
                                  {'@pid': '159/7345',
                                   'text': 'Sahar M. Mesri'},
                                  {'@pid': '146/6243', 'text': 'Ioana Suciu'},
                                  {'@pid': '246/0588', 'text': 'Lydia Lee'},
                                  {'@pid': '152/0995', 'text': 'Alex Moreno'},
                                  {'@pid': '40/1908',
                                   'text': 'Arvind Sundararajan'},
                                  {'@pid': '240/7097', 'text': 'Bob L. Zhou'},
                                  {'@pid': '228/3504', 'text': 'Rachel Zoll'},
                                  {'@pid': '246/0820',
                                   'text': 'Andrew Ng 0002'},
                                  {'@pid': '147/0478', 'text': 'Tengfei Chang'},
                                  {'@pid': '75/2244',
                                   'text': 'Xavier Vilajosana'},
                                  {'@pid': '44/6300',
                                   'text': 'Thomas Watteyne'},
                                  {'@pid': '20/4071',
                                   'text': 'Ali M. Niknejad'},
                                  {'@pid': '50/6450',
                                   'text': 'Kristofer S. J. Pister'}]},
           'doi': '10.23919/VLSIC.2019.8777971',
           'ee': 'https://doi.org/10.23919/VLSIC.2019.8777971',
           'key': 'conf/vlsic/MaksimovicWBKMS19',
           'pages': '88-',
           'title': 'A Crystal-Free Single-Chip Micro Mote with Integrated '
                    '802.15.4 Compatible Transceiver, sub-mW BLE Compatible '
                    'Beacon Transmitter, and Cortex M0.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/vlsic/MaksimovicWBKMS19',
           'venue': 'VLSI Circuits',
           'year': '2019'},
  'url': 'URL#973487'},
 {'@id': '987865',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '01/8867', 'text': 'Weiqun Zhang'},
                                  {'@pid': '64/7586', 'text': 'Ann S. Almgren'},
                                  {'@pid': '04/4220',
                                   'text': 'Vincent E. Beckner'},
                                  {'@pid': '15/7586', 'text': 'John B. Bell'},
                                  {'@pid': '00/7386',
                                   'text': 'Johannes Blaschke'},
                                  {'@pid': '50/7062', 'text': 'Cy P. Chan'},
                                  {'@pid': '63/9913', 'text': 'Marcus Day'},
                                  {'@pid': '194/6489', 'text': 'Brian Friesen'},
                                  {'@pid': '243/7510', 'text': 'Kevin Gott'},
                                  {'@pid': '50/9990',
                                   'text': 'Daniel T. Graves'},
                                  {'@pid': '243/7562',
                                   'text': 'Maximilian Katz'},
                                  {'@pid': '20/5090', 'text': 'Andrew Myers'},
                                  {'@pid': '74/9775', 'text': 'Tan Nguyen'},
                                  {'@pid': '243/7405', 'text': 'Andrew Nonaka'},
                                  {'@pid': '243/7653', 'text': 'Michele Rosso'},
                                  {'@pid': '57/42', 'text': 'Samuel Williams'},
                                  {'@pid': '99/4132',
                                   'text': 'Michael Zingale'}]},
           'doi': '10.21105/JOSS.01370',
           'ee': 'https://doi.org/10.21105/joss.01370',
           'key': 'journals/jossw/ZhangABBBCDFGGK19',
           'number': '37',
           'pages': '1370',
           'title': 'AMReX - a framework for block-structured adaptive mesh '
                    'refinement.',
           'type': 'Data and Artifacts',
           'url': 'https://dblp.org/rec/journals/jossw/ZhangABBBCDFGGK19',
           'venue': 'J. Open Source Softw.',
           'volume': '4',
           'year': '2019'},
  'url': 'URL#987865'},
 {'@id': '1001657',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '228/6912',
                                   'text': 'Sergei Alyamkin'},
                                  {'@pid': '228/6815', 'text': 'Matthew Ardi'},
                                  {'@pid': '73/2348',
                                   'text': 'Alexander C. Berg'},
                                  {'@pid': '228/6665',
                                   'text': 'Achille Brighton'},
                                  {'@pid': '89/5615-19',
                                   'text': 'Bo Chen 0019'},
                                  {'@pid': '80/1641', 'text': 'Yiran Chen'},
                                  {'@pid': '185/8729',
                                   'text': 'Hsin-Pai Cheng'},
                                  {'@pid': '206/2833', 'text': 'Zichen Fan'},
                                  {'@pid': '01/161', 'text': 'Chen Feng'},
                                  {'@pid': '89/1563', 'text': 'Bo Fu'},
                                  {'@pid': '195/4143', 'text': 'Kent Gauen'},
                                  {'@pid': '124/2914', 'text': 'Abhinav Goel'},
                                  {'@pid': '228/6657',
                                   'text': 'Alexander Goncharenko'},
                                  {'@pid': '86/10861', 'text': 'Xuyang Guo'},
                                  {'@pid': 'h/SoonhoiHa', 'text': 'Soonhoi Ha'},
                                  {'@pid': '139/0987',
                                   'text': 'Andrew Howard 0002'},
                                  {'@pid': '19/1374', 'text': 'Xiao Hu'},
                                  {'@pid': '168/0702', 'text': 'Yuanjun Huang'},
                                  {'@pid': '28/11197', 'text': 'Donghyun Kang'},
                                  {'@pid': '10/6516', 'text': 'Jaeyoun Kim'},
                                  {'@pid': '08/3073', 'text': 'Jong-gook Ko'},
                                  {'@pid': '228/6916',
                                   'text': 'Alexander Kondratyev'},
                                  {'@pid': '228/6764', 'text': 'Junhyeok Lee'},
                                  {'@pid': '02/2475', 'text': 'Seungjae Lee'},
                                  {'@pid': '19/2053', 'text': 'Suwoong Lee'},
                                  {'@pid': '95/147', 'text': 'Zichao Li'},
                                  {'@pid': '139/6492', 'text': 'Zhiyu Liang'},
                                  {'@pid': '227/2299', 'text': 'Juzheng Liu'},
                                  {'@pid': '76/1820', 'text': 'Xin Liu'},
                                  {'@pid': '16/6317', 'text': 'Yang Lu'},
                                  {'@pid': '12/5138', 'text': 'Yung-Hsiang Lu'},
                                  {'@pid': '228/6681',
                                   'text': 'Deeptanshu Malik'},
                                  {'@pid': '228/6900',
                                   'text': 'Hong Hanh Nguyen'},
                                  {'@pid': '92/9727', 'text': 'Eunbyung Park'},
                                  {'@pid': '228/6969', 'text': 'Denis Repin'},
                                  {'@pid': '52/3709', 'text': 'Liang Shen'},
                                  {'@pid': '61/3395', 'text': 'Tao Sheng'},
                                  {'@pid': '51/394', 'text': 'Fei Sun'},
                                  {'@pid': '228/6695', 'text': 'David Svitov'},
                                  {'@pid': '97/6279',
                                   'text': 'George K. Thiruvathukal'},
                                  {'@pid': '191/1478', 'text': 'Baiwu Zhang'},
                                  {'@pid': '205/0387', 'text': 'Jingchi Zhang'},
                                  {'@pid': '45/5193-3',
                                   'text': 'Xiaopeng Zhang 0003'},
                                  {'@pid': '49/7407', 'text': 'Shaojie Zhuo'}]},
           'ee': 'http://arxiv.org/abs/1904.07714',
           'key': 'journals/corr/abs-1904-07714',
           'title': 'Low-Power Computer Vision - Status, Challenges, '
                    'Opportunities.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-1904-07714',
           'venue': 'CoRR',
           'volume': 'abs/1904.07714',
           'year': '2019'},
  'url': 'URL#1001657'},
 {'@id': '1018445',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '164/6530',
                                   'text': 'Ahmad AlAmmouri'},
                                  {'@pid': '61/8397',
                                   'text': 'Jianhua Mo 0001'},
                                  {'@pid': '32/300', 'text': 'Boon Loong Ng'},
                                  {'@pid': '78/6091-2',
                                   'text': 'Jianzhong Charlie Zhang'},
                                  {'@pid': '84/4900',
                                   'text': 'Jeffrey G. Andrews'}]},
           'ee': 'http://arxiv.org/abs/1908.00850',
           'key': 'journals/corr/abs-1908-00850',
           'title': 'Grip-Aware Analog mmWave Beam Codebook Adaptation for 5G '
                    'Mobile Handsets.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-1908-00850',
           'venue': 'CoRR',
           'volume': 'abs/1908.00850',
           'year': '2019'},
  'url': 'URL#1018445'},
 {'@id': '1084480',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '182/8437', 'text': 'Chun Kit Ng'},
                                  {'@pid': '70/6889', 'text': 'Chun-Ho Wu'},
                                  {'@pid': '03/6223', 'text': 'Kai-Leung Yung'},
                                  {'@pid': '36/2935', 'text': 'Wai-Hung Ip'},
                                  {'@pid': '75/6827', 'text': 'Tommy Cheung'}]},
           'doi': '10.1080/17517575.2018.1464666',
           'ee': 'https://doi.org/10.1080/17517575.2018.1464666',
           'key': 'journals/eis/NgWYIC18',
           'number': '7',
           'pages': '820-855',
           'title': 'A semantic similarity analysis of Internet of Things.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/eis/NgWYIC18',
           'venue': 'Enterp. Inf. Syst.',
           'volume': '12',
           'year': '2018'},
  'url': 'URL#1084480'},
 {'@id': '1094307',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '182/8437', 'text': 'Chun Kit Ng'},
                                  {'@pid': '70/6889', 'text': 'Chun-Ho Wu'},
                                  {'@pid': '36/2935',
                                   'text': 'Andrew W. H. Ip'},
                                  {'@pid': '03/6223',
                                   'text': 'Kai-Leung Yung'}]},
           'doi': '10.1109/LCOMM.2018.2861766',
           'ee': 'https://doi.org/10.1109/LCOMM.2018.2861766',
           'key': 'journals/icl/NgWIY18',
           'number': '10',
           'pages': '2120-2123',
           'title': 'A Smart Bat Algorithm for Wireless Sensor Network '
                    'Deployment in 3-D Environment.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/icl/NgWIY18',
           'venue': 'IEEE Commun. Lett.',
           'volume': '22',
           'year': '2018'},
  'url': 'URL#1094307'},
 {'@id': '1112506',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '30/9784', 'text': 'Andrew Paverd'},
                                  {'@pid': '42/10481',
                                   'text': 'Sandeep Tamrakar'},
                                  {'@pid': '218/0555',
                                   'text': 'Hoang Long Nguyen 0003'},
                                  {'@pid': '145/9171',
                                   'text': 'Praveen Kumar Pendyala'},
                                  {'@pid': '153/5738',
                                   'text': 'Thien Duc Nguyen'},
                                  {'@pid': '41/7564',
                                   'text': 'Elizabeth Stobert'},
                                  {'@pid': '205/7896',
                                   'text': 'Tommi Grondahl'},
                                  {'@pid': '39/2508', 'text': 'N. Asokan'},
                                  {'@pid': 's/AhmadRezaSadeghi',
                                   'text': 'Ahmad-Reza Sadeghi'}]},
           'doi': '10.1109/MIC.2018.043051462',
           'ee': 'https://doi.org/10.1109/MIC.2018.043051462',
           'key': 'journals/internet/PaverdTHPNSGAS18',
           'number': '4',
           'pages': '27-36',
           'title': 'OmniShare - Encrypted Cloud Storage for the Multi-Device '
                    'Era.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/internet/PaverdTHPNSGAS18',
           'venue': 'IEEE Internet Comput.',
           'volume': '22',
           'year': '2018'},
  'url': 'URL#1112506'},
 {'@id': '1150360',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '217/4047', 'text': 'Samuel Hislop'},
                                  {'@pid': '142/6114',
                                   'text': 'Simon D. Jones'},
                                  {'@pid': '142/6204',
                                   'text': 'Mariela Soto-Berelov'},
                                  {'@pid': '97/4491',
                                   'text': 'Andrew K. Skidmore'},
                                  {'@pid': '86/7547', 'text': 'Andrew Haywood'},
                                  {'@pid': '217/4094',
                                   'text': 'Trung H. Nguyen'}]},
           'doi': '10.3390/RS10030460',
           'ee': 'https://doi.org/10.3390/rs10030460',
           'key': 'journals/remotesensing/HislopJSSHN18',
           'number': '3',
           'pages': '460',
           'title': 'Using Landsat Spectral Indices in Time-Series to Assess '
                    'Wildfire Disturbance and Recovery.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/remotesensing/HislopJSSHN18',
           'venue': 'Remote. Sens.',
           'volume': '10',
           'year': '2018'},
  'url': 'URL#1150360'},
 {'@id': '1253485',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '229/1739',
                                   'text': 'Andrew Putra Kusuma'},
                                  {'@pid': '202/3048',
                                   'text': 'Vajisha U. Wanniarachchi'},
                                  {'@pid': '84/2408',
                                   'text': 'Owen Noel Newton Fernando'},
                                  {'@pid': 'n/WeeKeongNg',
                                   'text': 'Wee Keong Ng'}]},
           'doi': '10.1145/3267305.3267615',
           'ee': 'https://doi.org/10.1145/3267305.3267615',
           'key': 'conf/huc/KusumaWFK18',
           'pages': '114-117',
           'title': 'Audio Fingerprint Application for the Media Industry.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/huc/KusumaWFK18',
           'venue': 'UbiComp/ISWC Adjunct',
           'year': '2018'},
  'url': 'URL#1253485'},
 {'@id': '1286402',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '217/4047', 'text': 'Samuel Hislop'},
                                  {'@pid': '142/6114',
                                   'text': 'Simon D. Jones'},
                                  {'@pid': '142/6204',
                                   'text': 'Mariela Soto-Berelov'},
                                  {'@pid': '229/6374',
                                   'text': 'Andrew Skidmorebd'},
                                  {'@pid': '86/7547', 'text': 'Andrew Haywood'},
                                  {'@pid': '217/4094',
                                   'text': 'Trung H. Nguyen'}]},
           'doi': '10.1109/IGARSS.2018.8518009',
           'ee': 'https://doi.org/10.1109/IGARSS.2018.8518009',
           'key': 'conf/igarss/HislopJSSHN18',
           'pages': '4954-4957',
           'title': 'A New Semi-Automatic Seamless Cloud-Free Landsat '
                    'Mosaicing Approach Tracks Forest Change Over Large '
                    'Extents.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/igarss/HislopJSSHN18',
           'venue': 'IGARSS',
           'year': '2018'},
  'url': 'URL#1286402'},
 {'@id': '1342835',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '296/6853',
                                   'text': 'Muhd Sharil Reiza Ismail'},
                                  {'@pid': '16/11513',
                                   'text': 'Andrew Keong Ng'},
                                  {'@pid': '195/6324', 'text': 'Oh Sin Hin'},
                                  {'@pid': '195/6348',
                                   'text': 'Tan Chuan Heng'}]},
           'doi': '10.1109/SOLI.2018.8476696',
           'ee': 'https://doi.org/10.1109/SOLI.2018.8476696',
           'key': 'conf/soli/IsmailNHH18',
           'pages': '169-174',
           'title': 'Integrated Systems Analysis Software for Interdependency '
                    'Analysis of Railway Systems.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/soli/IsmailNHH18',
           'venue': 'SOLI',
           'year': '2018'},
  'url': 'URL#1342835'},
 {'@id': '1397033',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '228/6912',
                                   'text': 'Sergei Alyamkin'},
                                  {'@pid': '228/6815', 'text': 'Matthew Ardi'},
                                  {'@pid': '228/6665',
                                   'text': 'Achille Brighton'},
                                  {'@pid': '73/2348',
                                   'text': 'Alexander C. Berg'},
                                  {'@pid': '80/1641', 'text': 'Yiran Chen'},
                                  {'@pid': '185/8729',
                                   'text': 'Hsin-Pai Cheng'},
                                  {'@pid': '89/5615-19',
                                   'text': 'Bo Chen 0019'},
                                  {'@pid': '206/2833', 'text': 'Zichen Fan'},
                                  {'@pid': '01/161', 'text': 'Chen Feng'},
                                  {'@pid': '89/1563', 'text': 'Bo Fu'},
                                  {'@pid': '195/4143', 'text': 'Kent Gauen'},
                                  {'@pid': '228/6845', 'text': 'Jongkook Go'},
                                  {'@pid': '228/6657',
                                   'text': 'Alexander Goncharenko'},
                                  {'@pid': '86/10861', 'text': 'Xuyang Guo'},
                                  {'@pid': '228/6900',
                                   'text': 'Hong Hanh Nguyen'},
                                  {'@pid': '139/0987',
                                   'text': 'Andrew Howard 0002'},
                                  {'@pid': '168/0702', 'text': 'Yuanjun Huang'},
                                  {'@pid': '28/11197', 'text': 'Donghyun Kang'},
                                  {'@pid': '10/6516', 'text': 'Jaeyoun Kim'},
                                  {'@pid': '228/6916',
                                   'text': 'Alexander Kondratyev'},
                                  {'@pid': '02/2475', 'text': 'Seungjae Lee'},
                                  {'@pid': '19/2053', 'text': 'Suwoong Lee'},
                                  {'@pid': '228/6764', 'text': 'Junhyeok Lee'},
                                  {'@pid': '139/6492', 'text': 'Zhiyu Liang'},
                                  {'@pid': '76/1820', 'text': 'Xin Liu'},
                                  {'@pid': '227/2299', 'text': 'Juzheng Liu'},
                                  {'@pid': '95/147', 'text': 'Zichao Li'},
                                  {'@pid': '16/6317', 'text': 'Yang Lu'},
                                  {'@pid': '12/5138', 'text': 'Yung-Hsiang Lu'},
                                  {'@pid': '228/6681',
                                   'text': 'Deeptanshu Malik'},
                                  {'@pid': '92/9727', 'text': 'Eunbyung Park'},
                                  {'@pid': '228/6969', 'text': 'Denis Repin'},
                                  {'@pid': '61/3395', 'text': 'Tao Sheng'},
                                  {'@pid': '52/3709', 'text': 'Liang Shen'},
                                  {'@pid': '51/394', 'text': 'Fei Sun'},
                                  {'@pid': '228/6695', 'text': 'David Svitov'},
                                  {'@pid': '97/6279',
                                   'text': 'George K. Thiruvathukal'},
                                  {'@pid': '191/1478', 'text': 'Baiwu Zhang'},
                                  {'@pid': '205/0387', 'text': 'Jingchi Zhang'},
                                  {'@pid': '45/5193-3',
                                   'text': 'Xiaopeng Zhang 0003'},
                                  {'@pid': '49/7407', 'text': 'Shaojie Zhuo'}]},
           'ee': 'http://arxiv.org/abs/1810.01732',
           'key': 'journals/corr/abs-1810-01732',
           'title': '2018 Low-Power Image Recognition Challenge.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-1810-01732',
           'venue': 'CoRR',
           'volume': 'abs/1810.01732',
           'year': '2018'},
  'url': 'URL#1397033'},
 {'@id': '1448189',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '115/6940',
                                   'text': 'Charith Perera'},
                                  {'@pid': '186/7881',
                                   'text': 'Susan Wakenshaw'},
                                  {'@pid': '53/10460', 'text': 'Tim Baarslag'},
                                  {'@pid': '33/5454', 'text': 'Hamed Haddadi'},
                                  {'@pid': '12/360',
                                   'text': 'Arosha K. Bandara'},
                                  {'@pid': '28/5155',
                                   'text': 'Richard Mortier'},
                                  {'@pid': '81/363', 'text': 'Andy Crabtree'},
                                  {'@pid': '59/10547', 'text': 'Irene Ng'},
                                  {'@pid': '57/6908', 'text': 'Derek McAuley'},
                                  {'@pid': 'c/JonCrowcroft',
                                   'text': 'Jon Crowcroft'}]},
           'doi': '10.1002/ETT.3125',
           'ee': 'https://doi.org/10.1002/ett.3125',
           'key': 'journals/ett/PereraWBHBMCNMC17',
           'number': '1',
           'title': 'Valorising the IoT Databox - creating value for everyone.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/ett/PereraWBHBMCNMC17',
           'venue': 'Trans. Emerg. Telecommun. Technol.',
           'volume': '28',
           'year': '2017'},
  'url': 'URL#1448189'},
 {'@id': '1549657',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': 'm/JiriMatousek-2',
                                   'text': 'Jirí Matousek 0002'},
                                  {'@pid': '00/4948', 'text': 'Gianni Antichi'},
                                  {'@pid': '202/7741', 'text': 'Adam Lucansky'},
                                  {'@pid': '95/2279-2',
                                   'text': 'Andrew W. Moore 0002'},
                                  {'@pid': '19/640', 'text': 'Jan Korenek'}]},
           'doi': '10.1109/ANCS.2017.33',
           'ee': 'https://doi.org/10.1109/ANCS.2017.33',
           'key': 'conf/ancs/MatousekAL0K17',
           'pages': '204-216',
           'title': 'ClassBench-ng - Recasting ClassBench after a Decade of '
                    'Network Evolution.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/ancs/MatousekAL0K17',
           'venue': 'ANCS',
           'year': '2017'},
  'url': 'URL#1549657'},
 {'@id': '1579865',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '199/7804', 'text': 'Davis Rempe'},
                                  {'@pid': '199/7813',
                                   'text': 'Mitchell Snyder'},
                                  {'@pid': '199/7710', 'text': 'Andrew Pracht'},
                                  {'@pid': '09/1584', 'text': 'Andrew Schwarz'},
                                  {'@pid': '29/6538', 'text': 'Tri Nguyen'},
                                  {'@pid': '199/7825',
                                   'text': 'Mitchel Vostrez'},
                                  {'@pid': '40/9951', 'text': 'Zhongyuan Zhao'},
                                  {'@pid': '48/5870',
                                   'text': 'Mehmet C. Vuran'}]},
           'doi': '10.1109/DYSPAN.2017.7920765',
           'ee': 'https://doi.org/10.1109/DySPAN.2017.7920765',
           'key': 'conf/dyspan/RempeSPSNVZV17',
           'pages': '1-2',
           'title': 'A cognitive radio TV prototype for effective TV spectrum '
                    'sharing.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/dyspan/RempeSPSNVZV17',
           'venue': 'DySPAN',
           'year': '2017'},
  'url': 'URL#1579865'},
 {'@id': '1762709',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '78/9826', 'text': 'Marco Chiesa'},
                                  {'@pid': '177/6606',
                                   'text': 'Christoph Dietzel'},
                                  {'@pid': '00/4948', 'text': 'Gianni Antichi'},
                                  {'@pid': '139/1756', 'text': 'Marc Bruyere'},
                                  {'@pid': '99/11343',
                                   'text': 'Ignacio Castro'},
                                  {'@pid': '45/5210', 'text': 'Mitch Gusat'},
                                  {'@pid': '21/1921', 'text': 'Thomas King'},
                                  {'@pid': '95/2279-2',
                                   'text': 'Andrew W. Moore 0002'},
                                  {'@pid': '65/5183',
                                   'text': 'Thanh Dang Nguyen'},
                                  {'@pid': '90/6614',
                                   'text': 'Philippe Owezarski'},
                                  {'@pid': '87/6218', 'text': 'Steve Uhlig'},
                                  {'@pid': '24/5715', 'text': 'Marco Canini'}]},
           'doi': '10.1109/MCOM.2016.7588277',
           'ee': 'https://doi.org/10.1109/MCOM.2016.7588277',
           'key': 'journals/cm/ChiesaDABCGK0NO16',
           'number': '10',
           'pages': '102-108',
           'title': 'Inter-domain networking innovation on steroids - '
                    'empowering ixps with SDN capabilities.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/cm/ChiesaDABCGK0NO16',
           'venue': 'IEEE Commun. Mag.',
           'volume': '54',
           'year': '2016'},
  'url': 'URL#1762709'},
 {'@id': '1933453',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '182/8437', 'text': 'Chun Kit Ng'},
                                  {'@pid': '70/6889', 'text': 'Chun-Ho Wu'},
                                  {'@pid': '36/2935', 'text': 'W. H. Ip'},
                                  {'@pid': 'z/JunZhang3',
                                   'text': 'Jun Zhang 0003'},
                                  {'@pid': '03/6732',
                                   'text': 'George T. S. Ho'},
                                  {'@pid': '45/6278', 'text': 'C. Y. Chan'}]},
           'doi': '10.1007/978-3-319-42294-7_75',
           'ee': 'https://doi.org/10.1007/978-3-319-42294-7_75',
           'key': 'conf/icic/NgWIZHC16',
           'pages': '850-859',
           'title': 'Network Topology Management Optimization of Wireless '
                    'Sensor Network (WSN).',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icic/NgWIZHC16',
           'venue': 'ICIC',
           'year': '2016'},
  'url': 'URL#1933453'},
 {'@id': '1962469',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '183/4590',
                                   'text': 'Andrew Shorten'},
                                  {'@pid': '87/9847', 'text': 'Wai Tung Ng'}]},
           'doi': '10.1109/ISMVL.2016.59',
           'ee': 'https://doi.org/10.1109/ISMVL.2016.59',
           'key': 'conf/ismvl/ShortenN16',
           'pages': '172-176',
           'title': 'SPRUCE, an Embedded Compact Stack Machine for IGBT Power '
                    'Modules.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/ismvl/ShortenN16',
           'venue': 'ISMVL',
           'year': '2016'},
  'url': 'URL#1962469'},
 {'@id': '2019203',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': 'p/JanPeters1',
                                   'text': 'Jan Peters 0001'},
                                  {'@pid': '38/5967', 'text': 'Daniel D. Lee'},
                                  {'@pid': '69/6636', 'text': 'Jens Kober'},
                                  {'@pid': '18/6057',
                                   'text': 'Duy Nguyen-Tuong'},
                                  {'@pid': '65/2021',
                                   'text': 'J. Andrew Bagnell'},
                                  {'@pid': '32/3952',
                                   'text': 'Stefan Schaal'}]},
           'doi': '10.1007/978-3-319-32552-1_15',
           'ee': 'https://doi.org/10.1007/978-3-319-32552-1_15',
           'key': 'reference/robo/0001LKNBS16',
           'pages': '357-398',
           'title': 'Robot Learning.',
           'type': 'Parts in Books or Collections',
           'url': 'https://dblp.org/rec/reference/robo/0001LKNBS16',
           'venue': 'Springer Handbook of Robotics, 2nd Ed.',
           'year': '2016'},
  'url': 'URL#2019203'},
 {'@id': '2039845',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '115/6940',
                                   'text': 'Charith Perera'},
                                  {'@pid': '186/7881',
                                   'text': 'Susan Wakenshaw'},
                                  {'@pid': '53/10460', 'text': 'Tim Baarslag'},
                                  {'@pid': '33/5454', 'text': 'Hamed Haddadi'},
                                  {'@pid': '12/360',
                                   'text': 'Arosha K. Bandara'},
                                  {'@pid': '28/5155',
                                   'text': 'Richard Mortier'},
                                  {'@pid': '81/363', 'text': 'Andy Crabtree'},
                                  {'@pid': '59/10547', 'text': 'Irene Ng'},
                                  {'@pid': '57/6908', 'text': 'Derek McAuley'},
                                  {'@pid': 'c/JonCrowcroft',
                                   'text': 'Jon Crowcroft'}]},
           'ee': 'http://arxiv.org/abs/1609.03312',
           'key': 'journals/corr/PereraWBHBMCNMC16',
           'title': 'Valorising the IoT Databox - Creating Value for Everyone.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/PereraWBHBMCNMC16',
           'venue': 'CoRR',
           'volume': 'abs/1609.03312',
           'year': '2016'},
  'url': 'URL#2039845'},
 {'@id': '2094038',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '70/6889', 'text': 'Chun-Ho Wu'},
                                  {'@pid': '182/8437', 'text': 'Chun Kit Ng'},
                                  {'@pid': '44/9389', 'text': 'Lixing Wang'},
                                  {'@pid': '03/6732',
                                   'text': 'George T. S. Ho'},
                                  {'@pid': '36/2935', 'text': 'W. H. Ip'},
                                  {'@pid': 'z/JunZhang3',
                                   'text': 'Jun Zhang 0003'}]},
           'doi': '10.1155/2015/760242',
           'ee': 'https://doi.org/10.1155/2015/760242',
           'key': 'journals/ijdsn/WuNWHIZ15',
           'pages': '760242:1-760242:10',
           'title': 'Design of a Wireless Sensor Network Monitoring System for '
                    'Biological and Pharmaceutical Products.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/ijdsn/WuNWHIZ15',
           'venue': 'Int. J. Distributed Sens. Networks',
           'volume': '11',
           'year': '2015'},
  'url': 'URL#2094038'},
 {'@id': '2203961',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '171/9516',
                                   'text': 'Andrew J. Cook'},
                                  {'@pid': '133/3983',
                                   'text': 'Gaetano D. Gargiulo'},
                                  {'@pid': '171/9359', 'text': 'Rebekah Cook'},
                                  {'@pid': '171/8603', 'text': 'Ben Ng'},
                                  {'@pid': '171/9809',
                                   'text': 'Diane Hindmarsh'},
                                  {'@pid': '24/4543',
                                   'text': 'Torsten Lehmann'},
                                  {'@pid': '84/6623',
                                   'text': 'Tara Julia Hamilton'}]},
           'doi': '10.1109/EMBC.2015.7319400',
           'ee': 'https://doi.org/10.1109/EMBC.2015.7319400',
           'key': 'conf/embc/CookGCNHLH15',
           'pages': '4524-4527',
           'title': 'A novel method for non-invasive respiration monitoring.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/embc/CookGCNHLH15',
           'venue': 'EMBC',
           'year': '2015'},
  'url': 'URL#2203961'},
 {'@id': '2340762',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '42/10481',
                                   'text': 'Sandeep Tamrakar'},
                                  {'@pid': '218/0555',
                                   'text': 'Hoang Long Nguyen 0003'},
                                  {'@pid': '145/9171',
                                   'text': 'Praveen Kumar Pendyala'},
                                  {'@pid': '30/9784', 'text': 'Andrew Paverd'},
                                  {'@pid': '39/2508', 'text': 'N. Asokan'},
                                  {'@pid': 's/AhmadRezaSadeghi',
                                   'text': 'Ahmad-Reza Sadeghi'}]},
           'ee': 'http://arxiv.org/abs/1511.02119',
           'key': 'journals/corr/TamrakarHPPAS15',
           'title': 'OmniShare - Securely Accessing Encrypted Cloud Storage '
                    'from Multiple Authorized Devices.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/TamrakarHPPAS15',
           'venue': 'CoRR',
           'volume': 'abs/1511.02119',
           'year': '2015'},
  'url': 'URL#2340762'},
 {'@id': '2414887',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '84/9206', 'text': 'Uri Andrews'},
                                  {'@pid': '81/6401', 'text': 'Steffen Lempp'},
                                  {'@pid': '75/629',
                                   'text': 'Joseph S. Miller'},
                                  {'@pid': '85/2767', 'text': 'Keng Meng Ng'},
                                  {'@pid': '161/4452',
                                   'text': 'Luca San Mauro'},
                                  {'@pid': '06/33', 'text': 'Andrea Sorbi'}]},
           'doi': '10.1017/JSL.2013.8',
           'ee': 'https://doi.org/10.1017/jsl.2013.8',
           'key': 'journals/jsyml/AndrewsLMNMS14',
           'number': '1',
           'pages': '60-88',
           'title': 'Universal computably Enumerable Equivalence Relations.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/jsyml/AndrewsLMNMS14',
           'venue': 'J. Symb. Log.',
           'volume': '79',
           'year': '2014'},
  'url': 'URL#2414887'},
 {'@id': '2476250',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '64/8134', 'text': 'Enoch Yeung'},
                                  {'@pid': '158/5148',
                                   'text': 'Andrew Ng 0001'},
                                  {'@pid': '38/1733', 'text': 'Jongmin Kim'},
                                  {'@pid': '158/5169',
                                   'text': 'Zachary Z. Sun'},
                                  {'@pid': 'm/RichardMMurray',
                                   'text': 'Richard M. Murray'}]},
           'doi': '10.1109/CDC.2014.7040234',
           'ee': 'https://doi.org/10.1109/CDC.2014.7040234',
           'key': 'conf/cdc/YeungNKSM14',
           'pages': '5405-5412',
           'title': 'Modeling the effects of compositional context on promoter '
                    'activity in an E. coli extract based '
                    'transcription-translation system.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/cdc/YeungNKSM14',
           'venue': 'CDC',
           'year': '2014'},
  'url': 'URL#2476250'},
 {'@id': '2497693',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '16/1234-1',
                                   'text': 'Zhuo Zhang 0001'},
                                  {'@pid': '95/7006', 'text': 'Cuntai Guan'},
                                  {'@pid': '57/2292', 'text': 'Ti-Eu Chan'},
                                  {'@pid': '118/5252', 'text': 'Juanhong Yu'},
                                  {'@pid': '16/11513',
                                   'text': 'Andrew Keong Ng'},
                                  {'@pid': '43/3254', 'text': 'Haihong Zhang'},
                                  {'@pid': '32/228',
                                   'text': 'Chee Keong Kwoh 0001'}]},
           'doi': '10.1109/EMBC.2014.6944071',
           'ee': 'https://doi.org/10.1109/EMBC.2014.6944071',
           'key': 'conf/embc/ZhangGCYNZK14',
           'pages': '2265-2268',
           'title': 'Automatic sleep onset detection using single EEG sensor.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/embc/ZhangGCYNZK14',
           'venue': 'EMBC',
           'year': '2014'},
  'url': 'URL#2497693'},
 {'@id': '2498702',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '70/6889', 'text': 'Chun-Ho Wu'},
                                  {'@pid': '204/8592',
                                   'text': 'Felix C. K. Ng'},
                                  {'@pid': '176/2427',
                                   'text': 'Polly P. L. Leung'},
                                  {'@pid': '95/5993', 'text': 'W. Y. Lau'},
                                  {'@pid': '03/6732',
                                   'text': 'George T. S. Ho'},
                                  {'@pid': '36/2935', 'text': 'W. H. Ip'}]},
           'doi': '10.1109/ES.2014.39',
           'ee': 'https://doi.org/10.1109/ES.2014.39',
           'key': 'conf/es/WuNLLHI14',
           'pages': '184-189',
           'title': 'Design of a EHS Module for an Intelligent Automobile '
                    'Parking Platform.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/es/WuNLLHI14',
           'venue': 'ES',
           'year': '2014'},
  'url': 'URL#2498702'},
 {'@id': '2583976',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '77/2302',
                                   'text': 'Andrew S. Cassidy'},
                                  {'@pid': '82/9934',
                                   'text': 'Rodrigo Alvarez-Icaza'},
                                  {'@pid': '82/1333', 'text': 'Filipp Akopyan'},
                                  {'@pid': '94/3018', 'text': 'Jun Sawada'},
                                  {'@pid': '79/3658', 'text': 'John V. Arthur'},
                                  {'@pid': '09/4441', 'text': 'Paul Merolla'},
                                  {'@pid': '23/6729', 'text': 'Pallab Datta'},
                                  {'@pid': '57/418',
                                   'text': 'Marc González Tallada'},
                                  {'@pid': '75/3868', 'text': 'Brian Taba'},
                                  {'@pid': '86/1574',
                                   'text': 'Alexander Andreopoulos'},
                                  {'@pid': '10/5361', 'text': 'Arnon Amir'},
                                  {'@pid': '97/7552',
                                   'text': 'Steven K. Esser'},
                                  {'@pid': '139/5788', 'text': 'Jeff Kusnitz'},
                                  {'@pid': '15/7662',
                                   'text': 'Rathinakumar Appuswamy'},
                                  {'@pid': '78/8707', 'text': 'Chuck Haymes'},
                                  {'@pid': '44/9612', 'text': 'Bernard Brezzo'},
                                  {'@pid': '35/7855',
                                   'text': 'Roger Moussalli'},
                                  {'@pid': '57/4005',
                                   'text': 'Ralph Bellofatto'},
                                  {'@pid': '121/5571',
                                   'text': 'Christian W. Baks'},
                                  {'@pid': '157/2827',
                                   'text': 'Michael Mastro'},
                                  {'@pid': '62/6287', 'text': 'Kai Schleupen'},
                                  {'@pid': '157/2850',
                                   'text': 'Charles E. Cox'},
                                  {'@pid': '133/3879', 'text': 'Ken Inoue'},
                                  {'@pid': '44/7019',
                                   'text': 'Steven E. Millman'},
                                  {'@pid': '41/9709', 'text': 'Nabil Imam'},
                                  {'@pid': '139/5872',
                                   'text': 'Emmett McQuinn'},
                                  {'@pid': '157/2817',
                                   'text': 'Yutaka Y. Nakamura'},
                                  {'@pid': '08/4302', 'text': 'Ivan Vo'},
                                  {'@pid': '157/2882', 'text': 'Chen Guok'},
                                  {'@pid': '143/9367', 'text': 'Don Nguyen'},
                                  {'@pid': '13/4728', 'text': 'Scott Lekuch'},
                                  {'@pid': '22/3168', 'text': 'Sameh W. Asaad'},
                                  {'@pid': '35/1397',
                                   'text': 'Daniel J. Friedman'},
                                  {'@pid': '132/6269',
                                   'text': 'Bryan L. Jackson'},
                                  {'@pid': '68/5615', 'text': 'Myron Flickner'},
                                  {'@pid': '118/4923',
                                   'text': 'William P. Risk'},
                                  {'@pid': 'm/RajitManohar',
                                   'text': 'Rajit Manohar'},
                                  {'@pid': '67/1008',
                                   'text': 'Dharmendra S. Modha'}]},
           'doi': '10.1109/SC.2014.8',
           'ee': 'https://doi.org/10.1109/SC.2014.8',
           'key': 'conf/sc/CassidyAASAMDTTAAEKAHBMBBMSCIMIMNVGNLAFJFRMM14',
           'pages': '27-38',
           'title': 'Real-Time Scalable Cortical Computing at 46 Giga-Synaptic '
                    'OPS/Watt with ~100× Speedup in Time-to-Solution and ~100, '
                    '000× Reduction in Energy-to-Solution.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/sc/CassidyAASAMDTTAAEKAHBMBBMSCIMIMNVGNLAFJFRMM14',
           'venue': 'SC',
           'year': '2014'},
  'url': 'URL#2583976'},
 {'@id': '2684998',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '44/1356-1',
                                   'text': 'Min Huang 0001'},
                                  {'@pid': '131/5619', 'text': 'Huaping Wu'},
                                  {'@pid': '76/2262',
                                   'text': 'Vincent Cho 0001'},
                                  {'@pid': '36/2935', 'text': 'W. H. Ip'},
                                  {'@pid': '99/4694-1',
                                   'text': 'Xingwei Wang 0001'},
                                  {'@pid': '204/8592',
                                   'text': 'Felix C. K. Ng'}]},
           'doi': '10.1155/2013/135610',
           'ee': 'https://doi.org/10.1155/2013/135610',
           'key': 'journals/jam/HuangWCIWN13',
           'pages': '135610:1-135610:10',
           'title': 'Single Machine Problem with Multi-Rate-Modifying '
                    'Activities under a Time-Dependent Deterioration.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/jam/HuangWCIWN13',
           'venue': 'J. Appl. Math.',
           'volume': '2013',
           'year': '2013'},
  'url': 'URL#2684998'},
 {'@id': '2691647',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '99/1082',
                                   'text': 'Robert C. Richardson'},
                                  {'@pid': '128/7066',
                                   'text': 'Shaun Whitehead'},
                                  {'@pid': '90/8561', 'text': 'T. C. Ng'},
                                  {'@pid': '128/7093', 'text': 'Zahi Hawass'},
                                  {'@pid': '97/8695',
                                   'text': 'Andrew Pickering'},
                                  {'@pid': '128/7095',
                                   'text': 'Stephen Rhodes'},
                                  {'@pid': '128/7092', 'text': 'Ron Grieve'},
                                  {'@pid': '128/7091',
                                   'text': 'Adrian Hildred'},
                                  {'@pid': '84/4811',
                                   'text': 'Arjun Nagendran'},
                                  {'@pid': '07/6819', 'text': 'Jason Liu'},
                                  {'@pid': '128/7080',
                                   'text': 'William Mayfield'},
                                  {'@pid': '128/7145', 'text': 'Mehdi Tayoubi'},
                                  {'@pid': '128/7057',
                                   'text': 'Richard Breitner'}]},
           'doi': '10.1002/ROB.21451',
           'ee': 'https://doi.org/10.1002/rob.21451',
           'key': 'journals/jfr/RichardsonWNHPRGHNLMTB13',
           'number': '3',
           'pages': '323-348',
           'title': 'The &quot;Djedi&quot; Robot Exploration of the Southern '
                    'Shaft of the Queen&apos;s Chamber in the Great Pyramid of '
                    'Giza, Egypt.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/jfr/RichardsonWNHPRGHNLMTB13',
           'venue': 'J. Field Robotics',
           'volume': '30',
           'year': '2013'},
  'url': 'URL#2691647'},
 {'@id': '2708509',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '21/4153', 'text': 'Andrew L. Kun'},
                                  {'@pid': '64/7918', 'text': 'Linda Ng Boyle'},
                                  {'@pid': '17/575', 'text': 'Bryan Reimer'},
                                  {'@pid': '45/2726',
                                   'text': 'Andreas Riener'}]},
           'doi': '10.1109/MPRV.2013.27',
           'ee': 'https://doi.org/10.1109/MPRV.2013.27',
           'key': 'journals/pervasive/KunBRR13',
           'number': '2',
           'pages': '80-82',
           'title': 'AutomotiveUI - Interacting with Technology in Vehicles.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/pervasive/KunBRR13',
           'venue': 'IEEE Pervasive Comput.',
           'volume': '12',
           'year': '2013'},
  'url': 'URL#2708509'},
 {'@id': '2746127',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '47/8251',
                                   'text': 'Adi V. Gundlapalli'},
                                  {'@pid': '148/5743',
                                   'text': 'Marjorie Carter'},
                                  {'@pid': '148/5931',
                                   'text': 'Miland N. Palmer'},
                                  {'@pid': '13/9768', 'text': 'Thomas Ginter'},
                                  {'@pid': '12/10519', 'text': 'Andrew Redd'},
                                  {'@pid': '117/6587', 'text': 'Steve Pickard'},
                                  {'@pid': '91/8252', 'text': 'Shuying Shen'},
                                  {'@pid': '99/8246', 'text': 'Brett R. South'},
                                  {'@pid': '23/7341', 'text': 'Guy Divita'},
                                  {'@pid': '11/4887',
                                   'text': 'Scott L. DuVall'},
                                  {'@pid': '59/9195',
                                   'text': 'Thien M. Nguyen'},
                                  {'@pid': '31/9191',
                                   'text': 'Leonard W. D&apos;Avolio'},
                                  {'@pid': '57/8250',
                                   'text': 'Matthew H. Samore'}]},
           'ee': 'https://knowledge.amia.org/amia-55142-a2013e-1.580047/t-05-1.583941/f-005-1.583942/a-177-1.584200/a-188-1.584197',
           'key': 'conf/amia/GundlapalliCPGRPSSDDNDS13',
           'title': 'Using Natural Language Processing on the Free Text of '
                    'Clinical Documents to Screen for Evidence of Homelessness '
                    'Among US Veterans.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/amia/GundlapalliCPGRPSSDDNDS13',
           'venue': 'AMIA',
           'year': '2013'},
  'url': 'URL#2746127'},
 {'@id': '2777842',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '16/11513',
                                   'text': 'Andrew Keong Ng'},
                                  {'@pid': '08/1924', 'text': 'Kai Keng Ang'},
                                  {'@pid': '94/581', 'text': 'Keng Peng Tee'},
                                  {'@pid': '95/7006', 'text': 'Cuntai Guan'}]},
           'doi': '10.1109/EMBC.2013.6610117',
           'ee': 'https://doi.org/10.1109/EMBC.2013.6610117',
           'key': 'conf/embc/NgATG13',
           'pages': '2780-2783',
           'title': 'Optimizing low-frequency common spatial pattern features '
                    'for multi-class classification of hand movement '
                    'directions.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/embc/NgATG13',
           'venue': 'EMBC',
           'year': '2013'},
  'url': 'URL#2777842'},
 {'@id': '2777843',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '118/5202', 'text': 'Kian B. Ng'},
                                  {'@pid': '00/1197',
                                   'text': 'Andrew P. Bradley'},
                                  {'@pid': '97/9680',
                                   'text': 'Ross Cunnington'}]},
           'doi': '10.1109/EMBC.2013.6610198',
           'ee': 'https://doi.org/10.1109/EMBC.2013.6610198',
           'key': 'conf/embc/NgBC13',
           'pages': '3105-3108',
           'title': 'Effect of posterized naturalistic stimuli on SSVEP-based '
                    'BCI.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/embc/NgBC13',
           'venue': 'EMBC',
           'year': '2013'},
  'url': 'URL#2777843'},
 {'@id': '2778568',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '91/2554', 'text': 'Yongwei Zhu'},
                                  {'@pid': '43/3254', 'text': 'Haihong Zhang'},
                                  {'@pid': '65/514',
                                   'text': 'Maniyeri Jayachandran'},
                                  {'@pid': '16/11513',
                                   'text': 'Andrew Keong Ng'},
                                  {'@pid': '20/2182', 'text': 'Jit Biswas'},
                                  {'@pid': '50/505', 'text': 'Zhihao Chen'}]},
           'doi': '10.1109/EMBC.2013.6610721',
           'ee': 'https://doi.org/10.1109/EMBC.2013.6610721',
           'key': 'conf/embc/ZhuZJNBC13',
           'pages': '5203-5206',
           'title': 'Ballistocardiography with fiber optic sensor in headrest '
                    'position - A feasibility study and a new processing '
                    'algorithm.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/embc/ZhuZJNBC13',
           'venue': 'EMBC',
           'year': '2013'},
  'url': 'URL#2778568'},
 {'@id': '2891374',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '33/8524',
                                   'text': 'Andrew V. Jones'},
                                  {'@pid': '44/9716', 'text': 'Nicholas Ng'}]},
           'key': 'conf/iccsw/2013',
           'publisher': 'Schloss Dagstuhl - Leibniz-Zentrum fuer Informatik, '
                        'Germany',
           'title': '2013 Imperial College Computing Student Workshop, ICCSW '
                    '2013, September 26/27, 2013, London, United Kingdom',
           'type': 'Editorship',
           'url': 'https://dblp.org/rec/conf/iccsw/2013',
           'venue': ['ICCSW', 'OASICS'],
           'volume': '35',
           'year': '2013'},
  'url': 'URL#2891374'},
 {'@id': '2956717',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '16/3523', 'text': 'Alex Ng'},
                                  {'@pid': '85/10911',
                                   'text': 'Paul Andrew Watters'},
                                  {'@pid': '65/287',
                                   'text': 'Shiping Chen 0001'}]},
           'doi': '10.4018/IRMJ.2012070101',
           'ee': 'https://doi.org/10.4018/irmj.2012070101',
           'key': 'journals/irmj/NgWC12',
           'number': '3',
           'pages': '1-29',
           'title': 'A Consolidated Process Model for Identity Management.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/irmj/NgWC12',
           'venue': 'Inf. Resour. Manag. J.',
           'volume': '25',
           'year': '2012'},
  'url': 'URL#2956717'},
 {'@id': '3009857',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '29/4553', 'text': 'Brenda Ng'},
                                  {'@pid': '57/5730', 'text': 'Kofi Boakye'},
                                  {'@pid': '30/824', 'text': 'Carol Meyers'},
                                  {'@pid': '58/5765', 'text': 'Andrew Wang'}]},
           'ee': 'http://www.aaai.org/ocs/index.php/AAAI/AAAI12/paper/view/5120',
           'key': 'conf/aaai/NgBMW12',
           'title': 'Bayes-Adaptive Interactive POMDPs.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/aaai/NgBMW12',
           'venue': 'AAAI',
           'year': '2012'},
  'url': 'URL#3009857'},
 {'@id': '3046741',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '16/11513',
                                   'text': 'Andrew Keong Ng'},
                                  {'@pid': '95/7006', 'text': 'Cuntai Guan'}]},
           'doi': '10.1109/EMBC.2012.6347006',
           'ee': 'https://doi.org/10.1109/EMBC.2012.6347006',
           'key': 'conf/embc/NgG12',
           'pages': '4660-4663',
           'title': 'Impact of obstructive sleep apnea on sleep-wake stage '
                    'ratio.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/embc/NgG12',
           'venue': 'EMBC',
           'year': '2012'},
  'url': 'URL#3046741'},
 {'@id': '3089564',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '118/5202', 'text': 'Kian B. Ng'},
                                  {'@pid': '97/9680',
                                   'text': 'Ross Cunnington'},
                                  {'@pid': '00/1197',
                                   'text': 'Andrew P. Bradley'}]},
           'doi': '10.1109/IJCNN.2012.6252686',
           'ee': 'https://doi.org/10.1109/IJCNN.2012.6252686',
           'key': 'conf/ijcnn/NgCB12',
           'pages': '1-6',
           'title': 'Enhancing the classification accuracy of Steady-State '
                    'Visual Evoked Potential-based Brain-Computer Interface '
                    'using Component Synchrony Measure.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/ijcnn/NgCB12',
           'venue': 'IJCNN',
           'year': '2012'},
  'url': 'URL#3089564'},
 {'@id': '3244349',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '31/11205',
                                   'text': 'Andrew Sucevic'},
                                  {'@pid': '22/58',
                                   'text': 'Lachlan L. H. Andrew'},
                                  {'@pid': '92/2493',
                                   'text': 'Thuy T. T. Nguyen'}]},
           'doi': '10.1145/2160803.2160864',
           'ee': 'https://doi.org/10.1145/2160803.2160864',
           'key': 'journals/sigmetrics/SucevicAN11',
           'number': '3',
           'pages': '72-76',
           'title': 'Powering down for energy efficient peer-to-peer file '
                    'distribution.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/sigmetrics/SucevicAN11',
           'venue': 'SIGMETRICS Perform. Evaluation Rev.',
           'volume': '39',
           'year': '2011'},
  'url': 'URL#3244349'},
 {'@id': '3297679',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '118/5202', 'text': 'Kian B. Ng'},
                                  {'@pid': '00/1197',
                                   'text': 'Andrew P. Bradley'},
                                  {'@pid': '97/9680',
                                   'text': 'Ross Cunnington'}]},
           'doi': '10.1109/IEMBS.2011.6091556',
           'ee': 'https://doi.org/10.1109/IEMBS.2011.6091556',
           'key': 'conf/embc/NgBC11',
           'pages': '6307-6310',
           'title': 'Effect of competing stimuli on SSVEP-based BCI.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/embc/NgBC11',
           'venue': 'EMBC',
           'year': '2011'},
  'url': 'URL#3297679'},
 {'@id': '3315721',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '50/1568',
                                   'text': 'Catherine Havasi'},
                                  {'@pid': '68/3095',
                                   'text': 'Richard Borovoy'},
                                  {'@pid': '28/9922',
                                   'text': 'Boris Kizelshteyn'},
                                  {'@pid': '83/8024',
                                   'text': 'Polychronis Ypodimatopoulos'},
                                  {'@pid': '78/9922', 'text': 'Jon Ferguson'},
                                  {'@pid': '73/7556', 'text': 'Henry Holtzman'},
                                  {'@pid': '60/2616', 'text': 'Andrew Lippman'},
                                  {'@pid': '64/9922', 'text': 'Dan Schultz'},
                                  {'@pid': '13/9597',
                                   'text': 'Matthew Blackshaw'},
                                  {'@pid': '63/3888',
                                   'text': 'Greg T. Elliott'},
                                  {'@pid': '80/1360', 'text': 'Chaki Ng'}]},
           'ee': 'http://www.aaai.org/ocs/index.php/IAAI/IAAI-11/paper/view/3531',
           'key': 'conf/iaai/HavasiBKYFHLSBEN11',
           'title': 'The Glass Infrastructure - Using Common Sense to Create a '
                    'Dynamic, Place-Based Social Information System.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/iaai/HavasiBKYFHLSBEN11',
           'venue': 'IAAI',
           'year': '2011'},
  'url': 'URL#3315721'},
 {'@id': '3359060',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '86/4084',
                                   'text': 'Vinay K. Chaudhri'},
                                  {'@pid': '40/467', 'text': 'Nikhil Dinesh'},
                                  {'@pid': '65/2682', 'text': 'John Pacheco'},
                                  {'@pid': '85/6283', 'text': 'Gary Ng'},
                                  {'@pid': '34/1184', 'text': 'Peter Clark'},
                                  {'@pid': '95/9818',
                                   'text': 'Andrew Goldenkranz'},
                                  {'@pid': '130/0368', 'text': 'Patrice Seyed'},
                                  {'@pid': '23/1972',
                                   'text': 'Naveen Sharma'}]},
           'doi': '10.1145/1999676.1999714',
           'ee': 'https://doi.org/10.1145/1999676.1999714',
           'key': 'conf/kcap/ChaudhriDPNCGSS11',
           'pages': '179-180',
           'title': 'Preliminary steps towards a knowledge factory process.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/kcap/ChaudhriDPNCGSS11',
           'venue': 'K-CAP',
           'year': '2011'},
  'url': 'URL#3359060'},
 {'@id': '3369468',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '22/58',
                                   'text': 'Lachlan L. H. Andrew'},
                                  {'@pid': '31/11205',
                                   'text': 'Andrew Sucevic'},
                                  {'@pid': '92/2493',
                                   'text': 'Thuy T. T. Nguyen'}]},
           'doi': '10.1109/GREENCOM.2011.6082511',
           'ee': 'https://doi.org/10.1109/GreenCom.2011.6082511',
           'key': 'conf/onlinegreencomm/AndrewSN11',
           'pages': '76-81',
           'title': 'Balancing peer and server energy consumption in large '
                    'peer-to-peer file distribution systems.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/onlinegreencomm/AndrewSN11',
           'venue': 'OnlineGreenComm',
           'year': '2011'},
  'url': 'URL#3369468'},
 {'@id': '3472062',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '56/5500',
                                   'text': 'George Barmpalias'},
                                  {'@pid': '57/5684',
                                   'text': 'Andrew E. M. Lewis'},
                                  {'@pid': '85/2767', 'text': 'Keng Meng Ng'}]},
           'doi': '10.2178/JSL/1264433928',
           'ee': 'https://doi.org/10.2178/jsl/1264433928',
           'key': 'journals/jsyml/BarmpaliasLN10',
           'number': '1',
           'pages': '387-400',
           'title': 'The importance of Pi01 classes in effective randomness.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/jsyml/BarmpaliasLN10',
           'venue': 'J. Symb. Log.',
           'volume': '75',
           'year': '2010'},
  'url': 'URL#3472062'},
 {'@id': '3491131',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '16/11513',
                                   'text': 'Andrew Keong Ng'},
                                  {'@pid': '93/5303', 'text': 'Tong San Koh'}]},
           'doi': '10.1109/TBME.2009.2034139',
           'ee': 'https://doi.org/10.1109/TBME.2009.2034139',
           'key': 'journals/tbe/NgK10',
           'number': '3',
           'pages': '552-560',
           'title': 'Analysis and Modeling of Snore Source Flow With Its '
                    'Preliminary Application to Synthetic Snore Generation.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/tbe/NgK10',
           'venue': 'IEEE Trans. Biomed. Eng.',
           'volume': '57',
           'year': '2010'},
  'url': 'URL#3491131'},
 {'@id': '3513527',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '90/6375', 'text': 'Andrew Crossan'},
                                  {'@pid': 'b/StephenABrewster',
                                   'text': 'Stephen A. Brewster'},
                                  {'@pid': '89/2144', 'text': 'Alexander Ng'}]},
           'ee': 'http://dl.acm.org/citation.cfm?id=2146366',
           'key': 'conf/bcshci/CrossanBN10',
           'pages': '418-422',
           'title': 'Foot tapping for mobile interaction.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/bcshci/CrossanBN10',
           'venue': 'BCS HCI',
           'year': '2010'},
  'url': 'URL#3513527'},
 {'@id': '3591384',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '53/5044',
                                   'text': 'Predrag R. Bakic'},
                                  {'@pid': '29/8171', 'text': 'Peter Ringer'},
                                  {'@pid': '13/8174', 'text': 'Johnny Kuo'},
                                  {'@pid': '00/8172', 'text': 'Susan Ng'},
                                  {'@pid': '90/6648',
                                   'text': 'Andrew D. A. Maidment'}]},
           'doi': '10.1007/978-3-642-13666-5_9',
           'ee': 'https://doi.org/10.1007/978-3-642-13666-5_9',
           'key': 'conf/mammo/BakicRKNM10',
           'pages': '62-69',
           'title': 'Analysis of Geometric Accuracy in Digital Breast '
                    'Tomosynthesis Reconstruction.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/mammo/BakicRKNM10',
           'venue': 'Digital Mammography / IWDM',
           'year': '2010'},
  'url': 'URL#3591384'},
 {'@id': '3675377',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '56/5067', 'text': 'Wing-Keung To'},
                                  {'@pid': '54/7946', 'text': 'Gavin Paul'},
                                  {'@pid': '68/1676', 'text': 'Ngai Ming Kwok'},
                                  {'@pid': '55/4057', 'text': 'Dikai Liu'}]},
           'doi': '10.1504/IJCAET.2009.022786',
           'ee': 'https://doi.org/10.1504/IJCAET.2009.022786',
           'key': 'journals/ijcaet/ToPKL09',
           'number': '2',
           'pages': '185-208',
           'title': 'An efficient trajectory planning approach for autonomous '
                    'robots in complex bridge environments.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/ijcaet/ToPKL09',
           'venue': 'Int. J. Comput. Aided Eng. Technol.',
           'volume': '1',
           'year': '2009'},
  'url': 'URL#3675377'},
 {'@id': '3747067',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '54/1484', 'text': 'Andrew Abel'},
                                  {'@pid': '03/6772',
                                   'text': 'Amir Hussain 0001'},
                                  {'@pid': '75/3679',
                                   'text': 'Quoc Dinh Nguyen'},
                                  {'@pid': '39/4933',
                                   'text': 'Fabien Ringeval'},
                                  {'@pid': '70/2508',
                                   'text': 'Mohamed Chetouani'},
                                  {'@pid': '27/3627',
                                   'text': 'Maurice Milgram'}]},
           'doi': '10.1007/978-3-642-04391-8_9',
           'ee': 'https://doi.org/10.1007/978-3-642-04391-8_9',
           'key': 'conf/cost/AbelHNRCM09',
           'pages': '65-72',
           'title': 'Maximising Audiovisual Correlation with Automatic Lip '
                    'Tracking and Vowel Based Segmentation.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/cost/AbelHNRCM09',
           'venue': 'COST 2101/2102 Conference',
           'year': '2009'},
  'url': 'URL#3747067'},
 {'@id': '3813489',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '43/7334',
                                   'text': 'Andrew G. James'},
                                  {'@pid': '72/5309', 'text': 'Eugene Ng'},
                                  {'@pid': '01/7333',
                                   'text': 'Prakesh S. Shah'}]},
           'doi': '10.3233/978-1-60750-044-5-243',
           'ee': 'https://doi.org/10.3233/978-1-60750-044-5-243',
           'key': 'conf/mie/JamesNS09',
           'pages': '243-247',
           'title': 'A Reference Set of SNOMED Terms for the Structured '
                    'Representation of Respiratory Disorders of the Newborn '
                    'Infant.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/mie/JamesNS09',
           'venue': 'MIE',
           'year': '2009'},
  'url': 'URL#3813489'},
 {'@id': '3896603',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '59/3439', 'text': 'Thian Song Ong'},
                                  {'@pid': 't/AndrewTeohBengJin',
                                   'text': 'Andrew Teoh Beng Jin'},
                                  {'@pid': 'n/DavidChekLingNgo',
                                   'text': 'David Chek Ling Ngo'}]},
           'ee': 'http://ijns.jalaxy.com.tw/contents/ijns-v6-n2/ijns-2008-v6-n2-p127-133.pdf',
           'key': 'journals/ijnsec/OngJN08',
           'number': '2',
           'pages': '127-133',
           'title': 'Application-Specific Key Release Scheme from Biometrics.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/ijnsec/OngJN08',
           'venue': 'Int. J. Netw. Secur.',
           'volume': '6',
           'year': '2008'},
  'url': 'URL#3896603'},
 {'@id': '3926330',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '16/11513',
                                   'text': 'Andrew Keong Ng'},
                                  {'@pid': '93/5303', 'text': 'Tong San Koh'},
                                  {'@pid': '115/8110',
                                   'text': 'Kathiravelu Puvanendran'},
                                  {'@pid': '00/6840',
                                   'text': 'Udantha R. Abeyratne'}]},
           'doi': '10.1109/TBME.2008.925682',
           'ee': 'https://doi.org/10.1109/TBME.2008.925682',
           'key': 'journals/tbe/NgKPA08',
           'number': '10',
           'pages': '2332-2342',
           'title': 'Snore Signal Enhancement and Activity Detection via '
                    'Translation-Invariant Wavelet Transform.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/tbe/NgKPA08',
           'venue': 'IEEE Trans. Biomed. Eng.',
           'volume': '55',
           'year': '2008'},
  'url': 'URL#3926330'},
 {'@id': '4021796',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '14/4005', 'text': 'Andrew P. King'},
                                  {'@pid': '34/6696',
                                   'text': 'Redha Boubertakh'},
                                  {'@pid': '29/1876', 'text': 'K. L. Ng'},
                                  {'@pid': '27/4895', 'text': 'YingLiang Ma'},
                                  {'@pid': '07/5313',
                                   'text': 'Phani Chinchapatnam'},
                                  {'@pid': '22/8091', 'text': 'Gang Gao'},
                                  {'@pid': '15/2699',
                                   'text': 'Tobias Schaeffter'},
                                  {'@pid': '14/2317',
                                   'text': 'David J. Hawkes'},
                                  {'@pid': 'r/RezaRazavi',
                                   'text': 'Reza Razavi'},
                                  {'@pid': '34/3200',
                                   'text': 'Kawal S. Rhode'}]},
           'doi': '10.1117/12.769377',
           'ee': 'https://doi.org/10.1117/12.769377',
           'key': 'conf/miigp/KingBNMCGSHRR08',
           'pages': '691816',
           'title': 'A technique for respiratory motion correction in image '
                    'guided cardiac catheterisation procedures.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/miigp/KingBNMCGSHRR08',
           'venue': 'Medical Imaging - Image-Guided Procedures',
           'year': '2008'},
  'url': 'URL#4021796'},
 {'@id': '4047551',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '80/3065',
                                   'text': 'Stephen McCombie'},
                                  {'@pid': '85/10911',
                                   'text': 'Paul Andrew Watters'},
                                  {'@pid': '16/3523', 'text': 'Alex Ng'},
                                  {'@pid': '87/4660', 'text': 'Brett Watson'}]},
           'key': 'conf/webist/McCombieWNW08',
           'pages': '149-157',
           'title': 'Forensic Characteristics of Phishing - Petty Theft or '
                    'Organized Crime?',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/webist/McCombieWNW08',
           'venue': 'WEBIST',
           'year': '2008'},
  'url': 'URL#4047551'},
 {'@id': '4082888',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '02/6388', 'text': 'Wai Kuan Yip'},
                                  {'@pid': 't/AndrewTeohBengJin',
                                   'text': 'Andrew Beng Jin Teoh'},
                                  {'@pid': 'n/DavidChekLingNgo',
                                   'text': 'David Chek Ling Ngo'}]},
           'doi': '10.1155/2007/59125',
           'ee': 'https://doi.org/10.1155/2007/59125',
           'key': 'journals/ejasp/KuanTN07',
           'title': 'Secure Hashing of Dynamic Hand Signatures Using '
                    'Wavelet-Fourier Compression with BioPhasor Mixing and 2N '
                    'Discretization.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/ejasp/KuanTN07',
           'venue': 'EURASIP J. Adv. Signal Process.',
           'volume': '2007',
           'year': '2007'},
  'url': 'URL#4082888'},
 {'@id': '4103140',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '42/2141', 'text': 'Ying-Han Pang'},
                                  {'@pid': 't/AndrewTeohBengJin',
                                   'text': 'Andrew Teoh Beng Jin'},
                                  {'@pid': 'n/DavidChekLingNgo',
                                   'text': 'David Ngo Chek Ling'}]},
           'doi': '10.1007/S11390-007-9006-X',
           'ee': 'https://doi.org/10.1007/s11390-007-9006-x',
           'key': 'journals/jcst/PangJL07',
           'number': '1',
           'pages': '54-59',
           'title': 'Two-Factor Cancelable Biometrics Authenticator.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/jcst/PangJL07',
           'venue': 'J. Comput. Sci. Technol.',
           'volume': '22',
           'year': '2007'},
  'url': 'URL#4103140'},
 {'@id': '4124338',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '01/678', 'text': 'Lydia Ng'},
                                  {'@pid': '89/4514',
                                   'text': 'Sayan D. Pathak'},
                                  {'@pid': '87/4185', 'text': 'Chihchau Kuan'},
                                  {'@pid': '80/5238',
                                   'text': 'Christopher Lau'},
                                  {'@pid': '02/5587', 'text': 'Hong-wei Dong'},
                                  {'@pid': '80/3626', 'text': 'Andrew Sodt'},
                                  {'@pid': '20/3248', 'text': 'Chinh Dang'},
                                  {'@pid': '04/6739',
                                   'text': 'Brian B. Avants'},
                                  {'@pid': '40/2638',
                                   'text': 'Paul A. Yushkevich'},
                                  {'@pid': '30/6904', 'text': 'James C. Gee'},
                                  {'@pid': '72/4553',
                                   'text': 'David R. Haynor'},
                                  {'@pid': '38/1489', 'text': 'Ed Lein'},
                                  {'@pid': '13/748', 'text': 'Allan Jones'},
                                  {'@pid': '94/4937',
                                   'text': 'Michael Hawrylycz'}]},
           'doi': '10.1145/1299023.1299030',
           'ee': 'http://doi.acm.org/10.1145/1299023.1299030',
           'key': 'journals/tcbb/NgPKLDSDAYGHLJH07',
           'number': '3',
           'pages': '382-393',
           'title': 'Neuroinformatics for Genome-Wide 3-D Gene Expression '
                    'Mapping in the Mouse Brain.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/tcbb/NgPKLDSDAYGHLJH07',
           'venue': 'IEEE ACM Trans. Comput. Biol. Bioinform.',
           'volume': '4',
           'year': '2007'},
  'url': 'URL#4124338'},
 {'@id': '4131885',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '76/1250', 'text': 'Kah Heng Ng'},
                                  {'@pid': '26/2244',
                                   'text': 'Eustace K. Tameh'},
                                  {'@pid': '26/3192', 'text': 'Angela Doufexi'},
                                  {'@pid': '51/1919',
                                   'text': 'Mythri Hunukumbure'},
                                  {'@pid': '50/6238',
                                   'text': 'Andrew R. Nix'}]},
           'doi': '10.1109/TVT.2007.895606',
           'ee': 'https://doi.org/10.1109/TVT.2007.895606',
           'key': 'journals/tvt/NgTDHN07',
           'number': '3',
           'pages': '1019-1032',
           'title': 'Efficient Multielement Ray Tracing With Site-Specific '
                    'Comparisons Using Measured MIMO Channel Data.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/tvt/NgTDHN07',
           'venue': 'IEEE Trans. Veh. Technol.',
           'volume': '56',
           'year': '2007'},
  'url': 'URL#4131885'},
 {'@id': '4134224',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '89/2536', 'text': 'Brendan Walker'},
                                  {'@pid': '24/4422',
                                   'text': 'Holger Schnädelbach'},
                                  {'@pid': '89/4606',
                                   'text': 'Stefan Rennick Egglestone'},
                                  {'@pid': '23/5947', 'text': 'Angus Clark'},
                                  {'@pid': '72/2649', 'text': 'Tuvi Orbach'},
                                  {'@pid': '59/6824', 'text': 'Michael Wright'},
                                  {'@pid': '09/1492', 'text': 'Kher Hui Ng'},
                                  {'@pid': '51/657',
                                   'text': 'Andrew P. French'},
                                  {'@pid': 'r/TomRodden', 'text': 'Tom Rodden'},
                                  {'@pid': 'b/SteveBenford',
                                   'text': 'Steve Benford'}]},
           'doi': '10.1145/1255047.1255070',
           'ee': 'https://doi.org/10.1145/1255047.1255070',
           'key': 'conf/ACMace/WalkerSECOWNFRB07',
           'pages': '115-122',
           'title': 'Augmenting amusement rides with telemetry.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/ACMace/WalkerSECOWNFRB07',
           'venue': 'Advances in Computer Entertainment Technology',
           'year': '2007'},
  'url': 'URL#4134224'},
 {'@id': '4155470',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '26/249', 'text': 'Danny Ng'},
                                  {'@pid': '66/6076',
                                   'text': 'Andrew Woodward'}]},
           'key': 'conf/csreaSAM/NgW07',
           'pages': '496-500',
           'title': 'Implications for Use of Different Encryption Algorithms '
                    'on Power Consumption for Mobile Devices in the Healthcare '
                    'Industry.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/csreaSAM/NgW07',
           'venue': 'Security and Management',
           'year': '2007'},
  'url': 'URL#4155470'},
 {'@id': '4158168',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '20/3248', 'text': 'Chinh Dang'},
                                  {'@pid': '80/3626', 'text': 'Andrew Sodt'},
                                  {'@pid': '80/5238',
                                   'text': 'Christopher Lau'},
                                  {'@pid': '99/6400',
                                   'text': 'Brian Youngstrom'},
                                  {'@pid': '01/678', 'text': 'Lydia Ng'},
                                  {'@pid': '47/5652', 'text': 'Leonard Kuan'},
                                  {'@pid': '89/4514',
                                   'text': 'Sayan D. Pathak'},
                                  {'@pid': '13/748', 'text': 'Allan Jones'},
                                  {'@pid': '94/4937',
                                   'text': 'Michael Hawrylycz'}]},
           'doi': '10.1007/978-3-540-73255-6_4',
           'ee': 'https://doi.org/10.1007/978-3-540-73255-6_4',
           'key': 'conf/dils/DangSLYNKPJH07',
           'pages': '17-26',
           'title': 'The Allen Brain Atlas - Delivering Neuroscience to the '
                    'Web on a Genome Wide Scale.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/dils/DangSLYNKPJH07',
           'venue': 'DILS',
           'year': '2007'},
  'url': 'URL#4158168'},
 {'@id': '4176940',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '74/4419',
                                   'text': 'Mark J. F. Gales'},
                                  {'@pid': '68/5214', 'text': 'Xunying Liu'},
                                  {'@pid': '04/4646-3',
                                   'text': 'Rohit Sinha 0003'},
                                  {'@pid': '42/153',
                                   'text': 'Philip C. Woodland'},
                                  {'@pid': '197/1322-4', 'text': 'Kai Yu 0004'},
                                  {'@pid': '84/1581',
                                   'text': 'Spyros Matsoukas'},
                                  {'@pid': '75/2112', 'text': 'Tim Ng'},
                                  {'@pid': '18/7819', 'text': 'Kham Nguyen'},
                                  {'@pid': '02/3500', 'text': 'Long Nguyen'},
                                  {'@pid': '79/1555',
                                   'text': 'Jean-Luc Gauvain'},
                                  {'@pid': '14/2303', 'text': 'Lori Lamel'},
                                  {'@pid': '50/7935',
                                   'text': 'Abdelkhalek Messaoudi'}]},
           'doi': '10.1109/ICASSP.2007.367310',
           'ee': 'https://doi.org/10.1109/ICASSP.2007.367310',
           'key': 'conf/icassp/GalesLSWYMNNNGLM07',
           'pages': '1277-1280',
           'title': 'Speech Recognition System Combination for Machine '
                    'Translation.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icassp/GalesLSWYMNNNGLM07',
           'venue': 'ICASSP',
           'year': '2007'},
  'url': 'URL#4176940'},
 {'@id': '4254339',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '42/2141', 'text': 'Ying-Han Pang'},
                                  {'@pid': 't/AndrewTeohBengJin',
                                   'text': 'Andrew Beng Jin Teoh'},
                                  {'@pid': 'n/DavidChekLingNgo',
                                   'text': 'David Chek Ling Ngo'}]},
           'ee': 'http://ws.acs.org.au/jrpit/JRPITVolumes/JRPIT38/JRPIT38.2.197.pdf',
           'key': 'journals/acj/PangTN06',
           'number': '2',
           'pages': '197-212',
           'title': 'A Discriminant Pseudo Zernike Moments in Face '
                    'Recognition.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/acj/PangTN06',
           'venue': 'J. Res. Pract. Inf. Technol.',
           'volume': '38',
           'year': '2006'},
  'url': 'URL#4254339'},
 {'@id': '4266189',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '72/217', 'text': 'Chong Siew Chin'},
                                  {'@pid': 't/AndrewTeohBengJin',
                                   'text': 'Andrew Teoh Beng Jin'},
                                  {'@pid': 'n/DavidChekLingNgo',
                                   'text': 'David Ngo Chek Ling'}]},
           'doi': '10.1016/J.CVIU.2006.01.002',
           'ee': 'https://doi.org/10.1016/j.cviu.2006.01.002',
           'key': 'journals/cviu/ChinJL06',
           'number': '2',
           'pages': '169-177',
           'title': 'High security Iris verification system based on random '
                    'secret integration.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/cviu/ChinJL06',
           'venue': 'Comput. Vis. Image Underst.',
           'volume': '102',
           'year': '2006'},
  'url': 'URL#4266189'},
 {'@id': '4274313',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '02/6388', 'text': 'Wai Kuan Yip'},
                                  {'@pid': 't/AndrewTeohBengJin',
                                   'text': 'Andrew Beng Jin Teoh'},
                                  {'@pid': 'n/DavidChekLingNgo',
                                   'text': 'David Chek Ling Ngo'}]},
           'doi': '10.1587/ELEX.3.410',
           'ee': 'https://doi.org/10.1587/elex.3.410',
           'key': 'journals/ieiceee/YipTN06',
           'number': '18',
           'pages': '410-416',
           'title': 'Replaceable and securely hashed keys from online '
                    'signatures.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/ieiceee/YipTN06',
           'venue': 'IEICE Electron. Express',
           'volume': '3',
           'year': '2006'},
  'url': 'URL#4274313'},
 {'@id': '4282064',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': 't/AndrewTeohBengJin',
                                   'text': 'Andrew Teoh Beng Jin'},
                                  {'@pid': '07/2949', 'text': 'Tee Connie'},
                                  {'@pid': 'n/DavidChekLingNgo',
                                   'text': 'David Ngo Chek Ling'}]},
           'doi': '10.1016/J.IPL.2006.06.010',
           'ee': 'https://doi.org/10.1016/j.ipl.2006.06.010',
           'key': 'journals/ipl/JinCL06',
           'number': '4',
           'pages': '145-150',
           'title': 'Remarks on BioHash and its mathematical foundation.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/ipl/JinCL06',
           'venue': 'Inf. Process. Lett.',
           'volume': '100',
           'year': '2006'},
  'url': 'URL#4282064'},
 {'@id': '4285557',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '85/3392', 'text': 'Andrew Smellie'},
                                  {'@pid': '96/2041',
                                   'text': 'Christopher J. Wilson'},
                                  {'@pid': '19/3251', 'text': 'Shi Chung Ng'}]},
           'doi': '10.1021/CI050404G',
           'ee': 'https://doi.org/10.1021/ci050404g',
           'key': 'journals/jcisd/SmellieWN06',
           'number': '1',
           'pages': '201-207',
           'title': 'Visualization and Interpretation of High Content '
                    'Screening Data.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/jcisd/SmellieWN06',
           'venue': 'J. Chem. Inf. Model.',
           'volume': '46',
           'year': '2006'},
  'url': 'URL#4285557'},
 {'@id': '4297546',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': 't/AndrewTeohBengJin',
                                   'text': 'Andrew Teoh Beng Jin'},
                                  {'@pid': '26/6671', 'text': 'Alwyn Goh'},
                                  {'@pid': 'n/DavidChekLingNgo',
                                   'text': 'David Ngo Chek Ling'}]},
           'doi': '10.1109/TPAMI.2006.250',
           'ee': 'https://doi.org/10.1109/TPAMI.2006.250',
           'key': 'journals/pami/JinGN06',
           'number': '12',
           'pages': '1892-1901',
           'title': 'Random Multispace Quantization as an Analytic Mechanism '
                    'for BioHashing of Biometric and Random Identity Inputs.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/pami/JinGN06',
           'venue': 'IEEE Trans. Pattern Anal. Mach. Intell.',
           'volume': '28',
           'year': '2006'},
  'url': 'URL#4297546'},
 {'@id': '4308119',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': 'n/DavidChekLingNgo',
                                   'text': 'David Ngo Chek Ling'},
                                  {'@pid': 't/AndrewTeohBengJin',
                                   'text': 'Andrew Teoh Beng Jin'},
                                  {'@pid': '26/6671', 'text': 'Alwyn Goh'}]},
           'doi': '10.1109/TCSVT.2006.873780',
           'ee': 'https://doi.org/10.1109/TCSVT.2006.873780',
           'key': 'journals/tcsv/NgoTG06',
           'number': '6',
           'pages': '771-775',
           'title': 'Biometric hash - high-confidence face recognition.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/tcsv/NgoTG06',
           'venue': 'IEEE Trans. Circuits Syst. Video Technol.',
           'volume': '16',
           'year': '2006'},
  'url': 'URL#4308119'},
 {'@id': '4311610',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': 'l/MarcLevoy', 'text': 'Marc Levoy'},
                                  {'@pid': '38/5510', 'text': 'Ren Ng'},
                                  {'@pid': '04/5122', 'text': 'Andrew Adams'},
                                  {'@pid': '49/5373', 'text': 'Matthew Footer'},
                                  {'@pid': 'h/MarkHorowitz',
                                   'text': 'Mark Horowitz'}]},
           'doi': '10.1145/1141911.1141976',
           'ee': 'https://doi.org/10.1145/1141911.1141976',
           'key': 'journals/tog/LevoyNAFH06',
           'number': '3',
           'pages': '924-934',
           'title': 'Light field microscopy.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/tog/LevoyNAFH06',
           'venue': 'ACM Trans. Graph.',
           'volume': '25',
           'year': '2006'},
  'url': 'URL#4311610'},
 {'@id': '4316314',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '41/5875', 'text': 'Bee Yan Hiew'},
                                  {'@pid': 't/AndrewTeohBengJin',
                                   'text': 'Andrew Teoh Beng Jin'},
                                  {'@pid': 'n/DavidChekLingNgo',
                                   'text': 'David Ngo Chek Ling'}]},
           'doi': '10.1109/CGIV.2006.27',
           'ee': 'https://doi.org/10.1109/CGIV.2006.27',
           'key': 'conf/IEEEcgiv/HiewJL06',
           'pages': '182-189',
           'title': 'Automatic Digital Camera Based Fingerprint Image '
                    'Preprocessing.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/IEEEcgiv/HiewJL06',
           'venue': 'CGIV',
           'year': '2006'},
  'url': 'URL#4316314'},
 {'@id': '4316346',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '77/457',
                                   'text': 'Michael Goh Kah Ong'},
                                  {'@pid': '07/2949', 'text': 'Tee Connie'},
                                  {'@pid': 't/AndrewTeohBengJin',
                                   'text': 'Andrew Teoh Beng Jin'},
                                  {'@pid': 'n/DavidChekLingNgo',
                                   'text': 'David Ngo Chek Ling'}]},
           'doi': '10.1109/CGIV.2006.7',
           'ee': 'https://doi.org/10.1109/CGIV.2006.7',
           'key': 'conf/IEEEcgiv/OngCJL06',
           'pages': '168-172',
           'title': 'A Fast Palm Print Verification System.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/IEEEcgiv/OngCJL06',
           'venue': 'CGIV',
           'year': '2006'},
  'url': 'URL#4316346'},
 {'@id': '4326898',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '23/5811',
                                   'text': 'Andrew A. Reeves'},
                                  {'@pid': '10/4581', 'text': 'J. W. P. Ng'},
                                  {'@pid': '44/377', 'text': 'S. J. Brown'},
                                  {'@pid': '28/2479',
                                   'text': 'Nigel M. Barnes'}]},
           'doi': '10.1109/BSN.2006.44',
           'ee': 'https://doi.org/10.1109/BSN.2006.44',
           'key': 'conf/bsn/ReevesNBB06',
           'pages': '117-122',
           'title': 'Remotely Supporting Care Provision for Older Adults.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/bsn/ReevesNBB06',
           'venue': 'BSN',
           'year': '2006'},
  'url': 'URL#4326898'},
 {'@id': '4356138',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '41/5875', 'text': 'Bee Yan Hiew'},
                                  {'@pid': 't/AndrewTeohBengJin',
                                   'text': 'Andrew Beng Jin Teoh'},
                                  {'@pid': 'n/DavidChekLingNgo',
                                   'text': 'David Chek Ling Ngo'}]},
           'doi': '10.1109/ICARCV.2006.345189',
           'ee': 'https://doi.org/10.1109/ICARCV.2006.345189',
           'key': 'conf/icarcv/HiewTN06',
           'pages': '1-6',
           'title': 'Preprocessing of Fingerprint Images Captured with a '
                    'Digital Camera.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icarcv/HiewTN06',
           'venue': 'ICARCV',
           'year': '2006'},
  'url': 'URL#4356138'},
 {'@id': '4356336',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': 't/AndrewTeohBengJin',
                                   'text': 'Andrew Beng Jin Teoh'},
                                  {'@pid': 'n/DavidChekLingNgo',
                                   'text': 'David Chek Ling Ngo'}]},
           'doi': '10.1109/ICARCV.2006.345404',
           'ee': 'https://doi.org/10.1109/ICARCV.2006.345404',
           'key': 'conf/icarcv/TeohN06',
           'pages': '1-5',
           'title': 'Biophasor - Token Supplemented Cancellable Biometrics.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icarcv/TeohN06',
           'venue': 'ICARCV',
           'year': '2006'},
  'url': 'URL#4356336'},
 {'@id': '4358373',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '72/217', 'text': 'Siew Chin Chong'},
                                  {'@pid': 't/AndrewTeohBengJin',
                                   'text': 'Andrew Teoh Beng Jin'},
                                  {'@pid': 'n/DavidChekLingNgo',
                                   'text': 'David Ngo Chek Ling'}]},
           'doi': '10.1007/11608288_51',
           'ee': 'https://doi.org/10.1007/11608288_51',
           'key': 'conf/icb/ChongJL06',
           'pages': '382-388',
           'title': 'Iris Authentication Using Privatized Advanced Correlation '
                    'Filter.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icb/ChongJL06',
           'venue': 'ICB',
           'year': '2006'},
  'url': 'URL#4358373'},
 {'@id': '4358447',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '02/6388', 'text': 'Wai Kuan Yip'},
                                  {'@pid': '26/6671', 'text': 'Alwyn Goh'},
                                  {'@pid': 'n/DavidChekLingNgo',
                                   'text': 'David Ngo Chek Ling'},
                                  {'@pid': 't/AndrewTeohBengJin',
                                   'text': 'Andrew Teoh Beng Jin'}]},
           'doi': '10.1007/11608288_68',
           'ee': 'https://doi.org/10.1007/11608288_68',
           'key': 'conf/icb/YipGNT06',
           'pages': '509-515',
           'title': 'Generation of Replaceable Cryptographic Keys from Dynamic '
                    'Handwritten Signatures.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icb/YipGNT06',
           'venue': 'ICB',
           'year': '2006'},
  'url': 'URL#4358447'},
 {'@id': '4375218',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '58/6491', 'text': 'Sin Chun Ng'},
                                  {'@pid': '45/4687', 'text': 'Shu Hung Leung'},
                                  {'@pid': '30/4400', 'text': 'Andrew Luk'},
                                  {'@pid': '55/245', 'text': 'Yunfeng Wu'}]},
           'doi': '10.1109/IJCNN.2006.247381',
           'ee': 'https://doi.org/10.1109/IJCNN.2006.247381',
           'key': 'conf/ijcnn/NgLLW06',
           'pages': '3672-3678',
           'title': 'Convergence Analysis of Generalized Back-propagation '
                    'Algorithm with Modified Gradient Function.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/ijcnn/NgLLW06',
           'venue': 'IJCNN',
           'year': '2006'},
  'url': 'URL#4375218'},
 {'@id': '4380177',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '89/4514',
                                   'text': 'Sayan D. Pathak'},
                                  {'@pid': '80/5238',
                                   'text': 'Christopher Lau'},
                                  {'@pid': '01/678', 'text': 'Lydia Ng'},
                                  {'@pid': '47/5652', 'text': 'Leonard Kuan'},
                                  {'@pid': '80/3626', 'text': 'Andrew Sodt'},
                                  {'@pid': '43/4849', 'text': 'Reena Kawal'},
                                  {'@pid': '94/4937',
                                   'text': 'Michael Hawrylycz'}]},
           'doi': '10.1109/ISBI.2006.1625154',
           'ee': 'https://doi.org/10.1109/ISBI.2006.1625154',
           'key': 'conf/isbi/PathakLLNKSKH06',
           'pages': '1260-1263',
           'title': 'Mouse brain gene expression analysis using model based '
                    'clustering.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/isbi/PathakLLNKSKH06',
           'venue': 'ISBI',
           'year': '2006'},
  'url': 'URL#4380177'},
 {'@id': '4382868',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '59/3439', 'text': 'Thian Song Ong'},
                                  {'@pid': 't/AndrewTeohBengJin',
                                   'text': 'Andrew Teoh Beng Jin'},
                                  {'@pid': 'n/DavidChekLingNgo',
                                   'text': 'David Ngo Chek Ling'}]},
           'doi': '10.1007/11760146_124',
           'ee': 'https://doi.org/10.1007/11760146_124',
           'key': 'conf/isi/SongTN06',
           'pages': '764-765',
           'title': 'A Novel Key Release Scheme from Biometrics.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/isi/SongTN06',
           'venue': 'ISI',
           'year': '2006'},
  'url': 'URL#4382868'},
 {'@id': '4445145',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '72/217', 'text': 'Chong Siew Chin'},
                                  {'@pid': 't/AndrewTeohBengJin',
                                   'text': 'Andrew Teoh Beng Jin'},
                                  {'@pid': 'n/DavidChekLingNgo',
                                   'text': 'David Ngo Chek Ling'}]},
           'doi': '10.1587/ELEX.2.349',
           'ee': 'https://doi.org/10.1587/elex.2.349',
           'key': 'journals/ieiceee/ChinJL05',
           'number': '11',
           'pages': '349-355',
           'title': 'Tokenised discretisation in iris verification.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/ieiceee/ChinJL05',
           'venue': 'IEICE Electron. Express',
           'volume': '2',
           'year': '2005'},
  'url': 'URL#4445145'},
 {'@id': '4445197',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '42/2141', 'text': 'Ying-Han Pang'},
                                  {'@pid': 't/AndrewTeohBengJin',
                                   'text': 'Andrew Teoh Beng Jin'},
                                  {'@pid': 'n/DavidChekLingNgo',
                                   'text': 'David Ngo Chek Ling'}]},
           'doi': '10.1587/ELEX.2.70',
           'ee': 'https://doi.org/10.1587/elex.2.70',
           'key': 'journals/ieiceee/PangJL05',
           'number': '3',
           'pages': '70-75',
           'title': 'Enhanced pseudo Zernike moments in face recognition.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/ieiceee/PangJL05',
           'venue': 'IEICE Electron. Express',
           'volume': '2',
           'year': '2005'},
  'url': 'URL#4445197'},
 {'@id': '4445234',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '82/6420',
                                   'text': 'Chong Tze Yuang'},
                                  {'@pid': 't/AndrewTeohBengJin',
                                   'text': 'Andrew Teoh Beng Jin'},
                                  {'@pid': 'n/DavidChekLingNgo',
                                   'text': 'David Ngo Chek Ling'},
                                  {'@pid': '77/457',
                                   'text': 'Michael Goh Kah Ong'}]},
           'doi': '10.1587/ELEX.2.226',
           'ee': 'https://doi.org/10.1587/elex.2.226',
           'key': 'journals/ieiceee/YuangJLO05',
           'number': '7',
           'pages': '226-231',
           'title': 'Multi-space random mapping for speaker identification.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/ieiceee/YuangJLO05',
           'venue': 'IEICE Electron. Express',
           'volume': '2',
           'year': '2005'},
  'url': 'URL#4445234'},
 {'@id': '4452320',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '07/2949', 'text': 'Tee Connie'},
                                  {'@pid': 't/AndrewTeohBengJin',
                                   'text': 'Andrew Teoh Beng Jin'},
                                  {'@pid': '77/457',
                                   'text': 'Michael Goh Kah Ong'},
                                  {'@pid': 'n/DavidChekLingNgo',
                                   'text': 'David Ngo Chek Ling'}]},
           'doi': '10.1016/J.IPL.2004.09.014',
           'ee': 'https://doi.org/10.1016/j.ipl.2004.09.014',
           'key': 'journals/ipl/ConnieJOL05',
           'number': '1',
           'pages': '1-5',
           'title': 'PalmHashing - a novel approach for cancelable biometrics.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/ipl/ConnieJOL05',
           'venue': 'Inf. Process. Lett.',
           'volume': '93',
           'year': '2005'},
  'url': 'URL#4452320'},
 {'@id': '4453584',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '07/2949', 'text': 'Tee Connie'},
                                  {'@pid': 't/AndrewTeohBengJin',
                                   'text': 'Andrew Teoh Beng Jin'},
                                  {'@pid': '77/457',
                                   'text': 'Michael Goh Kah Ong'},
                                  {'@pid': 'n/DavidChekLingNgo',
                                   'text': 'David Ngo Chek Ling'}]},
           'doi': '10.1016/J.IMAVIS.2005.01.002',
           'ee': 'https://doi.org/10.1016/j.imavis.2005.01.002',
           'key': 'journals/ivc/ConnieJOL05',
           'number': '5',
           'pages': '501-515',
           'title': 'An automated palmprint recognition system.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/ivc/ConnieJOL05',
           'venue': 'Image Vis. Comput.',
           'volume': '23',
           'year': '2005'},
  'url': 'URL#4453584'},
 {'@id': '4456533',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': 'n/DavidChekLingNgo',
                                   'text': 'David Chek Ling Ngo'},
                                  {'@pid': '26/6671', 'text': 'Alwyn Goh'},
                                  {'@pid': 't/AndrewTeohBengJin',
                                   'text': 'Andrew Beng Jin Teoh'}]},
           'doi': '10.1117/1.2135321',
           'ee': 'https://doi.org/10.1117/1.2135321',
           'key': 'journals/jei/NgoGT05',
           'number': '4',
           'pages': '043016',
           'title': 'Recognition using robust bit extraction.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/jei/NgoGT05',
           'venue': 'J. Electronic Imaging',
           'volume': '14',
           'year': '2005'},
  'url': 'URL#4456533'},
 {'@id': '4466938',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': 't/AndrewTeohBengJin',
                                   'text': 'Andrew Teoh Beng Jin'},
                                  {'@pid': 'n/DavidChekLingNgo',
                                   'text': 'David Ngo Chek Ling'}]},
           'doi': '10.1016/J.PATREC.2004.11.021',
           'ee': 'https://doi.org/10.1016/j.patrec.2004.11.021',
           'key': 'journals/prl/JinL05',
           'number': '10',
           'pages': '1454-1460',
           'title': 'Cancellable biometerics featuring with tokenised random '
                    'number.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/prl/JinL05',
           'venue': 'Pattern Recognit. Lett.',
           'volume': '26',
           'year': '2005'},
  'url': 'URL#4466938'},
 {'@id': '4489567',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '42/2141', 'text': 'Ying-Han Pang'},
                                  {'@pid': 't/AndrewTeohBengJin',
                                   'text': 'Andrew Teoh Beng Jin'},
                                  {'@pid': 'n/DavidChekLingNgo',
                                   'text': 'David Ngo Chek Ling'}]},
           'doi': '10.1007/11589990_173',
           'ee': 'https://doi.org/10.1007/11589990_173',
           'key': 'conf/ausai/PangJL05',
           'pages': '1217-1220',
           'title': 'A Robust Face Recognition System.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/ausai/PangJL05',
           'venue': 'Australian Conference on Artificial Intelligence',
           'year': '2005'},
  'url': 'URL#4489567'},
 {'@id': '4489657',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '02/6388', 'text': 'Wai Kuan Yip'},
                                  {'@pid': '26/6671', 'text': 'Alwyn Goh'},
                                  {'@pid': 'n/DavidChekLingNgo',
                                   'text': 'David Ngo Chek Ling'},
                                  {'@pid': 't/AndrewTeohBengJin',
                                   'text': 'Andrew Teoh Beng Jin'}]},
           'doi': '10.1109/AUTOID.2005.17',
           'ee': 'https://doi.org/10.1109/AUTOID.2005.17',
           'key': 'conf/autoid/KuanGNT05',
           'pages': '27-32',
           'title': 'Cryptographic Keys from Dynamic Hand-Signatures with '
                    'Biometric Secrecy Preservation and Replaceability.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/autoid/KuanGNT05',
           'venue': 'AutoID',
           'year': '2005'},
  'url': 'URL#4489657'},
 {'@id': '4495703',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '42/2141', 'text': 'Ying-Han Pang'},
                                  {'@pid': 't/AndrewTeohBengJin',
                                   'text': 'Andrew Teoh Beng Jin'},
                                  {'@pid': 'n/DavidChekLingNgo',
                                   'text': 'David Ngo Chek Ling'}]},
           'doi': '10.1007/11596981_115',
           'ee': 'https://doi.org/10.1007/11596981_115',
           'key': 'conf/cis/PangJL05',
           'pages': '788-795',
           'title': 'Binarized Revocable Biometrics in Face Recognition.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/cis/PangJL05',
           'venue': 'CIS',
           'year': '2005'},
  'url': 'URL#4495703'},
 {'@id': '4514547',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': 'c/YvonneCoady',
                                   'text': 'Yvonne Coady'},
                                  {'@pid': '83/6032', 'text': 'Russ Cox'},
                                  {'@pid': '71/1040',
                                   'text': 'John DeTreville'},
                                  {'@pid': 'd/PDruschel',
                                   'text': 'Peter Druschel'},
                                  {'@pid': '66/1837',
                                   'text': 'Joseph Hellerstein'},
                                  {'@pid': 'h/AndrewHume',
                                   'text': 'Andrew Hume'},
                                  {'@pid': 'k/KimberlyKeeton',
                                   'text': 'Kimberly Keeton'},
                                  {'@pid': '47/3996', 'text': 'Thu Nguyen'},
                                  {'@pid': 's/ChristopherSmall',
                                   'text': 'Christopher Small'},
                                  {'@pid': '44/2654', 'text': 'Lex Stein'},
                                  {'@pid': '70/5879',
                                   'text': 'Andrew Warfield'}]},
           'ee': 'http://www.usenix.org/events/hotos05/final_papers/full_papers/green_team/green.pdf',
           'key': 'conf/hotos/CoadyCDDHHKNSSW05',
           'title': 'Falling Off the Cliff - When Systems Go Nonlinear.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/hotos/CoadyCDDHHKNSSW05',
           'venue': 'HotOS',
           'year': '2005'},
  'url': 'URL#4514547'},
 {'@id': '4515431',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '38/2029',
                                   'text': 'Eimad Eldin Abusham'},
                                  {'@pid': 'n/DavidChekLingNgo',
                                   'text': 'David Ngo Chek Ling'},
                                  {'@pid': 't/AndrewTeohBengJin',
                                   'text': 'Andrew Teoh Beng Jin'}]},
           'key': 'conf/iasse/AbushamNT05',
           'pages': '78-82',
           'title': 'Comparing the Performance of Principal Component Analysis '
                    'and RBF Network for Face Recognition using Locally Linear '
                    'Embedding.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/iasse/AbushamNT05',
           'venue': 'IASSE',
           'year': '2005'},
  'url': 'URL#4515431'},
 {'@id': '4517181',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '38/2029',
                                   'text': 'Eimad Eldin Abusham'},
                                  {'@pid': 'n/DavidChekLingNgo',
                                   'text': 'David Ngo Chek Ling'},
                                  {'@pid': 't/AndrewTeohBengJin',
                                   'text': 'Andrew Teoh Beng Jin'}]},
           'doi': '10.1007/11552499_37',
           'ee': 'https://doi.org/10.1007/11552499_37',
           'key': 'conf/icapr/AbushamLJ05',
           'pages': '326-333',
           'title': 'Fusion of Locally Linear Embedding and Principal '
                    'Component Analysis for Face Recognition (FLLEPCA).',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icapr/AbushamLJ05',
           'venue': 'ICAPR',
           'year': '2005'},
  'url': 'URL#4517181'},
 {'@id': '4519371',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '76/1250', 'text': 'Kah Heng Ng'},
                                  {'@pid': '26/2244',
                                   'text': 'Eustace K. Tameh'},
                                  {'@pid': '50/6238',
                                   'text': 'Andrew R. Nix'}]},
           'doi': '10.1109/ICC.2005.1494721',
           'ee': 'https://doi.org/10.1109/ICC.2005.1494721',
           'key': 'conf/icc/NgTN05',
           'pages': '2168-2172',
           'title': 'A new hybrid geometrical optics and radiance based '
                    'scattering model for ray tracing applications.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icc/NgTN05',
           'venue': 'ICC',
           'year': '2005'},
  'url': 'URL#4519371'},
 {'@id': '4550929',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '65/4628', 'text': 'Han Foon Neo'},
                                  {'@pid': 't/AndrewTeohBengJin',
                                   'text': 'Andrew Beng Jin Teoh'},
                                  {'@pid': 'n/DavidChekLingNgo',
                                   'text': 'David Chek Ling Ngo'}]},
           'ee': 'http://b2.cvl.iis.u-tokyo.ac.jp/mva/proceedings/CommemorativeDVD/2005/papers/2005502.pdf',
           'key': 'conf/mva/NeoTN05',
           'pages': '502-505',
           'title': 'A Novel Spatially Confined Non-Negative Matrix '
                    'Factorization for Face Recognition.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/mva/NeoTN05',
           'venue': 'MVA',
           'year': '2005'},
  'url': 'URL#4550929'},
 {'@id': '4567723',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '76/1250', 'text': 'Kah Heng Ng'},
                                  {'@pid': '26/2244',
                                   'text': 'Eustace K. Tameh'},
                                  {'@pid': '50/6238',
                                   'text': 'Andrew R. Nix'}]},
           'doi': '10.1109/WCNC.2005.1424633',
           'ee': 'https://doi.org/10.1109/WCNC.2005.1424633',
           'key': 'conf/wcnc/NgTN05',
           'pages': '933-937',
           'title': 'Modelling and performance prediction for multiple antenna '
                    'systems using enhanced ray tracing.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/wcnc/NgTN05',
           'venue': 'WCNC',
           'year': '2005'},
  'url': 'URL#4567723'},
 {'@id': '4588758',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': 't/AndrewTeohBengJin',
                                   'text': 'Andrew Teoh Beng Jin'},
                                  {'@pid': 'n/DavidChekLingNgo',
                                   'text': 'David Ngo Chek Ling'},
                                  {'@pid': '26/6671', 'text': 'Alwyn Goh'}]},
           'doi': '10.1016/J.COSE.2004.06.002',
           'ee': 'https://doi.org/10.1016/j.cose.2004.06.002',
           'key': 'journals/compsec/JinLG04',
           'number': '7',
           'pages': '606-614',
           'title': 'Personalised cryptographic key generation based on '
                    'FaceHashing.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/compsec/JinLG04',
           'venue': 'Comput. Secur.',
           'volume': '23',
           'year': '2004'},
  'url': 'URL#4588758'},
 {'@id': '4596595',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '42/2141', 'text': 'Ying-Han Pang'},
                                  {'@pid': 't/AndrewTeohBengJin',
                                   'text': 'Andrew Teoh Beng Jin'},
                                  {'@pid': 'n/DavidChekLingNgo',
                                   'text': 'David Ngo Chek Ling'}]},
           'ee': 'http://joi.jlc.jst.go.jp/JST.JSTAGE/elex/1.275',
           'key': 'journals/ieiceee/PangJL04',
           'number': '10',
           'pages': '275-280',
           'title': 'Face authentication system using pseudo Zernike moments '
                    'on wavelet subband.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/ieiceee/PangJL04',
           'venue': 'IEICE Electron. Express',
           'volume': '1',
           'year': '2004'},
  'url': 'URL#4596595'},
 {'@id': '4602970',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': 't/AndrewTeohBengJin',
                                   'text': 'Andrew Teoh Beng Jin'},
                                  {'@pid': 'n/DavidChekLingNgo',
                                   'text': 'David Ngo Chek Ling'},
                                  {'@pid': '59/3439',
                                   'text': 'Thian Song Ong'}]},
           'doi': '10.1016/J.IMAVIS.2003.12.002',
           'ee': 'https://doi.org/10.1016/j.imavis.2003.12.002',
           'key': 'journals/ivc/JinLS04',
           'number': '6',
           'pages': '503-513',
           'title': 'An efficient fingerprint verification system using '
                    'integrated wavelet and Fourier-Mellin invariant '
                    'transform.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/ivc/JinLS04',
           'venue': 'Image Vis. Comput.',
           'volume': '22',
           'year': '2004'},
  'url': 'URL#4602970'},
 {'@id': '4613559',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '07/2949', 'text': 'Tee Connie'},
                                  {'@pid': 't/AndrewTeohBengJin',
                                   'text': 'Andrew Teoh Beng Jin'},
                                  {'@pid': '77/457',
                                   'text': 'Michael Goh Kah Ong'},
                                  {'@pid': 'n/DavidChekLingNgo',
                                   'text': 'David Ngo Chek Ling'}]},
           'doi': '10.1007/S10044-004-0223-4',
           'ee': 'https://doi.org/10.1007/s10044-004-0223-4',
           'key': 'journals/paa/ConnieTGN04',
           'number': '3',
           'pages': '255-268',
           'title': 'PalmHashing - a novel approach for dual-factor '
                    'authentication.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/paa/ConnieTGN04',
           'venue': 'Pattern Anal. Appl.',
           'volume': '7',
           'year': '2004'},
  'url': 'URL#4613559'},
 {'@id': '4614607',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': 't/AndrewTeohBengJin',
                                   'text': 'Andrew Teoh Beng Jin'},
                                  {'@pid': 'n/DavidChekLingNgo',
                                   'text': 'David Ngo Chek Ling'},
                                  {'@pid': '26/6671', 'text': 'Alwyn Goh'}]},
           'doi': '10.1016/J.PATCOG.2004.04.011',
           'ee': 'https://doi.org/10.1016/j.patcog.2004.04.011',
           'key': 'journals/pr/JinLG04',
           'number': '11',
           'pages': '2245-2255',
           'title': 'Biohashing - two factor authentication featuring '
                    'fingerprint data and tokenised random number.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/pr/JinLG04',
           'venue': 'Pattern Recognit.',
           'volume': '37',
           'year': '2004'},
  'url': 'URL#4614607'},
 {'@id': '4628222',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '65/4628', 'text': 'Han Foon Neo'},
                                  {'@pid': '42/2141', 'text': 'Ying-Han Pang'},
                                  {'@pid': 't/AndrewTeohBengJin',
                                   'text': 'Andrew Teoh Beng Jin'},
                                  {'@pid': 'n/DavidChekLingNgo',
                                   'text': 'David Ngo Chek Ling'}]},
           'doi': '10.1109/CGIV.2004.1323962',
           'ee': 'https://doi.org/10.1109/CGIV.2004.1323962',
           'key': 'conf/IEEEcgiv/FoonPJL04',
           'pages': '65-69',
           'title': 'An Efficient Method for Human Face Recognition Using '
                    'Wavelet Transform and Zernike Moments.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/IEEEcgiv/FoonPJL04',
           'venue': 'CGIV',
           'year': '2004'},
  'url': 'URL#4628222'},
 {'@id': '4633418',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '65/4628', 'text': 'Han Foon Neo'},
                                  {'@pid': 't/AndrewTeohBengJin',
                                   'text': 'Andrew Teoh Beng Jin'},
                                  {'@pid': 'n/DavidChekLingNgo',
                                   'text': 'David Ngo Chek Ling'}]},
           'doi': '10.1007/978-3-540-30549-1_6',
           'ee': 'https://doi.org/10.1007/978-3-540-30549-1_6',
           'key': 'conf/ausai/FoonJL04',
           'pages': '64-73',
           'title': 'Bio-discretization - Biometrics Authentication Featuring '
                    'Face Data and Tokenised Random Number.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/ausai/FoonJL04',
           'venue': 'Australian Conference on Artificial Intelligence',
           'year': '2004'},
  'url': 'URL#4633418'},
 {'@id': '4633419',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '65/4628', 'text': 'Han Foon Neo'},
                                  {'@pid': 't/AndrewTeohBengJin',
                                   'text': 'Andrew Teoh Beng Jin'},
                                  {'@pid': 'n/DavidChekLingNgo',
                                   'text': 'David Ngo Chek Ling'}]},
           'doi': '10.1007/978-3-540-30549-1_18',
           'ee': 'https://doi.org/10.1007/978-3-540-30549-1_18',
           'key': 'conf/ausai/FoonJL04a',
           'pages': '192-202',
           'title': 'Face Recognition Using Wavelet Transform and Non-negative '
                    'Matrix Factorization.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/ausai/FoonJL04a',
           'venue': 'Australian Conference on Artificial Intelligence',
           'year': '2004'},
  'url': 'URL#4633419'},
 {'@id': '4633473',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '42/2141', 'text': 'Ying-Han Pang'},
                                  {'@pid': 't/AndrewTeohBengJin',
                                   'text': 'Andrew Teoh Beng Jin'},
                                  {'@pid': 'n/DavidChekLingNgo',
                                   'text': 'David Ngo Chek Ling'}]},
           'doi': '10.1007/978-3-540-30549-1_21',
           'ee': 'https://doi.org/10.1007/978-3-540-30549-1_21',
           'key': 'conf/ausai/PangJL04',
           'pages': '227-236',
           'title': 'Personal Authenticator on the Basis of Two-Factors - '
                    'Palmprint Features and Tokenized Random Data.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/ausai/PangJL04',
           'venue': 'Australian Conference on Artificial Intelligence',
           'year': '2004'},
  'url': 'URL#4633473'},
 {'@id': '4657762',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': 'n/DavidChekLingNgo',
                                   'text': 'David Ngo Chek Ling'},
                                  {'@pid': 't/AndrewTeohBengJin',
                                   'text': 'Andrew Teoh Beng Jin'},
                                  {'@pid': '26/6671', 'text': 'Alwyn Goh'}]},
           'doi': '10.1007/978-3-540-25948-0_27',
           'ee': 'https://doi.org/10.1007/978-3-540-25948-0_27',
           'key': 'conf/icba/NgoTG04',
           'pages': '195-199',
           'title': 'Eigenspace-Based Face Hashing.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icba/NgoTG04',
           'venue': 'ICBA',
           'year': '2004'},
  'url': 'URL#4657762'},
 {'@id': '4657782',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': 't/AndrewTeohBengJin',
                                   'text': 'Andrew Teoh Beng Jin'},
                                  {'@pid': 'n/DavidChekLingNgo',
                                   'text': 'David Ngo Chek Ling'},
                                  {'@pid': '26/6671', 'text': 'Alwyn Goh'}]},
           'doi': '10.1007/978-3-540-25948-0_17',
           'ee': 'https://doi.org/10.1007/978-3-540-25948-0_17',
           'key': 'conf/icba/TeohNG04',
           'pages': '117-123',
           'title': 'An Integrated Dual Factor Authenticator Based on the Face '
                    'Data and Tokenised Random Number.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icba/TeohNG04',
           'venue': 'ICBA',
           'year': '2004'},
  'url': 'URL#4657782'},
 {'@id': '4680093',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '76/1250', 'text': 'Kah Heng Ng'},
                                  {'@pid': '26/2244',
                                   'text': 'Eustace K. Tameh'},
                                  {'@pid': '50/6238',
                                   'text': 'Andrew R. Nix'}]},
           'doi': '10.1109/ISWCS.2004.1407285',
           'ee': 'https://doi.org/10.1109/ISWCS.2004.1407285',
           'key': 'conf/iswcs/NgTN04',
           'pages': '438-442',
           'title': 'An advanced multi-element microcellular ray tracing '
                    'model.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/iswcs/NgTN04',
           'venue': 'ISWCS',
           'year': '2004'},
  'url': 'URL#4680093'},
 {'@id': '4705722',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '42/2141', 'text': 'Ying-Han Pang'},
                                  {'@pid': 't/AndrewTeohBengJin',
                                   'text': 'Andrew Teoh Beng Jin'},
                                  {'@pid': 'n/DavidChekLingNgo',
                                   'text': 'David Ngo Chek Ling'},
                                  {'@pid': '43/5647', 'text': 'Fu San Hiew'}]},
           'key': 'conf/wscg/PangJLH04',
           'pages': '325-332',
           'title': 'Palmprint Verification with Moments.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/wscg/PangJLH04',
           'venue': 'WSCG',
           'year': '2004'},
  'url': 'URL#4705722'},
 {'@id': '4730873',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '150/0285', 'text': 'Gail Hohner'},
                                  {'@pid': '150/0244', 'text': 'John Rich'},
                                  {'@pid': '150/0221', 'text': 'Ed Ng'},
                                  {'@pid': '150/0263', 'text': 'Grant Reid'},
                                  {'@pid': '68/5444',
                                   'text': 'Andrew J. Davenport'},
                                  {'@pid': '05/4351',
                                   'text': 'Jayant R. Kalagnanam'},
                                  {'@pid': '57/107', 'text': 'Ho Soo Lee'},
                                  {'@pid': '30/6903', 'text': 'Chae An'}]},
           'doi': '10.1287/INTE.33.1.23.12717',
           'ee': 'https://doi.org/10.1287/inte.33.1.23.12717',
           'key': 'journals/interfaces/HohnerRNRDKLA03',
           'number': '1',
           'pages': '23-35',
           'title': 'Special Issue - 2002 Franz Edelman Award for Achievement '
                    'in Operations Research and the Management Sciences - '
                    'Combinatorial and Quantity-Discount Procurement Auctions '
                    'Benefit Mars, Incorporated and Its Suppliers.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/interfaces/HohnerRNRDKLA03',
           'venue': 'Interfaces',
           'volume': '33',
           'year': '2003'},
  'url': 'URL#4730873'},
 {'@id': '4760201',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': 't/AndrewTeohBengJin',
                                   'text': 'Andrew Teoh Beng Jin'},
                                  {'@pid': '59/3439', 'text': 'Thian Song Ong'},
                                  {'@pid': 'n/DavidChekLingNgo',
                                   'text': 'David Ngo Chek Ling'},
                                  {'@pid': '79/5757', 'text': 'Y. W. Sek'}]},
           'doi': '10.1007/978-3-540-24581-0_54',
           'ee': 'https://doi.org/10.1007/978-3-540-24581-0_54',
           'key': 'conf/ausai/AndrewODS03',
           'pages': '633-640',
           'title': 'Automatic Fingerprint Center Point Determination by Using '
                    'Modified Directional Field and Morphology.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/ausai/AndrewODS03',
           'venue': 'Australian Conference on Artificial Intelligence',
           'year': '2003'},
  'url': 'URL#4760201'},
 {'@id': '4760253',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '59/3439', 'text': 'Thian Song Ong'},
                                  {'@pid': 't/AndrewTeohBengJin',
                                   'text': 'Andrew Teoh Beng Jin'},
                                  {'@pid': 'n/DavidChekLingNgo',
                                   'text': 'David Ngo Chek Ling'},
                                  {'@pid': '79/5757', 'text': 'Y. W. Sek'}]},
           'doi': '10.1007/978-3-540-24581-0_53',
           'ee': 'https://doi.org/10.1007/978-3-540-24581-0_53',
           'key': 'conf/ausai/OngADS03',
           'pages': '624-633',
           'title': 'Fingerprint Images Segmentation Using Two Stages Coarse '
                    'to Fine Discrimination Technique.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/ausai/OngADS03',
           'venue': 'Australian Conference on Artificial Intelligence',
           'year': '2003'},
  'url': 'URL#4760253'},
 {'@id': '4770854',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': 'a/JuanCarlosAugusto',
                                   'text': 'Juan Carlos Augusto'},
                                  {'@pid': '13/5457',
                                   'text': 'Carla Ferreira 0001'},
                                  {'@pid': '63/6929',
                                   'text': 'Andrew M. Gravell'},
                                  {'@pid': 'l/MLeuschel',
                                   'text': 'Michael Leuschel'},
                                  {'@pid': '21/2563',
                                   'text': 'Karen M. Y. Ng'}]},
           'doi': '10.1007/978-3-540-39597-3_3',
           'ee': 'https://doi.org/10.1007/978-3-540-39597-3_3',
           'key': 'conf/er/AugustoFGLN03',
           'pages': '17-28',
           'title': 'The Benefits of Rapid Modelling for E-business System '
                    'Development.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/er/AugustoFGLN03',
           'venue': 'ER',
           'year': '2003'},
  'url': 'URL#4770854'},
 {'@id': '4819000',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': 's/RobertStevens',
                                   'text': 'Robert Stevens 0001'},
                                  {'@pid': 'g/CaroleAGoble',
                                   'text': 'Carole A. Goble'},
                                  {'@pid': 'p/NWPaton',
                                   'text': 'Norman W. Paton'},
                                  {'@pid': '78/5866', 'text': 'Sean Bechhofer'},
                                  {'@pid': '85/6283', 'text': 'Gary Ng'},
                                  {'@pid': '11/5548',
                                   'text': 'Patricia G. Baker'},
                                  {'@pid': '13/3147', 'text': 'Andy Brass'}]},
           'doi': '10.1016/B978-155860829-0/50009-7',
           'ee': 'https://doi.org/10.1016/b978-155860829-0/50009-7',
           'key': 'books/el/03/0001GPBNBB03',
           'pages': '189-223',
           'title': 'Complex Query Formulation Over Diverse Information '
                    'Sources in TAMBIS.',
           'type': 'Parts in Books or Collections',
           'url': 'https://dblp.org/rec/books/el/03/0001GPBNBB03',
           'venue': 'Bioinformatics',
           'year': '2003'},
  'url': 'URL#4819000'},
 {'@id': '4870096',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '52/4949', 'text': 'Luc Séméria'},
                                  {'@pid': '82/2865', 'text': 'Renu Mehra'},
                                  {'@pid': '37/4197',
                                   'text': 'Barry M. Pangrle'},
                                  {'@pid': '42/1100',
                                   'text': 'Arjuna Ekanayake'},
                                  {'@pid': '55/544',
                                   'text': 'Andrew Seawright'},
                                  {'@pid': '54/7026', 'text': 'Daniel Ng'}]},
           'doi': '10.1145/513918.513951',
           'ee': 'https://doi.org/10.1145/513918.513951',
           'key': 'conf/dac/SemeriaMPESN02',
           'pages': '123-128',
           'title': 'RTL c-based methodology for designing and verifying a '
                    'multi-threaded processor.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/dac/SemeriaMPESN02',
           'venue': 'DAC',
           'year': '2002'},
  'url': 'URL#4870096'},
 {'@id': '4884762',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '02/3098',
                                   'text': 'Andrew E. J. Ng'},
                                  {'@pid': '53/4017',
                                   'text': 'John I. Sewell'}]},
           'doi': '10.1109/ICECS.2002.1045349',
           'ee': 'https://doi.org/10.1109/ICECS.2002.1045349',
           'key': 'conf/icecsys/NgS02',
           'pages': '125-128',
           'title': 'Log-domain allpass group-delay equaliser design with '
                    'XFILTER.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icecsys/NgS02',
           'venue': 'ICECS',
           'year': '2002'},
  'url': 'URL#4884762'},
 {'@id': '4895098',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '02/3098',
                                   'text': 'Andrew E. J. Ng'},
                                  {'@pid': '53/4017',
                                   'text': 'John I. Sewell'}]},
           'doi': '10.1109/ISCAS.2002.1010222',
           'ee': 'https://doi.org/10.1109/ISCAS.2002.1010222',
           'key': 'conf/iscas/NgS02',
           'pages': '309-312',
           'title': 'Direct noise analysis of log-domain filters.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/iscas/NgS02',
           'venue': 'ISCAS',
           'year': '2002'},
  'url': 'URL#4895098'},
 {'@id': '4929502',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': 'g/CaroleAGoble',
                                   'text': 'Carole A. Goble'},
                                  {'@pid': 's/RobertStevens',
                                   'text': 'Robert Stevens 0001'},
                                  {'@pid': '85/6283', 'text': 'Gary Ng'},
                                  {'@pid': '78/5866', 'text': 'Sean Bechhofer'},
                                  {'@pid': 'p/NWPaton',
                                   'text': 'Norman W. Paton'},
                                  {'@pid': '11/5548',
                                   'text': 'Patricia G. Baker'},
                                  {'@pid': '04/3746', 'text': 'Martin Peim'},
                                  {'@pid': '13/3147', 'text': 'Andy Brass'}]},
           'doi': '10.1147/SJ.402.0532',
           'ee': 'https://doi.org/10.1147/sj.402.0532',
           'key': 'journals/ibmsj/GobleSNBPBPB01',
           'number': '2',
           'pages': '532-551',
           'title': 'Transparent access to multiple bioinformatics information '
                    'sources.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/ibmsj/GobleSNBPBPB01',
           'venue': 'IBM Syst. J.',
           'volume': '40',
           'year': '2001'},
  'url': 'URL#4929502'},
 {'@id': '4980234',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '95/3679',
                                   'text': 'Emmanuel M. Drakakis'},
                                  {'@pid': '207/3333',
                                   'text': 'Alison J. Payne'},
                                  {'@pid': 't/ChristoferToumazou',
                                   'text': 'Christofer Toumazou'},
                                  {'@pid': '02/3098',
                                   'text': 'Andrew E. J. Ng'},
                                  {'@pid': '53/4017',
                                   'text': 'John I. Sewell'}]},
           'doi': '10.1109/ISCAS.2001.921808',
           'ee': 'https://doi.org/10.1109/ISCAS.2001.921808',
           'key': 'conf/iscas/DrakakisPTNS01',
           'pages': '141-144',
           'title': 'High-order lowpass and bandpass elliptic log-domain '
                    'ladder filters.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/iscas/DrakakisPTNS01',
           'venue': 'ISCAS',
           'year': '2001'},
  'url': 'URL#4980234'},
 {'@id': '4980676',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '02/3098',
                                   'text': 'Andrew E. J. Ng'},
                                  {'@pid': '53/4017', 'text': 'John I. Sewell'},
                                  {'@pid': '95/3679',
                                   'text': 'Emmanuel M. Drakakis'},
                                  {'@pid': '207/3333',
                                   'text': 'Alison J. Payne'},
                                  {'@pid': 't/ChristoferToumazou',
                                   'text': 'Chris Toumazou'}]},
           'doi': '10.1109/ISCAS.2001.921810',
           'ee': 'https://doi.org/10.1109/ISCAS.2001.921810',
           'key': 'conf/iscas/NgSDPT01',
           'pages': '149-152',
           'title': 'A unified matrix method for systematic synthesis of '
                    'log-domain ladder filters.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/iscas/NgSDPT01',
           'venue': 'ISCAS',
           'year': '2001'},
  'url': 'URL#4980676'},
 {'@id': '5004246',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': 's/RobertStevens',
                                   'text': 'Robert Stevens 0001'},
                                  {'@pid': '11/5548',
                                   'text': 'Patricia G. Baker'},
                                  {'@pid': '78/5866', 'text': 'Sean Bechhofer'},
                                  {'@pid': '85/6283', 'text': 'Gary Ng'},
                                  {'@pid': '23/2527', 'text': 'Alex Jacoby'},
                                  {'@pid': 'p/NWPaton',
                                   'text': 'Norman W. Paton'},
                                  {'@pid': 'g/CaroleAGoble',
                                   'text': 'Carole A. Goble'},
                                  {'@pid': '13/3147', 'text': 'Andy Brass'}]},
           'doi': '10.1093/BIOINFORMATICS/16.2.184',
           'ee': 'https://doi.org/10.1093/bioinformatics/16.2.184',
           'key': 'journals/bioinformatics/StevensBBNJPGB00',
           'number': '2',
           'pages': '184-186',
           'title': 'TAMBIS - Transparent Access to Multiple Bioinformatics '
                    'Information Sources.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/bioinformatics/StevensBBNJPGB00',
           'venue': 'Bioinform.',
           'volume': '16',
           'year': '2000'},
  'url': 'URL#5004246'},
 {'@id': '5051271',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '02/3098',
                                   'text': 'Andrew E. J. Ng'},
                                  {'@pid': '53/4017',
                                   'text': 'John I. Sewell'}]},
           'doi': '10.1109/ICECS.2000.912968',
           'ee': 'https://doi.org/10.1109/ICECS.2000.912968',
           'key': 'conf/icecsys/NgS00',
           'pages': '676-679',
           'title': 'Switched-current bilinear ladder group-delay equalisers.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icecsys/NgS00',
           'venue': 'ICECS',
           'year': '2000'},
  'url': 'URL#5051271'},
 {'@id': '5056846',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '58/6491', 'text': 'Sin Chun Ng'},
                                  {'@pid': '45/4687', 'text': 'Shu Hung Leung'},
                                  {'@pid': '30/4400', 'text': 'Andrew Luk'}]},
           'doi': '10.1109/IJCNN.2000.857834',
           'ee': 'https://doi.org/10.1109/IJCNN.2000.857834',
           'key': 'conf/ijcnn/NgLL00',
           'pages': '185-190',
           'title': 'A Weight Evolution Algorithm with Deterministic '
                    'Perturbation.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/ijcnn/NgLL00',
           'venue': 'IJCNN',
           'year': '2000'},
  'url': 'URL#5056846'},
 {'@id': '5068811',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '15/5132',
                                   'text': 'Xiaohuan Corina Wang'},
                                  {'@pid': '97/772', 'text': 'Jérôme Maillot'},
                                  {'@pid': 'f/EugeneFiume',
                                   'text': 'Eugene Fiume'},
                                  {'@pid': '55/3153',
                                   'text': 'Victor Ng-Thow-Hing'},
                                  {'@pid': '29/4482', 'text': 'Andrew Woo'},
                                  {'@pid': '75/1299',
                                   'text': 'Sanjay Bakshi'}]},
           'doi': '10.1007/978-3-7091-6303-0_23',
           'ee': 'https://doi.org/10.1007/978-3-7091-6303-0_23',
           'key': 'conf/rt/WangMFNWB00',
           'pages': '257-268',
           'title': 'Feature-based Displacement Mapping.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/rt/WangMFNWB00',
           'venue': 'Rendering Techniques',
           'year': '2000'},
  'url': 'URL#5068811'},
 {'@id': '5098776',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '58/6491', 'text': 'Sin Chun Ng'},
                                  {'@pid': '45/4687', 'text': 'Shu Hung Leung'},
                                  {'@pid': '30/4400', 'text': 'Andrew Luk'}]},
           'doi': '10.1023/A:1018611626332',
           'ee': 'https://doi.org/10.1023/A:1018611626332',
           'key': 'journals/npl/NgLL99',
           'number': '1',
           'pages': '13-23',
           'title': 'Fast Convergent Generalized Back-Propagation Algorithm '
                    'with Constant Learning Rate.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/npl/NgLL99',
           'venue': 'Neural Process. Lett.',
           'volume': '9',
           'year': '1999'},
  'url': 'URL#5098776'},
 {'@id': '5128919',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '58/6491', 'text': 'Sin Chun Ng'},
                                  {'@pid': '45/4687', 'text': 'Shu-Hung Leung'},
                                  {'@pid': '30/4400', 'text': 'Andrew Luk'}]},
           'doi': '10.1109/IJCNN.1999.830806',
           'ee': 'https://doi.org/10.1109/IJCNN.1999.830806',
           'key': 'conf/ijcnn/NgLL99',
           'pages': '4037-4042',
           'title': 'A hybrid algorithm of weight evolution and generalized '
                    'back-propagation for finding global minimum.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/ijcnn/NgLL99',
           'venue': 'IJCNN',
           'year': '1999'},
  'url': 'URL#5128919'},
 {'@id': '5132051',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '58/6491', 'text': 'Sin Chun Ng'},
                                  {'@pid': '45/4687', 'text': 'Shu Hung Leung'},
                                  {'@pid': '30/4400', 'text': 'Andrew Luk'}]},
           'doi': '10.1109/ISCAS.1999.777646',
           'ee': 'https://doi.org/10.1109/ISCAS.1999.777646',
           'key': 'conf/iscas/NgLL99',
           'pages': '612-615',
           'title': 'The generalized back-propagation algorithm with '
                    'convergence analysis.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/iscas/NgLL99',
           'venue': 'ISCAS',
           'year': '1999'},
  'url': 'URL#5132051'},
 {'@id': '5132052',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '02/3098',
                                   'text': 'Andrew E. J. Ng'},
                                  {'@pid': '53/4017',
                                   'text': 'John I. Sewell'}]},
           'doi': '10.1109/ISCAS.1999.780773',
           'ee': 'https://doi.org/10.1109/ISCAS.1999.780773',
           'key': 'conf/iscas/NgS99',
           'pages': '468-471',
           'title': 'Pseudo-N-path cells for switched-current signal '
                    'processing.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/iscas/NgS99',
           'venue': 'ISCAS',
           'year': '1999'},
  'url': 'URL#5132052'},
 {'@id': '5132053',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '02/3098',
                                   'text': 'Andrew E. J. Ng'},
                                  {'@pid': '53/4017',
                                   'text': 'John I. Sewell'}]},
           'doi': '10.1109/ISCAS.1999.780781',
           'ee': 'https://doi.org/10.1109/ISCAS.1999.780781',
           'key': 'conf/iscas/NgS99a',
           'pages': '484-487',
           'title': 'Bilinear transformed switched-current ladder '
                    'interpolators.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/iscas/NgS99a',
           'venue': 'ISCAS',
           'year': '1999'},
  'url': 'URL#5132053'},
 {'@id': '5142076',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': 's/RobertStevens',
                                   'text': 'Robert Stevens 0001'},
                                  {'@pid': 'p/NWPaton',
                                   'text': 'Norman W. Paton'},
                                  {'@pid': '11/5548',
                                   'text': 'Patricia G. Baker'},
                                  {'@pid': '85/6283', 'text': 'Gary Ng'},
                                  {'@pid': 'g/CaroleAGoble',
                                   'text': 'Carole A. Goble'},
                                  {'@pid': '78/5866', 'text': 'Sean Bechhofer'},
                                  {'@pid': '13/3147', 'text': 'Andy Brass'}]},
           'doi': '10.1109/SSDM.1999.787647',
           'ee': 'https://doi.org/10.1109/SSDM.1999.787647',
           'key': 'conf/ssdbm/StevensPBNGBB99',
           'pages': '280',
           'title': 'TAMBIS Online - A Bioinformatics Source Integration Tool.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/ssdbm/StevensPBNGBB99',
           'venue': 'SSDBM',
           'year': '1999'},
  'url': 'URL#5142076'},
 {'@id': '5162791',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '19/4351',
                                   'text': 'Johnny K. C. Ng'},
                                  {'@pid': '36/2935', 'text': 'W. H. Ip'},
                                  {'@pid': '59/1300', 'text': 'T. C. Lee'}]},
           'doi': '10.1023/A%3A1026409806874',
           'ee': 'https://doi.org/10.1023/A%3A1026409806874',
           'key': 'journals/jim/NgIL98',
           'number': '5',
           'pages': '385-399',
           'title': 'The development of an enterprise resources planning '
                    'system using a hierarchical design pyramid.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/jim/NgIL98',
           'venue': 'J. Intell. Manuf.',
           'volume': '9',
           'year': '1998'},
  'url': 'URL#5162791'},
 {'@id': '5189741',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '02/3098',
                                   'text': 'Andrew E. J. Ng'},
                                  {'@pid': '53/4017',
                                   'text': 'John I. Sewell'}]},
           'doi': '10.1109/ICECS.1998.814008',
           'ee': 'https://doi.org/10.1109/ICECS.1998.814008',
           'key': 'conf/icecsys/NgS98',
           'pages': '355-358',
           'title': 'Switched-current elliptic decimators based on '
                    'bilinear-transformed ladder structures.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icecsys/NgS98',
           'venue': 'ICECS',
           'year': '1998'},
  'url': 'URL#5189741'},
 {'@id': '5236381',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '94/360', 'text': 'Ina Ng'},
                                  {'@pid': '90/5766', 'text': 'Andrew Gill'},
                                  {'@pid': '50/3482', 'text': 'Ian Chia'},
                                  {'@pid': '08/1488', 'text': 'Mei-Leng Koh'},
                                  {'@pid': '10/1189', 'text': 'Chris Yeung'},
                                  {'@pid': '39/6118', 'text': 'Lih-Wee Chew'}]},
           'ee': 'http://www.aaai.org/Library/IAAI/1997/iaai97-188.php',
           'key': 'conf/aaai/NgGCKYC97',
           'pages': '913-918',
           'title': 'SunRay V - An Intelligent Container Trucking Operations '
                    'Management and Control System.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/aaai/NgGCKYC97',
           'venue': 'AAAI/IAAI',
           'year': '1997'},
  'url': 'URL#5236381'},
 {'@id': '5250920',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '58/6491', 'text': 'Sin Chun Ng'},
                                  {'@pid': '45/4687',
                                   'text': 'S. H. Leung 0001'},
                                  {'@pid': '30/4400', 'text': 'Andrew Luk'}]},
           'doi': '10.1109/ICNN.1997.616181',
           'ee': 'https://doi.org/10.1109/ICNN.1997.616181',
           'key': 'conf/icnn/NgLL97',
           'pages': '1093-1096',
           'title': 'Weight evolution algorithm with dynamic offset range.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icnn/NgLL97',
           'venue': 'ICNN',
           'year': '1997'},
  'url': 'URL#5250920'},
 {'@id': '5286295',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '58/6491', 'text': 'Sin Chun Ng'},
                                  {'@pid': '45/4687', 'text': 'Shu-Hung Leung'},
                                  {'@pid': '286/6710',
                                   'text': 'Chi Yuen Chung'},
                                  {'@pid': '30/4400', 'text': 'Andrew Luk'},
                                  {'@pid': 'l/WingHongLau',
                                   'text': 'Wing Hong Lau'}]},
           'doi': '10.1109/79.543974',
           'ee': 'https://doi.org/10.1109/79.543974',
           'key': 'journals/spm/NgLCLL96',
           'number': '6',
           'pages': '38-46',
           'title': 'The genetic search approach. A new learning algorithm for '
                    'adaptive IIR filtering.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/spm/NgLCLL96',
           'venue': 'IEEE Signal Process. Mag.',
           'volume': '13',
           'year': '1996'},
  'url': 'URL#5286295'},
 {'@id': '5301429',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '58/6491', 'text': 'Sin Chun Ng'},
                                  {'@pid': '45/4687', 'text': 'Shu Hung Leung'},
                                  {'@pid': '30/4400', 'text': 'Andrew Luk'}]},
           'doi': '10.1109/ICEC.1996.542692',
           'ee': 'https://doi.org/10.1109/ICEC.1996.542692',
           'key': 'conf/icec/NgLL96',
           'pages': '726-731',
           'title': 'Evolution of Connection Weights Combined with Local '
                    'Search for Multi-Layered Neural Network.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icec/NgLL96',
           'venue': 'International Conference on Evolutionary Computation',
           'year': '1996'},
  'url': 'URL#5301429'},
 {'@id': '5303527',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '58/6491', 'text': 'Sin Chun Ng'},
                                  {'@pid': '45/4687',
                                   'text': 'S. H. Leung 0001'},
                                  {'@pid': '30/4400', 'text': 'Andrew Luk'}]},
           'doi': '10.1109/ICNN.1996.548927',
           'ee': 'https://doi.org/10.1109/ICNN.1996.548927',
           'key': 'conf/icnn/NgLL96',
           'pages': '409-413',
           'title': 'A generalized backpropagation algorithm for faster '
                    'convergence.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icnn/NgLL96',
           'venue': 'ICNN',
           'year': '1996'},
  'url': 'URL#5303527'},
 {'@id': '5306989',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '15/1979', 'text': 'Xingbin Zhang'},
                                  {'@pid': 'l/VijayKaramcheti',
                                   'text': 'Vijay Karamcheti'},
                                  {'@pid': '28/6209', 'text': 'Tony Ng'},
                                  {'@pid': 'c/AAChien',
                                   'text': 'Andrew A. Chien'}]},
           'doi': '10.1109/IPPS.1996.508064',
           'ee': 'https://doi.org/10.1109/IPPS.1996.508064',
           'key': 'conf/ipps/ZhangKNC96',
           'pages': '235-240',
           'title': 'Optimizing COOP Languages - Study of a Protein Dynamics '
                    'Program.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/ipps/ZhangKNC96',
           'venue': 'IPPS',
           'year': '1996'},
  'url': 'URL#5306989'},
 {'@id': '5350866',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '58/6491', 'text': 'Sin Chun Ng'},
                                  {'@pid': '45/4687',
                                   'text': 'S. H. Leung 0001'},
                                  {'@pid': '30/4400', 'text': 'Andrew Luk'}]},
           'doi': '10.1109/ICNN.1995.487260',
           'ee': 'https://doi.org/10.1109/ICNN.1995.487260',
           'key': 'conf/icnn/NgLL95',
           'pages': '3004-3008',
           'title': 'Fast and Global Convergent Weight Evolution Algorithm '
                    'based on Modified Back-propagation.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icnn/NgLL95',
           'venue': 'ICNN',
           'year': '1995'},
  'url': 'URL#5350866'},
 {'@id': '5354171',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '155/7665', 'text': 'Chi Yin Chung'},
                                  {'@pid': '58/6491', 'text': 'Sin Chun Ng'},
                                  {'@pid': '45/4687', 'text': 'Shu Hung Leung'},
                                  {'@pid': '30/4400', 'text': 'Andrew Luk'}]},
           'doi': '10.1109/ISCAS.1995.520404',
           'ee': 'https://doi.org/10.1109/ISCAS.1995.520404',
           'key': 'conf/iscas/ChungNLL95',
           'pages': '1380-1383',
           'title': 'A Variable Step Size Algorithm with Generate-and Evaluate '
                    'Function.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/iscas/ChungNLL95',
           'venue': 'ISCAS',
           'year': '1995'},
  'url': 'URL#5354171'},
 {'@id': '5392616',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '58/6491', 'text': 'Sin Chun Ng'},
                                  {'@pid': '155/7665', 'text': 'Chi Yin Chung'},
                                  {'@pid': '45/4687', 'text': 'Shu Hung Leung'},
                                  {'@pid': '30/4400', 'text': 'Andrew Luk'}]},
           'doi': '10.1109/ICASSP.1994.390079',
           'ee': 'https://doi.org/10.1109/ICASSP.1994.390079',
           'key': 'conf/icassp/NgCLL94',
           'pages': '105-108',
           'title': 'Fast convergent genetic search for adaptive IIR '
                    'filtering.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icassp/NgCLL94',
           'venue': 'ICASSP',
           'year': '1994'},
  'url': 'URL#5392616'},
 {'@id': '5399219',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '58/6491', 'text': 'Sin Chun Ng'},
                                  {'@pid': '155/7665', 'text': 'Chi Yin Chung'},
                                  {'@pid': '45/4687', 'text': 'Shu Hung Leung'},
                                  {'@pid': '30/4400', 'text': 'Andrew Luk'}]},
           'doi': '10.1109/ISCAS.1994.408903',
           'ee': 'https://doi.org/10.1109/ISCAS.1994.408903',
           'key': 'conf/iscas/NgCLL94',
           'pages': '53-56',
           'title': 'An Evolutionary Search Algorithm for Adaptive IIR '
                    'Equalizer.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/iscas/NgCLL94',
           'venue': 'ISCAS',
           'year': '1994'},
  'url': 'URL#5399219'},
 {'@id': '5418548',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '05/5387',
                                   'text': 'Andrew D. Malyan'},
                                  {'@pid': '86/5082', 'text': 'Leslie J. Ng'},
                                  {'@pid': '36/4847',
                                   'text': 'Victor C. M. Leung'},
                                  {'@pid': '04/5482',
                                   'text': 'Robert W. Donaldson'}]},
           'doi': '10.1109/49.232292',
           'ee': 'https://doi.org/10.1109/49.232292',
           'key': 'journals/jsac/MalyanNLD93',
           'number': '6',
           'pages': '830-841',
           'title': 'Network Architecture and Signaling for Wireless Personal '
                    'Communications.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/jsac/MalyanNLD93',
           'venue': 'IEEE J. Sel. Areas Commun.',
           'volume': '11',
           'year': '1993'},
  'url': 'URL#5418548'},
 {'@id': '5591589',
  '@score': '3',
  'info': {'authors': {'author': [{'@pid': '285/1078', 'text': 'C. T. Ng 0002'},
                                  {'@pid': '22/2242',
                                   'text': 'Andrew K. C. Wong'}]},
           'doi': '10.1109/TIT.1987.1057256',
           'ee': 'https://doi.org/10.1109/TIT.1987.1057256',
           'key': 'journals/tit/NgW87',
           'number': '1',
           'pages': '166-169',
           'title': 'On the nonuniqueness of discretization of two-dimensional '
                    'probability distribution subject to the maximization of '
                    'Shannon&apos;s entropy.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/tit/NgW87',
           'venue': 'IEEE Trans. Inf. Theory',
           'volume': '33',
           'year': '1987'},
  'url': 'URL#5591589'},
 {'@id': '10351',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '65/9943',
                                   'text': 'Ameer Shakayb Arsalaan'},
                                  {'@pid': '00/5147', 'text': 'Hung Nguyen'},
                                  {'@pid': '09/3904', 'text': 'Andrew Coyle'},
                                  {'@pid': '78/9943',
                                   'text': 'Mah-Rukh Fida'}]},
           'doi': '10.1016/J.ADHOC.2020.102331',
           'ee': 'https://doi.org/10.1016/j.adhoc.2020.102331',
           'key': 'journals/adhoc/ArsalaanNCF21',
           'pages': '102331',
           'title': 'Quality of information with minimum requirements for '
                    'emergency communications.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/adhoc/ArsalaanNCF21',
           'venue': 'Ad Hoc Networks',
           'volume': '111',
           'year': '2021'},
  'url': 'URL#10351'},
 {'@id': '15835',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '44/7805', 'text': 'Nansu Zong'},
                                  {'@pid': '285/3537',
                                   'text': 'Rachael Sze Nga Wong'},
                                  {'@pid': '55/2008', 'text': 'Yue Yu'},
                                  {'@pid': '212/2138', 'text': 'Andrew Wen'},
                                  {'@pid': '05/6957', 'text': 'Ming Huang'},
                                  {'@pid': '14/5410', 'text': 'Ning Li'}]},
           'doi': '10.1093/BIB/BBZ147',
           'ee': 'https://doi.org/10.1093/bib/bbz147',
           'key': 'journals/bib/ZongWYWHL21',
           'number': '1',
           'pages': '568-580',
           'title': 'Drug-target prediction utilizing heterogeneous bio-linked '
                    'network embeddings.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/bib/ZongWYWHL21',
           'venue': 'Briefings Bioinform.',
           'volume': '22',
           'year': '2021'},
  'url': 'URL#15835'},
 {'@id': '19087',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '295/6923',
                                   'text': 'Rolando García'},
                                  {'@pid': '295/6715', 'text': 'Anas Hussain'},
                                  {'@pid': '295/7007', 'text': 'Prasad Koduru'},
                                  {'@pid': '158/7404', 'text': 'Murat Atis'},
                                  {'@pid': '07/5862',
                                   'text': 'Kathleen Wilson'},
                                  {'@pid': '292/7035', 'text': 'Jason Y. Park'},
                                  {'@pid': '157/9581',
                                   'text': 'Inimary T. Toby'},
                                  {'@pid': '295/6619', 'text': 'Kimberly Diwa'},
                                  {'@pid': '295/6670', 'text': 'Lavang Vu'},
                                  {'@pid': '16/7026', 'text': 'Samuel Ho'},
                                  {'@pid': '295/7053', 'text': 'Fajar Adnan'},
                                  {'@pid': '45/11368', 'text': 'Ashley Nguyen'},
                                  {'@pid': '97/684', 'text': 'Andrew Cox'},
                                  {'@pid': '295/6832',
                                   'text': 'Timothy Kirtek'},
                                  {'@pid': '265/7602',
                                   'text': 'Patricia García'},
                                  {'@pid': '78/6098', 'text': 'Yanhui Li'},
                                  {'@pid': '295/7079', 'text': 'Heather Jones'},
                                  {'@pid': '295/6913', 'text': 'Guanglu Shi'},
                                  {'@pid': '295/7047', 'text': 'Allen Green'},
                                  {'@pid': '08/3741',
                                   'text': 'David Rosenbaum'}]},
           'doi': '10.1016/J.COMPBIOMED.2021.104364',
           'ee': 'https://doi.org/10.1016/j.compbiomed.2021.104364',
           'key': 'journals/cbm/GarciaHKAWPTDVH21',
           'pages': '104364',
           'title': 'Identification of potential antiviral compounds against '
                    'SARS-CoV-2 structural and non structural protein targets '
                    '- A pharmacoinformatics study of the CAS COVID-19 '
                    'dataset.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/cbm/GarciaHKAWPTDVH21',
           'venue': 'Comput. Biol. Medicine',
           'volume': '133',
           'year': '2021'},
  'url': 'URL#19087'},
 {'@id': '57614',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '161/6303',
                                   'text': 'Georgiana Haldeman'},
                                  {'@pid': '82/5111',
                                   'text': 'Monica Babes-Vroman'},
                                  {'@pid': '37/49', 'text': 'Andrew Tjang'},
                                  {'@pid': 'n/ThuDNguyen',
                                   'text': 'Thu D. Nguyen'}]},
           'doi': '10.1145/3445983',
           'ee': 'https://doi.org/10.1145/3445983',
           'key': 'journals/jeric/HaldemanBTN21',
           'number': '3',
           'pages': '21:1-21:30',
           'title': 'CSF - Formative Feedback in Autograding.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/jeric/HaldemanBTN21',
           'venue': 'ACM Trans. Comput. Educ.',
           'volume': '21',
           'year': '2021'},
  'url': 'URL#57614'},
 {'@id': '67260',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '267/8378',
                                   'text': 'Andrew Hao Sen Fang'},
                                  {'@pid': '257/9440',
                                   'text': 'Ngiap Chuan Tan'},
                                  {'@pid': '296/6174', 'text': 'Wei Ying Tan'},
                                  {'@pid': '296/6185',
                                   'text': 'Ronald Wihal Oei'},
                                  {'@pid': 'l/MongLiLee',
                                   'text': 'Mong-Li Lee'},
                                  {'@pid': 'h/WynneHsu', 'text': 'Wynne Hsu'}]},
           'doi': '10.1186/S12911-021-01566-Y',
           'ee': 'https://doi.org/10.1186/s12911-021-01566-y',
           'key': 'journals/midm/FangTTOLH21',
           'number': '1',
           'pages': '207',
           'title': 'Patient similarity analytics for explainable clinical '
                    'risk prediction.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/midm/FangTTOLH21',
           'venue': 'BMC Medical Informatics Decis. Mak.',
           'volume': '21',
           'year': '2021'},
  'url': 'URL#67260'},
 {'@id': '67288',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '294/0856',
                                   'text': 'Sarah Charlotte Johnson'},
                                  {'@pid': '294/1077',
                                   'text': 'Matthew Cunningham'},
                                  {'@pid': '294/1621',
                                   'text': 'Ilse N. Dippenaar'},
                                  {'@pid': '294/1701',
                                   'text': 'Fablina Sharara'},
                                  {'@pid': '294/1224', 'text': 'Eve E. Wool'},
                                  {'@pid': '294/0888',
                                   'text': 'Kareha M. Agesa'},
                                  {'@pid': '294/1604', 'text': 'Chieh Han'},
                                  {'@pid': '294/0975',
                                   'text': 'Molly K. Miller-Petrie'},
                                  {'@pid': '294/1215',
                                   'text': 'Shadrach Wilson'},
                                  {'@pid': '294/1060',
                                   'text': 'John E. Fuller'},
                                  {'@pid': '294/1518',
                                   'text': 'Shelly Balassyano'},
                                  {'@pid': '294/1400',
                                   'text': 'Gregory J. Bertolacci'},
                                  {'@pid': '294/0938',
                                   'text': 'Nicole Davis Weaver'},
                                  {'@pid': '294/0922', 'text': 'Jalal Arabloo'},
                                  {'@pid': '294/1688', 'text': 'Alaa Badawi'},
                                  {'@pid': '294/1687',
                                   'text': 'Akshaya Srikanth Bhagavathula'},
                                  {'@pid': '294/1245',
                                   'text': 'Katrin Burkart'},
                                  {'@pid': '294/1759',
                                   'text': 'Luis Alberto Cámera'},
                                  {'@pid': '294/1552',
                                   'text': 'Felix Carvalho'},
                                  {'@pid': '294/1192',
                                   'text': 'Carlos A. Castañeda-Orjuela'},
                                  {'@pid': '294/1359',
                                   'text': 'Jee-Young Jasmine Choi'},
                                  {'@pid': '206/9288', 'text': 'Dinh-Toi Chu'},
                                  {'@pid': '03/9835', 'text': 'Xiaochen Dai'},
                                  {'@pid': '294/1565',
                                   'text': 'Mostafa Dianatinasab'},
                                  {'@pid': '294/1504',
                                   'text': 'Sophia Emmons-Bell'},
                                  {'@pid': '294/1690',
                                   'text': 'Eduarda Fernandes'},
                                  {'@pid': '01/3933',
                                   'text': 'Florian Fischer'},
                                  {'@pid': '294/1695',
                                   'text': 'Ahmad Ghashghaee'},
                                  {'@pid': '294/1076',
                                   'text': 'Mahaveer Golechha'},
                                  {'@pid': '77/10415', 'text': 'Simon I. Hay'},
                                  {'@pid': '294/1333', 'text': 'Khezar Hayat'},
                                  {'@pid': '294/1674',
                                   'text': 'Nathaniel J. Henry'},
                                  {'@pid': '193/3271', 'text': 'Ramesh Holla'},
                                  {'@pid': '47/9379',
                                   'text': 'Mowafa S. Househ'},
                                  {'@pid': '294/1394',
                                   'text': 'Segun Emmanuel Ibitoye'},
                                  {'@pid': '294/1589',
                                   'text': 'Maryam Keramati'},
                                  {'@pid': '294/1660',
                                   'text': 'Ejaz Ahmad Khan'},
                                  {'@pid': '294/1648', 'text': 'Yun Jin Kim'},
                                  {'@pid': '229/5689', 'text': 'Adnan Kisa'},
                                  {'@pid': '294/1019',
                                   'text': 'Hamidreza Komaki'},
                                  {'@pid': '294/1057', 'text': 'Ai Koyanagi'},
                                  {'@pid': '294/1728',
                                   'text': 'Samantha Leigh Larson'},
                                  {'@pid': '294/1467',
                                   'text': 'Kate E. LeGrand'},
                                  {'@pid': '96/600', 'text': 'Xuefeng Liu'},
                                  {'@pid': '55/9674', 'text': 'Azeem Majeed'},
                                  {'@pid': '74/531', 'text': 'Reza Malekzadeh'},
                                  {'@pid': '171/7240',
                                   'text': 'Bahram Mohajer'},
                                  {'@pid': '294/1513',
                                   'text': 'Abdollah Mohammadian-Hafshejani'},
                                  {'@pid': '294/1371',
                                   'text': 'Reza Mohammadpourhodki'},
                                  {'@pid': '294/1411',
                                   'text': 'Shafiu Mohammed'},
                                  {'@pid': '294/1079', 'text': 'Farnam Mohebi'},
                                  {'@pid': '205/8333', 'text': 'Ali H. Mokdad'},
                                  {'@pid': '47/7336',
                                   'text': 'Mariam Molokhia'},
                                  {'@pid': '294/1662',
                                   'text': 'Lorenzo Monasta'},
                                  {'@pid': '123/7448',
                                   'text': 'Mohammad Ali Moni'},
                                  {'@pid': '165/8371',
                                   'text': 'Muhammad Naveed'},
                                  {'@pid': '199/1666',
                                   'text': 'Thi Lan Huong Nguyen'},
                                  {'@pid': '294/1415',
                                   'text': 'Andrew T. Olagunju'},
                                  {'@pid': '294/0921',
                                   'text': 'Samuel M. Ostroff'},
                                  {'@pid': '294/1380',
                                   'text': 'Fatemeh Pashazadeh Kan'},
                                  {'@pid': '294/1302',
                                   'text': 'David M. Pereira'},
                                  {'@pid': '117/5225',
                                   'text': 'Quang Pham Hai'},
                                  {'@pid': '123/1144', 'text': 'Salman Rawaf'},
                                  {'@pid': '294/0970',
                                   'text': 'David Laith Rawaf'},
                                  {'@pid': '294/1444',
                                   'text': 'Andre M. N. Renzaho'},
                                  {'@pid': '294/1375', 'text': 'Luca Ronfani'},
                                  {'@pid': '294/1486',
                                   'text': 'Abdallah M. Samy'},
                                  {'@pid': '294/1297',
                                   'text': 'Subramanian Senthilkumaran'},
                                  {'@pid': '294/1516',
                                   'text': 'Sadaf G. Sepanlou'},
                                  {'@pid': '294/1116',
                                   'text': 'Masood Ali Shaikh'},
                                  {'@pid': '294/1564', 'text': 'David H. Shaw'},
                                  {'@pid': '294/1562', 'text': 'Kenji Shibuya'},
                                  {'@pid': '294/0861',
                                   'text': 'Jasvinder A. Singh'},
                                  {'@pid': '294/1027',
                                   'text': 'Valentin Yurievich Skryabin'},
                                  {'@pid': '294/1134',
                                   'text': 'Anna Aleksandrovna Skryabina'},
                                  {'@pid': '294/1156',
                                   'text': 'Emma Elizabeth Spurlock'},
                                  {'@pid': '294/1259',
                                   'text': 'Eyayou Girma Tadesse'},
                                  {'@pid': '234/6743',
                                   'text': 'Mohamad-Hani Temsah'},
                                  {'@pid': '130/5530',
                                   'text': 'Marcos Roberto Tovani-Palone'},
                                  {'@pid': '260/6855',
                                   'text': 'Tran Xuan Bach'},
                                  {'@pid': '294/1627',
                                   'text': 'Gebiyaw Wudie Tsegaye'},
                                  {'@pid': '294/1746',
                                   'text': 'Pascual R. Valdez'},
                                  {'@pid': '294/1470',
                                   'text': 'Prashant M. Vishwanath'},
                                  {'@pid': '294/1610', 'text': 'Giang Thu Vu'},
                                  {'@pid': '294/0905', 'text': 'Yasir Waheed'},
                                  {'@pid': '294/1437',
                                   'text': 'Naohiro Yonemoto'},
                                  {'@pid': '71/3834', 'text': 'Rafael Lozano'},
                                  {'@pid': '294/1421', 'text': 'Alan D. Lopez'},
                                  {'@pid': '270/4099',
                                   'text': 'Christopher J. L. Murray'},
                                  {'@pid': '294/1711',
                                   'text': 'Mohsen Naghavi'}]},
           'doi': '10.1186/S12911-021-01501-1',
           'ee': 'https://doi.org/10.1186/s12911-021-01501-1',
           'key': 'journals/midm/JohnsonCDSWAHMW21',
           'number': '1',
           'pages': '175',
           'title': 'Public health utility of cause of death data - applying '
                    'empirical algorithms to improve data quality.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/midm/JohnsonCDSWAHMW21',
           'venue': 'BMC Medical Informatics Decis. Mak.',
           'volume': '21',
           'year': '2021'},
  'url': 'URL#67288'},
 {'@id': '67335',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '299/4763', 'text': 'Emma Nichols'},
                                  {'@pid': '299/4926',
                                   'text': 'Foad Abd-Allah'},
                                  {'@pid': '299/5311', 'text': 'Amir Abdoli'},
                                  {'@pid': '299/5376',
                                   'text': 'Ahmed Abualhasan'},
                                  {'@pid': '299/5170',
                                   'text': 'Eman Abu-Gharbieh'},
                                  {'@pid': '299/5024', 'text': 'Ashkan Afshin'},
                                  {'@pid': '267/5155',
                                   'text': 'Rufus Akinyemi'},
                                  {'@pid': '299/5409',
                                   'text': 'Fahad Mashhour Alanezi'},
                                  {'@pid': '299/5388', 'text': 'Vahid Alipour'},
                                  {'@pid': '299/4844',
                                   'text': 'Amir Almasi-Hashiani'},
                                  {'@pid': '294/0922', 'text': 'Jalal Arabloo'},
                                  {'@pid': '299/5136',
                                   'text': 'Amir Ashraf-Ganjouei'},
                                  {'@pid': '299/5106', 'text': 'Getinet Ayano'},
                                  {'@pid': '299/4999',
                                   'text': 'Jose L. Ayuso-Mateos'},
                                  {'@pid': '299/4993',
                                   'text': 'Atif Amin Baig'},
                                  {'@pid': '299/5358', 'text': 'Maciej Banach'},
                                  {'@pid': '299/5367',
                                   'text': 'Miguel A. Barboza'},
                                  {'@pid': '299/5080',
                                   'text': 'Suzanne Lyn Barker-Collo'},
                                  {'@pid': '99/8107',
                                   'text': 'Bernhard T. Baune'},
                                  {'@pid': '294/1687',
                                   'text': 'Akshaya Srikanth Bhagavathula'},
                                  {'@pid': '299/5467',
                                   'text': 'Krittika Bhattacharyya'},
                                  {'@pid': '299/4507', 'text': 'Ali Bijani'},
                                  {'@pid': '03/862', 'text': 'Atanu Biswas'},
                                  {'@pid': '299/4837',
                                   'text': 'Archith Boloor'},
                                  {'@pid': '70/7917', 'text': 'Carol Brayne'},
                                  {'@pid': '86/3133',
                                   'text': 'Hermann Brenner'},
                                  {'@pid': '294/1245',
                                   'text': 'Katrin Burkart'},
                                  {'@pid': '217/1063',
                                   'text': 'Sharath Burugina Nagaraja'},
                                  {'@pid': '294/1552',
                                   'text': 'Felix Carvalho'},
                                  {'@pid': '299/5402',
                                   'text': 'Luis F. S. Castro-de-Araujo'},
                                  {'@pid': '299/5015',
                                   'text': 'Ferrán Catalá-López'},
                                  {'@pid': '293/7518', 'text': 'Ester Cerin'},
                                  {'@pid': '32/97', 'text': 'Nicolas Cherbuin'},
                                  {'@pid': '206/9288', 'text': 'Dinh-Toi Chu'},
                                  {'@pid': '03/9835', 'text': 'Xiaochen Dai'},
                                  {'@pid': '299/4917',
                                   'text': 'Antonio Reis de Sá-Junior'},
                                  {'@pid': '299/5310',
                                   'text': 'Shirin Djalalinia'},
                                  {'@pid': '38/7977', 'text': 'Abdel Douiri'},
                                  {'@pid': '299/5052',
                                   'text': 'David Edvardsson'},
                                  {'@pid': '299/5150',
                                   'text': 'Shaimaa I. El-Jaafary'},
                                  {'@pid': '299/5284',
                                   'text': 'Sharareh Eskandarieh'},
                                  {'@pid': '299/4618', 'text': 'Andre Faro'},
                                  {'@pid': '268/0438',
                                   'text': 'Farshad Farzadfar'},
                                  {'@pid': '38/10462', 'text': 'Valery Feigin'},
                                  {'@pid': '240/2900',
                                   'text': 'Seyed-Mohammad Fereshtehnejad'},
                                  {'@pid': '294/1690',
                                   'text': 'Eduarda Fernandes'},
                                  {'@pid': '26/3503-2',
                                   'text': 'Pietro Ferrara 0002'},
                                  {'@pid': '299/5021', 'text': 'Irina Filip'},
                                  {'@pid': '01/3933',
                                   'text': 'Florian Fischer'},
                                  {'@pid': '299/5183',
                                   'text': 'Shilpa Gaidhane'},
                                  {'@pid': '299/4509',
                                   'text': 'Lucia Galluzzo'},
                                  {'@pid': '299/5226',
                                   'text': 'Gebreamlak Gebremedhn Gebremeskel'},
                                  {'@pid': '294/1695',
                                   'text': 'Ahmad Ghashghaee'},
                                  {'@pid': '152/3570',
                                   'text': 'Alessandro Gialluisi'},
                                  {'@pid': '299/5122',
                                   'text': 'Elena V. Gnedovskaya'},
                                  {'@pid': '294/1076',
                                   'text': 'Mahaveer Golechha'},
                                  {'@pid': '70/2530', 'text': 'Rajeev Gupta'},
                                  {'@pid': '299/4860',
                                   'text': 'Vladimir Hachinski'},
                                  {'@pid': '274/3656',
                                   'text': 'Mohammad R. Haider'},
                                  {'@pid': '299/4544',
                                   'text': 'Teklehaimanot Gereziher Haile'},
                                  {'@pid': '299/5383',
                                   'text': 'Mohammad Hamiduzzaman'},
                                  {'@pid': '14/11387',
                                   'text': 'Graeme J. Hankey'},
                                  {'@pid': '77/10415', 'text': 'Simon I. Hay'},
                                  {'@pid': '299/5246',
                                   'text': 'Golnaz Heidari'},
                                  {'@pid': '299/4551',
                                   'text': 'Reza Heidari-Soureshjani'},
                                  {'@pid': '197/2962', 'text': 'Hung Chak Ho'},
                                  {'@pid': '299/5006', 'text': 'Mowafa Househ'},
                                  {'@pid': '299/5276',
                                   'text': 'Bing-Fang Hwang'},
                                  {'@pid': '299/4732',
                                   'text': 'Licia Iacoviello'},
                                  {'@pid': '299/4744',
                                   'text': 'Olayinka Stephen Ilesanmi'},
                                  {'@pid': '299/5386', 'text': 'Irena M. Ilic'},
                                  {'@pid': '299/4724',
                                   'text': 'Milena D. Ilic'},
                                  {'@pid': '299/4848',
                                   'text': 'Seyed Sina Naghibi Irvani'},
                                  {'@pid': '216/5408', 'text': 'Masao Iwagami'},
                                  {'@pid': '299/5270',
                                   'text': 'Ihoghosa Osamuyi Iyamu'},
                                  {'@pid': '299/4558',
                                   'text': 'Ravi Prakash Jha'},
                                  {'@pid': '299/5261', 'text': 'Rizwan Kalani'},
                                  {'@pid': '225/8983', 'text': 'André Karch'},
                                  {'@pid': '299/4779',
                                   'text': 'Ayele Semachew Kasa'},
                                  {'@pid': '234/3254',
                                   'text': 'Yousef S. Khader'},
                                  {'@pid': '294/1660',
                                   'text': 'Ejaz Ahmad Khan'},
                                  {'@pid': '299/5103',
                                   'text': 'Mahalaqua Nazli Khatib'},
                                  {'@pid': '294/1648', 'text': 'Yun Jin Kim'},
                                  {'@pid': '299/5051', 'text': 'Sezer Kisa'},
                                  {'@pid': '229/5689', 'text': 'Adnan Kisa'},
                                  {'@pid': '204/8046', 'text': 'Mika Kivimäki'},
                                  {'@pid': '294/1057', 'text': 'Ai Koyanagi'},
                                  {'@pid': '299/4907', 'text': 'Manasi Kumar'},
                                  {'@pid': '299/4903', 'text': 'Iván Landires'},
                                  {'@pid': '189/2135',
                                   'text': 'Savita Lasrado'},
                                  {'@pid': '49/1389', 'text': 'Bingyu Li'},
                                  {'@pid': '270/4118',
                                   'text': 'Stephen S. Lim'},
                                  {'@pid': '96/600', 'text': 'Xuefeng Liu'},
                                  {'@pid': '299/4945',
                                   'text': 'Shilpashree Madhava Kunjathur'},
                                  {'@pid': '55/9674', 'text': 'Azeem Majeed'},
                                  {'@pid': '265/5119', 'text': 'Preeti Malik'},
                                  {'@pid': '299/5213',
                                   'text': 'Man Mohan Mehndiratta'},
                                  {'@pid': '132/9727',
                                   'text': 'Ritesh G. Menezes'},
                                  {'@pid': '299/5439',
                                   'text': 'Yousef Mohammad'},
                                  {'@pid': '299/4503',
                                   'text': 'Salahuddin Mohammed'},
                                  {'@pid': '205/8333', 'text': 'Ali H. Mokdad'},
                                  {'@pid': '123/7448',
                                   'text': 'Mohammad Ali Moni'},
                                  {'@pid': '299/4636',
                                   'text': 'Gabriele Nagel'},
                                  {'@pid': '165/8371',
                                   'text': 'Muhammad Naveed'},
                                  {'@pid': '299/4960',
                                   'text': 'Vinod C. Nayak'},
                                  {'@pid': '299/4740',
                                   'text': 'Cuong Tat Nguyen'},
                                  {'@pid': '199/1666',
                                   'text': 'Thi Lan Huong Nguyen'},
                                  {'@pid': '299/5396',
                                   'text': 'Virginia Nunez-Samudio'},
                                  {'@pid': '294/1415',
                                   'text': 'Andrew T. Olagunju'},
                                  {'@pid': '294/0921',
                                   'text': 'Samuel M. Ostroff'},
                                  {'@pid': '299/4650',
                                   'text': 'Nikita Otstavnov'},
                                  {'@pid': '267/5148',
                                   'text': 'Mayowa Owolabi'},
                                  {'@pid': '294/1380',
                                   'text': 'Fatemeh Pashazadeh Kan'},
                                  {'@pid': '299/4612',
                                   'text': 'Urvish K. Patel'},
                                  {'@pid': '265/4450',
                                   'text': 'Michael R. Phillips'},
                                  {'@pid': '299/4599',
                                   'text': 'Michael A. Piradov'},
                                  {'@pid': '299/5365',
                                   'text': 'Constance Dimity Pond'},
                                  {'@pid': '299/5235',
                                   'text': 'Faheem Hyder Pottoo'},
                                  {'@pid': '299/5333',
                                   'text': 'Sergio I. Prada'},
                                  {'@pid': '299/5149', 'text': 'Amir Radfar'},
                                  {'@pid': '201/8799', 'text': 'Fakher Rahim'},
                                  {'@pid': '10/3162', 'text': 'Juwel Rana'},
                                  {'@pid': '299/4617', 'text': 'Vahid Rashedi'},
                                  {'@pid': '123/1144', 'text': 'Salman Rawaf'},
                                  {'@pid': '294/0970',
                                   'text': 'David Laith Rawaf'},
                                  {'@pid': '299/5208',
                                   'text': 'Nickolas Reinig'},
                                  {'@pid': '294/1444',
                                   'text': 'Andre M. N. Renzaho'},
                                  {'@pid': '30/6036', 'text': 'Nima Rezaei'},
                                  {'@pid': '285/6606', 'text': 'Aziz Rezapour'},
                                  {'@pid': '299/4532',
                                   'text': 'Michele Romoli'},
                                  {'@pid': '225/1949',
                                   'text': 'Gholamreza Roshandel'},
                                  {'@pid': '98/9077',
                                   'text': 'Perminder S. Sachdev'},
                                  {'@pid': '299/5306',
                                   'text': 'Amirhossein Sahebkar'},
                                  {'@pid': '151/9855',
                                   'text': 'Mohammad Ali Sahraian'},
                                  {'@pid': '299/5092',
                                   'text': 'Mehrnoosh Samaei'},
                                  {'@pid': '299/4819', 'text': 'Mete Saylan'},
                                  {'@pid': '18/323', 'text': 'Feng Sha'},
                                  {'@pid': '294/1116',
                                   'text': 'Masood Ali Shaikh'},
                                  {'@pid': '294/1562', 'text': 'Kenji Shibuya'},
                                  {'@pid': '89/4875',
                                   'text': 'Mika Shigematsu'},
                                  {'@pid': '299/5262', 'text': 'Jae Il Shin'},
                                  {'@pid': '299/5065', 'text': 'Rahman Shiri'},
                                  {'@pid': '299/5449',
                                   'text': 'Diego Augusto Santos Silva'},
                                  {'@pid': '294/0861',
                                   'text': 'Jasvinder A. Singh'},
                                  {'@pid': '299/4836',
                                   'text': 'Deepika Singhal'},
                                  {'@pid': '294/1027',
                                   'text': 'Valentin Yurievich Skryabin'},
                                  {'@pid': '294/1134',
                                   'text': 'Anna Aleksandrovna Skryabina'},
                                  {'@pid': '299/4997', 'text': 'Amin Soheili'},
                                  {'@pid': '299/4567',
                                   'text': 'Houman Sotoudeh'},
                                  {'@pid': '294/1156',
                                   'text': 'Emma Elizabeth Spurlock'},
                                  {'@pid': '299/4590',
                                   'text': 'Cassandra E. I. Szoeke'},
                                  {'@pid': '299/4893',
                                   'text': 'Rafael Tabarés-Seisdedos'},
                                  {'@pid': '299/5138',
                                   'text': 'Biruk Wogayehu Taddele'},
                                  {'@pid': '130/5530',
                                   'text': 'Marcos Roberto Tovani-Palone'},
                                  {'@pid': '294/1627',
                                   'text': 'Gebiyaw Wudie Tsegaye'},
                                  {'@pid': '299/4622', 'text': 'Marco Vacante'},
                                  {'@pid': '15/11224',
                                   'text': 'Narayanaswamy Venketasubramanian'},
                                  {'@pid': '299/4710', 'text': 'Simone Vidale'},
                                  {'@pid': '299/5184',
                                   'text': 'Vasily Vlassov'},
                                  {'@pid': '294/1610', 'text': 'Giang Thu Vu'},
                                  {'@pid': '299/4689',
                                   'text': 'Yuan-Pang Wang'},
                                  {'@pid': '141/4258', 'text': 'Jordan Weiss'},
                                  {'@pid': '299/4738',
                                   'text': 'Abrha Hailay Weldemariam'},
                                  {'@pid': '299/4842',
                                   'text': 'Ronny Westerman'},
                                  {'@pid': '299/5028', 'text': 'Anders Wimo'},
                                  {'@pid': '299/5203',
                                   'text': 'Andrea Sylvia Winkler'},
                                  {'@pid': '294/5151', 'text': 'Chenkai Wu'},
                                  {'@pid': '179/2026',
                                   'text': 'Ali Yadollahpour'},
                                  {'@pid': '299/4773',
                                   'text': 'Metin Yesiltepe'},
                                  {'@pid': '294/1437',
                                   'text': 'Naohiro Yonemoto'},
                                  {'@pid': '299/4698', 'text': 'Chuanhua Yu'},
                                  {'@pid': '299/5364',
                                   'text': 'Mikhail Sergeevich Zastrozhin'},
                                  {'@pid': '299/5124',
                                   'text': 'Anasthasia Zastrozhina'},
                                  {'@pid': '98/4146',
                                   'text': 'Zhi-Jiang Zhang'},
                                  {'@pid': '270/4099',
                                   'text': 'Christopher J. L. Murray'},
                                  {'@pid': '205/8414', 'text': 'Theo Vos'}]},
           'doi': '10.1186/S12911-021-01590-Y',
           'ee': 'https://doi.org/10.1186/s12911-021-01590-y',
           'key': 'journals/midm/NicholsAAAAAAAA21',
           'number': '1',
           'pages': '241',
           'title': 'Use of multidimensional item response theory methods for '
                    'dementia prevalence prediction - an example using the '
                    'Health and Retirement Survey and the Aging, Demographics, '
                    'and Memory Study.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/midm/NicholsAAAAAAAA21',
           'venue': 'BMC Medical Informatics Decis. Mak.',
           'volume': '21',
           'year': '2021'},
  'url': 'URL#67335'},
 {'@id': '97758',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '216/3488',
                                   'text': 'Huy Thong Nguyen'},
                                  {'@pid': '194/4389',
                                   'text': 'Andrew F. Peterson'}]},
           'doi': '10.1109/TCSI.2021.3068303',
           'ee': 'https://doi.org/10.1109/TCSI.2021.3068303',
           'key': 'journals/tcasI/NguyenP21',
           'number': '6',
           'pages': '2329-2340',
           'title': 'Machine Learning for Automating the Design of '
                    'Millimeter-Wave Baluns.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/tcasI/NguyenP21',
           'venue': 'IEEE Trans. Circuits Syst. I Regul. Pap.',
           'volume': '68',
           'year': '2021'},
  'url': 'URL#97758'},
 {'@id': '128901',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '270/6632',
                                   'text': 'Srishti Palani'},
                                  {'@pid': '148/4853', 'text': 'Zijian Ding'},
                                  {'@pid': '241/5091', 'text': 'Austin Nguyen'},
                                  {'@pid': '292/5781', 'text': 'Andrew Chuang'},
                                  {'@pid': '165/9166',
                                   'text': 'Stephen MacNeil'},
                                  {'@pid': '45/5386',
                                   'text': 'Steven P. Dow'}]},
           'doi': '10.1145/3411764.3445618',
           'ee': 'https://doi.org/10.1145/3411764.3445618',
           'key': 'conf/chi/PalaniDNCMD21',
           'pages': '726:1-726:14',
           'title': 'CoNotate - Suggesting Queries Based on Notes Promotes '
                    'Knowledge Discovery.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/chi/PalaniDNCMD21',
           'venue': 'CHI',
           'year': '2021'},
  'url': 'URL#128901'},
 {'@id': '129689',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '76/5973', 'text': 'Ling Zhang'},
                                  {'@pid': '254/6674',
                                   'text': 'Matthew Butrovich'},
                                  {'@pid': '92/9835', 'text': 'Tianyu Li'},
                                  {'@pid': '58/4127', 'text': 'Andrew Pavlo'},
                                  {'@pid': '288/0493',
                                   'text': 'Yash Nannapaneni'},
                                  {'@pid': '287/8972',
                                   'text': 'John Rollinson'},
                                  {'@pid': '13/8730', 'text': 'Huanchen Zhang'},
                                  {'@pid': '288/0351',
                                   'text': 'Ambarish Balakumar'},
                                  {'@pid': '287/9684', 'text': 'Daniel Biales'},
                                  {'@pid': '242/2063', 'text': 'Ziqi Dong'},
                                  {'@pid': '288/0373',
                                   'text': 'Emmanuel J. Eppinger'},
                                  {'@pid': '288/0045',
                                   'text': 'Jordi E. Gonzalez'},
                                  {'@pid': '251/5311', 'text': 'Wan Shen Lim'},
                                  {'@pid': '163/3153', 'text': 'Jianqiao Liu'},
                                  {'@pid': '74/3608-6', 'text': 'Lin Ma 0006'},
                                  {'@pid': '145/6329',
                                   'text': 'Prashanth Menon'},
                                  {'@pid': '287/9401',
                                   'text': 'Soumil Mukherjee'},
                                  {'@pid': '287/9601', 'text': 'Tanuj Nayak'},
                                  {'@pid': '264/0039', 'text': 'Amadou Ngom'},
                                  {'@pid': '230/8646', 'text': 'Dong Niu'},
                                  {'@pid': '287/9665',
                                   'text': 'Deepayan Patra'},
                                  {'@pid': '288/0617', 'text': 'Poojita Raj'},
                                  {'@pid': '175/6757',
                                   'text': 'Stephanie Wang'},
                                  {'@pid': '287/9761', 'text': 'Wuwen Wang'},
                                  {'@pid': '40/3778', 'text': 'Yao Yu'},
                                  {'@pid': '165/0511',
                                   'text': 'William Zhang'}]},
           'ee': 'http://cidrdb.org/cidr2021/papers/cidr2021_paper06.pdf',
           'key': 'conf/cidr/ZhangBLPNRZBBDE21',
           'title': 'Everything is a Transaction - Unifying Logical '
                    'Concurrency Control and Physical Data Structure '
                    'Maintenance in Database Management Systems.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/cidr/ZhangBLPNRZBBDE21',
           'venue': 'CIDR',
           'year': '2021'},
  'url': 'URL#129689'},
 {'@id': '133254',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '264/0039', 'text': 'Amadou Ngom'},
                                  {'@pid': '145/6329',
                                   'text': 'Prashanth Menon'},
                                  {'@pid': '254/6674',
                                   'text': 'Matthew Butrovich'},
                                  {'@pid': '74/3608-6', 'text': 'Lin Ma 0006'},
                                  {'@pid': '251/5311', 'text': 'Wan Shen Lim'},
                                  {'@pid': '65/4120', 'text': 'Todd C. Mowry'},
                                  {'@pid': '58/4127', 'text': 'Andrew Pavlo'}]},
           'doi': '10.1145/3465998.3466009',
           'ee': 'https://doi.org/10.1145/3465998.3466009',
           'key': 'conf/damon/NgomMB0LMP21',
           'pages': '6:1-6:7',
           'title': 'Filter Representation in Vectorized Query Execution.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/damon/NgomMB0LMP21',
           'venue': 'DaMoN',
           'year': '2021'},
  'url': 'URL#133254'},
 {'@id': '137672',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '60/5993', 'text': 'Dirk Koch'},
                                  {'@pid': '286/1927', 'text': 'Nguyen Dao'},
                                  {'@pid': '286/1943', 'text': 'Bea Healy'},
                                  {'@pid': '42/6466', 'text': 'Jing Yu'},
                                  {'@pid': '65/11052',
                                   'text': 'Andrew Attwood'}]},
           'doi': '10.1145/3431920.3439302',
           'ee': 'https://doi.org/10.1145/3431920.3439302',
           'key': 'conf/fpga/KochDHYA21',
           'pages': '45-56',
           'title': 'FABulous - An Embedded FPGA Framework.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/fpga/KochDHYA21',
           'venue': 'FPGA',
           'year': '2021'},
  'url': 'URL#137672'},
 {'@id': '141564',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '253/1244',
                                   'text': 'Hai Duc Nguyen'},
                                  {'@pid': '56/6850', 'text': 'Zhifei Yang'},
                                  {'@pid': 'c/AAChien',
                                   'text': 'Andrew A. Chien'}]},
           'doi': '10.1145/3452413.3464786',
           'ee': 'https://doi.org/10.1145/3452413.3464786',
           'key': 'conf/hpdc/NguyenYC21',
           'pages': '25-32',
           'title': 'Motivating High Performance Serverless Workloads.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/hpdc/NguyenYC21',
           'venue': 'HiPS@HPDC',
           'year': '2021'},
  'url': 'URL#141564'},
 {'@id': '141792',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '289/4308',
                                   'text': 'Binh Vinh Duc Nguyen'},
                                  {'@pid': '02/4044',
                                   'text': 'Adalberto L. Simeone'},
                                  {'@pid': '89/766',
                                   'text': 'Andrew Vande Moere'}]},
           'doi': '10.1145/3434073.3444643',
           'ee': 'https://doi.org/10.1145/3434073.3444643',
           'key': 'conf/hri/NguyenSM21',
           'pages': '252-261',
           'title': 'Exploring an Architectural Framework for Human-Building '
                    'Interaction via a Semi-Immersive Cross-Reality '
                    'Methodology.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/hri/NguyenSM21',
           'venue': 'HRI',
           'year': '2021'},
  'url': 'URL#141792'},
 {'@id': '146628',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '292/6216',
                                   'text': 'Nguyen Dinh Thang'},
                                  {'@pid': '22/1305', 'text': 'Giles Oatley'},
                                  {'@pid': '09/1062',
                                   'text': 'Andrew Stranieri'},
                                  {'@pid': '164/3485',
                                   'text': 'Darren Walker'}]},
           'doi': '10.1109/ICCAE51876.2021.9426123',
           'ee': 'https://doi.org/10.1109/ICCAE51876.2021.9426123',
           'key': 'conf/iccae/ThangOSW21',
           'pages': '64-67',
           'title': 'Non-invasive Smartphone Use Monitoring to Assess '
                    'Cognitive Impairment.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/iccae/ThangOSW21',
           'venue': 'ICCAE',
           'year': '2021'},
  'url': 'URL#146628'},
 {'@id': '156461',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '41/2483', 'text': 'Bao Nguyen'},
                                  {'@pid': '48/726', 'text': 'Adam Feldman'},
                                  {'@pid': '275/8043',
                                   'text': 'Sarath Bethapudi'},
                                  {'@pid': '80/390', 'text': 'Andrew Jennings'},
                                  {'@pid': '28/11416',
                                   'text': 'Chris G. Willcocks'}]},
           'doi': '10.1109/ISBI48211.2021.9434115',
           'ee': 'https://doi.org/10.1109/ISBI48211.2021.9434115',
           'key': 'conf/isbi/NguyenFBJW21',
           'pages': '1127-1131',
           'title': 'Unsupervised Region-Based Anomaly Detection In Brain MRI '
                    'With Adversarial Image Inpainting.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/isbi/NguyenFBJW21',
           'venue': 'ISBI',
           'year': '2021'},
  'url': 'URL#156461'},
 {'@id': '164895',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '265/2018',
                                   'text': 'Abdallah A. I. Ali'},
                                  {'@pid': '178/6303', 'text': 'T. T. Nguyen'},
                                  {'@pid': '299/7842', 'text': 'Sonia Boscolo'},
                                  {'@pid': '252/9388',
                                   'text': 'Shigehiro Takasaka'},
                                  {'@pid': '23/9102',
                                   'text': 'Ryuichi Sugizaki'},
                                  {'@pid': '96/9920',
                                   'text': 'Andrew D. Ellis'}]},
           'ee': 'https://ieeexplore.ieee.org/document/9489583',
           'key': 'conf/ofc/AliNBTSE21',
           'pages': '1-3',
           'title': 'Reduced Impact of Frequency Dithering on the Performance '
                    'of High-Order Modulation Format Phase Conjugation.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/ofc/AliNBTSE21',
           'venue': 'OFC',
           'year': '2021'},
  'url': 'URL#164895'},
 {'@id': '165231',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '257/9103',
                                   'text': 'Tu Thanh Nguyen'},
                                  {'@pid': '298/4538', 'text': 'S. Boscolo'},
                                  {'@pid': '265/2018',
                                   'text': 'Abdallah A. I. Ali'},
                                  {'@pid': '58/1101', 'text': 'M. Tan'},
                                  {'@pid': '58/6646',
                                   'text': 'Stylianos Sygletos'},
                                  {'@pid': '265/2008', 'text': 'S. Takasaka'},
                                  {'@pid': '23/9102',
                                   'text': 'Ryuichi Sugizaki'},
                                  {'@pid': '96/9920',
                                   'text': 'Andrew D. Ellis'}]},
           'ee': 'https://ieeexplore.ieee.org/document/9489676',
           'key': 'conf/ofc/NguyenBATSTSE21',
           'pages': '1-3',
           'title': 'Digital Compensation of Residual Pump Dithering in '
                    'Optical Phase Conjugation of High-Order QAM.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/ofc/NguyenBATSTSE21',
           'venue': 'OFC',
           'year': '2021'},
  'url': 'URL#165231'},
 {'@id': '165232',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '178/6303', 'text': 'T. T. Nguyen'},
                                  {'@pid': '299/7842', 'text': 'Sonia Boscolo'},
                                  {'@pid': '265/2018',
                                   'text': 'Abdallah A. I. Ali'},
                                  {'@pid': '251/6582', 'text': 'Mingming Tan'},
                                  {'@pid': '82/5445', 'text': 'Tingting Zhang'},
                                  {'@pid': '252/9388',
                                   'text': 'Shigehiro Takasaka'},
                                  {'@pid': '23/9102',
                                   'text': 'Ryuichi Sugizaki'},
                                  {'@pid': '58/6646',
                                   'text': 'Stylianos Sygletos'},
                                  {'@pid': '96/9920',
                                   'text': 'Andrew D. Ellis'}]},
           'ee': 'https://ieeexplore.ieee.org/document/9489851',
           'key': 'conf/ofc/NguyenBATZTSSE21',
           'pages': '1-3',
           'title': 'Kernel-Based Learning-Aided Phase Noise Compensation in '
                    'Dual-Pump Optical Phase Conjugation Coherent System.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/ofc/NguyenBATZTSSE21',
           'venue': 'OFC',
           'year': '2021'},
  'url': 'URL#165232'},
 {'@id': '169629',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '139/9683',
                                   'text': 'Kevin Martin Jose'},
                                  {'@pid': '29/5255', 'text': 'Thong Nguyen'},
                                  {'@pid': '203/8759',
                                   'text': 'Sean MacAvaney'},
                                  {'@pid': '05/2762-1',
                                   'text': 'Jeffrey Dalton 0001'},
                                  {'@pid': '49/7109', 'text': 'Andrew Yates'}]},
           'doi': '10.1145/3404835.3462784',
           'ee': 'https://doi.org/10.1145/3404835.3462784',
           'key': 'conf/sigir/JoseNM0Y21',
           'pages': '2595-2599',
           'title': 'DiffIR - Exploring Differences in Ranking Models&apos; '
                    'Behavior.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/sigir/JoseNM0Y21',
           'venue': 'SIGIR',
           'year': '2021'},
  'url': 'URL#169629'},
 {'@id': '177022',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '116/7143', 'text': 'Xiao Tan'},
                                  {'@pid': '276/1016', 'text': 'Andrew Su'},
                                  {'@pid': '154/2638',
                                   'text': 'Hamideh Hajiabadi'},
                                  {'@pid': '50/2494', 'text': 'Minh Tran'},
                                  {'@pid': '58/3306', 'text': 'Quan Nguyen'}]},
           'doi': '10.1007/978-1-0716-0826-5_10',
           'ee': 'https://doi.org/10.1007/978-1-0716-0826-5_10',
           'key': 'books/sp/21/TanSHTN21',
           'pages': '209-228',
           'title': 'Applying Machine Learning for Integration of Multi-Modal '
                    'Genomics Data and Imaging Data to Quantify Heterogeneity '
                    'in Tumour Tissues.',
           'type': 'Parts in Books or Collections',
           'url': 'https://dblp.org/rec/books/sp/21/TanSHTN21',
           'venue': 'Artificial Neural Networks, 3rd Edition',
           'year': '2021'},
  'url': 'URL#177022'},
 {'@id': '179807',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '120/7559',
                                   'text': 'Thang Xuan Duong'},
                                  {'@pid': '283/6432', 'text': 'Vu Ngoc Khiêm'},
                                  {'@pid': '132/9854',
                                   'text': 'Mikhail Itskov'},
                                  {'@pid': '283/6417',
                                   'text': 'Roger Andrew Sauer'}]},
           'ee': 'https://arxiv.org/abs/2101.03122',
           'key': 'journals/corr/abs-2101-03122',
           'title': 'A general theory for anisotropic Kirchhoff-Love shells '
                    'with embedded fibers and in-plane bending.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-2101-03122',
           'venue': 'CoRR',
           'volume': 'abs/2101.03122',
           'year': '2021'},
  'url': 'URL#179807'},
 {'@id': '190600',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '284/8065',
                                   'text': 'Graham E. Rowlands'},
                                  {'@pid': '284/8106',
                                   'text': 'Minh-Hai Nguyen'},
                                  {'@pid': '284/8384',
                                   'text': 'Guilhem J. Ribeill'},
                                  {'@pid': '286/8795',
                                   'text': 'Andrew P. Wagner'},
                                  {'@pid': '284/8068',
                                   'text': 'Luke C. G. Govia'},
                                  {'@pid': '284/8461',
                                   'text': 'Wendson A. S. Barbosa'},
                                  {'@pid': '115/8406',
                                   'text': 'Daniel J. Gauthier'},
                                  {'@pid': '284/8531',
                                   'text': 'Thomas A. Ohki'}]},
           'ee': 'https://arxiv.org/abs/2103.02522',
           'key': 'journals/corr/abs-2103-02522',
           'title': 'Reservoir Computing with Superconducting Electronics.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-2103-02522',
           'venue': 'CoRR',
           'volume': 'abs/2103.02522',
           'year': '2021'},
  'url': 'URL#190600'},
 {'@id': '191588',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '38/8809',
                                   'text': 'Ngaire Underhill'},
                                  {'@pid': '123/0880',
                                   'text': 'Andrew J. Weinert'}]},
           'ee': 'https://arxiv.org/abs/2103.04753',
           'key': 'journals/corr/abs-2103-04753',
           'title': 'Applicability and Surrogacy of Uncorrelated Airspace '
                    'Encounter Models at Low Altitudes.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-2103-04753',
           'venue': 'CoRR',
           'volume': 'abs/2103.04753',
           'year': '2021'},
  'url': 'URL#191588'},
 {'@id': '207933',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '57/6380', 'text': 'Andrew Bennett'},
                                  {'@pid': '156/0242',
                                   'text': 'Dipendra Misra'},
                                  {'@pid': '270/9074', 'text': 'Nga Than'}]},
           'ee': 'https://arxiv.org/abs/2105.10165',
           'key': 'journals/corr/abs-2105-10165',
           'title': 'Have you tried Neural Topic Models? Comparative Analysis '
                    'of Neural and Non-Neural Topic Models with Application to '
                    'COVID-19 Twitter Data.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-2105-10165',
           'venue': 'CoRR',
           'volume': 'abs/2105.10165',
           'year': '2021'},
  'url': 'URL#207933'},
 {'@id': '245065',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '251/6582', 'text': 'Mingming Tan'},
                                  {'@pid': '257/9103',
                                   'text': 'Tu Thanh Nguyen'},
                                  {'@pid': '282/0505', 'text': 'Pawel Rosa'},
                                  {'@pid': '282/1270',
                                   'text': 'Mohammad Ahmad Zaki Al-Khateeb'},
                                  {'@pid': '82/5445', 'text': 'Tingting Zhang'},
                                  {'@pid': '96/9920',
                                   'text': 'Andrew D. Ellis'}]},
           'doi': '10.1109/ACCESS.2020.3044525',
           'ee': 'https://doi.org/10.1109/ACCESS.2020.3044525',
           'key': 'journals/access/TanNRAZE20',
           'pages': '222766-222773',
           'title': 'Enhancing the Signal Power Symmetry for Optical Phase '
                    'Conjugation Using Erbium-Doped-Fibre-Assisted Raman '
                    'Amplification.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/access/TanNRAZE20',
           'venue': 'IEEE Access',
           'volume': '8',
           'year': '2020'},
  'url': 'URL#245065'},
 {'@id': '251174',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '217/4094',
                                   'text': 'Trung H. Nguyen'},
                                  {'@pid': '142/6114',
                                   'text': 'Simon D. Jones'},
                                  {'@pid': '142/6204',
                                   'text': 'Mariela Soto-Berelov'},
                                  {'@pid': '86/7547', 'text': 'Andrew Haywood'},
                                  {'@pid': '217/4047',
                                   'text': 'Samuel Hislop'}]},
           'doi': '10.1016/J.JAG.2019.101952',
           'ee': 'https://doi.org/10.1016/j.jag.2019.101952',
           'key': 'journals/aeog/NguyenJSHH20',
           'title': 'Monitoring aboveground forest biomass dynamics over three '
                    'decades using Landsat time-series and single-date '
                    'inventory data.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/aeog/NguyenJSHH20',
           'venue': 'Int. J. Appl. Earth Obs. Geoinformation',
           'volume': '84',
           'year': '2020'},
  'url': 'URL#251174'},
 {'@id': '258867',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '116/7143', 'text': 'Xiao Tan'},
                                  {'@pid': '276/1016', 'text': 'Andrew Su'},
                                  {'@pid': '50/2494', 'text': 'Minh Tran'},
                                  {'@pid': '58/3306', 'text': 'Quan Nguyen'}]},
           'doi': '10.1093/BIOINFORMATICS/BTZ914',
           'ee': 'https://doi.org/10.1093/bioinformatics/btz914',
           'key': 'journals/bioinformatics/TanSTN20',
           'number': '7',
           'pages': '2293-2294',
           'title': 'SpaCell - integrating tissue morphology and spatial gene '
                    'expression to predict disease cells.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/bioinformatics/TanSTN20',
           'venue': 'Bioinform.',
           'volume': '36',
           'year': '2020'},
  'url': 'URL#258867'},
 {'@id': '307593',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '173/0617',
                                   'text': 'Andrew Lukyamuzi'},
                                  {'@pid': '44/4913', 'text': 'John Ngubiri'},
                                  {'@pid': '33/10311',
                                   'text': 'Washington Okori'}]},
           'doi': '10.4018/IJSDA.2020100107',
           'ee': 'https://doi.org/10.4018/ijsda.2020100107',
           'key': 'journals/ijsda/LukyamuziNO20',
           'number': '4',
           'pages': '129-142',
           'title': 'Towards Ensemble Learning for Tracking Food Insecurity '
                    'From News Articles.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/ijsda/LukyamuziNO20',
           'venue': 'Int. J. Syst. Dyn. Appl.',
           'volume': '9',
           'year': '2020'},
  'url': 'URL#307593'},
 {'@id': '312928',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '21/2107', 'text': 'Jonathan Tuke'},
                                  {'@pid': '128/5665', 'text': 'Andrew Nguyen'},
                                  {'@pid': '91/8376', 'text': 'Mehwish Nasim'},
                                  {'@pid': '13/2439', 'text': 'Drew Mellor'},
                                  {'@pid': '157/2404',
                                   'text': 'Asanga Wickramasinghe'},
                                  {'@pid': '55/1744', 'text': 'Nigel G. Bean'},
                                  {'@pid': '126/5006',
                                   'text': 'Lewis Mitchell'}]},
           'doi': '10.1016/J.IPM.2019.102147',
           'ee': 'https://doi.org/10.1016/j.ipm.2019.102147',
           'key': 'journals/ipm/TukeNNMWBM20',
           'number': '2',
           'pages': '102147',
           'title': 'Pachinko Prediction - A Bayesian method for event '
                    'prediction from social media data.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/ipm/TukeNNMWBM20',
           'venue': 'Inf. Process. Manag.',
           'volume': '57',
           'year': '2020'},
  'url': 'URL#312928'},
 {'@id': '330023',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '98/2634', 'text': 'Trung Nguyen'},
                                  {'@pid': '87/6413',
                                   'text': 'George K. I. Mann'},
                                  {'@pid': '88/6967', 'text': 'Andrew Vardy'},
                                  {'@pid': '05/6361',
                                   'text': 'Raymond G. Gosine'}]},
           'doi': '10.1155/2020/7362952',
           'ee': 'https://doi.org/10.1155/2020/7362952',
           'key': 'journals/jr/NguyenMVG20',
           'pages': '7362952:1-7362952:14',
           'title': 'CKF-Based Visual Inertial Odometry for Long-Term '
                    'Trajectory Operations.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/jr/NguyenMVG20',
           'venue': 'J. Robotics',
           'volume': '2020',
           'year': '2020'},
  'url': 'URL#330023'},
 {'@id': '350424',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '92/9835', 'text': 'Tianyu Li'},
                                  {'@pid': '254/6674',
                                   'text': 'Matthew Butrovich'},
                                  {'@pid': '264/0039', 'text': 'Amadou Ngom'},
                                  {'@pid': '251/5311', 'text': 'Wan Shen Lim'},
                                  {'@pid': '264/0055', 'text': 'Wes McKinney'},
                                  {'@pid': '58/4127', 'text': 'Andrew Pavlo'}]},
           'doi': '10.14778/3436905.3436913',
           'ee': 'http://www.vldb.org/pvldb/vol14/p534-li.pdf',
           'key': 'journals/pvldb/LiBNLMP20',
           'number': '4',
           'pages': '534-546',
           'title': 'Mainlining Databases - Supporting Fast Transactional '
                    'Workloads on Universal Columnar Data File Formats.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/pvldb/LiBNLMP20',
           'venue': 'Proc. VLDB Endow.',
           'volume': '14',
           'year': '2020'},
  'url': 'URL#350424'},
 {'@id': '350458',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '145/6329',
                                   'text': 'Prashanth Menon'},
                                  {'@pid': '264/0039', 'text': 'Amadou Ngom'},
                                  {'@pid': '65/4120', 'text': 'Todd C. Mowry'},
                                  {'@pid': '58/4127', 'text': 'Andrew Pavlo'},
                                  {'@pid': '74/3608-6',
                                   'text': 'Lin Ma 0006'}]},
           'doi': '10.14778/3425879.3425882',
           'ee': 'http://www.vldb.org/pvldb/vol14/p101-menon.pdf',
           'key': 'journals/pvldb/MenonNMP020',
           'number': '2',
           'pages': '101-113',
           'title': 'Permutable Compiled Queries - Dynamically Adapting '
                    'Compiled Queries without Recompiling.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/pvldb/MenonNMP020',
           'venue': 'Proc. VLDB Endow.',
           'volume': '14',
           'year': '2020'},
  'url': 'URL#350458'},
 {'@id': '355691',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '217/4094',
                                   'text': 'Trung H. Nguyen'},
                                  {'@pid': '142/6114',
                                   'text': 'Simon D. Jones'},
                                  {'@pid': '142/6204',
                                   'text': 'Mariela Soto-Berelov'},
                                  {'@pid': '86/7547', 'text': 'Andrew Haywood'},
                                  {'@pid': '217/4047',
                                   'text': 'Samuel Hislop'}]},
           'doi': '10.3390/RS12010098',
           'ee': 'https://doi.org/10.3390/rs12010098',
           'key': 'journals/remotesensing/NguyenJSHH20',
           'number': '1',
           'pages': '98',
           'title': 'Landsat Time-Series for Estimating Forest Aboveground '
                    'Biomass and Its Dynamics across Space and Time - A '
                    'Review.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/remotesensing/NguyenJSHH20',
           'venue': 'Remote. Sens.',
           'volume': '12',
           'year': '2020'},
  'url': 'URL#355691'},
 {'@id': '416029',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '289/3694',
                                   'text': 'Johnathan A. Edwards'},
                                  {'@pid': '289/4548', 'text': 'Andrew Post'},
                                  {'@pid': '289/3783',
                                   'text': 'Jeselyn Rhodes'},
                                  {'@pid': '289/4181',
                                   'text': 'Minh Ly T. Nguyen'},
                                  {'@pid': '289/3868',
                                   'text': 'Julia W. Gallini'},
                                  {'@pid': '91/11007',
                                   'text': 'Vincent C. Marconi'}]},
           'ee': 'https://knowledge.amia.org/72332-amia-1.4602255/t005-1.4604904/t005-1.4604905/3409438-1.4605641/3417145-1.4605638',
           'key': 'conf/amia/EdwardsPRNGM20',
           'title': 'Atlanta HIV Disease Registry - The Intersection of '
                    'Private and Public Healthcare for Translational Science.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/amia/EdwardsPRNGM20',
           'venue': 'AMIA',
           'year': '2020'},
  'url': 'URL#416029'},
 {'@id': '445477',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '232/5457',
                                   'text': 'Thanh H. Nguyen'},
                                  {'@pid': '167/2523', 'text': 'Andrew Butler'},
                                  {'@pid': '04/1895', 'text': 'Haifeng Xu'}]},
           'doi': '10.3233/FAIA200092',
           'ee': 'https://doi.org/10.3233/FAIA200092',
           'key': 'conf/ecai/NguyenBX20',
           'pages': '187-194',
           'title': 'Tackling Imitative Attacker Deception in Repeated '
                    'Bayesian Stackelberg Security Games.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/ecai/NguyenBX20',
           'venue': 'ECAI',
           'year': '2020'},
  'url': 'URL#445477'},
 {'@id': '450623',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '183/5428', 'text': 'Thang Ngo'},
                                  {'@pid': '165/2223',
                                   'text': 'Benjamin T. Champion'},
                                  {'@pid': '04/8202',
                                   'text': 'Matthew A. Joordens'},
                                  {'@pid': '25/5457', 'text': 'Andrew Price'},
                                  {'@pid': '37/4738', 'text': 'David Morton'},
                                  {'@pid': '04/116',
                                   'text': 'Pubudu N. Pathirana'}]},
           'doi': '10.1109/EMBC44109.2020.9176347',
           'ee': 'https://doi.org/10.1109/EMBC44109.2020.9176347',
           'key': 'conf/embc/NgoCJPMP20',
           'pages': '4616-4619',
           'title': 'Recurrence Quantification Analysis for Human Activity '
                    'Recognition.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/embc/NgoCJPMP20',
           'venue': 'EMBC',
           'year': '2020'},
  'url': 'URL#450623'},
 {'@id': '465204',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '263/2830', 'text': 'Lucy Bryant'},
                                  {'@pid': '196/2231',
                                   'text': 'Bronwyn Hemsley'},
                                  {'@pid': '198/1804',
                                   'text': 'Benjamin Bailey'},
                                  {'@pid': '147/4431', 'text': 'Andrew Bluff'},
                                  {'@pid': '30/8614', 'text': 'Vincent Nguyen'},
                                  {'@pid': '263/2991', 'text': 'Peter Stubbs'},
                                  {'@pid': '263/3009', 'text': 'Diana Barnett'},
                                  {'@pid': '263/3292', 'text': 'Chris Jacobs'},
                                  {'@pid': '195/6815', 'text': 'Cherie Lucas'},
                                  {'@pid': '204/2638', 'text': 'Emma Power'}]},
           'ee': 'http://hdl.handle.net/10125/64179',
           'key': 'conf/hicss/BryantHBBNSBJLP20',
           'pages': '1-10',
           'title': 'Opportunities for the Implementation of Immersive Virtual '
                    'Reality in Rehabilitation.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/hicss/BryantHBBNSBJLP20',
           'venue': 'HICSS',
           'year': '2020'},
  'url': 'URL#465204'},
 {'@id': '466720',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '123/0880',
                                   'text': 'Andrew J. Weinert'},
                                  {'@pid': '38/8809',
                                   'text': 'Ngaire Underhill'},
                                  {'@pid': '151/7499', 'text': 'Bilal Gill'},
                                  {'@pid': '271/7894',
                                   'text': 'Ashley Wicks'}]},
           'doi': '10.1109/HPEC43674.2020.9286229',
           'ee': 'https://doi.org/10.1109/HPEC43674.2020.9286229',
           'key': 'conf/hpec/WeinertUGW20',
           'pages': '1-6',
           'title': 'Processing of Crowdsourced Observations of Aircraft in a '
                    'High Performance Computing Environment.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/hpec/WeinertUGW20',
           'venue': 'HPEC',
           'year': '2020'},
  'url': 'URL#466720'},
 {'@id': '469363',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '243/5729', 'text': 'Naor Alaluf'},
                                  {'@pid': '69/1732', 'text': 'Alina Ene'},
                                  {'@pid': '41/771', 'text': 'Moran Feldman'},
                                  {'@pid': '62/3796', 'text': 'Huy L. Nguyen'},
                                  {'@pid': '255/9377', 'text': 'Andrew Suh'}]},
           'doi': '10.4230/LIPICS.ICALP.2020.6',
           'ee': 'https://doi.org/10.4230/LIPIcs.ICALP.2020.6',
           'key': 'conf/icalp/AlalufEFNS20',
           'pages': '6:1-6:19',
           'title': 'Optimal Streaming Algorithms for Submodular Maximization '
                    'with Cardinality Constraints.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icalp/AlalufEFNS20',
           'venue': 'ICALP',
           'year': '2020'},
  'url': 'URL#469363'},
 {'@id': '480473',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '286/1927', 'text': 'Nguyen Dao'},
                                  {'@pid': '65/11052',
                                   'text': 'Andrew Attwood'},
                                  {'@pid': '286/1943', 'text': 'Bea Healy'},
                                  {'@pid': '60/5993', 'text': 'Dirk Koch'}]},
           'doi': '10.1109/ICFPT51103.2020.00034',
           'ee': 'https://doi.org/10.1109/ICFPT51103.2020.00034',
           'key': 'conf/icfpt/DaoAHK20',
           'pages': '190-195',
           'title': 'FlexBex - A RISC-V with a Reconfigurable Instruction '
                    'Extension.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icfpt/DaoAHK20',
           'venue': 'FPT',
           'year': '2020'},
  'url': 'URL#480473'},
 {'@id': '488830',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '16/6465-3',
                                   'text': 'Cheng Li 0003'},
                                  {'@pid': '57/6712', 'text': 'Santu Rana'},
                                  {'@pid': '90/5766', 'text': 'Andrew Gill'},
                                  {'@pid': '188/2699', 'text': 'Dang Nguyen'},
                                  {'@pid': '47/333-1',
                                   'text': 'Sunil Gupta 0001'},
                                  {'@pid': '81/1984',
                                   'text': 'Svetha Venkatesh'}]},
           'doi': '10.1109/ICPR48806.2021.9412770',
           'ee': 'https://doi.org/10.1109/ICPR48806.2021.9412770',
           'key': 'conf/icpr/0003RGN0V20',
           'pages': '3288-3295',
           'title': 'Factor Screening using Bayesian Active Learning and '
                    'Gaussian Process Meta-Modelling.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icpr/0003RGN0V20',
           'venue': 'ICPR',
           'year': '2020'},
  'url': 'URL#488830'},
 {'@id': '505097',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '230/3939', 'text': 'Andrew Hard'},
                                  {'@pid': '17/5922', 'text': 'Kurt Partridge'},
                                  {'@pid': '265/6581',
                                   'text': 'Cameron Nguyen'},
                                  {'@pid': '190/9732',
                                   'text': 'Niranjan Subrahmanya'},
                                  {'@pid': '265/6608', 'text': 'Aishanee Shah'},
                                  {'@pid': '185/6950', 'text': 'Pai Zhu'},
                                  {'@pid': '38/4515',
                                   'text': 'Ignacio Lopez-Moreno'},
                                  {'@pid': '230/3901',
                                   'text': 'Rajiv Mathews'}]},
           'doi': '10.21437/INTERSPEECH.2020-3023',
           'ee': 'https://doi.org/10.21437/Interspeech.2020-3023',
           'key': 'conf/interspeech/HardPNSSZLM20',
           'pages': '4343-4347',
           'title': 'Training Keyword Spotting Models on Non-IID Data with '
                    'Federated Learning.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/interspeech/HardPNSSZLM20',
           'venue': 'INTERSPEECH',
           'year': '2020'},
  'url': 'URL#505097'},
 {'@id': '506221',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '289/8719',
                                   'text': 'Alexander Xiong'},
                                  {'@pid': '55/10989',
                                   'text': 'Michael Nguyen'},
                                  {'@pid': '270/5662', 'text': 'Andrew So'},
                                  {'@pid': '44/5410',
                                   'text': 'Tingting Chen'}]},
           'doi': '10.1109/IPCCC50635.2020.9391544',
           'ee': 'https://doi.org/10.1109/IPCCC50635.2020.9391544',
           'key': 'conf/ipccc/XiongNSC20',
           'pages': '1-6',
           'title': 'Privacy Preserving Inference with Convolutional Neural '
                    'Network Ensemble.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/ipccc/XiongNSC20',
           'venue': 'IPCCC',
           'year': '2020'},
  'url': 'URL#506221'},
 {'@id': '534216',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '257/9103',
                                   'text': 'Tu Thanh Nguyen'},
                                  {'@pid': '53/5529', 'text': 'Paul Harper'},
                                  {'@pid': '205/2410',
                                   'text': 'O. S. Sunish Kumar'},
                                  {'@pid': '96/9920',
                                   'text': 'Andrew D. Ellis'}]},
           'ee': 'https://ieeexplore.ieee.org/document/9083480',
           'key': 'conf/ofc/NguyenHKE30',
           'pages': '1-3',
           'title': 'Nonlinear Tolerance Enhancement Based on Perturbation '
                    'Theory for Optical Phase Conjugation Systems.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/ofc/NguyenHKE30',
           'venue': 'OFC',
           'year': '2020'},
  'url': 'URL#534216'},
 {'@id': '534217',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '257/9103',
                                   'text': 'Tu Thanh Nguyen'},
                                  {'@pid': '82/5445', 'text': 'Tingting Zhang'},
                                  {'@pid': '265/0849',
                                   'text': 'Mahmood Abu-Romoh'},
                                  {'@pid': '96/9920',
                                   'text': 'Andrew D. Ellis'}]},
           'ee': 'https://ieeexplore.ieee.org/document/9083108',
           'key': 'conf/ofc/NguyenZAE30',
           'pages': '1-3',
           'title': 'Artificial Neural Network-Based Compensation for '
                    'Transceiver Nonlinearity in Probabilistic Shaping '
                    'Systems.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/ofc/NguyenZAE30',
           'venue': 'OFC',
           'year': '2020'},
  'url': 'URL#534217'},
 {'@id': '536291',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '210/0881',
                                   'text': 'Vishwajith Ramesh'},
                                  {'@pid': '128/5665', 'text': 'Andrew Nguyen'},
                                  {'@pid': '35/962', 'text': 'Kunal Agrawal'},
                                  {'@pid': '264/7391',
                                   'text': 'Brett C. Meyer'},
                                  {'@pid': '45/1844',
                                   'text': 'Gert Cauwenberghs'},
                                  {'@pid': '56/3408', 'text': 'Nadir Weibel'}]},
           'doi': '10.1145/3421937.3422019',
           'ee': 'https://doi.org/10.1145/3421937.3422019',
           'key': 'conf/ph/RameshNAMCW20',
           'pages': '146-155',
           'title': 'Assessing Clinicians&apos; Reliance on Computational Aids '
                    'for Acute Stroke Diagnosis.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/ph/RameshNAMCW20',
           'venue': 'PervasiveHealth',
           'year': '2020'},
  'url': 'URL#536291'},
 {'@id': '556563',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '94/5347',
                                   'text': 'El Mehdi Boujamaa'},
                                  {'@pid': '273/0156',
                                   'text': 'Samsudeen Mohamed Ali'},
                                  {'@pid': '273/0333',
                                   'text': 'Steve Ngueya Wandji'},
                                  {'@pid': '268/1831',
                                   'text': 'Alexandra Gourio'},
                                  {'@pid': '28/9801', 'text': 'Suk-Soo Pyo'},
                                  {'@pid': '83/1378', 'text': 'Gwanhyeob Koh'},
                                  {'@pid': '273/0149', 'text': 'Yoonjong Song'},
                                  {'@pid': '11/9389', 'text': 'Taejoong Song'},
                                  {'@pid': '120/2606', 'text': 'Jongwook Kye'},
                                  {'@pid': '143/3940',
                                   'text': 'Jean-Christophe Vial'},
                                  {'@pid': '273/0002', 'text': 'Andrew Sowden'},
                                  {'@pid': '273/0233', 'text': 'Manuj Rathor'},
                                  {'@pid': '39/3921', 'text': 'Cyrille Dray'}]},
           'doi': '10.1109/VLSICIRCUITS18222.2020.9162803',
           'ee': 'https://doi.org/10.1109/VLSICircuits18222.2020.9162803',
           'key': 'conf/vlsic/BoujamaaAWGPKSS20',
           'pages': '1-2',
           'title': 'A 14.7Mb/mm2 28nm FDSOI STT-MRAM with Current Starved '
                    'Read Path, 52Ω/Sigma Offset Voltage Sense Amplifier and '
                    'Fully Trimmable CTAT Reference.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/vlsic/BoujamaaAWGPKSS20',
           'venue': 'VLSI Circuits',
           'year': '2020'},
  'url': 'URL#556563'},
 {'@id': '569537',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '284/4220',
                                   'text': 'Nina M. van Esbroeck'},
                                  {'@pid': '284/4262',
                                   'text': 'Dominic T. Lennon'},
                                  {'@pid': '175/4399', 'text': 'Hyungil Moon'},
                                  {'@pid': '91/4900', 'text': 'V. Nguyen'},
                                  {'@pid': '284/3902',
                                   'text': 'Florian Vigneau'},
                                  {'@pid': '284/4281',
                                   'text': 'Leon C. Camenzind'},
                                  {'@pid': '228/9206', 'text': 'Liuqi Yu'},
                                  {'@pid': '228/9253',
                                   'text': 'Dominik M. Zumbühl'},
                                  {'@pid': '284/4004',
                                   'text': 'G. Andrew D. Briggs'},
                                  {'@pid': '31/1783',
                                   'text': 'Dino Sejdinovic'},
                                  {'@pid': '228/9144',
                                   'text': 'Natalia Ares'}]},
           'ee': 'https://arxiv.org/abs/2001.04409',
           'key': 'journals/corr/abs-2001-04409',
           'title': 'Quantum device fine-tuning using unsupervised embedding '
                    'learning.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-2001-04409',
           'venue': 'CoRR',
           'volume': 'abs/2001.04409',
           'year': '2020'},
  'url': 'URL#569537'},
 {'@id': '588548',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '82/5111',
                                   'text': 'Monica Babes-Vroman'},
                                  {'@pid': '37/49', 'text': 'Andrew Tjang'},
                                  {'@pid': 'n/ThuDNguyen',
                                   'text': 'Thu D. Nguyen'}]},
           'ee': 'https://arxiv.org/abs/2004.13865',
           'key': 'journals/corr/abs-2004-13865',
           'title': 'Ethnic Diversity in Computer Science at a Large Public R1 '
                    'Research University.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-2004-13865',
           'venue': 'CoRR',
           'volume': 'abs/2004.13865',
           'year': '2020'},
  'url': 'URL#588548'},
 {'@id': '588799',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '92/9835', 'text': 'Tianyu Li'},
                                  {'@pid': '254/6674',
                                   'text': 'Matthew Butrovich'},
                                  {'@pid': '264/0039', 'text': 'Amadou Ngom'},
                                  {'@pid': '251/5311', 'text': 'Wan Shen Lim'},
                                  {'@pid': '264/0055', 'text': 'Wes McKinney'},
                                  {'@pid': '58/4127', 'text': 'Andrew Pavlo'}]},
           'ee': 'https://arxiv.org/abs/2004.14471',
           'key': 'journals/corr/abs-2004-14471',
           'title': 'Mainlining Databases - Supporting Fast Transactional '
                    'Workloads on Universal Columnar Data File Formats.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-2004-14471',
           'venue': 'CoRR',
           'volume': 'abs/2004.14471',
           'year': '2020'},
  'url': 'URL#588799'},
 {'@id': '593156',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '230/3939', 'text': 'Andrew Hard'},
                                  {'@pid': '17/5922', 'text': 'Kurt Partridge'},
                                  {'@pid': '265/6581',
                                   'text': 'Cameron Nguyen'},
                                  {'@pid': '190/9732',
                                   'text': 'Niranjan Subrahmanya'},
                                  {'@pid': '265/6608', 'text': 'Aishanee Shah'},
                                  {'@pid': '185/6950', 'text': 'Pai Zhu'},
                                  {'@pid': '38/4515',
                                   'text': 'Ignacio Lopez-Moreno'},
                                  {'@pid': '230/3901',
                                   'text': 'Rajiv Mathews'}]},
           'ee': 'https://arxiv.org/abs/2005.10406',
           'key': 'journals/corr/abs-2005-10406',
           'title': 'Training Keyword Spotting Models on Non-IID Data with '
                    'Federated Learning.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-2005-10406',
           'venue': 'CoRR',
           'volume': 'abs/2005.10406',
           'year': '2020'},
  'url': 'URL#593156'},
 {'@id': '608672',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '123/0880',
                                   'text': 'Andrew J. Weinert'},
                                  {'@pid': '38/8809',
                                   'text': 'Ngaire Underhill'},
                                  {'@pid': '151/7499', 'text': 'Bilal Gill'},
                                  {'@pid': '271/7894',
                                   'text': 'Ashley Wicks'}]},
           'ee': 'https://arxiv.org/abs/2008.00861',
           'key': 'journals/corr/abs-2008-00861',
           'title': 'Processing of Crowdsourced Observations of Aircraft in a '
                    'High Performance Computing Environment.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-2008-00861',
           'venue': 'CoRR',
           'volume': 'abs/2008.00861',
           'year': '2020'},
  'url': 'URL#608672'},
 {'@id': '613009',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '274/0695',
                                   'text': 'Francisco Luongo'},
                                  {'@pid': '274/0687', 'text': 'Ryan Hakim'},
                                  {'@pid': '274/0677',
                                   'text': 'Jessica H. Nguyen'},
                                  {'@pid': '25/1529',
                                   'text': 'Animashree Anandkumar'},
                                  {'@pid': '274/0723',
                                   'text': 'Andrew J. Hung'}]},
           'ee': 'https://arxiv.org/abs/2008.11833',
           'key': 'journals/corr/abs-2008-11833',
           'title': 'Deep learning-based computer vision to recognize and '
                    'classify suturing gestures in robot-assisted surgery.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-2008-11833',
           'venue': 'CoRR',
           'volume': 'abs/2008.11833',
           'year': '2020'},
  'url': 'URL#613009'},
 {'@id': '613278',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '77/2868',
                                   'text': 'Dinh Hoa Nguyen'},
                                  {'@pid': '29/3177',
                                   'text': 'Andrew Chapman'}]},
           'ee': 'https://arxiv.org/abs/2008.12512',
           'key': 'journals/corr/abs-2008-12512',
           'title': 'Universal Wireless Power Transfer for Energy Security, '
                    'Availability and Convenience.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-2008-12512',
           'venue': 'CoRR',
           'volume': 'abs/2008.12512',
           'year': '2020'},
  'url': 'URL#613278'},
 {'@id': '613598',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '29/3177', 'text': 'Andrew Chapman'},
                                  {'@pid': '77/2868',
                                   'text': 'Dinh Hoa Nguyen'},
                                  {'@pid': '274/1014',
                                   'text': 'Hadi Farabi-As'},
                                  {'@pid': '274/0953', 'text': 'Kenshi Itaoka'},
                                  {'@pid': '274/1026',
                                   'text': 'Katsuhiko Hirose'},
                                  {'@pid': '34/30', 'text': 'Yasumasa Fujii'}]},
           'ee': 'https://arxiv.org/abs/2008.13414',
           'key': 'journals/corr/abs-2008-13414',
           'title': 'Hydrogen Penetration and Fuel Cell Vehicle Deployment in '
                    'the Carbon Constrained Future Energy System.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-2008-13414',
           'venue': 'CoRR',
           'volume': 'abs/2008.13414',
           'year': '2020'},
  'url': 'URL#613598'},
 {'@id': '619261',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '91/4900', 'text': 'V. Nguyen'},
                                  {'@pid': '275/8139', 'text': 'S. B. Orbell'},
                                  {'@pid': '284/4262',
                                   'text': 'Dominic T. Lennon'},
                                  {'@pid': '175/4399', 'text': 'Hyungil Moon'},
                                  {'@pid': '284/3902',
                                   'text': 'Florian Vigneau'},
                                  {'@pid': '284/4281',
                                   'text': 'Leon C. Camenzind'},
                                  {'@pid': '228/9206', 'text': 'Liuqi Yu'},
                                  {'@pid': '228/9253',
                                   'text': 'Dominik M. Zumbühl'},
                                  {'@pid': '284/4004',
                                   'text': 'G. Andrew D. Briggs'},
                                  {'@pid': '59/6403',
                                   'text': 'Michael A. Osborne'},
                                  {'@pid': '31/1783',
                                   'text': 'Dino Sejdinovic'},
                                  {'@pid': '228/9144',
                                   'text': 'Natalia Ares'}]},
           'ee': 'https://arxiv.org/abs/2009.14825',
           'key': 'journals/corr/abs-2009-14825',
           'title': 'Deep Reinforcement Learning for Efficient Measurement of '
                    'Quantum Devices.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-2009-14825',
           'venue': 'CoRR',
           'volume': 'abs/2009.14825',
           'year': '2020'},
  'url': 'URL#619261'},
 {'@id': '620148',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '41/2483', 'text': 'Bao Nguyen'},
                                  {'@pid': '48/726', 'text': 'Adam Feldman'},
                                  {'@pid': '275/8043',
                                   'text': 'Sarath Bethapudi'},
                                  {'@pid': '80/390', 'text': 'Andrew Jennings'},
                                  {'@pid': '28/11416',
                                   'text': 'Chris G. Willcocks'}]},
           'ee': 'https://arxiv.org/abs/2010.01942',
           'key': 'journals/corr/abs-2010-01942',
           'title': 'Unsupervised Region-based Anomaly Detection in Brain MRI '
                    'with Adversarial Image Inpainting.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-2010-01942',
           'venue': 'CoRR',
           'volume': 'abs/2010.01942',
           'year': '2020'},
  'url': 'URL#620148'},
 {'@id': '666061',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '167/3656',
                                   'text': 'Jean de Dieu Nguimfack-Ndongmo'},
                                  {'@pid': '256/3838',
                                   'text': 'Andrew Muluh Fombu'},
                                  {'@pid': '256/3921',
                                   'text': 'Lionel Leroy Sonfack'},
                                  {'@pid': '167/3649',
                                   'text': 'René Kuaté-Fochie'},
                                  {'@pid': '50/3409',
                                   'text': 'Godpromesse Kenné'},
                                  {'@pid': '47/7036',
                                   'text': 'Françoise Lamnabhi-Lagarrigue'}]},
           'ee': 'https://arima.episciences.org/5434',
           'key': 'journals/arima/Nguimfack-Ndongmo19',
           'title': 'Challenges of mastering the energy sector and sustainable '
                    'solutions for development in Africa.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/arima/Nguimfack-Ndongmo19',
           'venue': 'ARIMA J.',
           'volume': '30',
           'year': '2019'},
  'url': 'URL#666061'},
 {'@id': '736408',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '220/2794',
                                   'text': 'Andrew J. Westphal'},
                                  {'@pid': '183/6075',
                                   'text': 'Tiffany E. Chow'},
                                  {'@pid': '250/1017', 'text': 'Corey Ngoy'},
                                  {'@pid': '250/0867', 'text': 'Xiaoye Zuo'},
                                  {'@pid': '250/1136', 'text': 'Vivian Liao'},
                                  {'@pid': '250/0829',
                                   'text': 'Laryssa A. Storozuk'},
                                  {'@pid': '250/0966',
                                   'text': 'Megan A. K. Peters'},
                                  {'@pid': '07/11385', 'text': 'Allan D. Wu'},
                                  {'@pid': '87/8273',
                                   'text': 'Jesse Rissman'}]},
           'doi': '10.1162/JOCN_A_01421',
           'ee': 'https://doi.org/10.1162/jocn_a_01421',
           'key': 'journals/jocn/WestphalCNZLSPW19',
           'number': '9',
           'pages': '1380-1391',
           'title': 'Anodal Transcranial Direct Current Stimulation to the '
                    'Left Rostrolateral Prefrontal Cortex Selectively Improves '
                    'Source Memory Retrieval.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/jocn/WestphalCNZLSPW19',
           'venue': 'J. Cogn. Neurosci.',
           'volume': '31',
           'year': '2019'},
  'url': 'URL#736408'},
 {'@id': '775261',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '167/3105-1',
                                   'text': 'Saeid Barati 0001'},
                                  {'@pid': '168/9534',
                                   'text': 'Ferenc A. Bartha'},
                                  {'@pid': '87/7683',
                                   'text': 'Swarnendu Biswas'},
                                  {'@pid': 'c/RCartwright',
                                   'text': 'Robert Cartwright'},
                                  {'@pid': '172/2668', 'text': 'Adam Duracz'},
                                  {'@pid': 'f/DonaldSFussell',
                                   'text': 'Donald S. Fussell'},
                                  {'@pid': 'h/HenryHoffmann',
                                   'text': 'Henry Hoffmann'},
                                  {'@pid': '154/4174', 'text': 'Connor Imes'},
                                  {'@pid': '06/3770',
                                   'text': 'Jason E. Miller'},
                                  {'@pid': '12/9377', 'text': 'Nikita Mishra'},
                                  {'@pid': 'a/Arvind', 'text': 'Arvind'},
                                  {'@pid': '13/2526', 'text': 'Dung Nguyen'},
                                  {'@pid': '41/4448',
                                   'text': 'Krishna V. Palem'},
                                  {'@pid': '91/7829', 'text': 'Yan Pei'},
                                  {'@pid': '71/5735', 'text': 'Keshav Pingali'},
                                  {'@pid': '236/4073', 'text': 'Ryuichi Sai'},
                                  {'@pid': '57/4524', 'text': 'Andrew Wright'},
                                  {'@pid': '62/9988',
                                   'text': 'Yao-Hsiang Yang'},
                                  {'@pid': '175/6230',
                                   'text': 'Sizhuo Zhang'}]},
           'doi': '10.1109/MS.2018.2884864',
           'ee': 'https://doi.org/10.1109/MS.2018.2884864',
           'key': 'journals/software/BaratiBBCDFHIMM19',
           'number': '2',
           'pages': '73-82',
           'title': 'Proteus - Language and Runtime Support for Self-Adaptive '
                    'Software Development.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/software/BaratiBBCDFHIMM19',
           'venue': 'IEEE Softw.',
           'volume': '36',
           'year': '2019'},
  'url': 'URL#775261'},
 {'@id': '818371',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '243/3868', 'text': 'Pujan Paudel'},
                                  {'@pid': '210/3354',
                                   'text': 'Trung T. Nguyen'},
                                  {'@pid': '153/1912', 'text': 'Amartya Hatua'},
                                  {'@pid': '79/1202',
                                   'text': 'Andrew H. Sung'}]},
           'doi': '10.1145/3341161.3342898',
           'ee': 'https://doi.org/10.1145/3341161.3342898',
           'key': 'conf/asunam/PaudelNHS19',
           'pages': '501-508',
           'title': 'How the tables have turned - studying the new wave of '
                    'social bots on Twitter using complex network analysis '
                    'techniques.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/asunam/PaudelNHS19',
           'venue': 'ASONAM',
           'year': '2019'},
  'url': 'URL#818371'},
 {'@id': '821414',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '243/3868', 'text': 'Pujan Paudel'},
                                  {'@pid': '153/1912', 'text': 'Amartya Hatua'},
                                  {'@pid': '210/3354',
                                   'text': 'Trung T. Nguyen'},
                                  {'@pid': '79/1202',
                                   'text': 'Andrew H. Sung'}]},
           'doi': '10.1007/978-3-030-23551-2_6',
           'ee': 'https://doi.org/10.1007/978-3-030-23551-2_6',
           'key': 'conf/bigdata2/PaudelHNS19',
           'pages': '80-94',
           'title': 'User Level Multi-feed Weighted Topic Embeddings for '
                    'Studying Network Interaction in Twitter.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/bigdata2/PaudelHNS19',
           'venue': 'BigData Congress',
           'year': '2019'},
  'url': 'URL#821414'},
 {'@id': '823519',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '210/3354',
                                   'text': 'Trung T. Nguyen'},
                                  {'@pid': '153/1912', 'text': 'Amartya Hatua'},
                                  {'@pid': '79/1202',
                                   'text': 'Andrew H. Sung'}]},
           'doi': '10.1007/978-3-030-23813-1_15',
           'ee': 'https://doi.org/10.1007/978-3-030-23813-1_15',
           'key': 'conf/blockchain/NguyenHS19',
           'pages': '118-125',
           'title': 'Blockchain Approach to Solve Collective Decision Making '
                    'Problems for Swarm Robotics.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/blockchain/NguyenHS19',
           'venue': 'BLOCKCHAIN',
           'year': '2019'},
  'url': 'URL#823519'},
 {'@id': '840136',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '290/8476', 'text': 'Andrew Phuong'},
                                  {'@pid': '290/8726', 'text': 'Judy Nguyen'}]},
           'ee': 'https://repository.isls.org/handle/1/4445',
           'key': 'conf/cscl/PhuongN19',
           'title': 'Evaluating an Adaptive Equity-Oriented Pedagogy on '
                    'Student Collaboration Outcomes Through Randomized '
                    'Controlled Trials.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/cscl/PhuongN19',
           'venue': 'CSCL',
           'year': '2019'},
  'url': 'URL#840136'},
 {'@id': '856007',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '241/8082',
                                   'text': 'Pranav Venuprasad'},
                                  {'@pid': '241/8072', 'text': 'Tushar Dobhal'},
                                  {'@pid': '241/8092', 'text': 'Anurag Paul'},
                                  {'@pid': '241/8127',
                                   'text': 'Tu N. M. Nguyen'},
                                  {'@pid': '75/1719', 'text': 'Andrew Gilman'},
                                  {'@pid': '07/6197',
                                   'text': 'Pamela C. Cosman'},
                                  {'@pid': '220/1568',
                                   'text': 'Leanne Chukoskie'}]},
           'doi': '10.1145/3314111.3319843',
           'ee': 'https://doi.org/10.1145/3314111.3319843',
           'key': 'conf/etra/VenuprasadDPNGC19',
           'pages': '21:1-21:8',
           'title': 'Characterizing joint attention behavior during real world '
                    'interactions using automated object and gaze detection.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/etra/VenuprasadDPNGC19',
           'venue': 'ETRA',
           'year': '2019'},
  'url': 'URL#856007'},
 {'@id': '901912',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '233/6756',
                                   'text': 'Ryszard Buczynski'},
                                  {'@pid': '277/4398',
                                   'text': 'Alicja Anuszkiewicz'},
                                  {'@pid': '280/7951',
                                   'text': 'Adam Filipkowski'},
                                  {'@pid': '280/8503',
                                   'text': 'Hue Thi Nguyen'},
                                  {'@pid': '280/8487',
                                   'text': 'Tomasz Stefaniuk'},
                                  {'@pid': '280/8619',
                                   'text': 'Damian Michalik'},
                                  {'@pid': '280/8117',
                                   'text': 'Marcin Franczyk'},
                                  {'@pid': '233/7196',
                                   'text': 'Ryszard Stepien'},
                                  {'@pid': '233/6813', 'text': 'Dariusz Pysz'},
                                  {'@pid': '280/8019', 'text': 'Andrew Waddie'},
                                  {'@pid': '280/8477',
                                   'text': 'Mohammad R. Taghizadeh'},
                                  {'@pid': '280/7935',
                                   'text': 'Rafal Kasztelanic'}]},
           'doi': '10.1109/ICTON.2019.8840252',
           'ee': 'https://doi.org/10.1109/ICTON.2019.8840252',
           'key': 'conf/icton/BuczynskiAFNSMF19',
           'pages': '1-4',
           'title': 'Progress in Development of Nanostructured Gradient Index '
                    'Optical Fibers and Micro-Optical Components.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icton/BuczynskiAFNSMF19',
           'venue': 'ICTON',
           'year': '2019'},
  'url': 'URL#901912'},
 {'@id': '907618',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '217/4094',
                                   'text': 'Trung H. Nguyen'},
                                  {'@pid': '142/6114',
                                   'text': 'Simon D. Jones'},
                                  {'@pid': '142/6204',
                                   'text': 'Mariela Soto-Berelov'},
                                  {'@pid': '86/7547', 'text': 'Andrew Haywood'},
                                  {'@pid': '217/4047',
                                   'text': 'Samuel Hislop'}]},
           'doi': '10.1109/IGARSS.2019.8897905',
           'ee': 'https://doi.org/10.1109/IGARSS.2019.8897905',
           'key': 'conf/igarss/NguyenJSHH19',
           'pages': '7338-7341',
           'title': 'Estimate Forest Biomass Dynamics Using Multi-Temporal '
                    'Lidar And Single-Date Inventory Data.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/igarss/NguyenJSHH19',
           'venue': 'IGARSS',
           'year': '2019'},
  'url': 'URL#907618'},
 {'@id': '918480',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '173/0617',
                                   'text': 'Andrew Lukyamuzi'},
                                  {'@pid': '44/4913', 'text': 'John Ngubiri'},
                                  {'@pid': '33/10311',
                                   'text': 'Washington Okori'}]},
           'doi': '10.1109/ISC246665.2019.9071737',
           'ee': 'https://doi.org/10.1109/ISC246665.2019.9071737',
           'key': 'conf/isc2/LukyamuziNO19',
           'pages': '288-291',
           'title': 'Topic Based Machine Learning Summarizer.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/isc2/LukyamuziNO19',
           'venue': 'ISC2',
           'year': '2019'},
  'url': 'URL#918480'},
 {'@id': '920985',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '208/9303',
                                   'text': 'Pedro P. Vergara'},
                                  {'@pid': '253/8225', 'text': 'Tam T. Mai'},
                                  {'@pid': '253/8135',
                                   'text': 'Andrew Burstein'},
                                  {'@pid': '26/4389',
                                   'text': 'Phuong H. Nguyen'}]},
           'doi': '10.1109/ISGTEUROPE.2019.8905499',
           'ee': 'https://doi.org/10.1109/ISGTEurope.2019.8905499',
           'key': 'conf/isgteurope/VergaraMBN19',
           'pages': '1-5',
           'title': 'Feasibility and Performance Assessment of Commercial PV '
                    'Inverters Operating with Droop Control for Providing '
                    'Voltage Support Services.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/isgteurope/VergaraMBN19',
           'venue': 'ISGT Europe',
           'year': '2019'},
  'url': 'URL#920985'},
 {'@id': '927694',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '151/5572',
                                   'text': 'Andrew S. Brunker'},
                                  {'@pid': '40/744',
                                   'text': 'Daniel R. Catchpoole'},
                                  {'@pid': '08/353', 'text': 'Paul J. Kennedy'},
                                  {'@pid': '39/1218', 'text': 'Simeon Simoff'},
                                  {'@pid': '30/4876',
                                   'text': 'Quang Vinh Nguyen'}]},
           'doi': '10.1109/IV-2.2019.00016',
           'ee': 'https://doi.org/10.1109/IV-2.2019.00016',
           'key': 'conf/iv/BrunkerCKSN19',
           'pages': '34-41',
           'title': 'Two-Dimensional Immersive Cohort Analysis Supporting '
                    'Personalised Medical Treatment.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/iv/BrunkerCKSN19',
           'venue': 'IV',
           'year': '2019'},
  'url': 'URL#927694'},
 {'@id': '937247',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '253/1244',
                                   'text': 'Hai Duc Nguyen'},
                                  {'@pid': '166/7381', 'text': 'Chaojie Zhang'},
                                  {'@pid': '176/5291', 'text': 'Zhujun Xiao'},
                                  {'@pid': 'c/AAChien',
                                   'text': 'Andrew A. Chien'}]},
           'doi': '10.1145/3366623.3368133',
           'ee': 'https://doi.org/10.1145/3366623.3368133',
           'key': 'conf/middleware/NguyenZXC19',
           'pages': '1-6',
           'title': 'Real-time Serverless - Enabling Application Performance '
                    'Guarantees.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/middleware/NguyenZXC19',
           'venue': 'WOSC@Middleware',
           'year': '2019'},
  'url': 'URL#937247'},
 {'@id': '958988',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '128/5665', 'text': 'Andrew Nguyen'},
                                  {'@pid': '242/4852', 'text': 'Tobin South'},
                                  {'@pid': '55/1744', 'text': 'Nigel G. Bean'},
                                  {'@pid': '21/2107', 'text': 'Jonathan Tuke'},
                                  {'@pid': '126/5006',
                                   'text': 'Lewis Mitchell'}]},
           'doi': '10.18653/V1/S19-2050',
           'ee': 'https://doi.org/10.18653/v1/s19-2050',
           'key': 'conf/semeval/NguyenSBTM19',
           'pages': '292-296',
           'title': 'Podlab at SemEval-2019 Task 3 - The Importance of Being '
                    'Shallow.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/semeval/NguyenSBTM19',
           'venue': 'SemEval@NAACL-HLT',
           'year': '2019'},
  'url': 'URL#958988'},
 {'@id': '960315',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '236/5588',
                                   'text': 'Joseph A. Boyle'},
                                  {'@pid': '161/6303',
                                   'text': 'Georgiana Haldeman'},
                                  {'@pid': '37/49', 'text': 'Andrew Tjang'},
                                  {'@pid': '82/5111',
                                   'text': 'Monica Babes-Vroman'},
                                  {'@pid': '29/216',
                                   'text': 'Ana Paula Centeno'},
                                  {'@pid': 'n/ThuDNguyen',
                                   'text': 'Thu D. Nguyen'}]},
           'doi': '10.1145/3287324.3293859',
           'ee': 'https://doi.org/10.1145/3287324.3293859',
           'key': 'conf/sigcse/BoyleHTBCN20',
           'pages': '1269',
           'title': 'Dynamic Recitation - A Student-Focused, Goal-Oriented '
                    'Recitation Management Platform.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/sigcse/BoyleHTBCN20',
           'venue': 'SIGCSE',
           'year': '2019'},
  'url': 'URL#960315'},
 {'@id': '961077',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '253/0899',
                                   'text': 'Nicolas Nghiem'},
                                  {'@pid': '140/7944-4',
                                   'text': 'Richard Roberts 0004'},
                                  {'@pid': '83/6305', 'text': 'John P. Lewis'},
                                  {'@pid': '91/3290', 'text': 'Junyong Noh'}]},
           'doi': '10.1145/3355088.3365155',
           'ee': 'https://doi.org/10.1145/3355088.3365155',
           'key': 'conf/siggrapha/NghiemRLN19',
           'pages': '49-52',
           'title': 'Saliency Diagrams.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/siggrapha/NghiemRLN19',
           'venue': 'SIGGRAPH Asia Technical Briefs',
           'year': '2019'},
  'url': 'URL#961077'},
 {'@id': '971237',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '259/8855',
                                   'text': 'Andrew Camphouse'},
                                  {'@pid': '23/3347',
                                   'text': 'Lucien Ngalamou'}]},
           'doi': '10.1109/UEMCON47517.2019.8992944',
           'ee': 'https://doi.org/10.1109/UEMCON47517.2019.8992944',
           'key': 'conf/uemcom/CamphouseN19',
           'pages': '250-256',
           'title': 'Securing a Connected Home.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/uemcom/CamphouseN19',
           'venue': 'UEMCON',
           'year': '2019'},
  'url': 'URL#971237'},
 {'@id': '971270',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '153/1912', 'text': 'Amartya Hatua'},
                                  {'@pid': '210/3354',
                                   'text': 'Trung T. Nguyen'},
                                  {'@pid': '79/1202',
                                   'text': 'Andrew H. Sung'}]},
           'doi': '10.1109/UEMCON47517.2019.8993093',
           'ee': 'https://doi.org/10.1109/UEMCON47517.2019.8993093',
           'key': 'conf/uemcom/HatuaNS19',
           'pages': '99-104',
           'title': 'Goal-Oriented Conversational System Using Transfer '
                    'Learning and Attention Mechanism.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/uemcom/HatuaNS19',
           'venue': 'UEMCON',
           'year': '2019'},
  'url': 'URL#971270'},
 {'@id': '971321',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '210/3354',
                                   'text': 'Trung T. Nguyen'},
                                  {'@pid': '153/1912', 'text': 'Amartya Hatua'},
                                  {'@pid': '79/1202',
                                   'text': 'Andrew H. Sung'}]},
           'doi': '10.1109/UEMCON47517.2019.8992945',
           'ee': 'https://doi.org/10.1109/UEMCON47517.2019.8992945',
           'key': 'conf/uemcom/NguyenHS19',
           'pages': '305-311',
           'title': 'Cumulative Training and Transfer Learning for '
                    'Multi-Robots Collision-Free Navigation Problems.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/uemcom/NguyenHS19',
           'venue': 'UEMCON',
           'year': '2019'},
  'url': 'URL#971321'},
 {'@id': '987667',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '229/4641',
                                   'text': 'Andrew T. Jones'},
                                  {'@pid': '267/3534',
                                   'text': 'Jessica Bagnall'},
                                  {'@pid': '117/4552',
                                   'text': 'Hien Duy Nguyen'}]},
           'doi': '10.21105/JOSS.01193',
           'ee': 'https://doi.org/10.21105/joss.01193',
           'key': 'journals/jossw/JonesBN19',
           'number': '34',
           'pages': '1193',
           'title': 'BoltzMM - an R package for maximum pseudolikelihood '
                    'estimation of fully-visible Boltzmann machines.',
           'type': 'Data and Artifacts',
           'url': 'https://dblp.org/rec/journals/jossw/JonesBN19',
           'venue': 'J. Open Source Softw.',
           'volume': '4',
           'year': '2019'},
  'url': 'URL#987667'},
 {'@id': '998722',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '19/7057', 'text': 'ThanhVu Nguyen'},
                                  {'@pid': '62/6761',
                                   'text': 'Timos Antonopoulos'},
                                  {'@pid': '135/5976', 'text': 'Andrew Ruef'},
                                  {'@pid': 'h/MichaelWHicks',
                                   'text': 'Michael Hicks 0001'}]},
           'ee': 'http://arxiv.org/abs/1903.12113',
           'key': 'journals/corr/abs-1903-12113',
           'title': 'A Counterexample-guided Approach to Finding Numerical '
                    'Invariants.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-1903-12113',
           'venue': 'CoRR',
           'volume': 'abs/1903.12113',
           'year': '2019'},
  'url': 'URL#998722'},
 {'@id': '1037799',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '69/1732', 'text': 'Alina Ene'},
                                  {'@pid': '62/3796', 'text': 'Huy L. Nguyen'},
                                  {'@pid': '255/9377', 'text': 'Andrew Suh'}]},
           'ee': 'http://arxiv.org/abs/1911.12959',
           'key': 'journals/corr/abs-1911-12959',
           'title': 'An Optimal Streaming Algorithm for Non-monotone '
                    'Submodular Maximization.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-1911-12959',
           'venue': 'CoRR',
           'volume': 'abs/1911.12959',
           'year': '2019'},
  'url': 'URL#1037799'},
 {'@id': '1054200',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '125/0427',
                                   'text': 'George Sklivanitis'},
                                  {'@pid': '174/7974', 'text': 'Adam Gannon'},
                                  {'@pid': '171/6451',
                                   'text': 'Konstantinos Tountas'},
                                  {'@pid': 'p/DimitriosAPados',
                                   'text': 'Dimitris A. Pados'},
                                  {'@pid': '73/1900',
                                   'text': 'Stella N. Batalama'},
                                  {'@pid': '51/1909',
                                   'text': 'Stephen Reichhart'},
                                  {'@pid': '95/4213',
                                   'text': 'Michael J. Medley'},
                                  {'@pid': '150/5638', 'text': 'Ngwe Thawdar'},
                                  {'@pid': '210/6711', 'text': 'Ulysses Lee'},
                                  {'@pid': '78/7292',
                                   'text': 'John D. Matyjas'},
                                  {'@pid': '76/8033',
                                   'text': 'Scott Pudlewski'},
                                  {'@pid': '40/4820',
                                   'text': 'Andrew L. Drozd'},
                                  {'@pid': '161/1996', 'text': 'Ashwin Amanna'},
                                  {'@pid': '226/9324', 'text': 'Fred Latus'},
                                  {'@pid': '226/9442',
                                   'text': 'Zachary Goldsmith'},
                                  {'@pid': '50/760', 'text': 'David Diaz'}]},
           'doi': '10.1109/ACCESS.2018.2857843',
           'ee': 'https://doi.org/10.1109/ACCESS.2018.2857843',
           'key': 'journals/access/SklivanitisGTPB18',
           'pages': '47217-47239',
           'title': 'Airborne Cognitive Networking - Design, Development, and '
                    'Deployment.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/access/SklivanitisGTPB18',
           'venue': 'IEEE Access',
           'volume': '6',
           'year': '2018'},
  'url': 'URL#1054200'},
 {'@id': '1057588',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '59/2568', 'text': 'Yuanyuan Zhao'},
                                  {'@pid': '210/0102', 'text': 'Duole Feng'},
                                  {'@pid': '212/2937',
                                   'text': 'Durai Jayaraman'},
                                  {'@pid': '212/2712', 'text': 'Daniel Belay'},
                                  {'@pid': '212/3033', 'text': 'Heiru Sebrala'},
                                  {'@pid': '212/2811', 'text': 'John Ngugi'},
                                  {'@pid': '212/3025', 'text': 'Eunice Maina'},
                                  {'@pid': '212/3038', 'text': 'Rose Akombo'},
                                  {'@pid': '212/2956', 'text': 'John Otuoma'},
                                  {'@pid': '212/2523',
                                   'text': 'Joseph Mutyaba'},
                                  {'@pid': '212/3019', 'text': 'Sam Kissa'},
                                  {'@pid': '76/9948', 'text': 'Shuhua Qi'},
                                  {'@pid': '212/2636', 'text': 'Fiker Assefa'},
                                  {'@pid': '212/2591',
                                   'text': 'Nellie Mugure Oduor'},
                                  {'@pid': '212/2786',
                                   'text': 'Andrew Kalema Ndawula'},
                                  {'@pid': '20/2639', 'text': 'Yanxia Li'},
                                  {'@pid': '27/1615', 'text': 'Peng Gong'}]},
           'doi': '10.1016/J.JAG.2017.11.008',
           'ee': 'https://doi.org/10.1016/j.jag.2017.11.008',
           'key': 'journals/aeog/ZhaoFJBSNMAOMKQ18',
           'pages': '116-125',
           'title': 'Bamboo mapping of Ethiopia, Kenya and Uganda for the year '
                    '2016 using multi-temporal Landsat imagery.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/aeog/ZhaoFJBSNMAOMKQ18',
           'venue': 'Int. J. Appl. Earth Obs. Geoinformation',
           'volume': '66',
           'year': '2018'},
  'url': 'URL#1057588'},
 {'@id': '1092704',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '213/9013',
                                   'text': 'Parinaz Rashidi'},
                                  {'@pid': '97/4491',
                                   'text': 'Andrew K. Skidmore'},
                                  {'@pid': '29/4002', 'text': 'Tiejun Wang'},
                                  {'@pid': '130/8172',
                                   'text': 'Roshanak Darvishzadeh'},
                                  {'@pid': '213/8870',
                                   'text': 'Shadrack Ngene'},
                                  {'@pid': '129/9210',
                                   'text': 'Anton Vrieling'}]},
           'doi': '10.1080/13658816.2017.1404605',
           'ee': 'https://doi.org/10.1080/13658816.2017.1404605',
           'key': 'journals/gis/RashidiSWDNV18',
           'number': '3',
           'pages': '622-636',
           'title': 'Assessing trends and seasonal changes in elephant '
                    'poaching risk at the small area level using '
                    'spatio-temporal Bayesian modeling.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/gis/RashidiSWDNV18',
           'venue': 'Int. J. Geogr. Inf. Sci.',
           'volume': '32',
           'year': '2018'},
  'url': 'URL#1092704'},
 {'@id': '1109899',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '211/1738',
                                   'text': 'Ngatchu Damen Nyinkeu'},
                                  {'@pid': '221/4422',
                                   'text': 'Andrew M. Ngwa'},
                                  {'@pid': '221/4427',
                                   'text': 'Susannash Limunga Esowe'}]},
           'doi': '10.4018/IJTD.2018040105',
           'ee': 'https://doi.org/10.4018/IJTD.2018040105',
           'key': 'journals/ijtd/NyinkeuNE18',
           'number': '2',
           'pages': '74-85',
           'title': 'Acceptance of an Online Voting System at the Catholic '
                    'University Institute of Buea.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/ijtd/NyinkeuNE18',
           'venue': 'Int. J. Technol. Diffusion',
           'volume': '9',
           'year': '2018'},
  'url': 'URL#1109899'},
 {'@id': '1141764',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '86/11384',
                                   'text': 'Deanna J. Greene'},
                                  {'@pid': '211/5229',
                                   'text': 'Jonathan M. Koller'},
                                  {'@pid': '216/9475',
                                   'text': 'Jacqueline M. Hampton'},
                                  {'@pid': '211/5176',
                                   'text': 'Victoria Wesevich'},
                                  {'@pid': '211/4811', 'text': 'Andrew N. Van'},
                                  {'@pid': '211/4987',
                                   'text': 'Annie L. Nguyen'},
                                  {'@pid': '216/9682',
                                   'text': 'Catherine R. Hoyt'},
                                  {'@pid': '216/9660',
                                   'text': 'Lindsey McIntyre'},
                                  {'@pid': '211/4836', 'text': 'Eric A. Earl'},
                                  {'@pid': '211/4893',
                                   'text': 'Rachel L. Klein'},
                                  {'@pid': '94/11222',
                                   'text': 'Joshua S. Shimony'},
                                  {'@pid': '08/7228',
                                   'text': 'Steven E. Petersen'},
                                  {'@pid': '06/9552',
                                   'text': 'Bradley L. Schlaggar'},
                                  {'@pid': '70/11013',
                                   'text': 'Damien A. Fair'},
                                  {'@pid': '43/11016',
                                   'text': 'Nico U. F. Dosenbach'}]},
           'doi': '10.1016/J.NEUROIMAGE.2018.01.023',
           'ee': 'https://doi.org/10.1016/j.neuroimage.2018.01.023',
           'key': 'journals/neuroimage/GreeneKHWVNHMEK18',
           'pages': '234-245',
           'title': 'Behavioral interventions for reducing head motion during '
                    'MRI scans in children.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/neuroimage/GreeneKHWVNHMEK18',
           'venue': 'NeuroImage',
           'volume': '171',
           'year': '2018'},
  'url': 'URL#1141764'},
 {'@id': '1150917',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '217/4094',
                                   'text': 'Trung H. Nguyen'},
                                  {'@pid': '142/6114',
                                   'text': 'Simon D. Jones'},
                                  {'@pid': '142/6204',
                                   'text': 'Mariela Soto-Berelov'},
                                  {'@pid': '86/7547', 'text': 'Andrew Haywood'},
                                  {'@pid': '217/4047',
                                   'text': 'Samuel Hislop'}]},
           'doi': '10.3390/RS10111825',
           'ee': 'https://doi.org/10.3390/rs10111825',
           'key': 'journals/remotesensing/NguyenJSHH18',
           'number': '11',
           'pages': '1825',
           'title': 'A Comparison of Imputation Approaches for Estimating '
                    'Forest Biomass Using Landsat Time-Series and Inventory '
                    'Data.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/remotesensing/NguyenJSHH18',
           'venue': 'Remote. Sens.',
           'volume': '10',
           'year': '2018'},
  'url': 'URL#1150917'},
 {'@id': '1152755',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '117/4552',
                                   'text': 'Hien Duy Nguyen'},
                                  {'@pid': '116/2172',
                                   'text': 'Jeremy F. P. Ullmann'},
                                  {'@pid': '83/3246',
                                   'text': 'Geoffrey J. McLachlan'},
                                  {'@pid': '214/0177',
                                   'text': 'Venkatakaushik Voleti'},
                                  {'@pid': '51/10206', 'text': 'Wenze Li'},
                                  {'@pid': '13/3843',
                                   'text': 'Elizabeth M. C. Hillman'},
                                  {'@pid': '69/8841',
                                   'text': 'David C. Reutens'},
                                  {'@pid': '64/2690',
                                   'text': 'Andrew L. Janke'}]},
           'doi': '10.1002/SAM.11366',
           'ee': 'https://doi.org/10.1002/sam.11366',
           'key': 'journals/sadm/NguyenUMVLHRJ18',
           'number': '1',
           'pages': '5-16',
           'title': 'Whole-volume clustering of time series data from '
                    'zebrafish brain calcium images via mixture modeling.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/sadm/NguyenUMVLHRJ18',
           'venue': 'Stat. Anal. Data Min.',
           'volume': '11',
           'year': '2018'},
  'url': 'URL#1152755'},
 {'@id': '1199775',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '239/0960', 'text': 'Lexly Cruz'},
                                  {'@pid': '239/0612', 'text': 'Tiffany Toor'},
                                  {'@pid': '128/5665',
                                   'text': 'Andrew Nguyen'}]},
           'ee': 'https://knowledge.amia.org/67852-amia-1.4259402/t007-1.4262189/t007-1.4262190/2976728-1.4263052/2975595-1.4263049',
           'key': 'conf/amia/CruzTN18',
           'title': 'Tabular Model for Structuring Cancer Treatment '
                    'Guidelines.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/amia/CruzTN18',
           'venue': 'AMIA',
           'year': '2018'},
  'url': 'URL#1199775'},
 {'@id': '1200259',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '239/0612', 'text': 'Tiffany Toor'},
                                  {'@pid': '239/0960', 'text': 'Lexly Cruz'},
                                  {'@pid': '128/5665',
                                   'text': 'Andrew Nguyen'}]},
           'ee': 'https://knowledge.amia.org/67852-amia-1.4259402/t007-1.4262189/t007-1.4262190/2975204-1.4262329/2975572-1.4262326',
           'key': 'conf/amia/ToorCN18',
           'title': 'Graph-based Representation of Cancer Treatment '
                    'Guidelines.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/amia/ToorCN18',
           'venue': 'AMIA',
           'year': '2018'},
  'url': 'URL#1200259'},
 {'@id': '1204204',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '117/4552',
                                   'text': 'Hien D. Nguyen 0001'},
                                  {'@pid': '229/4641',
                                   'text': 'Andrew T. Jones'},
                                  {'@pid': '83/3246',
                                   'text': 'Geoffrey J. McLachlan'}]},
           'doi': '10.1007/978-981-13-6661-1_21',
           'ee': 'https://doi.org/10.1007/978-981-13-6661-1_21',
           'key': 'conf/ausdm/NguyenJM18',
           'pages': '269-280',
           'title': 'Positive Data Kernel Density Estimation via the LogKDE '
                    'Package for R.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/ausdm/NguyenJM18',
           'venue': 'AusDM',
           'year': '2018'},
  'url': 'URL#1204204'},
 {'@id': '1204715',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '181/8469',
                                   'text': 'Loan Thi Ngoc Dinh'},
                                  {'@pid': '61/1339',
                                   'text': 'Gour C. Karmakar'},
                                  {'@pid': 'k/JoarderKamruzzaman',
                                   'text': 'Joarder Kamruzzaman'},
                                  {'@pid': '09/1062',
                                   'text': 'Andrew Stranieri'}]},
           'ee': 'http://ceur-ws.org/Vol-2158/paper7.pdf',
           'key': 'conf/balt/DinhKKS18',
           'pages': '63-73',
           'title': 'Significance Level of a Big Data Query by Exploiting '
                    'Business Processes and Strategies.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/balt/DinhKKS18',
           'venue': 'Doctoral Consortium/Forum@DB&amp;IS',
           'year': '2018'},
  'url': 'URL#1204715'},
 {'@id': '1279030',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '173/0617',
                                   'text': 'Andrew Lukyamuzi'},
                                  {'@pid': '44/4913', 'text': 'John Ngubiri'},
                                  {'@pid': '33/10311',
                                   'text': 'Washington Okori'}]},
           'doi': '10.1145/3195528.3195531',
           'ee': 'https://doi.org/10.1145/3195528.3195531',
           'key': 'conf/icse/LukyamuziNO18',
           'pages': '27-34',
           'title': 'Tracking food insecurity from tweets using data mining '
                    'techniques.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icse/LukyamuziNO18',
           'venue': 'SEiA',
           'year': '2018'},
  'url': 'URL#1279030'},
 {'@id': '1301293',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '118/6238', 'text': 'Thuy T. Pham'},
                                  {'@pid': '95/10112',
                                   'text': 'Diep N. Nguyen'},
                                  {'@pid': '71/2764',
                                   'text': 'Eryk Dutkiewicz'},
                                  {'@pid': '84/10611',
                                   'text': 'Alistair Lee McEwan'},
                                  {'@pid': '54/222',
                                   'text': 'Philip H. W. Leong'},
                                  {'@pid': '56/7889',
                                   'text': 'Andrew J. Fuglevand'}]},
           'doi': '10.1109/ISMICT.2018.8573738',
           'ee': 'https://doi.org/10.1109/ISMICT.2018.8573738',
           'key': 'conf/ismict/PhamNDMLF18',
           'pages': '1-6',
           'title': 'Feature Analysis for Discrimination of Motor Unit Action '
                    'Potentials.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/ismict/PhamNDMLF18',
           'venue': 'ISMICT',
           'year': '2018'},
  'url': 'URL#1301293'},
 {'@id': '1304740',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '65/9943',
                                   'text': 'Ameer Shakayb Arsalaan'},
                                  {'@pid': '00/5147', 'text': 'Hung Nguyen'},
                                  {'@pid': '09/3904', 'text': 'Andrew Coyle'}]},
           'doi': '10.1109/ATNAC.2018.8615291',
           'ee': 'https://doi.org/10.1109/ATNAC.2018.8615291',
           'key': 'conf/itnac/ArsalaanNC18',
           'pages': '1-6',
           'title': 'Evaluating the Performance of QoI Algorithms in Realistic '
                    'MANETs.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/itnac/ArsalaanNC18',
           'venue': 'ITNAC',
           'year': '2018'},
  'url': 'URL#1304740'},
 {'@id': '1304966',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '214/9822', 'text': 'Andrew Howe'},
                                  {'@pid': '89/10562',
                                   'text': 'Phong Nguyen'}]},
           'doi': '10.1007/978-3-319-91464-0_36',
           'ee': 'https://doi.org/10.1007/978-3-319-91464-0_36',
           'key': 'conf/its/HoweN18',
           'pages': '332-338',
           'title': 'SAT Reading Analysis Using Eye-Gaze Tracking Technology '
                    'and Machine Learning.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/its/HoweN18',
           'venue': 'ITS',
           'year': '2018'},
  'url': 'URL#1304966'},
 {'@id': '1311401',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '136/8688',
                                   'text': 'Matthew Shardlow'},
                                  {'@pid': '174/1262',
                                   'text': 'Nhung T. H. Nguyen'},
                                  {'@pid': '72/633', 'text': 'Gareth Owen'},
                                  {'@pid': '15/1859',
                                   'text': 'Claire O&apos;Donovan'},
                                  {'@pid': '27/8738', 'text': 'Andrew Leach'},
                                  {'@pid': '04/6024', 'text': 'John McNaught'},
                                  {'@pid': '77/9421', 'text': 'Steve Turner'},
                                  {'@pid': '47/4142',
                                   'text': 'Sophia Ananiadou'}]},
           'ee': 'http://www.lrec-conf.org/proceedings/lrec2018/summaries/229.html',
           'key': 'conf/lrec/ShardlowNOOLMTA18',
           'title': 'A New Corpus to Support Text Mining for the Curation of '
                    'Metabolites in the ChEBI Database.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/lrec/ShardlowNOOLMTA18',
           'venue': 'LREC',
           'year': '2018'},
  'url': 'URL#1311401'},
 {'@id': '1315544',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '09/3904', 'text': 'Andrew Coyle'},
                                  {'@pid': '00/5147', 'text': 'Hung Nguyen'},
                                  {'@pid': '204/2018', 'text': 'Peter Boyd'},
                                  {'@pid': '233/6436',
                                   'text': 'Gregory Judd'}]},
           'doi': '10.1109/MILCIS.2018.8574115',
           'ee': 'https://doi.org/10.1109/MilCIS.2018.8574115',
           'key': 'conf/milcis/CoyleNBJ18',
           'pages': '1-6',
           'title': 'Improving the Performance of Land Tactical Digital '
                    'Networks Using Measures of Network Capacity.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/milcis/CoyleNBJ18',
           'venue': 'MilCIS',
           'year': '2018'},
  'url': 'URL#1315544'},
 {'@id': '1337168',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '161/6303',
                                   'text': 'Georgiana Haldeman'},
                                  {'@pid': '37/49', 'text': 'Andrew Tjang'},
                                  {'@pid': '82/5111',
                                   'text': 'Monica Babes-Vroman'},
                                  {'@pid': '214/8055',
                                   'text': 'Stephen Bartos'},
                                  {'@pid': '82/11268', 'text': 'Jay Shah'},
                                  {'@pid': '214/7871',
                                   'text': 'Danielle Yucht'},
                                  {'@pid': 'n/ThuDNguyen',
                                   'text': 'Thu D. Nguyen'}]},
           'doi': '10.1145/3159450.3159502',
           'ee': 'https://doi.org/10.1145/3159450.3159502',
           'key': 'conf/sigcse/HaldemanTBBSYN18',
           'pages': '278-283',
           'title': 'Providing Meaningful Feedback for Autograding of '
                    'Programming Assignments.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/sigcse/HaldemanTBBSYN18',
           'venue': 'SIGCSE',
           'year': '2018'},
  'url': 'URL#1337168'},
 {'@id': '1358612',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '91/8376', 'text': 'Mehwish Nasim'},
                                  {'@pid': '128/5665', 'text': 'Andrew Nguyen'},
                                  {'@pid': '178/3474', 'text': 'Nick Lothian'},
                                  {'@pid': '218/0919', 'text': 'Robert Cope'},
                                  {'@pid': '126/5006',
                                   'text': 'Lewis Mitchell'}]},
           'doi': '10.1145/3184558.3191574',
           'ee': 'https://doi.org/10.1145/3184558.3191574',
           'key': 'conf/www/NasimNLCM18',
           'pages': '1331-1339',
           'title': 'Real-time Detection of Content Polluters in Partially '
                    'Observable Twitter Networks.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/www/NasimNLCM18',
           'venue': 'WWW',
           'year': '2018'},
  'url': 'URL#1358612'},
 {'@id': '1366693',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '229/4641',
                                   'text': 'Andrew T. Jones'},
                                  {'@pid': '117/4552',
                                   'text': 'Hien Duy Nguyen'},
                                  {'@pid': '83/3246',
                                   'text': 'Geoffrey J. McLachlan'}]},
           'doi': '10.21105/JOSS.00870',
           'ee': 'https://doi.org/10.21105/joss.00870',
           'key': 'journals/jossw/JonesNM18',
           'number': '28',
           'pages': '870',
           'title': 'logKDE - log-transformed kernel density estimation.',
           'type': 'Data and Artifacts',
           'url': 'https://dblp.org/rec/journals/jossw/JonesNM18',
           'venue': 'J. Open Source Softw.',
           'volume': '3',
           'year': '2018'},
  'url': 'URL#1366693'},
 {'@id': '1376265',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '91/8376', 'text': 'Mehwish Nasim'},
                                  {'@pid': '128/5665', 'text': 'Andrew Nguyen'},
                                  {'@pid': '178/3474', 'text': 'Nick Lothian'},
                                  {'@pid': '218/0919', 'text': 'Robert Cope'},
                                  {'@pid': '126/5006',
                                   'text': 'Lewis Mitchell'}]},
           'ee': 'http://arxiv.org/abs/1804.01235',
           'key': 'journals/corr/abs-1804-01235',
           'title': 'Real-time Detection of Content Polluters in Partially '
                    'Observable Twitter Networks.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-1804-01235',
           'venue': 'CoRR',
           'volume': 'abs/1804.01235',
           'year': '2018'},
  'url': 'URL#1376265'},
 {'@id': '1395759',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '21/2107', 'text': 'Jonathan Tuke'},
                                  {'@pid': '128/5665', 'text': 'Andrew Nguyen'},
                                  {'@pid': '91/8376', 'text': 'Mehwish Nasim'},
                                  {'@pid': '13/2439', 'text': 'Drew Mellor'},
                                  {'@pid': '157/2404',
                                   'text': 'Asanga Wickramasinghe'},
                                  {'@pid': '55/1744', 'text': 'Nigel G. Bean'},
                                  {'@pid': '126/5006',
                                   'text': 'Lewis Mitchell'}]},
           'ee': 'http://arxiv.org/abs/1809.08427',
           'key': 'journals/corr/abs-1809-08427',
           'title': 'Pachinko Prediction - A Bayesian method for event '
                    'prediction from social media data.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-1809-08427',
           'venue': 'CoRR',
           'volume': 'abs/1809.08427',
           'year': '2018'},
  'url': 'URL#1395759'},
 {'@id': '1397887',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '228/8062', 'text': 'Eric Dodds'},
                                  {'@pid': '48/6075', 'text': 'Huy Nguyen'},
                                  {'@pid': '228/8011', 'text': 'Simao Herdade'},
                                  {'@pid': '182/6849',
                                   'text': 'Jack Culpepper'},
                                  {'@pid': '77/7218', 'text': 'Andrew Kae'},
                                  {'@pid': '93/6711',
                                   'text': 'Pierre Garrigues'}]},
           'ee': 'http://arxiv.org/abs/1810.04652',
           'key': 'journals/corr/abs-1810-04652',
           'title': 'Learning Embeddings for Product Visual Search with '
                    'Triplet Loss and Online Sampling.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-1810-04652',
           'venue': 'CoRR',
           'volume': 'abs/1810.04652',
           'year': '2018'},
  'url': 'URL#1397887'},
 {'@id': '1419208',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '57/2878', 'text': 'Fei Fang'},
                                  {'@pid': '117/4935',
                                   'text': 'Thanh Hong Nguyen'},
                                  {'@pid': '178/8703', 'text': 'Rob Pickles'},
                                  {'@pid': '178/8728', 'text': 'Wai Y. Lam'},
                                  {'@pid': '178/8547',
                                   'text': 'Gopalasamy R. Clements'},
                                  {'@pid': '42/6178-1', 'text': 'Bo An 0001'},
                                  {'@pid': '12/2427', 'text': 'Amandeep Singh'},
                                  {'@pid': '198/2772',
                                   'text': 'Brian C. Schwedock'},
                                  {'@pid': '67/2667', 'text': 'Milind Tambe'},
                                  {'@pid': '151/3581',
                                   'text': 'Andrew Lemieux'}]},
           'doi': '10.1609/AIMAG.V38I1.2710',
           'ee': 'https://doi.org/10.1609/aimag.v38i1.2710',
           'key': 'journals/aim/FangNPLCASSTL17',
           'number': '1',
           'pages': '23-36',
           'title': 'PAWS - A Deployed Game-Theoretic Application to Combat '
                    'Poaching.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/aim/FangNPLCASSTL17',
           'venue': 'AI Mag.',
           'volume': '38',
           'year': '2017'},
  'url': 'URL#1419208'},
 {'@id': '1438961',
  '@score': '2',
  'info': {'authors': {'author': {'@pid': '80/11484',
                                  'text': 'Andrew L. Nguyen'}},
           'doi': '10.1080/03610918.2015.1043383',
           'ee': 'https://doi.org/10.1080/03610918.2015.1043383',
           'key': 'journals/cssc/Nguyen17',
           'number': '5',
           'pages': '3892-3906',
           'title': 'Regenerative Markov Chain Importance Sampling.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/cssc/Nguyen17',
           'venue': 'Commun. Stat. Simul. Comput.',
           'volume': '46',
           'year': '2017'},
  'url': 'URL#1438961'},
 {'@id': '1448273',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '96/9120', 'text': 'Andrew Burton'},
                                  {'@pid': '65/4471', 'text': 'Hoa Le Minh'},
                                  {'@pid': '19/6782', 'text': 'Nauman Aslam'},
                                  {'@pid': '204/8547', 'text': 'L. Le'},
                                  {'@pid': '32/1434', 'text': 'T. D. Nguyen'}]},
           'doi': '10.4108/EAI.3-8-2017.152982',
           'ee': 'https://doi.org/10.4108/eai.3-8-2017.152982',
           'key': 'journals/ew/BurtonMALN17',
           'number': '13',
           'pages': 'e4',
           'title': 'LED based lighting and communications - An emerging '
                    'technology for a greener more sustainable future.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/ew/BurtonMALN17',
           'venue': 'EAI Endorsed Trans. Energy Web',
           'volume': '4',
           'year': '2017'},
  'url': 'URL#1448273'},
 {'@id': '1452113',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '57/2878', 'text': 'Fei Fang'},
                                  {'@pid': '117/4935',
                                   'text': 'Thanh Hong Nguyen'},
                                  {'@pid': '26/9089', 'text': 'Arunesh Sinha'},
                                  {'@pid': '180/1416',
                                   'text': 'Shahrzad Gholami'},
                                  {'@pid': '170/5576',
                                   'text': 'Andrew J. Plumptre'},
                                  {'@pid': '160/1079', 'text': 'Lucas Joppa'},
                                  {'@pid': '67/2667', 'text': 'Milind Tambe'},
                                  {'@pid': '170/5674',
                                   'text': 'Margaret Driciru'},
                                  {'@pid': '170/5591', 'text': 'Fred Wanyama'},
                                  {'@pid': '170/5632',
                                   'text': 'Aggrey Rwetsiba'},
                                  {'@pid': '180/1428', 'text': 'Rob Critchlow'},
                                  {'@pid': '86/8638',
                                   'text': 'Colin M. Beale'}]},
           'doi': '10.1147/JRD.2017.2713584',
           'ee': 'https://doi.org/10.1147/JRD.2017.2713584',
           'key': 'journals/ibmrd/FangNSGPJTDWRCB17',
           'number': '6',
           'pages': '3:1-3:12',
           'title': 'Predicting poaching for wildlife Protection.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/ibmrd/FangNSGPJTDWRCB17',
           'venue': 'IBM J. Res. Dev.',
           'volume': '61',
           'year': '2017'},
  'url': 'URL#1452113'},
 {'@id': '1455377',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '200/7317', 'text': 'Manh The Van'},
                                  {'@pid': '200/7141',
                                   'text': 'Nguyen Van Tuan'},
                                  {'@pid': '119/0288', 'text': 'Tran The Son'},
                                  {'@pid': '65/4471', 'text': 'Hoa Le Minh'},
                                  {'@pid': '96/9120',
                                   'text': 'Andrew Burton'}]},
           'doi': '10.1049/IET-COM.2016.0961',
           'ee': 'https://doi.org/10.1049/iet-com.2016.0961',
           'key': 'journals/iet-com/VanTSMB17',
           'number': '6',
           'pages': '864-871',
           'title': 'Weighted k-nearest neighbour model for indoor VLC '
                    'positioning.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/iet-com/VanTSMB17',
           'venue': 'IET Commun.',
           'volume': '11',
           'year': '2017'},
  'url': 'URL#1455377'},
 {'@id': '1478786',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '159/2501',
                                   'text': 'An Hung Nguyen'},
                                  {'@pid': '210/1616',
                                   'text': 'Thomas Guillemette'},
                                  {'@pid': '117/1912',
                                   'text': 'Andrew J. Lambert'},
                                  {'@pid': '75/4744', 'text': 'Mark Pickering'},
                                  {'@pid': '38/616',
                                   'text': 'Matthew A. Garratt'}]},
           'doi': '10.1117/1.JEI.26.5.053010',
           'ee': 'https://doi.org/10.1117/1.JEI.26.5.053010',
           'key': 'journals/jei/NguyenGLPG17',
           'number': '5',
           'pages': '53010',
           'title': 'Increasing feasibility of the field-programmable gate '
                    'array implementation of an iterative image registration '
                    'using a kernel-warping algorithm.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/jei/NguyenGLPG17',
           'venue': 'J. Electronic Imaging',
           'volume': '26',
           'year': '2017'},
  'url': 'URL#1478786'},
 {'@id': '1488904',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '93/2262', 'text': 'Andrew Kennedy'},
                                  {'@pid': '19/5555',
                                   'text': 'Karsten Klein 0001'},
                                  {'@pid': '181/2303-1',
                                   'text': 'An Nguyen 0001'},
                                  {'@pid': '136/9391',
                                   'text': 'Florence Ying Wang'}]},
           'doi': '10.1007/S12650-016-0374-6',
           'ee': 'https://doi.org/10.1007/s12650-016-0374-6',
           'key': 'journals/jvis/KennedyKNW17',
           'number': '3',
           'pages': '417-432',
           'title': 'The Graph Landscape - using visual analytics for graph '
                    'set analysis.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/jvis/KennedyKNW17',
           'venue': 'J. Vis.',
           'volume': '20',
           'year': '2017'},
  'url': 'URL#1488904'},
 {'@id': '1496402',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '197/3989',
                                   'text': 'Dac-Trung Nguyen'},
                                  {'@pid': '146/3307',
                                   'text': 'Stephen L. Mathias'},
                                  {'@pid': '59/183', 'text': 'Cristian Bologa'},
                                  {'@pid': '83/546', 'text': 'Søren Brunak'},
                                  {'@pid': '149/9818',
                                   'text': 'Nicolas F. Fernandez'},
                                  {'@pid': '17/5801', 'text': 'Anna Gaulton'},
                                  {'@pid': '04/3318', 'text': 'Anne Hersey'},
                                  {'@pid': '197/3979', 'text': 'Jayme Holmes'},
                                  {'@pid': '06/6699',
                                   'text': 'Lars Juhl Jensen'},
                                  {'@pid': '197/4129',
                                   'text': 'Anneli Karlsson'},
                                  {'@pid': '62/1779', 'text': 'Guixia Liu'},
                                  {'@pid': '09/1149',
                                   'text': 'Avi Ma&apos;ayan'},
                                  {'@pid': '197/3858',
                                   'text': 'Geetha Mandava'},
                                  {'@pid': '12/3125', 'text': 'Subramani Mani'},
                                  {'@pid': '46/2159', 'text': 'Saurabh Mehta'},
                                  {'@pid': '27/5494',
                                   'text': 'John P. Overington'},
                                  {'@pid': '197/3833', 'text': 'Juhee Patel'},
                                  {'@pid': '149/9534',
                                   'text': 'Andrew D. Rouillard'},
                                  {'@pid': '60/569',
                                   'text': 'Stephan C. Schürer'},
                                  {'@pid': '197/3974',
                                   'text': 'Timothy Sheils'},
                                  {'@pid': '36/11000',
                                   'text': 'Anton Simeonov'},
                                  {'@pid': '141/3669',
                                   'text': 'Larry A. Sklar'},
                                  {'@pid': '148/2172', 'text': 'Noel Southall'},
                                  {'@pid': '02/7969', 'text': 'Oleg Ursu'},
                                  {'@pid': '69/745', 'text': 'Dusica Vidovic'},
                                  {'@pid': '197/3931', 'text': 'Anna Waller'},
                                  {'@pid': '146/3079',
                                   'text': 'Jeremy J. Yang'},
                                  {'@pid': '148/2196', 'text': 'Ajit Jadhav'},
                                  {'@pid': '70/3641', 'text': 'Tudor I. Oprea'},
                                  {'@pid': '37/2923',
                                   'text': 'Rajarshi Guha'}]},
           'doi': '10.1093/NAR/GKW1072',
           'ee': 'https://doi.org/10.1093/nar/gkw1072',
           'key': 'journals/nar/NguyenMBBFGHHJK17',
           'number': 'Database-Issue',
           'pages': 'D995-D1002',
           'title': 'Pharos - Collating protein information to shed light on '
                    'the druggable genome.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/nar/NguyenMBBFGHHJK17',
           'venue': 'Nucleic Acids Res.',
           'volume': '45',
           'year': '2017'},
  'url': 'URL#1496402'},
 {'@id': '1496540',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '09/1365', 'text': 'Xin Li'},
                                  {'@pid': '40/3219', 'text': 'Yungil Kim'},
                                  {'@pid': '270/3643',
                                   'text': 'Emily K. Tsang'},
                                  {'@pid': '211/6136', 'text': 'Joe R. Davis'},
                                  {'@pid': '270/3566',
                                   'text': 'Farhan N. Damani'},
                                  {'@pid': '254/3336', 'text': 'Colby Chiang'},
                                  {'@pid': '270/3546',
                                   'text': 'Gaelen T. Hess'},
                                  {'@pid': '15/6108',
                                   'text': 'Zachary Zappala'},
                                  {'@pid': '270/3158',
                                   'text': 'Benjamin J. Strober'},
                                  {'@pid': '04/11187',
                                   'text': 'Alexandra J. Scott'},
                                  {'@pid': '197/8317', 'text': 'Amy Li'},
                                  {'@pid': '166/9708', 'text': 'Andrea Ganna'},
                                  {'@pid': '270/3183',
                                   'text': 'Michael C. Bassik'},
                                  {'@pid': '270/3300',
                                   'text': 'Jason D. Merker'},
                                  {'@pid': '15/2814', 'text': 'François Aguet'},
                                  {'@pid': '270/3305',
                                   'text': 'Kristin G. Ardlie'},
                                  {'@pid': '197/4068',
                                   'text': 'Beryl B. Cummings'},
                                  {'@pid': '270/3540',
                                   'text': 'Ellen T. Gelfand'},
                                  {'@pid': '65/1524', 'text': 'Gad Getz'},
                                  {'@pid': '121/1352', 'text': 'Kane Hadley'},
                                  {'@pid': '16/7063',
                                   'text': 'Robert E. Handsaker'},
                                  {'@pid': '92/9422',
                                   'text': 'Katherine H. Huang'},
                                  {'@pid': '270/2976', 'text': 'Seva Kashin'},
                                  {'@pid': '26/9779',
                                   'text': 'Konrad J. Karczewski'},
                                  {'@pid': '00/5567', 'text': 'Monkol Lek'},
                                  {'@pid': '66/2069', 'text': 'Xiao Li'},
                                  {'@pid': '197/3603',
                                   'text': 'Daniel G. MacArthur'},
                                  {'@pid': '270/3053',
                                   'text': 'Jared L. Nedzel'},
                                  {'@pid': '90/10915',
                                   'text': 'Duyen T. Nguyen'},
                                  {'@pid': '46/3335',
                                   'text': 'Michael S. Noble'},
                                  {'@pid': '270/3412',
                                   'text': 'Ayellet V. Segrè'},
                                  {'@pid': '269/0183',
                                   'text': 'Casandra A. Trowbridge'},
                                  {'@pid': '270/2917',
                                   'text': 'Taru Tukiainen'},
                                  {'@pid': '270/3528',
                                   'text': 'Nathan S. Abell'},
                                  {'@pid': '270/3094',
                                   'text': 'Brunilda Balliu'},
                                  {'@pid': '124/1436', 'text': 'Ruth Barshir'},
                                  {'@pid': '124/1154', 'text': 'Omer Basha'},
                                  {'@pid': '75/5304', 'text': 'Alexis Battle'},
                                  {'@pid': '270/2801',
                                   'text': 'Gireesh K. Bogu'},
                                  {'@pid': '20/4278', 'text': 'Andrew Brown'},
                                  {'@pid': '215/3822',
                                   'text': 'Christopher D. Brown'},
                                  {'@pid': '270/3271',
                                   'text': 'Stephane E. Castel'},
                                  {'@pid': '88/442', 'text': 'Lin S. Chen'},
                                  {'@pid': '209/7740',
                                   'text': 'Donald F. Conrad'},
                                  {'@pid': '39/3955', 'text': 'Nancy J. Cox'},
                                  {'@pid': '57/7098',
                                   'text': 'Olivier Delaneau'},
                                  {'@pid': '55/6038',
                                   'text': 'Emmanouil T. Dermitzakis'},
                                  {'@pid': '53/328',
                                   'text': 'Barbara E. Engelhardt'},
                                  {'@pid': 'e/EEskin', 'text': 'Eleazar Eskin'},
                                  {'@pid': '211/4328',
                                   'text': 'Pedro G. Ferreira'},
                                  {'@pid': '270/3214', 'text': 'Laure Frésard'},
                                  {'@pid': '27/7970',
                                   'text': 'Eric R. Gamazon'},
                                  {'@pid': '216/9701',
                                   'text': 'Diego Garrido-Martín'},
                                  {'@pid': '270/3164',
                                   'text': 'Ariel D. H. Gewirtz'},
                                  {'@pid': '160/4314', 'text': 'Genna Gliner'},
                                  {'@pid': '270/3293',
                                   'text': 'Michael J. Gloudemans'},
                                  {'@pid': '84/1360', 'text': 'Roderic Guigó'},
                                  {'@pid': '07/7971', 'text': 'Ira M. Hall'},
                                  {'@pid': '28/5670', 'text': 'Buhm Han'},
                                  {'@pid': '11/1735', 'text': 'Yuan He'},
                                  {'@pid': '09/6555',
                                   'text': 'Farhad Hormozdiari'},
                                  {'@pid': '270/2932', 'text': 'Cedric Howald'},
                                  {'@pid': '242/5540', 'text': 'Hae Kyung Im'},
                                  {'@pid': '156/1133', 'text': 'Brian Jo'},
                                  {'@pid': '38/1672', 'text': 'Eun Yong Kang'},
                                  {'@pid': '270/3752',
                                   'text': 'Sarah Kim-Hellmuth'},
                                  {'@pid': '131/9914',
                                   'text': 'Tuuli Lappalainen'},
                                  {'@pid': '28/538-4', 'text': 'Gen Li 0004'},
                                  {'@pid': '259/3822', 'text': 'Boxiang Liu'},
                                  {'@pid': '99/8436', 'text': 'Serghei Mangul'},
                                  {'@pid': '71/7108',
                                   'text': 'Mark I. McCarthy'},
                                  {'@pid': '215/3578',
                                   'text': 'Ian C. McDowell'},
                                  {'@pid': '155/3655',
                                   'text': 'Pejman Mohammadi 0001'},
                                  {'@pid': '270/3310', 'text': 'Jean Monlong'},
                                  {'@pid': 'm/StephenMontgomery',
                                   'text': 'Stephen B. Montgomery'}]},
           'doi': '10.1038/NATURE24267',
           'ee': 'https://doi.org/10.1038/nature24267',
           'key': 'journals/nature/LiKTDDCHZSSLGBM17',
           'number': '7675',
           'pages': '239-243',
           'title': 'The impact of rare variation on gene expression across '
                    'tissues.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/nature/LiKTDDCHZSSLGBM17',
           'venue': 'Nat.',
           'volume': '550',
           'year': '2017'},
  'url': 'URL#1496540'},
 {'@id': '1497151',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '117/4552',
                                   'text': 'Hien Duy Nguyen'},
                                  {'@pid': '83/3246',
                                   'text': 'Geoffrey J. McLachlan'},
                                  {'@pid': '116/3728', 'text': 'Pierre Orban'},
                                  {'@pid': '35/5051', 'text': 'Pierre Bellec'},
                                  {'@pid': '64/2690',
                                   'text': 'Andrew L. Janke'}]},
           'doi': '10.1162/NECO_A_00938',
           'ee': 'https://doi.org/10.1162/NECO_a_00938',
           'key': 'journals/neco/NguyenMOBJ17',
           'number': '4',
           'pages': '990-1020',
           'title': 'Maximum Pseudolikelihood Estimation for Model-Based '
                    'Clustering of Time Series Data.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/neco/NguyenMOBJ17',
           'venue': 'Neural Comput.',
           'volume': '29',
           'year': '2017'},
  'url': 'URL#1497151'},
 {'@id': '1497585',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '43/11016',
                                   'text': 'Nico U. F. Dosenbach'},
                                  {'@pid': '211/5229',
                                   'text': 'Jonathan M. Koller'},
                                  {'@pid': '211/4836', 'text': 'Eric A. Earl'},
                                  {'@pid': '211/5026',
                                   'text': 'Oscar Miranda-Dominguez'},
                                  {'@pid': '211/4893',
                                   'text': 'Rachel L. Klein'},
                                  {'@pid': '211/4811', 'text': 'Andrew N. Van'},
                                  {'@pid': '01/10745',
                                   'text': 'Abraham Z. Snyder'},
                                  {'@pid': '22/11396',
                                   'text': 'Bonnie J. Nagel'},
                                  {'@pid': '138/3519', 'text': 'Joel T. Nigg'},
                                  {'@pid': '211/4987',
                                   'text': 'Annie L. Nguyen'},
                                  {'@pid': '211/5176',
                                   'text': 'Victoria Wesevich'},
                                  {'@pid': '86/11384',
                                   'text': 'Deanna J. Greene'},
                                  {'@pid': '70/11013',
                                   'text': 'Damien A. Fair'}]},
           'doi': '10.1016/J.NEUROIMAGE.2017.08.025',
           'ee': 'https://doi.org/10.1016/j.neuroimage.2017.08.025',
           'key': 'journals/neuroimage/DosenbachKEMKVS17',
           'pages': '80-93',
           'title': 'Real-time motion analytics during brain MRI improve data '
                    'quality and reduce costs.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/neuroimage/DosenbachKEMKVS17',
           'venue': 'NeuroImage',
           'volume': '161',
           'year': '2017'},
  'url': 'URL#1497585'},
 {'@id': '1501686',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '188/5712',
                                   'text': 'Jeffrey P. Nguyen'},
                                  {'@pid': '188/5999',
                                   'text': 'Ashley N. Linder'},
                                  {'@pid': '188/5955',
                                   'text': 'George S. Plummer'},
                                  {'@pid': '123/4441',
                                   'text': 'Joshua W. Shaevitz'},
                                  {'@pid': '188/6114',
                                   'text': 'Andrew M. Leifer'}]},
           'doi': '10.1371/JOURNAL.PCBI.1005517',
           'ee': 'https://doi.org/10.1371/journal.pcbi.1005517',
           'key': 'journals/ploscb/NguyenLPSL17',
           'number': '5',
           'title': 'Automatically tracking neurons in a moving and deforming '
                    'brain.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/ploscb/NguyenLPSL17',
           'venue': 'PLoS Comput. Biol.',
           'volume': '13',
           'year': '2017'},
  'url': 'URL#1501686'},
 {'@id': '1519231',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '166/3326', 'text': 'Vinh T. Tran'},
                                  {'@pid': '53/3738',
                                   'text': 'Andrew G. Dempster'},
                                  {'@pid': '199/0631',
                                   'text': 'Thuan Dinh Nguyen'},
                                  {'@pid': '32/8209',
                                   'text': 'Nagaraj Channarayapatna '
                                           'Shivaramaiah'}]},
           'doi': '10.1109/TAES.2017.2650298',
           'ee': 'https://doi.org/10.1109/TAES.2017.2650298',
           'key': 'journals/taes/TranDNS17',
           'number': '1',
           'pages': '296-309',
           'title': 'A Dynamically Configurable Decimator for a GNSS Baseband '
                    'Receiver.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/taes/TranDNS17',
           'venue': 'IEEE Trans. Aerosp. Electron. Syst.',
           'volume': '53',
           'year': '2017'},
  'url': 'URL#1519231'},
 {'@id': '1520299',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '118/6238', 'text': 'Thuy T. Pham'},
                                  {'@pid': '27/2354',
                                   'text': 'Steven T. Moore'},
                                  {'@pid': '155/6154',
                                   'text': 'Simon J. G. Lewis'},
                                  {'@pid': '95/10112',
                                   'text': 'Diep N. Nguyen'},
                                  {'@pid': '71/2764',
                                   'text': 'Eryk Dutkiewicz'},
                                  {'@pid': '56/7889',
                                   'text': 'Andrew J. Fuglevand'},
                                  {'@pid': '84/10611',
                                   'text': 'Alistair Lee McEwan'},
                                  {'@pid': '54/222',
                                   'text': 'Philip Heng Wai Leong'}]},
           'doi': '10.1109/TBME.2017.2665438',
           'ee': 'https://doi.org/10.1109/TBME.2017.2665438',
           'key': 'journals/tbe/PhamMLNDFML17',
           'number': '11',
           'pages': '2719-2728',
           'title': 'Freezing of Gait Detection in Parkinson&apos;s Disease - '
                    'A Subject-Independent Detector Using Anomaly Scores.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/tbe/PhamMLNDFML17',
           'venue': 'IEEE Trans. Biomed. Eng.',
           'volume': '64',
           'year': '2017'},
  'url': 'URL#1520299'},
 {'@id': '1554405',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '83/33', 'text': 'Tim Collins'},
                                  {'@pid': '08/6426',
                                   'text': 'Sandra I. Woolley'},
                                  {'@pid': '03/6690',
                                   'text': 'Eugene Ch&apos;ng'},
                                  {'@pid': '133/0836',
                                   'text': 'Luis Hernandez-Munoz'},
                                  {'@pid': '164/6787',
                                   'text': 'Erlend Gehlken'},
                                  {'@pid': '47/6547', 'text': 'David Nash'},
                                  {'@pid': '24/2147', 'text': 'Andrew Lewis'},
                                  {'@pid': '209/8978',
                                   'text': 'Laurence Hanes'}]},
           'doi': '10.14236/EWIC/HCI2017.73',
           'ee': 'https://doi.org/10.14236/ewic/HCI2017.73',
           'key': 'conf/bcshci/CollinsWCHGNLH17',
           'title': 'A Virtual 3D Cuneiform Tablet Reconstruction Interaction.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/bcshci/CollinsWCHGNLH17',
           'venue': 'BCS HCI',
           'year': '2017'},
  'url': 'URL#1554405'},
 {'@id': '1554482',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '08/6426',
                                   'text': 'Sandra I. Woolley'},
                                  {'@pid': '03/6690',
                                   'text': 'Eugene Ch&apos;ng'},
                                  {'@pid': '85/9072',
                                   'text': 'Luis U. Hernandez Munoz'},
                                  {'@pid': '164/6787',
                                   'text': 'Erlend Gehlken'},
                                  {'@pid': '83/33', 'text': 'Tim Collins'},
                                  {'@pid': '47/6547', 'text': 'David Nash'},
                                  {'@pid': '24/2147', 'text': 'Andrew Lewis'},
                                  {'@pid': '209/8978',
                                   'text': 'Laurence Hanes'}]},
           'doi': '10.14236/EWIC/HCI2017.53',
           'ee': 'https://doi.org/10.14236/ewic/HCI2017.53',
           'key': 'conf/bcshci/WoolleyCMGCNLH17',
           'title': 'A Collaborative Artefact Reconstruction Environment.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/bcshci/WoolleyCMGCNLH17',
           'venue': 'BCS HCI',
           'year': '2017'},
  'url': 'URL#1554482'},
 {'@id': '1554556',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '153/1912', 'text': 'Amartya Hatua'},
                                  {'@pid': '210/3354',
                                   'text': 'Trung T. Nguyen'},
                                  {'@pid': '79/1202',
                                   'text': 'Andrew H. Sung'}]},
           'doi': '10.1145/3148055.3148078',
           'ee': 'https://doi.org/10.1145/3148055.3148078',
           'key': 'conf/bdc/HatuaNS17',
           'pages': '157-167',
           'title': 'Information Diffusion on Twitter - Pattern Recognition '
                    'and Prediction of Volume, Sentiment, and Influence.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/bdc/HatuaNS17',
           'venue': 'BDCAT',
           'year': '2017'},
  'url': 'URL#1554556'},
 {'@id': '1556244',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '74/3830',
                                   'text': 'Long Hoang Nguyen 0002'},
                                  {'@pid': '213/1260',
                                   'text': 'Andrew Salopek'},
                                  {'@pid': '63/5422-2',
                                   'text': 'Liang Zhao 0002'},
                                  {'@pid': '22/6323', 'text': 'Fang Jin'}]},
           'doi': '10.1109/BIGDATA.2017.8258148',
           'ee': 'https://doi.org/10.1109/BigData.2017.8258148',
           'key': 'conf/bigdataconf/NguyenSZJ17',
           'pages': '2019-2026',
           'title': 'A natural language normalization approach to enhance '
                    'social media text reasoning.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/bigdataconf/NguyenSZJ17',
           'venue': 'IEEE BigData',
           'year': '2017'},
  'url': 'URL#1556244'},
 {'@id': '1572529',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '98/2634', 'text': 'Trung Nguyen'},
                                  {'@pid': '87/6413',
                                   'text': 'George K. I. Mann'},
                                  {'@pid': '88/6967', 'text': 'Andrew Vardy'},
                                  {'@pid': '05/6361',
                                   'text': 'Raymond G. Gosine'}]},
           'doi': '10.1109/CRV.2017.19',
           'ee': 'https://doi.org/10.1109/CRV.2017.19',
           'key': 'conf/crv/NguyenMVG17',
           'pages': '321-328',
           'title': 'Developing a Cubature Multi-state Constraint Kalman '
                    'Filter for Visual-Inertial Navigation System.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/crv/NguyenMVG17',
           'venue': 'CRV',
           'year': '2017'},
  'url': 'URL#1572529'},
 {'@id': '1579440',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '00/5147', 'text': 'Hung Nguyen'},
                                  {'@pid': '213/1852',
                                   'text': 'Sarah J. Maclagan'},
                                  {'@pid': '129/2628',
                                   'text': 'Tu Dinh Nguyen'},
                                  {'@pid': '77/8172', 'text': 'Thin Nguyen'},
                                  {'@pid': '58/7262', 'text': 'Paul Flemons'},
                                  {'@pid': '213/1887', 'text': 'Kylie Andrews'},
                                  {'@pid': '213/1832',
                                   'text': 'Euan G. Ritchie'},
                                  {'@pid': '71/5859',
                                   'text': 'Dinh Q. Phung'}]},
           'doi': '10.1109/DSAA.2017.31',
           'ee': 'https://doi.org/10.1109/DSAA.2017.31',
           'key': 'conf/dsaa/NguyenMNNFARP17',
           'pages': '40-49',
           'title': 'Animal Recognition and Identification with Deep '
                    'Convolutional Neural Networks for Automated Wildlife '
                    'Monitoring.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/dsaa/NguyenMNNFARP17',
           'venue': 'DSAA',
           'year': '2017'},
  'url': 'URL#1579440'},
 {'@id': '1622988',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '208/1453',
                                   'text': 'Andrew K. LaPre'},
                                  {'@pid': '208/1492',
                                   'text': 'Vinh Q. Nguyen'},
                                  {'@pid': '208/1684', 'text': 'Ulvi Baspinar'},
                                  {'@pid': '76/6763', 'text': 'Michael White'},
                                  {'@pid': '42/1595', 'text': 'Frank C. Sup'}]},
           'doi': '10.1109/ICORR.2017.8009416',
           'ee': 'https://doi.org/10.1109/ICORR.2017.8009416',
           'key': 'conf/icorr/LaPreNBWS17',
           'pages': '1221-1226',
           'title': 'Capturing prosthetic socket fitment - Preliminary results '
                    'using an ultrasound-based device.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icorr/LaPreNBWS17',
           'venue': 'ICORR',
           'year': '2017'},
  'url': 'URL#1622988'},
 {'@id': '1625753',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': 'n/AnneHHNgu',
                                   'text': 'Anne H. H. Ngu'},
                                  {'@pid': '239/5804', 'text': 'Yeahuay Wu'},
                                  {'@pid': '41/8710', 'text': 'Habil Zare'},
                                  {'@pid': '207/8597',
                                   'text': 'Andrew Polican'},
                                  {'@pid': '207/8675',
                                   'text': 'Brock Yarbrough'},
                                  {'@pid': '56/6651', 'text': 'Lina Yao'}]},
           'doi': '10.1007/978-3-319-67964-8_8',
           'ee': 'https://doi.org/10.1007/978-3-319-67964-8_8',
           'key': 'conf/icsh/NguWZPYY17',
           'pages': '81-93',
           'title': 'Fall Detection Using Smartwatch Sensor Data with Accessor '
                    'Architecture.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icsh/NguWZPYY17',
           'venue': 'ICSH',
           'year': '2017'},
  'url': 'URL#1625753'},
 {'@id': '1628676',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '92/11201',
                                   'text': 'Bho Matthiesen'},
                                  {'@pid': '118/1475',
                                   'text': 'Stefan Pfennig'},
                                  {'@pid': '177/0153', 'text': 'Mario Bielert'},
                                  {'@pid': '63/9894', 'text': 'Thomas Ilsche'},
                                  {'@pid': '211/3594',
                                   'text': 'Andrew Lonnstrom'},
                                  {'@pid': '75/4601-26', 'text': 'Tao Li 0026'},
                                  {'@pid': '230/9980',
                                   'text': 'Juan A. Cabrera 0002'},
                                  {'@pid': '71/11073',
                                   'text': 'Christian Scheunert'},
                                  {'@pid': '73/5092',
                                   'text': 'Elke Franz 0001'},
                                  {'@pid': '41/6359', 'text': 'Silvia Santini'},
                                  {'@pid': '69/2809',
                                   'text': 'Thorsten Strufe'},
                                  {'@pid': '20/4825',
                                   'text': 'Eduard A. Jorswieck'},
                                  {'@pid': '66/4013',
                                   'text': 'Wolfgang E. Nagel'},
                                  {'@pid': '10/1557-2',
                                   'text': 'Giang T. Nguyen 0002'},
                                  {'@pid': 'f/FHPFitzek',
                                   'text': 'Frank H. P. Fitzek'}]},
           'doi': '10.1109/ICUWB.2017.8250994',
           'ee': 'https://doi.org/10.1109/ICUWB.2017.8250994',
           'key': 'conf/icuwb/MatthiesenPBILL17',
           'pages': '1-7',
           'title': 'Secure and energy-efficient interconnects for '
                    'board-to-board communication.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icuwb/MatthiesenPBILL17',
           'venue': 'ICUWB',
           'year': '2017'},
  'url': 'URL#1628676'},
 {'@id': '1641980',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '98/2634', 'text': 'Trung Nguyen'},
                                  {'@pid': '87/6413',
                                   'text': 'George K. I. Mann'},
                                  {'@pid': '88/6967', 'text': 'Andrew Vardy'},
                                  {'@pid': '05/6361',
                                   'text': 'Raymond G. Gosine'}]},
           'doi': '10.1109/IROS.2017.8206305',
           'ee': 'https://doi.org/10.1109/IROS.2017.8206305',
           'key': 'conf/iros/NguyenMVG17',
           'pages': '4410-4415',
           'title': 'Likelihood-based iterated cubature multi-state-constraint '
                    'Kalman filter for visual inertial navigation system.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/iros/NguyenMVG17',
           'venue': 'IROS',
           'year': '2017'},
  'url': 'URL#1641980'},
 {'@id': '1660488',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '11/5082', 'text': 'Warren Smith'},
                                  {'@pid': '49/9826', 'text': 'Greg Kuperman'},
                                  {'@pid': '73/6010', 'text': 'Michael Chan'},
                                  {'@pid': '210/7062', 'text': 'Eric Morgan'},
                                  {'@pid': '48/6075', 'text': 'Huy Nguyen'},
                                  {'@pid': '09/1658', 'text': 'Nabil Schear'},
                                  {'@pid': '210/6894', 'text': 'Bich Vu'},
                                  {'@pid': '123/0880',
                                   'text': 'Andrew J. Weinert'},
                                  {'@pid': '210/6551',
                                   'text': 'Matthew Weyant'},
                                  {'@pid': '194/8596',
                                   'text': 'Daniel Whisman'}]},
           'doi': '10.1109/MILCOM.2017.8170823',
           'ee': 'https://doi.org/10.1109/MILCOM.2017.8170823',
           'key': 'conf/milcom/SmithKCMNSVWWW17',
           'pages': '882-887',
           'title': 'Cloud computing in tactical environments.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/milcom/SmithKCMNSVWWW17',
           'venue': 'MILCOM',
           'year': '2017'},
  'url': 'URL#1660488'},
 {'@id': '1681142',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '82/5111',
                                   'text': 'Monica Babes-Vroman'},
                                  {'@pid': '195/8794',
                                   'text': 'Isabel Juniewicz'},
                                  {'@pid': '195/8742',
                                   'text': 'Bruno Lucarelli'},
                                  {'@pid': '188/1229', 'text': 'Nicole Fox'},
                                  {'@pid': 'n/ThuDNguyen',
                                   'text': 'Thu D. Nguyen'},
                                  {'@pid': '37/49', 'text': 'Andrew Tjang'},
                                  {'@pid': '161/6303',
                                   'text': 'Georgiana Haldeman'},
                                  {'@pid': '195/8649', 'text': 'Ashni Mehta'},
                                  {'@pid': '195/8734',
                                   'text': 'Risham Chokshi'}]},
           'doi': '10.1145/3017680.3017773',
           'ee': 'https://doi.org/10.1145/3017680.3017773',
           'key': 'conf/sigcse/Babes-VromanJLF17',
           'pages': '51-56',
           'title': 'Exploring Gender Diversity in CS at a Large Public R1 '
                    'Research University.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/sigcse/Babes-VromanJLF17',
           'venue': 'SIGCSE',
           'year': '2017'},
  'url': 'URL#1681142'},
 {'@id': '1682838',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '19/7057', 'text': 'ThanhVu Nguyen'},
                                  {'@pid': '62/6761',
                                   'text': 'Timos Antonopoulos'},
                                  {'@pid': '135/5976', 'text': 'Andrew Ruef'},
                                  {'@pid': 'h/MichaelWHicks',
                                   'text': 'Michael Hicks 0001'}]},
           'doi': '10.1145/3106237.3106281',
           'ee': 'https://doi.org/10.1145/3106237.3106281',
           'key': 'conf/sigsoft/NguyenARH17',
           'pages': '605-615',
           'title': 'Counterexample-guided approach to finding numerical '
                    'invariants.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/sigsoft/NguyenARH17',
           'venue': 'ESEC/SIGSOFT FSE',
           'year': '2017'},
  'url': 'URL#1682838'},
 {'@id': '1756299',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '96/5223', 'text': 'Yun Zheng'},
                                  {'@pid': '191/0737',
                                   'text': 'Vandana Hivrale'},
                                  {'@pid': '44/6434', 'text': 'Xiaotuo Zhang'},
                                  {'@pid': '21/9078',
                                   'text': 'Babu Valliyodan'},
                                  {'@pid': '191/0795',
                                   'text': 'Christine Lelandais-Brière'},
                                  {'@pid': '29/4764',
                                   'text': 'Andrew D. Farmer'},
                                  {'@pid': '12/741', 'text': 'Gregory D. May'},
                                  {'@pid': '191/0871', 'text': 'Martin Crespi'},
                                  {'@pid': '130/9088',
                                   'text': 'Henry T. Nguyen'},
                                  {'@pid': '191/0749',
                                   'text': 'Ramanjulu Sunkar'}]},
           'doi': '10.1186/S12918-016-0374-0',
           'ee': 'https://doi.org/10.1186/s12918-016-0374-0',
           'key': 'journals/bmcsb/ZhengHZVLFMCNS16',
           'number': 'S-5',
           'pages': '1-10',
           'title': 'Small RNA profiles in soybean primary root tips under '
                    'water deficit.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/bmcsb/ZhengHZVLFMCNS16',
           'venue': 'BMC Syst. Biol.',
           'volume': '10',
           'year': '2016'},
  'url': 'URL#1756299'},
 {'@id': '1756867',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '15/2621',
                                   'text': 'Andrew Lenharth'},
                                  {'@pid': '48/4701', 'text': 'Donald Nguyen'},
                                  {'@pid': '71/5735',
                                   'text': 'Keshav Pingali'}]},
           'doi': '10.1145/2901919',
           'ee': 'https://doi.org/10.1145/2901919',
           'key': 'journals/cacm/LenharthNP16',
           'number': '5',
           'pages': '78-87',
           'title': 'Parallel graph analytics.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/cacm/LenharthNP16',
           'venue': 'Commun. ACM',
           'volume': '59',
           'year': '2016'},
  'url': 'URL#1756867'},
 {'@id': '1768320',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '91/11484',
                                   'text': 'David D. L. Minh'},
                                  {'@pid': '82/11484',
                                   'text': 'Do Le Paul Minh'},
                                  {'@pid': '80/11484',
                                   'text': 'Andrew L. Nguyen'}]},
           'doi': '10.1080/03610918.2013.854907',
           'ee': 'https://doi.org/10.1080/03610918.2013.854907',
           'key': 'journals/cssc/MinhMN16',
           'number': '1',
           'pages': '73-100',
           'title': 'Layer Sampling.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/cssc/MinhMN16',
           'venue': 'Commun. Stat. Simul. Comput.',
           'volume': '45',
           'year': '2016'},
  'url': 'URL#1768320'},
 {'@id': '1794883',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '02/3007', 'text': 'Shensheng Tang'},
                                  {'@pid': '183/8419',
                                   'text': 'Andrew Trautman'},
                                  {'@pid': '00/5147', 'text': 'Hung Nguyen'}]},
           'doi': '10.1007/S10776-016-0313-4',
           'ee': 'https://doi.org/10.1007/s10776-016-0313-4',
           'key': 'journals/ijwin/TangTN16',
           'number': '3',
           'pages': '214-221',
           'title': 'On Energy-Based Quality of Detection (QoD) for Cognitive '
                    'Radio Sensor Networks.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/ijwin/TangTN16',
           'venue': 'Int. J. Wirel. Inf. Networks',
           'volume': '23',
           'year': '2016'},
  'url': 'URL#1794883'},
 {'@id': '1800348',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '136/2257',
                                   'text': 'Courtney R. Lyles'},
                                  {'@pid': '56/9737',
                                   'text': 'Urmimala Sarkar'},
                                  {'@pid': '69/9737',
                                   'text': 'Dean Schillinger'},
                                  {'@pid': '83/8750',
                                   'text': 'James D. Ralston'},
                                  {'@pid': '68/9189', 'text': 'Jill Y. Allen'},
                                  {'@pid': '44/9737', 'text': 'Robert Nguyen'},
                                  {'@pid': '57/9737',
                                   'text': 'Andrew J. Karter'}]},
           'doi': '10.1093/JAMIA/OCV126',
           'ee': 'https://doi.org/10.1093/jamia/ocv126',
           'key': 'journals/jamia/LylesSSRANK16',
           'number': 'e1',
           'pages': 'e28-e33',
           'title': 'Refilling medications through an online patient portal - '
                    'consistent improvements in adherence across racial/ethnic '
                    'groups.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/jamia/LylesSSRANK16',
           'venue': 'J. Am. Medical Informatics Assoc.',
           'volume': '23',
           'year': '2016'},
  'url': 'URL#1800348'},
 {'@id': '1807678',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '30/4876',
                                   'text': 'Quang Vinh Nguyen'},
                                  {'@pid': '195/3192',
                                   'text': 'Nader Hasan Khalifa'},
                                  {'@pid': '129/2502', 'text': 'Pat Alzamora'},
                                  {'@pid': '67/10461',
                                   'text': 'Andrew Gleeson'},
                                  {'@pid': '40/744',
                                   'text': 'Daniel R. Catchpoole'},
                                  {'@pid': '08/353', 'text': 'Paul J. Kennedy'},
                                  {'@pid': '39/1218',
                                   'text': 'Simeon J. Simoff'}]},
           'doi': '10.3390/JIMAGING2040029',
           'ee': 'https://doi.org/10.3390/jimaging2040029',
           'key': 'journals/jimaging/NguyenKAGCKS16',
           'number': '4',
           'pages': '29',
           'title': 'Visual Analytics of Complex Genomics Data to Guide '
                    'Effective Treatment Decisions.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/jimaging/NguyenKAGCKS16',
           'venue': 'J. Imaging',
           'volume': '2',
           'year': '2016'},
  'url': 'URL#1807678'},
 {'@id': '1808006',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '98/2634', 'text': 'Trung Nguyen'},
                                  {'@pid': '87/6413',
                                   'text': 'George K. I. Mann'},
                                  {'@pid': '05/6361',
                                   'text': 'Raymond G. Gosine'},
                                  {'@pid': '88/6967', 'text': 'Andrew Vardy'}]},
           'doi': '10.1007/S10846-015-0320-1',
           'ee': 'https://doi.org/10.1007/s10846-015-0320-1',
           'key': 'journals/jirs/NguyenMGV16',
           'number': '1-4',
           'pages': '217-240',
           'title': 'Appearance-Based Visual-Teach-And-Repeat Navigation '
                    'Technique for Micro Aerial Vehicle.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/jirs/NguyenMGV16',
           'venue': 'J. Intell. Robotic Syst.',
           'volume': '84',
           'year': '2016'},
  'url': 'URL#1808006'},
 {'@id': '1811579',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '159/2501',
                                   'text': 'An Hung Nguyen'},
                                  {'@pid': '75/4744',
                                   'text': 'Mark R. Pickering'},
                                  {'@pid': '117/1912',
                                   'text': 'Andrew J. Lambert'}]},
           'doi': '10.1007/S11554-014-0420-3',
           'ee': 'https://doi.org/10.1007/s11554-014-0420-3',
           'key': 'journals/jrtip/NguyenPL16',
           'number': '4',
           'pages': '799-815',
           'title': 'The FPGA implementation of a one-bit-per-pixel image '
                    'registration algorithm.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/jrtip/NguyenPL16',
           'venue': 'J. Real Time Image Process.',
           'volume': '11',
           'year': '2016'},
  'url': 'URL#1811579'},
 {'@id': '1834278',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '187/1949',
                                   'text': 'Jarred Fastier-Wooller'},
                                  {'@pid': '187/2086',
                                   'text': 'Hoang-Phuong Phan'},
                                  {'@pid': '187/2012', 'text': 'Toan Dinh'},
                                  {'@pid': '187/1781',
                                   'text': 'Tuan-Khoa Nguyen'},
                                  {'@pid': '140/1435',
                                   'text': 'Andrew Cameron'},
                                  {'@pid': '40/9130',
                                   'text': 'Andreas Öchsner'},
                                  {'@pid': '46/483',
                                   'text': 'Dzung Viet Dao'}]},
           'doi': '10.3390/S16081244',
           'ee': 'https://doi.org/10.3390/s16081244',
           'key': 'journals/sensors/Fastier-Wooller16',
           'number': '8',
           'pages': '1244',
           'title': 'Novel Low-Cost Sensor for Human Bite Force Measurement.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/sensors/Fastier-Wooller16',
           'venue': 'Sensors',
           'volume': '16',
           'year': '2016'},
  'url': 'URL#1834278'},
 {'@id': '1843720',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '29/3342', 'text': 'Hieu T. Nguyen'},
                                  {'@pid': '183/5135',
                                   'text': 'Siva M. Tangutooru'},
                                  {'@pid': '183/5200',
                                   'text': 'Corey M. Rountree'},
                                  {'@pid': '183/5065',
                                   'text': 'Andrew J. Kantzos'},
                                  {'@pid': '162/0488',
                                   'text': 'Faris Tarlochan'},
                                  {'@pid': '75/8780', 'text': 'W. Jong Yoon'},
                                  {'@pid': '07/11008',
                                   'text': 'John B. Troy'}]},
           'doi': '10.1109/TBME.2016.2567300',
           'ee': 'https://doi.org/10.1109/TBME.2016.2567300',
           'key': 'journals/tbe/NguyenTRKTYT16',
           'number': '8',
           'pages': '1573-1580',
           'title': 'Thalamic Visual Prosthesis.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/tbe/NguyenTRKTYT16',
           'venue': 'IEEE Trans. Biomed. Eng.',
           'volume': '63',
           'year': '2016'},
  'url': 'URL#1843720'},
 {'@id': '1861857',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '94/8863',
                                   'text': 'Parasara Sridhar Duggirala'},
                                  {'@pid': '127/1756', 'text': 'Chuchu Fan'},
                                  {'@pid': '160/7939', 'text': 'Matthew Potok'},
                                  {'@pid': '182/9038', 'text': 'Bolun Qi'},
                                  {'@pid': '07/3797', 'text': 'Sayan Mitra'},
                                  {'@pid': '23/2759-1',
                                   'text': 'Mahesh Viswanathan 0001'},
                                  {'@pid': '16/7787', 'text': 'Stanley Bak'},
                                  {'@pid': '90/8556',
                                   'text': 'Sergiy Bogomolov'},
                                  {'@pid': '96/11505',
                                   'text': 'Taylor T. Johnson'},
                                  {'@pid': '144/7613',
                                   'text': 'Luan Viet Nguyen'},
                                  {'@pid': '72/2103-1',
                                   'text': 'Christian Schilling 0001'},
                                  {'@pid': '144/4883',
                                   'text': 'Andrew Sogokon'},
                                  {'@pid': '160/7295',
                                   'text': 'Hoang-Dung Tran'},
                                  {'@pid': '72/5686',
                                   'text': 'Weiming Xiang'}]},
           'doi': '10.1109/CCA.2016.7587948',
           'ee': 'https://doi.org/10.1109/CCA.2016.7587948',
           'key': 'conf/IEEEcca/DuggiralaFPQM0B16',
           'pages': '1024-1029',
           'title': 'Tutorial - Software tools for hybrid systems '
                    'verification, transformation, and synthesis - C2E2, HyST, '
                    'and TuLiP.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/IEEEcca/DuggiralaFPQM0B16',
           'venue': 'CCA',
           'year': '2016'},
  'url': 'URL#1861857'},
 {'@id': '1862989',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '57/2878', 'text': 'Fei Fang'},
                                  {'@pid': '117/4935',
                                   'text': 'Thanh Hong Nguyen'},
                                  {'@pid': '178/8703', 'text': 'Rob Pickles'},
                                  {'@pid': '178/8728', 'text': 'Wai Y. Lam'},
                                  {'@pid': '178/8547',
                                   'text': 'Gopalasamy R. Clements'},
                                  {'@pid': '42/6178-1', 'text': 'Bo An 0001'},
                                  {'@pid': '12/2427', 'text': 'Amandeep Singh'},
                                  {'@pid': '67/2667', 'text': 'Milind Tambe'},
                                  {'@pid': '151/3581',
                                   'text': 'Andrew Lemieux'}]},
           'ee': 'http://www.aaai.org/ocs/index.php/IAAI/IAAI16/paper/view/11814',
           'key': 'conf/aaai/FangNPLCASTL16',
           'pages': '3966-3973',
           'title': 'Deploying PAWS - Field Optimization of the Protection '
                    'Assistant for Wildlife Security.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/aaai/FangNPLCASTL16',
           'venue': 'AAAI',
           'year': '2016'},
  'url': 'URL#1862989'},
 {'@id': '1863287',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '117/4935',
                                   'text': 'Thanh Hong Nguyen'},
                                  {'@pid': '26/9089', 'text': 'Arunesh Sinha'},
                                  {'@pid': '180/1416',
                                   'text': 'Shahrzad Gholami'},
                                  {'@pid': '170/5576',
                                   'text': 'Andrew J. Plumptre'},
                                  {'@pid': '160/1079', 'text': 'Lucas Joppa'},
                                  {'@pid': '67/2667', 'text': 'Milind Tambe'},
                                  {'@pid': '170/5674',
                                   'text': 'Margaret Driciru'},
                                  {'@pid': '170/5591', 'text': 'Fred Wanyama'},
                                  {'@pid': '170/5632',
                                   'text': 'Aggrey Rwetsiba'},
                                  {'@pid': '180/1428', 'text': 'Rob Critchlow'},
                                  {'@pid': '86/8638',
                                   'text': 'Colin M. Beale'}]},
           'ee': 'http://www.aaai.org/ocs/index.php/WS/AAAIW16/paper/view/12657',
           'key': 'conf/aaai/NguyenSGPJTDWRC16',
           'title': 'Protecting Wildlife under Imperfect Observation.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/aaai/NguyenSGPJTDWRC16',
           'venue': 'AAAI Workshop - Computer Poker and Imperfect Information '
                    'Games',
           'year': '2016'},
  'url': 'URL#1863287'},
 {'@id': '1874140',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '117/4935',
                                   'text': 'Thanh Hong Nguyen'},
                                  {'@pid': '26/9089', 'text': 'Arunesh Sinha'},
                                  {'@pid': '180/1416',
                                   'text': 'Shahrzad Gholami'},
                                  {'@pid': '170/5576',
                                   'text': 'Andrew J. Plumptre'},
                                  {'@pid': '160/1079', 'text': 'Lucas Joppa'},
                                  {'@pid': '67/2667', 'text': 'Milind Tambe'},
                                  {'@pid': '170/5674',
                                   'text': 'Margaret Driciru'},
                                  {'@pid': '170/5591', 'text': 'Fred Wanyama'},
                                  {'@pid': '170/5632',
                                   'text': 'Aggrey Rwetsiba'},
                                  {'@pid': '180/1428', 'text': 'Rob Critchlow'},
                                  {'@pid': '86/8638',
                                   'text': 'Colin M. Beale'}]},
           'ee': 'http://dl.acm.org/citation.cfm?id=2937037',
           'key': 'conf/atal/NguyenSGPJTDWRC16',
           'pages': '767-775',
           'title': 'CAPTURE - A New Predictive Anti-Poaching Tool for '
                    'Wildlife Protection.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/atal/NguyenSGPJTDWRC16',
           'venue': 'AAMAS',
           'year': '2016'},
  'url': 'URL#1874140'},
 {'@id': '1927706',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '84/2683', 'text': 'Anna Paszynska'},
                                  {'@pid': '146/1155',
                                   'text': 'Maciej Wozniak'},
                                  {'@pid': '15/2621',
                                   'text': 'Andrew Lenharth'},
                                  {'@pid': '48/4701', 'text': 'Donald Nguyen'},
                                  {'@pid': '71/5735',
                                   'text': 'Keshav Pingali'}]},
           'doi': '10.1016/J.PROCS.2016.05.314',
           'ee': 'https://doi.org/10.1016/j.procs.2016.05.314',
           'key': 'conf/iccS/PaszynskaWLNP16',
           'pages': '875-886',
           'title': 'Hypergraph Grammars in Non-stationary hp-adaptive Finite '
                    'Element Method.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/iccS/PaszynskaWLNP16',
           'venue': 'ICCS',
           'year': '2016'},
  'url': 'URL#1927706'},
 {'@id': '1942052',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '76/10701', 'text': 'Saeed Maleki'},
                                  {'@pid': '48/4701', 'text': 'Donald Nguyen'},
                                  {'@pid': '15/2621',
                                   'text': 'Andrew Lenharth'},
                                  {'@pid': '95/6451',
                                   'text': 'María Jesús Garzarán'},
                                  {'@pid': 'p/DavidAPadua',
                                   'text': 'David A. Padua'},
                                  {'@pid': '71/5735',
                                   'text': 'Keshav Pingali'}]},
           'doi': '10.1145/2925426.2926287',
           'ee': 'https://doi.org/10.1145/2925426.2926287',
           'key': 'conf/ics/MalekiNLGPP16',
           'pages': '32:1-32:14',
           'title': 'DSMR - A Parallel Algorithm for Single-Source Shortest '
                    'Path Problem.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/ics/MalekiNLGPP16',
           'venue': 'ICS',
           'year': '2016'},
  'url': 'URL#1942052'},
 {'@id': '1987421',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '76/10701', 'text': 'Saeed Maleki'},
                                  {'@pid': '48/4701', 'text': 'Donald Nguyen'},
                                  {'@pid': '15/2621',
                                   'text': 'Andrew Lenharth'},
                                  {'@pid': '95/6451',
                                   'text': 'María Jesús Garzarán'},
                                  {'@pid': 'p/DavidAPadua',
                                   'text': 'David A. Padua'},
                                  {'@pid': '71/5735',
                                   'text': 'Keshav Pingali'}]},
           'doi': '10.1145/2851141.2851183',
           'ee': 'https://doi.org/10.1145/2851141.2851183',
           'key': 'conf/ppopp/MalekiNLGPP16',
           'pages': '39:1-39:2',
           'title': 'DSMR - a shared and distributed memory algorithm for '
                    'single-source shortest path problem.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/ppopp/MalekiNLGPP16',
           'venue': 'PPOPP',
           'year': '2016'},
  'url': 'URL#1987421'},
 {'@id': '1989624',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '185/2894',
                                   'text': 'Tamas Motajcsek'},
                                  {'@pid': '00/2213',
                                   'text': 'Jean-Yves Le Moine'},
                                  {'@pid': '75/107',
                                   'text': 'Martha A. Larson'},
                                  {'@pid': '47/7181',
                                   'text': 'Daniel Kohlsdorf'},
                                  {'@pid': '38/2946',
                                   'text': 'Andreas Lommatzsch'},
                                  {'@pid': '55/6632', 'text': 'Domonkos Tikk'},
                                  {'@pid': 'a/OmarAlonso',
                                   'text': 'Omar Alonso'},
                                  {'@pid': '03/3233',
                                   'text': 'Paolo Cremonesi'},
                                  {'@pid': '185/2885',
                                   'text': 'Andrew M. Demetriou'},
                                  {'@pid': '185/2882',
                                   'text': 'Kristaps Dobrajs'},
                                  {'@pid': '68/7019',
                                   'text': 'Franca Garzotto'},
                                  {'@pid': '66/6753', 'text': 'Ayse Göker'},
                                  {'@pid': '85/5730',
                                   'text': 'Frank Hopfgartner'},
                                  {'@pid': '184/2094',
                                   'text': 'Davide Malagoli'},
                                  {'@pid': '115/8737',
                                   'text': 'Thuy Ngoc Nguyen 0001'},
                                  {'@pid': '39/5526', 'text': 'Jasminko Novak'},
                                  {'@pid': 'r/FrancescoRicci',
                                   'text': 'Francesco Ricci 0001'},
                                  {'@pid': '81/701',
                                   'text': 'Mario Scriminaci'},
                                  {'@pid': '24/8697', 'text': 'Marko Tkalcic'},
                                  {'@pid': '99/2796', 'text': 'Anna Zacchi'}]},
           'doi': '10.1145/2959100.2959164',
           'ee': 'https://doi.org/10.1145/2959100.2959164',
           'key': 'conf/recsys/MotajcsekMLKLTA16',
           'pages': '215-219',
           'title': 'Algorithms Aside - Recommendation As The Lens Of Life.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/recsys/MotajcsekMLKLTA16',
           'venue': 'RecSys',
           'year': '2016'},
  'url': 'URL#1989624'},
 {'@id': '2010784',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '195/7355', 'text': 'Vince Gaffoey'},
                                  {'@pid': '195/7337',
                                   'text': 'Richard Cuttler'},
                                  {'@pid': '87/749', 'text': 'Richard Bates'},
                                  {'@pid': '43/9999', 'text': 'Chris Gaffney'},
                                  {'@pid': '03/6690',
                                   'text': 'Eugene Ch&apos;ng'},
                                  {'@pid': '30/6467',
                                   'text': 'Andrew Wilson'}]},
           'doi': '10.1109/VSMM.2016.7863167',
           'ee': 'https://doi.org/10.1109/VSMM.2016.7863167',
           'key': 'conf/vsmm/GaffoeyCBGCW16',
           'pages': '1-9',
           'title': 'BradPhys to BradViz or from archaeological science to '
                    'heritage science.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/vsmm/GaffoeyCBGCW16',
           'venue': 'VSMM',
           'year': '2016'},
  'url': 'URL#2010784'},
 {'@id': '2038885',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '188/5712',
                                   'text': 'Jeffrey P. Nguyen'},
                                  {'@pid': '188/5999',
                                   'text': 'Ashley N. Linder'},
                                  {'@pid': '188/5955',
                                   'text': 'George S. Plummer'},
                                  {'@pid': '123/4441',
                                   'text': 'Joshua W. Shaevitz'},
                                  {'@pid': '188/6114',
                                   'text': 'Andrew M. Leifer'}]},
           'ee': 'http://arxiv.org/abs/1610.04579',
           'key': 'journals/corr/NguyenLPSL16',
           'title': 'Automatically tracking neurons in a moving and deforming '
                    'brain.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/NguyenLPSL16',
           'venue': 'CoRR',
           'volume': 'abs/1610.04579',
           'year': '2016'},
  'url': 'URL#2038885'},
 {'@id': '2073734',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '22/3912',
                                   'text': 'Hoang Anh Nguyen'},
                                  {'@pid': '09/6203', 'text': 'David Abramson'},
                                  {'@pid': '42/6781',
                                   'text': 'Timoleon Kipouros'},
                                  {'@pid': '64/2690',
                                   'text': 'Andrew L. Janke'},
                                  {'@pid': '23/10742',
                                   'text': 'Graham J. Galloway'}]},
           'doi': '10.1002/CPE.3525',
           'ee': 'https://doi.org/10.1002/cpe.3525',
           'key': 'journals/concurrency/NguyenAKJG15',
           'number': '16',
           'pages': '4377-4397',
           'title': 'WorkWays - interacting with scientific workflows.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/concurrency/NguyenAKJG15',
           'venue': 'Concurr. Comput. Pract. Exp.',
           'volume': '27',
           'year': '2015'},
  'url': 'URL#2073734'},
 {'@id': '2099253',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '173/0617',
                                   'text': 'Andrew Lukyamuzi'},
                                  {'@pid': '44/4913', 'text': 'John Ngubiri'},
                                  {'@pid': '33/10311',
                                   'text': 'Washington Okori'}]},
           'doi': '10.4018/IJSDA.2015100101',
           'ee': 'https://doi.org/10.4018/IJSDA.2015100101',
           'key': 'journals/ijsda/LukyamuziNO15',
           'number': '4',
           'pages': '1-16',
           'title': 'Towards Harnessing Phone Messages and Telephone '
                    'Conversations for Prediction of Food Crisis.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/ijsda/LukyamuziNO15',
           'venue': 'Int. J. Syst. Dyn. Appl.',
           'volume': '4',
           'year': '2015'},
  'url': 'URL#2099253'},
 {'@id': '2107367',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '123/2043',
                                   'text': 'Steffen Lindert'},
                                  {'@pid': '156/2775',
                                   'text': 'Lorillee Tallorin'},
                                  {'@pid': '156/2712',
                                   'text': 'Quynh G. Nguyen'},
                                  {'@pid': '04/8657',
                                   'text': 'Michael D. Burkart'},
                                  {'@pid': '34/3785',
                                   'text': 'James Andrew McCammon'}]},
           'doi': '10.1007/S10822-014-9806-3',
           'ee': 'https://doi.org/10.1007/s10822-014-9806-3',
           'key': 'journals/jcamd/LindertTNBM15',
           'number': '1',
           'pages': '79-87',
           'title': 'In silico screening for Plasmodium falciparum enoyl-ACP '
                    'reductase inhibitors.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/jcamd/LindertTNBM15',
           'venue': 'J. Comput. Aided Mol. Des.',
           'volume': '29',
           'year': '2015'},
  'url': 'URL#2107367'},
 {'@id': '2111693',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '58/5340',
                                   'text': 'Nicolaus A. Radford'},
                                  {'@pid': '77/2489',
                                   'text': 'Philip Strawser'},
                                  {'@pid': '43/2411',
                                   'text': 'Kimberly A. Hambuchen'},
                                  {'@pid': '48/4101',
                                   'text': 'Joshua S. Mehling'},
                                  {'@pid': '61/6803',
                                   'text': 'William K. Verdeyen'},
                                  {'@pid': '161/7092',
                                   'text': 'A. Stuart Donnan'},
                                  {'@pid': '158/5252', 'text': 'James Holley'},
                                  {'@pid': '161/7106', 'text': 'Jairo Sanchez'},
                                  {'@pid': '161/6992', 'text': 'Vienny Nguyen'},
                                  {'@pid': '85/5389',
                                   'text': 'Lyndon B. Bridgwater'},
                                  {'@pid': '161/7064',
                                   'text': 'Reginald Berka'},
                                  {'@pid': '67/2925',
                                   'text': 'Robert O. Ambrose'},
                                  {'@pid': '161/7157',
                                   'text': 'Mason Myles Markee'},
                                  {'@pid': '161/7045',
                                   'text': 'N. J. Fraser-Chanpong'},
                                  {'@pid': '135/8341',
                                   'text': 'Christopher McQuin'},
                                  {'@pid': '57/7747',
                                   'text': 'John D. Yamokoski'},
                                  {'@pid': '28/388', 'text': 'Stephen Hart'},
                                  {'@pid': '161/7096', 'text': 'Raymond Guo'},
                                  {'@pid': '161/6991', 'text': 'Adam Parsons'},
                                  {'@pid': '153/7440',
                                   'text': 'Brian Wightman'},
                                  {'@pid': '153/7721', 'text': 'Paul Dinh'},
                                  {'@pid': '161/7073', 'text': 'Barrett Ames'},
                                  {'@pid': '161/7038',
                                   'text': 'Charles Blakely'},
                                  {'@pid': '161/7138',
                                   'text': 'Courtney Edmondson'},
                                  {'@pid': '161/7036', 'text': 'Brett Sommers'},
                                  {'@pid': '161/7095', 'text': 'Rochelle Rea'},
                                  {'@pid': '161/7170', 'text': 'Chad Tobler'},
                                  {'@pid': '161/7148', 'text': 'Heather Bibby'},
                                  {'@pid': '161/7015', 'text': 'Brice Howard'},
                                  {'@pid': '81/692', 'text': 'Lei Niu'},
                                  {'@pid': '57/1584', 'text': 'Andrew Lee'},
                                  {'@pid': '228/3966',
                                   'text': 'Michael Conover'},
                                  {'@pid': '161/7119', 'text': 'Lily Truong'},
                                  {'@pid': '161/7143', 'text': 'Ryan Reed'},
                                  {'@pid': '24/9045', 'text': 'David Chesney'},
                                  {'@pid': '39/5434',
                                   'text': 'Robert Platt Jr.'},
                                  {'@pid': '161/7075',
                                   'text': 'Gwendolyn Johnson'},
                                  {'@pid': '26/1639',
                                   'text': 'Chien-Liang Fok'},
                                  {'@pid': '128/0616',
                                   'text': 'Nicholas Paine'},
                                  {'@pid': '12/3391', 'text': 'Luis Sentis'},
                                  {'@pid': '43/11304',
                                   'text': 'Eric A. Cousineau'},
                                  {'@pid': '44/486', 'text': 'Ryan W. Sinnet'},
                                  {'@pid': '151/9768', 'text': 'Jordan Lack'},
                                  {'@pid': '60/11045',
                                   'text': 'Matthew J. Powell'},
                                  {'@pid': '54/5014',
                                   'text': 'Benjamin Morris'},
                                  {'@pid': '39/1463', 'text': 'Aaron D. Ames'},
                                  {'@pid': '161/7140',
                                   'text': 'Jide Akinyode'}]},
           'doi': '10.1002/ROB.21560',
           'ee': 'https://doi.org/10.1002/rob.21560',
           'key': 'journals/jfr/RadfordSHMVDHSN15',
           'number': '3',
           'pages': '397-419',
           'title': 'Valkyrie - NASA&apos;s First Bipedal Humanoid Robot.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/jfr/RadfordSHMVDHSN15',
           'venue': 'J. Field Robotics',
           'volume': '32',
           'year': '2015'},
  'url': 'URL#2111693'},
 {'@id': '2137777',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '188/9430',
                                   'text': 'Siti Nurasiah Binti Mat Nawi'},
                                  {'@pid': '188/9278',
                                   'text': 'Nor Fadira Binti Wahib'},
                                  {'@pid': '188/9363',
                                   'text': 'Nurul Najua Binti Zulkepely'},
                                  {'@pid': '188/9418',
                                   'text': 'Yusoff Bin Mohd Amin'},
                                  {'@pid': '188/9358', 'text': 'Ung Ngie Min'},
                                  {'@pid': '188/9285',
                                   'text': 'David Andrew Bradley'},
                                  {'@pid': '188/9320',
                                   'text': 'Roslan Bin Md Nor'},
                                  {'@pid': '188/9261',
                                   'text': 'Mohd Jamil Maah'}]},
           'doi': '10.3390/S150820557',
           'ee': 'https://doi.org/10.3390/s150820557',
           'key': 'journals/sensors/NawiWZAMBNM15',
           'number': '8',
           'pages': '20557-20569',
           'title': 'The Thermoluminescence Response of Ge-Doped Flat Fibers '
                    'to Gamma Radiation.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/sensors/NawiWZAMBNM15',
           'venue': 'Sensors',
           'volume': '15',
           'year': '2015'},
  'url': 'URL#2137777'},
 {'@id': '2137790',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '70/7330',
                                   'text': 'Thuy Tuong Nguyen'},
                                  {'@pid': '22/10798',
                                   'text': 'David C. Slaughter'},
                                  {'@pid': '187/7078',
                                   'text': 'Bradley D. Hanson'},
                                  {'@pid': '84/3066', 'text': 'Andrew Barber'},
                                  {'@pid': '188/9292', 'text': 'Amy Freitas'},
                                  {'@pid': '188/9456', 'text': 'Daniel Robles'},
                                  {'@pid': '188/9290', 'text': 'Erin Whelan'}]},
           'doi': '10.3390/S150818427',
           'ee': 'https://doi.org/10.3390/s150818427',
           'key': 'journals/sensors/NguyenSHBFRW15',
           'number': '8',
           'pages': '18427-18442',
           'title': 'Automated Mobile System for Accurate Outdoor Tree Crop '
                    'Enumeration Using an Uncalibrated Camera.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/sensors/NguyenSHBFRW15',
           'venue': 'Sensors',
           'volume': '15',
           'year': '2015'},
  'url': 'URL#2137790'},
 {'@id': '2142260',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '84/2683', 'text': 'Anna Paszynska'},
                                  {'@pid': '84/4953',
                                   'text': 'Maciej Paszynski'},
                                  {'@pid': '73/10809', 'text': 'Konrad Jopek'},
                                  {'@pid': '146/1155',
                                   'text': 'Maciej Wozniak'},
                                  {'@pid': '130/5927', 'text': 'Damian Goik'},
                                  {'@pid': '44/8769', 'text': 'Piotr Gurgul'},
                                  {'@pid': '142/0336',
                                   'text': 'Hassan AbouEisha'},
                                  {'@pid': 'm/MJMoshkov',
                                   'text': 'Mikhail Moshkov'},
                                  {'@pid': '14/8769',
                                   'text': 'Victor Manuel Calo'},
                                  {'@pid': '15/2621',
                                   'text': 'Andrew Lenharth'},
                                  {'@pid': '48/4701', 'text': 'Donald Nguyen'},
                                  {'@pid': '71/5735',
                                   'text': 'Keshav Pingali'}]},
           'doi': '10.1155/2015/303024',
           'ee': 'https://doi.org/10.1155/2015/303024',
           'key': 'journals/sp/PaszynskaPJWGGA15',
           'pages': '303024:1-303024:18',
           'title': 'Quasi-Optimal Elimination Trees for 2D Grids with '
                    'Singularities.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/sp/PaszynskaPJWGGA15',
           'venue': 'Sci. Program.',
           'volume': '2015',
           'year': '2015'},
  'url': 'URL#2142260'},
 {'@id': '2142305',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '19/8524', 'text': 'Minh Ngoc Dinh'},
                                  {'@pid': '09/6203', 'text': 'David Abramson'},
                                  {'@pid': '19/4764', 'text': 'Chao Jin'},
                                  {'@pid': '70/10957',
                                   'text': 'Andrew Gontarek'},
                                  {'@pid': '48/8524', 'text': 'Bob Moench'},
                                  {'@pid': '91/357', 'text': 'Luiz De Rose'}]},
           'doi': '10.1002/SPE.2239',
           'ee': 'https://doi.org/10.1002/spe.2239',
           'key': 'journals/spe/DinhAJGMR15',
           'number': '4',
           'pages': '501-526',
           'title': 'A data-centric framework for debugging highly parallel '
                    'applications.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/spe/DinhAJGMR15',
           'venue': 'Softw. Pract. Exp.',
           'volume': '45',
           'year': '2015'},
  'url': 'URL#2142305'},
 {'@id': '2148568',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '132/2097',
                                   'text': 'Anh Quang Nguyen'},
                                  {'@pid': '45/1948',
                                   'text': 'Andrew M. Sutton'},
                                  {'@pid': 'n/FrankNeumann',
                                   'text': 'Frank Neumann 0001'}]},
           'doi': '10.1016/J.TCS.2014.06.023',
           'ee': 'https://doi.org/10.1016/j.tcs.2014.06.023',
           'key': 'journals/tcs/NguyenSN15',
           'pages': '24-36',
           'title': 'Population size matters - Rigorous runtime results for '
                    'maximizing the hypervolume indicator.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/tcs/NguyenSN15',
           'venue': 'Theor. Comput. Sci.',
           'volume': '561',
           'year': '2015'},
  'url': 'URL#2148568'},
 {'@id': '2159760',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '03/9827',
                                   'text': 'Andrew J. Pyles'},
                                  {'@pid': '80/6175',
                                   'text': 'David T. Nguyen'},
                                  {'@pid': '63/216-1', 'text': 'Xin Qi 0001'},
                                  {'@pid': '67/4904', 'text': 'Gang Zhou'}]},
           'doi': '10.1109/TWC.2015.2404843',
           'ee': 'https://doi.org/10.1109/TWC.2015.2404843',
           'key': 'journals/twc/PylesNQZ15',
           'number': '6',
           'pages': '3367-3377',
           'title': 'Bluesaver - A Multi-PHY Approach to Smartphone Energy '
                    'Savings.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/twc/PylesNQZ15',
           'venue': 'IEEE Trans. Wirel. Commun.',
           'volume': '14',
           'year': '2015'},
  'url': 'URL#2159760'},
 {'@id': '2164297',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '181/8469',
                                   'text': 'Loan Thi Ngoc Dinh'},
                                  {'@pid': '61/1339',
                                   'text': 'Gour C. Karmakar'},
                                  {'@pid': 'k/JoarderKamruzzaman',
                                   'text': 'Joarder Kamruzzaman'},
                                  {'@pid': '09/1062',
                                   'text': 'Andrew Stranieri'}]},
           'doi': '10.1109/ICICS.2015.7459846',
           'ee': 'https://doi.org/10.1109/ICICS.2015.7459846',
           'key': 'conf/IEEEicics/DinhKKS15',
           'pages': '1-5',
           'title': 'Business context in big data analytics.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/IEEEicics/DinhKKS15',
           'venue': 'ICICS',
           'year': '2015'},
  'url': 'URL#2164297'},
 {'@id': '2209381',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '15/2621',
                                   'text': 'Andrew Lenharth'},
                                  {'@pid': '48/4701', 'text': 'Donald Nguyen'},
                                  {'@pid': '71/5735',
                                   'text': 'Keshav Pingali'}]},
           'doi': '10.1007/978-3-662-48096-0_17',
           'ee': 'https://doi.org/10.1007/978-3-662-48096-0_17',
           'key': 'conf/europar/LenharthNP15',
           'pages': '209-221',
           'title': 'Priority Queues Are Not Good Concurrent Priority '
                    'Schedulers.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/europar/LenharthNP15',
           'venue': 'Euro-Par',
           'year': '2015'},
  'url': 'URL#2209381'},
 {'@id': '2215134',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '117/4935',
                                   'text': 'Thanh Hong Nguyen'},
                                  {'@pid': '84/8399',
                                   'text': 'Francesco Maria Delle Fave'},
                                  {'@pid': '24/4432', 'text': 'Debarun Kar'},
                                  {'@pid': '170/5641',
                                   'text': 'Aravind S. Lakshminarayanan'},
                                  {'@pid': '121/3511', 'text': 'Amulya Yadav'},
                                  {'@pid': '67/2667', 'text': 'Milind Tambe'},
                                  {'@pid': '52/1053', 'text': 'Noa Agmon'},
                                  {'@pid': '170/5576',
                                   'text': 'Andrew J. Plumptre'},
                                  {'@pid': '170/5674',
                                   'text': 'Margaret Driciru'},
                                  {'@pid': '170/5591', 'text': 'Fred Wanyama'},
                                  {'@pid': '170/5632',
                                   'text': 'Aggrey Rwetsiba'}]},
           'doi': '10.1007/978-3-319-25594-1_10',
           'ee': 'https://doi.org/10.1007/978-3-319-25594-1_10',
           'key': 'conf/gamesec/NguyenFKLYTAPDW15',
           'pages': '170-191',
           'title': 'Making the Most of Our Regrets - Regret-Based Solutions '
                    'to Handle Payoff Uncertainty and Elicitation in Green '
                    'Security Games.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/gamesec/NguyenFKLYTAPDW15',
           'venue': 'GameSec',
           'year': '2015'},
  'url': 'URL#2215134'},
 {'@id': '2230864',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '84/2683', 'text': 'Anna Paszynska'},
                                  {'@pid': '73/10809', 'text': 'Konrad Jopek'},
                                  {'@pid': '17/6547',
                                   'text': 'Krzysztof Banas'},
                                  {'@pid': '84/4953',
                                   'text': 'Maciej Paszynski'},
                                  {'@pid': '44/8769', 'text': 'Piotr Gurgul'},
                                  {'@pid': '165/0033',
                                   'text': 'Andrew Lenerth'},
                                  {'@pid': '48/4701', 'text': 'Donald Nguyen'},
                                  {'@pid': '71/5735', 'text': 'Keshav Pingali'},
                                  {'@pid': '06/4626',
                                   'text': 'Lisandro Dalcín'},
                                  {'@pid': '14/8769',
                                   'text': 'Victor M. Calo'}]},
           'doi': '10.1016/J.PROCS.2015.05.415',
           'ee': 'https://doi.org/10.1016/j.procs.2015.05.415',
           'key': 'conf/iccS/PaszynskaJBPGLN15',
           'pages': '2744-2748',
           'title': 'Telescopic Hybrid Fast Solver for 3D Elliptic Problems '
                    'with Point Singularities.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/iccS/PaszynskaJBPGLN15',
           'venue': 'ICCS',
           'year': '2015'},
  'url': 'URL#2230864'},
 {'@id': '2288611',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '67/11411', 'text': 'Akshatha Bhat'},
                                  {'@pid': '15/2621',
                                   'text': 'Andrew Lenharth'},
                                  {'@pid': '48/4701', 'text': 'Donald Nguyen'},
                                  {'@pid': '64/3448', 'text': 'Qing Yi'},
                                  {'@pid': '71/5735',
                                   'text': 'Keshav Pingali'}]},
           'doi': '10.3233/978-1-61499-621-7-11',
           'ee': 'https://doi.org/10.3233/978-1-61499-621-7-11',
           'key': 'conf/parco/BhatLNYP15',
           'pages': '11-21',
           'title': 'Automatic Tuning of Task Scheduling Policies on Multicore '
                    'Architectures.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/parco/BhatLNYP15',
           'venue': 'PARCO',
           'year': '2015'},
  'url': 'URL#2288611'},
 {'@id': '2296243',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '91/357', 'text': 'Luiz De Rose'},
                                  {'@pid': '70/10957',
                                   'text': 'Andrew Gontarek'},
                                  {'@pid': '165/1250', 'text': 'Aaron Vose'},
                                  {'@pid': '48/8524', 'text': 'Robert Moench'},
                                  {'@pid': '09/6203', 'text': 'David Abramson'},
                                  {'@pid': '19/8524', 'text': 'Minh Ngoc Dinh'},
                                  {'@pid': '19/4764', 'text': 'Chao Jin'}]},
           'doi': '10.1145/2807591.2807605',
           'ee': 'https://doi.org/10.1145/2807591.2807605',
           'key': 'conf/sc/RoseGVMADJ15',
           'pages': '63:1-63:12',
           'title': 'Relative debugging for a highly parallel hybrid computer '
                    'system.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/sc/RoseGVMADJ15',
           'venue': 'SC',
           'year': '2015'},
  'url': 'URL#2296243'},
 {'@id': '2311275',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '93/2262', 'text': 'Andrew Kennedy'},
                                  {'@pid': '19/5555',
                                   'text': 'Karsten Klein 0001'},
                                  {'@pid': '181/2303-1',
                                   'text': 'An Nguyen 0001'}]},
           'doi': '10.1145/2801040.2801059',
           'ee': 'https://doi.org/10.1145/2801040.2801059',
           'key': 'conf/vinci/KennedyKN15',
           'pages': '42-51',
           'title': 'The Graph Landscape - a Concept for the Visual Analysis '
                    'of Graph Set Properties.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/vinci/KennedyKN15',
           'venue': 'VINCI',
           'year': '2015'},
  'url': 'URL#2311275'},
 {'@id': '2352906',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '144/0507', 'text': 'Evan Tran'},
                                  {'@pid': '30/4876',
                                   'text': 'Quang Vinh Nguyen'},
                                  {'@pid': '144/0623', 'text': 'Kate Richards'},
                                  {'@pid': '144/0583', 'text': 'Andrew Leahy'},
                                  {'@pid': '39/1218',
                                   'text': 'Simeon J. Simoff'}]},
           'ee': 'http://cs.anu.edu.au/ojs/index.php/ajiips/article/view/1260',
           'key': 'journals/ajiips/TranNRLS14',
           'number': '4',
           'title': 'GravityBubbleVis - An Immersive and Interactive '
                    'Visualization for Live Internet Activities.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/ajiips/TranNRLS14',
           'venue': 'Aust. J. Intell. Inf. Process. Syst.',
           'volume': '13',
           'year': '2014'},
  'url': 'URL#2352906'},
 {'@id': '2429036',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '46/6957-3',
                                   'text': 'Andrew Nelson 0003'},
                                  {'@pid': '196/8354', 'text': 'Tri Setiyono'},
                                  {'@pid': '196/8542', 'text': 'Arnel B. Rala'},
                                  {'@pid': '196/8251',
                                   'text': 'Emma D. Quicho'},
                                  {'@pid': '196/8260', 'text': 'Jeny V. Raviz'},
                                  {'@pid': '196/8349',
                                   'text': 'Prosperidad J. Abonete'},
                                  {'@pid': '196/8808',
                                   'text': 'Aileen A. Maunahan'},
                                  {'@pid': '196/8419',
                                   'text': 'Cornelia A. Garcia'},
                                  {'@pid': '196/8413',
                                   'text': 'Hannah Zarah M. Bhatti'},
                                  {'@pid': '196/8061',
                                   'text': 'Lorena S. Villano'},
                                  {'@pid': '196/8654',
                                   'text': 'Pongmanee Thongbai'},
                                  {'@pid': '86/8964',
                                   'text': 'Francesco Holecz'},
                                  {'@pid': '37/8951',
                                   'text': 'Massimo Barbieri'},
                                  {'@pid': '121/7554',
                                   'text': 'Francesco Collivignarelli'},
                                  {'@pid': '00/6974', 'text': 'Luca Gatti'},
                                  {'@pid': '196/8170',
                                   'text': 'Eduardo Jimmy P. Quilang'},
                                  {'@pid': '196/8536',
                                   'text': 'Mary Rose O. Mabalay'},
                                  {'@pid': '196/8374',
                                   'text': 'Pristine E. Mabalot'},
                                  {'@pid': '196/8485',
                                   'text': 'Mabel I. Barroga'},
                                  {'@pid': '196/8135',
                                   'text': 'Alfie P. Bacong'},
                                  {'@pid': '196/8105',
                                   'text': 'Norlyn T. Detoito'},
                                  {'@pid': '196/8075',
                                   'text': 'Glorie Belle Berja'},
                                  {'@pid': '196/8242',
                                   'text': 'Frenciso Varquez'},
                                  {'@pid': '196/8383', 'text': 'Wahyunto'},
                                  {'@pid': '196/8534', 'text': 'Dwi Kuntjoro'},
                                  {'@pid': '196/8377',
                                   'text': 'Sri Retno Murdiyati'},
                                  {'@pid': '196/8699',
                                   'text': 'Sellaperumal Pazhanivelan'},
                                  {'@pid': '196/8779',
                                   'text': 'Pandian Kannan'},
                                  {'@pid': '196/8632',
                                   'text': 'Petchimuthu Christy Nirmala Mary'},
                                  {'@pid': '196/8771',
                                   'text': 'Elangovan Subramanian'},
                                  {'@pid': '80/8988',
                                   'text': 'Preesan Rakwatin'},
                                  {'@pid': '196/8324',
                                   'text': 'Amornrat Intrman'},
                                  {'@pid': '196/8452',
                                   'text': 'Thana Setapayak'},
                                  {'@pid': '196/8606', 'text': 'Sommai Lertna'},
                                  {'@pid': '136/6546', 'text': 'Vo Quang Minh'},
                                  {'@pid': '44/10688', 'text': 'Vo Quoc Tuan'},
                                  {'@pid': '196/8717',
                                   'text': 'Trinh Hoang Duong'},
                                  {'@pid': '196/8730',
                                   'text': 'Nguyen Huu Quyen'},
                                  {'@pid': '196/8617',
                                   'text': 'Duong Van Kham'},
                                  {'@pid': '196/8607', 'text': 'Sarith Hin'},
                                  {'@pid': '196/8772', 'text': 'Touch Veasna'},
                                  {'@pid': '71/9693', 'text': 'Manoj Yadav'},
                                  {'@pid': '196/8532', 'text': 'Chharom Chin'},
                                  {'@pid': '196/8169',
                                   'text': 'Nguyen Hong Ninh'}]},
           'doi': '10.3390/RS61110773',
           'ee': 'https://doi.org/10.3390/rs61110773',
           'key': 'journals/remotesensing/NelsonSRQRAMGBV14',
           'number': '11',
           'pages': '10773-10812',
           'title': 'Towards an Operational SAR-Based Rice Monitoring System '
                    'in Asia - Examples from 13 Demonstration Sites across '
                    'Asia in the RIICE Project.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/remotesensing/NelsonSRQRAMGBV14',
           'venue': 'Remote. Sens.',
           'volume': '6',
           'year': '2014'},
  'url': 'URL#2429036'},
 {'@id': '2448283',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '117/4552',
                                   'text': 'Hien Duy Nguyen'},
                                  {'@pid': '83/3246',
                                   'text': 'Geoffrey J. McLachlan'},
                                  {'@pid': '32/97', 'text': 'Nicolas Cherbuin'},
                                  {'@pid': '64/2690',
                                   'text': 'Andrew L. Janke'}]},
           'doi': '10.1109/TMI.2014.2322369',
           'ee': 'https://doi.org/10.1109/TMI.2014.2322369',
           'key': 'journals/tmi/NguyenMCJ14',
           'number': '8',
           'pages': '1735-1748',
           'title': 'False Discovery Rate Control in Magnetic Resonance '
                    'Imaging Studies via Markov Random Fields.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/tmi/NguyenMCJ14',
           'venue': 'IEEE Trans. Medical Imaging',
           'volume': '33',
           'year': '2014'},
  'url': 'URL#2448283'},
 {'@id': '2448971',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '08/1542', 'text': 'Yaoguang Wei'},
                                  {'@pid': 's/CliffNSze',
                                   'text': 'Cliff C. N. Sze'},
                                  {'@pid': '15/1633',
                                   'text': 'Natarajan Viswanathan'},
                                  {'@pid': '51/4015-1', 'text': 'Zhuo Li 0001'},
                                  {'@pid': '41/4379',
                                   'text': 'Charles J. Alpert'},
                                  {'@pid': '04/2781',
                                   'text': 'Lakshmi N. Reddy'},
                                  {'@pid': '65/2074',
                                   'text': 'Andrew D. Huber'},
                                  {'@pid': '69/2239',
                                   'text': 'Gustavo E. Téllez'},
                                  {'@pid': '16/11468',
                                   'text': 'Douglas Keller'},
                                  {'@pid': 's/SachinSSapatnekar',
                                   'text': 'Sachin S. Sapatnekar'}]},
           'doi': '10.1145/2566663',
           'ee': 'https://doi.org/10.1145/2566663',
           'key': 'journals/todaes/WeiSVLARHTKS14',
           'number': '2',
           'pages': '17:1-17:37',
           'title': 'Techniques for scalable and effective routability '
                    'evaluation.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/todaes/WeiSVLARHTKS14',
           'venue': 'ACM Trans. Design Autom. Electr. Syst.',
           'volume': '19',
           'year': '2014'},
  'url': 'URL#2448971'},
 {'@id': '2450873',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '83/7479', 'text': 'Xin Qiu'},
                                  {'@pid': '147/0904', 'text': 'Tu A. Nguyen'},
                                  {'@pid': '123/6661',
                                   'text': 'Joe David Guggenberger'},
                                  {'@pid': '73/3384',
                                   'text': 'Mariesa L. Crow'},
                                  {'@pid': '123/6465',
                                   'text': 'Andrew Curtis Elmore'}]},
           'doi': '10.1109/TSG.2014.2310212',
           'ee': 'https://doi.org/10.1109/TSG.2014.2310212',
           'key': 'journals/tsg/QiuNGCE14',
           'number': '4',
           'pages': '1592-1601',
           'title': 'A Field Validated Model of a Vanadium Redox Flow Battery '
                    'for Microgrids.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/tsg/QiuNGCE14',
           'venue': 'IEEE Trans. Smart Grid',
           'volume': '5',
           'year': '2014'},
  'url': 'URL#2450873'},
 {'@id': '2458753',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '135/4935', 'text': 'Minh Hoai'},
                                  {'@pid': 'z/AndrewZisserman',
                                   'text': 'Andrew Zisserman'}]},
           'doi': '10.1007/978-3-319-16817-3_15',
           'ee': 'https://doi.org/10.1007/978-3-319-16817-3_15',
           'key': 'conf/accv/HoaiZ14',
           'pages': '222-237',
           'title': 'Thread-Safe - Towards Recognizing Human Actions Across '
                    'Shot Boundaries.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/accv/HoaiZ14',
           'venue': 'ACCV',
           'year': '2014'},
  'url': 'URL#2458753'},
 {'@id': '2458754',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '135/4935', 'text': 'Minh Hoai'},
                                  {'@pid': 'z/AndrewZisserman',
                                   'text': 'Andrew Zisserman'}]},
           'doi': '10.1007/978-3-319-16814-2_1',
           'ee': 'https://doi.org/10.1007/978-3-319-16814-2_1',
           'key': 'conf/accv/HoaiZ14a',
           'pages': '3-20',
           'title': 'Improving Human Action Recognition Using Score '
                    'Distribution and Ranking.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/accv/HoaiZ14a',
           'venue': 'ACCV',
           'year': '2014'},
  'url': 'URL#2458754'},
 {'@id': '2467209',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '48/4701', 'text': 'Donald Nguyen'},
                                  {'@pid': '15/2621',
                                   'text': 'Andrew Lenharth'},
                                  {'@pid': '71/5735',
                                   'text': 'Keshav Pingali'}]},
           'doi': '10.1145/2541940.2541964',
           'ee': 'https://doi.org/10.1145/2541940.2541964',
           'key': 'conf/asplos/NguyenLP14',
           'pages': '499-512',
           'title': 'Deterministic galois - on-demand, portable and '
                    'parameterless.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/asplos/NguyenLP14',
           'venue': 'ASPLOS',
           'year': '2014'},
  'url': 'URL#2467209'},
 {'@id': '2472227',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '135/4935', 'text': 'Minh Hoai'},
                                  {'@pid': '44/4353', 'text': 'Lubor Ladicky'},
                                  {'@pid': 'z/AndrewZisserman',
                                   'text': 'Andrew Zisserman'}]},
           'ee': 'http://www.bmva.org/bmvc/2014/papers/paper069/index.html',
           'key': 'conf/bmvc/HoaiLZ14',
           'title': 'Action Recognition From Weak Alignment of Body Parts.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/bmvc/HoaiLZ14',
           'venue': 'BMVC',
           'year': '2014'},
  'url': 'URL#2472227'},
 {'@id': '2487566',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '135/4935', 'text': 'Minh Hoai'},
                                  {'@pid': 'z/AndrewZisserman',
                                   'text': 'Andrew Zisserman'}]},
           'doi': '10.1109/CVPR.2014.117',
           'ee': 'https://doi.org/10.1109/CVPR.2014.117',
           'key': 'conf/cvpr/HoaiZ14',
           'pages': '875-882',
           'title': 'Talking Heads - Detecting Humans and Recognizing Their '
                    'Interactions.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/cvpr/HoaiZ14',
           'venue': 'CVPR',
           'year': '2014'},
  'url': 'URL#2487566'},
 {'@id': '2521900',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '19/8524', 'text': 'Minh Ngoc Dinh'},
                                  {'@pid': '09/6203', 'text': 'David Abramson'},
                                  {'@pid': '19/4764', 'text': 'Chao Jin'},
                                  {'@pid': '91/357', 'text': 'Luiz De Rose'},
                                  {'@pid': '48/8524', 'text': 'Bob Moench'},
                                  {'@pid': '70/10957',
                                   'text': 'Andrew Gontarek'}]},
           'doi': '10.1016/J.PROCS.2014.05.135',
           'ee': 'https://doi.org/10.1016/j.procs.2014.05.135',
           'key': 'conf/iccS/DinhAJDMG14',
           'pages': '1491-1503',
           'title': 'Supporting Relative Debugging for Large-scale UPC '
                    'Programs.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/iccS/DinhAJDMG14',
           'venue': 'ICCS',
           'year': '2014'},
  'url': 'URL#2521900'},
 {'@id': '2521918',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '130/5927', 'text': 'Damian Goik'},
                                  {'@pid': '73/10809', 'text': 'Konrad Jopek'},
                                  {'@pid': '84/4953',
                                   'text': 'Maciej Paszynski'},
                                  {'@pid': '15/2621',
                                   'text': 'Andrew Lenharth'},
                                  {'@pid': '48/4701', 'text': 'Donald Nguyen'},
                                  {'@pid': '71/5735',
                                   'text': 'Keshav Pingali'}]},
           'doi': '10.1016/J.PROCS.2014.05.086',
           'ee': 'https://doi.org/10.1016/j.procs.2014.05.086',
           'key': 'conf/iccS/GoikJPLNP14',
           'pages': '960-969',
           'title': 'Graph Grammar based Multi-thread Multi-frontal Direct '
                    'Solver with Galois Scheduler.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/iccS/GoikJPLNP14',
           'venue': 'ICCS',
           'year': '2014'},
  'url': 'URL#2521918'},
 {'@id': '2525417',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '80/4976', 'text': 'Nga Tran'},
                                  {'@pid': '117/6048', 'text': 'Andrew Lamb'},
                                  {'@pid': '05/481',
                                   'text': 'Lakshmikant Shrinivas'},
                                  {'@pid': '18/5094',
                                   'text': 'Sreenath Bodagala'},
                                  {'@pid': '133/1688', 'text': 'Jaimin Dave'}]},
           'doi': '10.1109/ICDE.2014.6816727',
           'ee': 'https://doi.org/10.1109/ICDE.2014.6816727',
           'key': 'conf/icde/TranLSBD14',
           'pages': '1108-1119',
           'title': 'The Vertica Query Optimizer - The case for specialized '
                    'query optimizers.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icde/TranLSBD14',
           'venue': 'ICDE',
           'year': '2014'},
  'url': 'URL#2525417'},
 {'@id': '2533208',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '159/2501',
                                   'text': 'An Hung Nguyen'},
                                  {'@pid': '75/4744', 'text': 'Mark Pickering'},
                                  {'@pid': '117/1912',
                                   'text': 'Andrew J. Lambert'}]},
           'doi': '10.1117/12.2180522',
           'ee': 'https://doi.org/10.1117/12.2180522',
           'key': 'conf/icmv/NguyenPL14',
           'pages': '94451Z',
           'title': 'A one-bit approach for image registration.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icmv/NguyenPL14',
           'venue': 'ICMV',
           'year': '2014'},
  'url': 'URL#2533208'},
 {'@id': '2535520',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '10/10043',
                                   'text': 'Bastian Bischoff'},
                                  {'@pid': '18/6057',
                                   'text': 'Duy Nguyen-Tuong'},
                                  {'@pid': '123/6759',
                                   'text': 'Herke van Hoof'},
                                  {'@pid': '34/11107',
                                   'text': 'Andrew McHutchon'},
                                  {'@pid': '83/5440',
                                   'text': 'Carl E. Rasmussen'},
                                  {'@pid': 'k/AloisKnoll',
                                   'text': 'Alois C. Knoll'},
                                  {'@pid': 'p/JanPeters1',
                                   'text': 'Jan Peters 0001'},
                                  {'@pid': '76/5043',
                                   'text': 'Marc Peter Deisenroth'}]},
           'doi': '10.1109/ICRA.2014.6907422',
           'ee': 'https://doi.org/10.1109/ICRA.2014.6907422',
           'key': 'conf/icra/BischoffNHMRKPD14',
           'pages': '3882-3887',
           'title': 'Policy search for learning robot control using sparse '
                    'data.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icra/BischoffNHMRKPD14',
           'venue': 'ICRA',
           'year': '2014'},
  'url': 'URL#2535520'},
 {'@id': '2540523',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '215/1905', 'text': 'Andrew Ong'},
                                  {'@pid': '215/1524',
                                   'text': 'J. Prasad K. Sampath'},
                                  {'@pid': '128/5220',
                                   'text': 'Gilbert Hock Beng Foo'},
                                  {'@pid': '215/1513', 'text': 'YenKheng Tan'},
                                  {'@pid': '122/7373',
                                   'text': 'D. Mahinda Vilathgamuwa'},
                                  {'@pid': '190/2340',
                                   'text': 'Nguyen Xuan Bac'}]},
           'doi': '10.1109/IECON.2014.7048931',
           'ee': 'https://doi.org/10.1109/IECON.2014.7048931',
           'key': 'conf/iecon/OngSFTVB14',
           'pages': '2965-2970',
           'title': 'Analysis of impedance matched circuit for wireless power '
                    'transfer.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/iecon/OngSFTVB14',
           'venue': 'IECON',
           'year': '2014'},
  'url': 'URL#2540523'},
 {'@id': '2540609',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '215/1524',
                                   'text': 'J. Prasad K. Sampath'},
                                  {'@pid': '155/5303',
                                   'text': 'Arokiaswami Alphones'},
                                  {'@pid': '122/7373',
                                   'text': 'D. Mahinda Vilathgamuwa'},
                                  {'@pid': '215/1905', 'text': 'Andrew Ong'},
                                  {'@pid': '190/2340',
                                   'text': 'Nguyen Xuan Bac'}]},
           'doi': '10.1109/IECON.2014.7048933',
           'ee': 'https://doi.org/10.1109/IECON.2014.7048933',
           'key': 'conf/iecon/SampathAVON14',
           'pages': '2978-2983',
           'title': 'Coil enhancements for high efficiency wireless power '
                    'transfer applications.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/iecon/SampathAVON14',
           'venue': 'IECON',
           'year': '2014'},
  'url': 'URL#2540609'},
 {'@id': '2580666',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '159/2501',
                                   'text': 'An Hung Nguyen'},
                                  {'@pid': '75/4744',
                                   'text': 'Mark R. Pickering'},
                                  {'@pid': '117/1912',
                                   'text': 'Andrew J. Lambert'}]},
           'doi': '10.1109/RECONFIG.2014.7032559',
           'ee': 'https://doi.org/10.1109/ReConFig.2014.7032559',
           'key': 'conf/reconfig/NguyenPL14',
           'pages': '1-4',
           'title': 'The FPGA implementation of an image registration '
                    'algorithm using binary images.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/reconfig/NguyenPL14',
           'venue': 'ReConFig',
           'year': '2014'},
  'url': 'URL#2580666'},
 {'@id': '2584069',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '79/6100',
                                   'text': 'Konstantinos I. Karantasis'},
                                  {'@pid': '15/2621',
                                   'text': 'Andrew Lenharth'},
                                  {'@pid': '48/4701', 'text': 'Donald Nguyen'},
                                  {'@pid': '95/6451',
                                   'text': 'María Jesús Garzarán'},
                                  {'@pid': '71/5735',
                                   'text': 'Keshav Pingali'}]},
           'doi': '10.1109/SC.2014.80',
           'ee': 'https://doi.org/10.1109/SC.2014.80',
           'key': 'conf/sc/KarantasisLNGP14',
           'pages': '921-932',
           'title': 'Parallelization of Reordering Algorithms for Bandwidth '
                    'and Wavefront Reduction.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/sc/KarantasisLNGP14',
           'venue': 'SC',
           'year': '2014'},
  'url': 'URL#2584069'},
 {'@id': '2584112',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '22/3912',
                                   'text': 'Hoang Anh Nguyen'},
                                  {'@pid': '09/6203', 'text': 'David Abramson'},
                                  {'@pid': '42/6781',
                                   'text': 'Timoleon Kipouros'},
                                  {'@pid': '64/2690',
                                   'text': 'Andrew L. Janke'},
                                  {'@pid': '23/10742',
                                   'text': 'Graham J. Galloway'}]},
           'doi': '10.1109/GCE.2014.6',
           'ee': 'https://doi.org/10.1109/GCE.2014.6',
           'key': 'conf/sc/NguyenAKJG14',
           'pages': '21-24',
           'title': 'WorkWays - interacting with scientific workflows.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/sc/NguyenAKJG14',
           'venue': 'GCE@SC',
           'year': '2014'},
  'url': 'URL#2584112'},
 {'@id': '2598800',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '151/5572',
                                   'text': 'Andrew S. Brunker'},
                                  {'@pid': '30/4876',
                                   'text': 'Quang Vinh Nguyen'},
                                  {'@pid': '21/3309',
                                   'text': 'Anthony J. Maeder'},
                                  {'@pid': '36/8738', 'text': 'Rhys Tague'},
                                  {'@pid': '151/5666',
                                   'text': 'Gregory S. Kolt'},
                                  {'@pid': '151/5614',
                                   'text': 'Trevor N. Savage'},
                                  {'@pid': '151/5581',
                                   'text': 'Corneel Vandelanotte'},
                                  {'@pid': '151/5657',
                                   'text': 'Mitch J. Duncan'},
                                  {'@pid': '151/5535',
                                   'text': 'Cristina M. Caperchione'},
                                  {'@pid': '151/5622',
                                   'text': 'Richard R. Rosenkranz'},
                                  {'@pid': '151/5604',
                                   'text': 'Anetta Van Itallie'},
                                  {'@pid': '151/5601',
                                   'text': 'W. Kerry Mummery'}]},
           'doi': '10.1145/2636240.2636842',
           'ee': 'https://doi.org/10.1145/2636240.2636842',
           'key': 'conf/vinci/BrunkerNMTKSVDCRIM14',
           'pages': '98',
           'title': 'A Time-based Visualization for Web User Classification in '
                    'Social Networks.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/vinci/BrunkerNMTKSVDCRIM14',
           'venue': 'VINCI',
           'year': '2014'},
  'url': 'URL#2598800'},
 {'@id': '2600195',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '03/6690',
                                   'text': 'Eugene Ch&apos;ng'},
                                  {'@pid': '08/6426',
                                   'text': 'Sandra I. Woolley'},
                                  {'@pid': '85/9072',
                                   'text': 'Luis U. Hernandez Munoz'},
                                  {'@pid': '83/33', 'text': 'Tim Collins'},
                                  {'@pid': '24/2147', 'text': 'Andrew Lewis'},
                                  {'@pid': '164/6787',
                                   'text': 'Erlend Gehlken'}]},
           'doi': '10.1109/VSMM.2014.7136692',
           'ee': 'https://doi.org/10.1109/VSMM.2014.7136692',
           'key': 'conf/vsmm/ChngWMCLG14',
           'pages': '35-42',
           'title': 'The development of a collaborative virtual environment '
                    'for 3D reconstruction of cuneiform tablets.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/vsmm/ChngWMCLG14',
           'venue': 'VSMM',
           'year': '2014'},
  'url': 'URL#2600195'},
 {'@id': '2600199',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '83/33', 'text': 'Tim Collins'},
                                  {'@pid': '08/6426',
                                   'text': 'Sandra I. Woolley'},
                                  {'@pid': '85/9072',
                                   'text': 'Luis U. Hernandez Munoz'},
                                  {'@pid': '24/2147', 'text': 'Andrew Lewis'},
                                  {'@pid': '03/6690',
                                   'text': 'Eugene Ch&apos;ng'},
                                  {'@pid': '164/6787',
                                   'text': 'Erlend Gehlken'}]},
           'doi': '10.1109/VSMM.2014.7136691',
           'ee': 'https://doi.org/10.1109/VSMM.2014.7136691',
           'key': 'conf/vsmm/CollinsWMLCG14',
           'pages': '70-77',
           'title': 'Computer-assisted reconstruction of virtual fragmented '
                    'cuneiform tablets.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/vsmm/CollinsWMLCG14',
           'venue': 'VSMM',
           'year': '2014'},
  'url': 'URL#2600199'},
 {'@id': '2645637',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '126/7147',
                                   'text': 'Bernard J. Pope'},
                                  {'@pid': '126/7181',
                                   'text': 'Tu Nguyen-Dumont'},
                                  {'@pid': '126/7207',
                                   'text': 'Fabrice Odefrey'},
                                  {'@pid': '09/479', 'text': 'Russell Bell'},
                                  {'@pid': '45/995',
                                   'text': 'Sean V. Tavtigian'},
                                  {'@pid': '126/7062',
                                   'text': 'David E. Goldgar'},
                                  {'@pid': '50/1399', 'text': 'Andrew Lonie'},
                                  {'@pid': '126/7141',
                                   'text': 'Melissa C. Southey'},
                                  {'@pid': '126/7197',
                                   'text': 'Daniel J. Park'}]},
           'doi': '10.1186/1471-2105-14-65',
           'ee': 'https://doi.org/10.1186/1471-2105-14-65',
           'key': 'journals/bmcbi/PopeNOBTGLSP13',
           'pages': '65',
           'title': 'FAVR (Filtering and Annotation of Variants that are Rare) '
                    '- methods to facilitate the analysis of rare germline '
                    'genetic variants from massively parallel sequencing '
                    'datasets.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/bmcbi/PopeNOBTGLSP13',
           'venue': 'BMC Bioinform.',
           'volume': '14',
           'year': '2013'},
  'url': 'URL#2645637'},
 {'@id': '2651610',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '28/9502', 'text': 'Todd Holden'},
                                  {'@pid': '128/5665', 'text': 'Andrew Nguyen'},
                                  {'@pid': '128/5671', 'text': 'Elaine Lin'},
                                  {'@pid': '67/1332', 'text': 'Eric Cheung'},
                                  {'@pid': '128/5611',
                                   'text': 'Sunil Dehipawala'},
                                  {'@pid': '128/5591', 'text': 'JianMin Ye'},
                                  {'@pid': '86/9502',
                                   'text': 'George Tremberger Jr.'},
                                  {'@pid': '29/5227',
                                   'text': 'David Lieberman'},
                                  {'@pid': '128/5558', 'text': 'Tak Cheung'}]},
           'doi': '10.1155/2013/579136',
           'ee': 'https://doi.org/10.1155/2013/579136',
           'key': 'journals/cmmm/HoldenNLCDYTLC13',
           'pages': '579136:1-579136:8',
           'title': 'Exploratory Bioinformatics Study of lncRNAs in '
                    'Alzheimer&apos;s Disease mRNA Sequences with Application '
                    'to Drug Development.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/cmmm/HoldenNLCDYTLC13',
           'venue': 'Comput. Math. Methods Medicine',
           'volume': '2013',
           'year': '2013'},
  'url': 'URL#2651610'},
 {'@id': '2680468',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '08/10057', 'text': 'Ngit Chan Lye'},
                                  {'@pid': '13/3307', 'text': 'Kok Wai Wong'},
                                  {'@pid': '65/4623', 'text': 'Andrew Chiou'}]},
           'doi': '10.1080/10494820.2012.705853',
           'ee': 'https://doi.org/10.1080/10494820.2012.705853',
           'key': 'journals/ile/LyeWC13',
           'number': '2',
           'pages': '142-155',
           'title': 'Framework for educational robotics - a multiphase '
                    'approach to enhance user learning in a competitive arena.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/ile/LyeWC13',
           'venue': 'Interact. Learn. Environ.',
           'volume': '21',
           'year': '2013'},
  'url': 'URL#2680468'},
 {'@id': '2702793',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '60/9687', 'text': 'Bangdao Chen'},
                                  {'@pid': '21/10309',
                                   'text': 'Long Hoang Nguyen 0001'},
                                  {'@pid': 'r/AWRoscoe',
                                   'text': 'A. W. Roscoe 0001'}]},
           'doi': '10.1007/S11036-012-0366-2',
           'ee': 'https://doi.org/10.1007/s11036-012-0366-2',
           'key': 'journals/monet/ChenNR13',
           'number': '5',
           'pages': '712-727',
           'title': 'Reverse Authentication in Financial Transactions and '
                    'Identity Management.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/monet/ChenNR13',
           'venue': 'Mob. Networks Appl.',
           'volume': '18',
           'year': '2013'},
  'url': 'URL#2702793'},
 {'@id': '2729815',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '73/8333',
                                   'text': 'Suong H. Nguyen'},
                                  {'@pid': '20/5601', 'text': 'Hai Le Vu'},
                                  {'@pid': '22/58',
                                   'text': 'Lachlan L. H. Andrew'}]},
           'doi': '10.1109/TMC.2012.179',
           'ee': 'https://doi.org/10.1109/TMC.2012.179',
           'key': 'journals/tmc/NguyenVA13',
           'number': '10',
           'pages': '2076-2090',
           'title': 'Service Differentiation without Prioritization in IEEE '
                    '802.11 WLANs.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/tmc/NguyenVA13',
           'venue': 'IEEE Trans. Mob. Comput.',
           'volume': '12',
           'year': '2013'},
  'url': 'URL#2729815'},
 {'@id': '2769337',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '135/4935', 'text': 'Minh Hoai'},
                                  {'@pid': 'z/AndrewZisserman',
                                   'text': 'Andrew Zisserman'}]},
           'doi': '10.1109/CVPR.2013.218',
           'ee': 'https://doi.org/10.1109/CVPR.2013.218',
           'key': 'conf/cvpr/HoaiZ13',
           'pages': '1666-1673',
           'title': 'Discriminative Sub-categorization.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/cvpr/HoaiZ13',
           'venue': 'CVPR',
           'year': '2013'},
  'url': 'URL#2769337'},
 {'@id': '2772632',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '117/4552',
                                   'text': 'Hien Duy Nguyen'},
                                  {'@pid': '64/2690',
                                   'text': 'Andrew L. Janke'},
                                  {'@pid': '32/97', 'text': 'Nicolas Cherbuin'},
                                  {'@pid': '83/3246',
                                   'text': 'Geoffrey J. McLachlan'},
                                  {'@pid': '98/9077',
                                   'text': 'Perminder S. Sachdev'},
                                  {'@pid': '15/6317',
                                   'text': 'Kaarin Anstey'}]},
           'doi': '10.1109/DICTA.2013.6691531',
           'ee': 'https://doi.org/10.1109/DICTA.2013.6691531',
           'key': 'conf/dicta/NguyenJCMSA13',
           'pages': '1-8',
           'title': 'Spatial False Discovery Rate Control for Magnetic '
                    'Resonance Imaging Studies.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/dicta/NguyenJCMSA13',
           'venue': 'DICTA',
           'year': '2013'},
  'url': 'URL#2772632'},
 {'@id': '2777850',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '128/5665', 'text': 'Andrew Nguyen'},
                                  {'@pid': '43/9664', 'text': 'Cam Nguyen'}]},
           'doi': '10.1109/EMBC.2013.6610795',
           'ee': 'https://doi.org/10.1109/EMBC.2013.6610795',
           'key': 'conf/embc/NguyenN13',
           'pages': '5501-5504',
           'title': 'A CMOS UWB transmitter for possible use for medical and '
                    'biological imaging based on radio-wave induced '
                    'ultrasound.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/embc/NguyenN13',
           'venue': 'EMBC',
           'year': '2013'},
  'url': 'URL#2777850'},
 {'@id': '2788233',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '132/2097',
                                   'text': 'Anh Quang Nguyen'},
                                  {'@pid': '45/1948',
                                   'text': 'Andrew M. Sutton'},
                                  {'@pid': 'n/FrankNeumann',
                                   'text': 'Frank Neumann 0001'}]},
           'doi': '10.1145/2463372.2463564',
           'ee': 'https://doi.org/10.1145/2463372.2463564',
           'key': 'conf/gecco/NguyenSN13',
           'pages': '1613-1620',
           'title': 'Population size matters - rigorous runtime results for '
                    'maximizing the hypervolume indicator.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/gecco/NguyenSN13',
           'venue': 'GECCO',
           'year': '2013'},
  'url': 'URL#2788233'},
 {'@id': '2794485',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '155/2726', 'text': 'Mary K. Lam'},
                                  {'@pid': '122/9159',
                                   'text': 'Melanie Nguyen'},
                                  {'@pid': '155/2018',
                                   'text': 'Andrew J. Campbell'}]},
           'doi': '10.3233/978-1-61499-266-0-72',
           'ee': 'https://doi.org/10.3233/978-1-61499-266-0-72',
           'key': 'conf/hic/LamNC13',
           'pages': '72-78',
           'title': 'E-health as a life long learning process - How to prepare '
                    'health professionals for this journey.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/hic/LamNC13',
           'venue': 'HIC',
           'year': '2013'},
  'url': 'URL#2794485'},
 {'@id': '2800510',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '46/2236', 'text': 'Georg Heigold'},
                                  {'@pid': '69/7157',
                                   'text': 'Vincent Vanhoucke'},
                                  {'@pid': '88/3071',
                                   'text': 'Andrew W. Senior'},
                                  {'@pid': '81/657', 'text': 'Patrick Nguyen'},
                                  {'@pid': '28/1732',
                                   'text': 'Marc&apos;Aurelio Ranzato'},
                                  {'@pid': '23/2143', 'text': 'Matthieu Devin'},
                                  {'@pid': 'd/JeffreyDean',
                                   'text': 'Jeffrey Dean'}]},
           'doi': '10.1109/ICASSP.2013.6639348',
           'ee': 'https://doi.org/10.1109/ICASSP.2013.6639348',
           'key': 'conf/icassp/HeigoldVSNRDD13',
           'pages': '8619-8623',
           'title': 'Multilingual acoustic models using distributed deep '
                    'neural networks.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icassp/HeigoldVSNRDD13',
           'venue': 'ICASSP',
           'year': '2013'},
  'url': 'URL#2800510'},
 {'@id': '2801673',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '09/8653',
                                   'text': 'Matthew D. Zeiler'},
                                  {'@pid': '28/1732',
                                   'text': 'Marc&apos;Aurelio Ranzato'},
                                  {'@pid': '99/10669', 'text': 'Rajat Monga'},
                                  {'@pid': '64/8010', 'text': 'Mark Z. Mao'},
                                  {'@pid': '85/6981', 'text': 'K. Yang'},
                                  {'@pid': '29/6166', 'text': 'Quoc Viet Le'},
                                  {'@pid': '81/657', 'text': 'Patrick Nguyen'},
                                  {'@pid': '88/3071',
                                   'text': 'Andrew W. Senior'},
                                  {'@pid': '69/7157',
                                   'text': 'Vincent Vanhoucke'},
                                  {'@pid': 'd/JeffreyDean',
                                   'text': 'Jeffrey Dean'},
                                  {'@pid': '10/3248',
                                   'text': 'Geoffrey E. Hinton'}]},
           'doi': '10.1109/ICASSP.2013.6638312',
           'ee': 'https://doi.org/10.1109/ICASSP.2013.6638312',
           'key': 'conf/icassp/ZeilerRMMYLNSVDH13',
           'pages': '3517-3521',
           'title': 'On rectified linear units for speech processing.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icassp/ZeilerRMMYLNSVDH13',
           'venue': 'ICASSP',
           'year': '2013'},
  'url': 'URL#2801673'},
 {'@id': '2844177',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '73/8333',
                                   'text': 'Suong H. Nguyen'},
                                  {'@pid': '22/58',
                                   'text': 'Lachlan L. H. Andrew'},
                                  {'@pid': '20/5601', 'text': 'Hai Le Vu'}]},
           'doi': '10.1109/LCN.2013.6761328',
           'ee': 'https://doi.org/10.1109/LCN.2013.6761328',
           'key': 'conf/lcn/NguyenAV13',
           'pages': '755-758',
           'title': 'Performance of multi-channel IEEE 802.11 WLANs with '
                    'bidirectional flow control.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/lcn/NguyenAV13',
           'venue': 'LCN',
           'year': '2013'},
  'url': 'URL#2844177'},
 {'@id': '2844179',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '73/8333',
                                   'text': 'Suong H. Nguyen'},
                                  {'@pid': '98/776',
                                   'text': 'Ihsan Ayyub Qazi'},
                                  {'@pid': '22/58',
                                   'text': 'Lachlan L. H. Andrew'},
                                  {'@pid': '20/5601', 'text': 'Hai Le Vu'}]},
           'doi': '10.1109/LCN.2013.6761290',
           'ee': 'https://doi.org/10.1109/LCN.2013.6761290',
           'key': 'conf/lcn/NguyenQAV13',
           'pages': '549-556',
           'title': 'Rate equilibria in WLANs with block ACKs.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/lcn/NguyenQAV13',
           'venue': 'LCN',
           'year': '2013'},
  'url': 'URL#2844179'},
 {'@id': '2859777',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '138/7774',
                                   'text': 'Wesley T. Kerr'},
                                  {'@pid': '158/0025', 'text': 'Andrew Y. Cho'},
                                  {'@pid': '53/11381',
                                   'text': 'Ariana E. Anderson'},
                                  {'@pid': '52/11381',
                                   'text': 'Pamela K. Douglas'},
                                  {'@pid': '158/0072', 'text': 'Edward P. Lau'},
                                  {'@pid': '158/0031', 'text': 'Eric S. Hwang'},
                                  {'@pid': '158/0080',
                                   'text': 'Kaavya R. Raman'},
                                  {'@pid': '158/0087', 'text': 'Aaron Trefler'},
                                  {'@pid': '89/8273', 'text': 'Mark S. Cohen'},
                                  {'@pid': '158/0088',
                                   'text': 'Stefan T. Nguyen'},
                                  {'@pid': '158/0070',
                                   'text': 'Navya M. Reddy'},
                                  {'@pid': '158/0078',
                                   'text': 'Daniel H. S. Silverman'}]},
           'doi': '10.1109/PRNI.2013.31',
           'ee': 'https://doi.org/10.1109/PRNI.2013.31',
           'key': 'conf/prni/KerrCADLHRTCNRS13',
           'pages': '86-89',
           'title': 'Balancing Clinical and Pathologic Relevance in the '
                    'Machine Learning Diagnosis of Epilepsy.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/prni/KerrCADLHRTCNRS13',
           'venue': 'PRNI',
           'year': '2013'},
  'url': 'URL#2859777'},
 {'@id': '2861079',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '138/1352',
                                   'text': 'Andrew Muyanja'},
                                  {'@pid': '19/8143',
                                   'text': 'Paul Isaac Musasizi'},
                                  {'@pid': '138/1221',
                                   'text': 'Catherine Nassimbwa'},
                                  {'@pid': '86/7470',
                                   'text': 'Sandy Stevens Tickodri-Togboa'},
                                  {'@pid': '138/1210',
                                   'text': 'Edward Kale Kayihura'},
                                  {'@pid': '138/1471',
                                   'text': 'Amos Ngabirano'}]},
           'doi': '10.1109/RE.2013.6636734',
           'ee': 'https://doi.org/10.1109/RE.2013.6636734',
           'key': 'conf/re/MuyanjaMNTKN13',
           'pages': '302-307',
           'title': 'Requirements engineering for the uganda police force '
                    'crime records management system.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/re/MuyanjaMNTKN13',
           'venue': 'RE',
           'year': '2013'},
  'url': 'URL#2861079'},
 {'@id': '2873021',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '48/4701', 'text': 'Donald Nguyen'},
                                  {'@pid': '15/2621',
                                   'text': 'Andrew Lenharth'},
                                  {'@pid': '71/5735',
                                   'text': 'Keshav Pingali'}]},
           'doi': '10.1145/2517349.2522739',
           'ee': 'https://doi.org/10.1145/2517349.2522739',
           'key': 'conf/sosp/NguyenLP13',
           'pages': '456-471',
           'title': 'A lightweight infrastructure for graph analytics.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/sosp/NguyenLP13',
           'venue': 'SOSP',
           'year': '2013'},
  'url': 'URL#2873021'},
 {'@id': '2888120',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '03/6690',
                                   'text': 'Eugene Ch&apos;ng'},
                                  {'@pid': '24/2147', 'text': 'Andrew Lewis'},
                                  {'@pid': '164/6787',
                                   'text': 'Rolf Erlend Gehlken'},
                                  {'@pid': '08/6426',
                                   'text': 'Sandra I. Woolley'}]},
           'doi': '10.1007/978-1-4471-5535-5_4',
           'ee': 'https://doi.org/10.1007/978-1-4471-5535-5_4',
           'key': 'books/sp/13/ChngLGW13',
           'pages': '43-65',
           'title': 'A Theoretical Framework for Stigmergetic Reconstruction '
                    'of Ancient Text.',
           'type': 'Parts in Books or Collections',
           'url': 'https://dblp.org/rec/books/sp/13/ChngLGW13',
           'venue': 'Visual Heritage in the Digital Age',
           'year': '2013'},
  'url': 'URL#2888120'},
 {'@id': '2923653',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '122/9159',
                                   'text': 'Melanie Nguyen'},
                                  {'@pid': '122/9029', 'text': 'Yu Sun Bin'},
                                  {'@pid': '155/2018',
                                   'text': 'Andrew J. Campbell'}]},
           'doi': '10.1089/CYBER.2011.0277',
           'ee': 'https://doi.org/10.1089/cyber.2011.0277',
           'key': 'journals/cbsn/NguyenBC12',
           'number': '2',
           'pages': '103-111',
           'title': 'Comparing Online and Offline Self-Disclosure - A '
                    'Systematic Review.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/cbsn/NguyenBC12',
           'venue': 'Cyberpsychology Behav. Soc. Netw.',
           'volume': '15',
           'year': '2012'},
  'url': 'URL#2923653'},
 {'@id': '2927858',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '70/3231',
                                   'text': 'Kim Khoa Nguyen'},
                                  {'@pid': '69/4317',
                                   'text': 'Mohamed Cheriet'},
                                  {'@pid': '18/4179', 'text': 'Mathieu Lemay'},
                                  {'@pid': '78/89', 'text': 'Victor Reijs'},
                                  {'@pid': '29/9992',
                                   'text': 'Andrew Mackarel'},
                                  {'@pid': '92/9992',
                                   'text': 'Alin Pastrama'}]},
           'doi': '10.1016/J.COMNET.2012.03.008',
           'ee': 'https://doi.org/10.1016/j.comnet.2012.03.008',
           'key': 'journals/cn/NguyenCLRMP12',
           'number': '10',
           'pages': '2538-2550',
           'title': 'Environmental-aware virtual data center network.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/cn/NguyenCLRMP12',
           'venue': 'Comput. Networks',
           'volume': '56',
           'year': '2012'},
  'url': 'URL#2927858'},
 {'@id': '2930713',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '118/9783', 'text': 'Andrew Cron'},
                                  {'@pid': '62/3796', 'text': 'Huy L. Nguyen'},
                                  {'@pid': '40/7459',
                                   'text': 'Aditya G. Parameswaran'}]},
           'doi': '10.1145/2331042.2331045',
           'ee': 'https://doi.org/10.1145/2331042.2331045',
           'key': 'journals/crossroads/CronNP12',
           'number': '1',
           'pages': '7-8',
           'title': 'Big data.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/crossroads/CronNP12',
           'venue': 'XRDS',
           'volume': '19',
           'year': '2012'},
  'url': 'URL#2930713'},
 {'@id': '2931482',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '82/11484',
                                   'text': 'Do Le Paul Minh'},
                                  {'@pid': '91/11484',
                                   'text': 'David D. L. Minh'},
                                  {'@pid': '80/11484',
                                   'text': 'Andrew L. Nguyen'}]},
           'doi': '10.1080/03610918.2011.615433',
           'ee': 'https://doi.org/10.1080/03610918.2011.615433',
           'key': 'journals/cssc/MinhMN12',
           'number': '9',
           'pages': '1745-1760',
           'title': 'Regenerative Markov Chain Monte Carlo for Any '
                    'Distribution.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/cssc/MinhMN12',
           'venue': 'Commun. Stat. Simul. Comput.',
           'volume': '41',
           'year': '2012'},
  'url': 'URL#2931482'},
 {'@id': '2936850',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '90/11479',
                                   'text': 'Tri-Dung Nguyen'},
                                  {'@pid': '57/1913', 'text': 'Andrew W. Lo'}]},
           'doi': '10.1016/J.EJOR.2012.03.023',
           'ee': 'https://doi.org/10.1016/j.ejor.2012.03.023',
           'key': 'journals/eor/NguyenL12',
           'number': '2',
           'pages': '407-416',
           'title': 'Robust ranking and portfolio optimization.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/eor/NguyenL12',
           'venue': 'Eur. J. Oper. Res.',
           'volume': '221',
           'year': '2012'},
  'url': 'URL#2936850'},
 {'@id': '2940929',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '44/10465',
                                   'text': 'C. A. J. M. de Bie'},
                                  {'@pid': '121/5759',
                                   'text': 'Thi Thu Ha Nguyen'},
                                  {'@pid': '28/9766-6',
                                   'text': 'Amjad Ali 0006'},
                                  {'@pid': '121/5853',
                                   'text': 'Rory Gordon Scarrott'},
                                  {'@pid': '97/4491',
                                   'text': 'Andrew K. Skidmore'}]},
           'doi': '10.1080/13658816.2012.712126',
           'ee': 'https://doi.org/10.1080/13658816.2012.712126',
           'key': 'journals/gis/BieNASS12',
           'number': '11',
           'pages': '2177-2192',
           'title': 'LaHMa - a landscape heterogeneity mapping method using '
                    'hyper-temporal datasets.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/gis/BieNASS12',
           'venue': 'Int. J. Geogr. Inf. Sci.',
           'volume': '26',
           'year': '2012'},
  'url': 'URL#2940929'},
 {'@id': '2953137',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '12/2647',
                                   'text': 'Durai Sundaramoorthi'},
                                  {'@pid': '118/2520', 'text': 'Andrew Coult'},
                                  {'@pid': '118/2587',
                                   'text': 'Dung Hai Nguyen'}]},
           'doi': '10.4018/JORIS.2012070105',
           'ee': 'https://doi.org/10.4018/joris.2012070105',
           'key': 'journals/ijoris/SundaramoorthiCN12',
           'number': '3',
           'pages': '74-86',
           'title': 'A Data-Integrated Tree-Based Simulation to Predict '
                    'Financial Market Movement.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/ijoris/SundaramoorthiCN12',
           'venue': 'Int. J. Oper. Res. Inf. Syst.',
           'volume': '3',
           'year': '2012'},
  'url': 'URL#2953137'},
 {'@id': '2983766',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '117/6048', 'text': 'Andrew Lamb'},
                                  {'@pid': '117/5979', 'text': 'Matt Fuller'},
                                  {'@pid': '63/2265',
                                   'text': 'Ramakrishna Varadarajan'},
                                  {'@pid': '80/4976', 'text': 'Nga Tran'},
                                  {'@pid': '75/206', 'text': 'Ben Vandiver'},
                                  {'@pid': '117/5997', 'text': 'Lyric Doshi'},
                                  {'@pid': '32/6287', 'text': 'Chuck Bear'}]},
           'doi': '10.14778/2367502.2367518',
           'ee': 'http://vldb.org/pvldb/vol5/p1790_andrewlamb_vldb2012.pdf',
           'key': 'journals/pvldb/LambFVTVDB12',
           'number': '12',
           'pages': '1790-1801',
           'title': 'The Vertica Analytic Database - C-Store 7 Years Later .',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/pvldb/LambFVTVDB12',
           'venue': 'Proc. VLDB Endow.',
           'volume': '5',
           'year': '2012'},
  'url': 'URL#2983766'},
 {'@id': '3005011',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '73/8333',
                                   'text': 'Suong H. Nguyen'},
                                  {'@pid': '20/5601', 'text': 'Hai Le Vu'},
                                  {'@pid': '22/58',
                                   'text': 'Lachlan L. H. Andrew'}]},
           'doi': '10.1109/TVT.2011.2174069',
           'ee': 'https://doi.org/10.1109/TVT.2011.2174069',
           'key': 'journals/tvt/NguyenVA12',
           'number': '1',
           'pages': '333-345',
           'title': 'Performance Analysis of IEEE 802.11 WLANs With Saturated '
                    'and Unsaturated Sources.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/tvt/NguyenVA12',
           'venue': 'IEEE Trans. Veh. Technol.',
           'volume': '61',
           'year': '2012'},
  'url': 'URL#3005011'},
 {'@id': '3005812',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '05/11514',
                                   'text': 'Advait Abhay Dixit'},
                                  {'@pid': 'f/RikFarrow', 'text': 'Rik Farrow'},
                                  {'@pid': '61/11188',
                                   'text': 'Andrew D. Ferguson'},
                                  {'@pid': '85/3068',
                                   'text': 'Katrina LaCurts'},
                                  {'@pid': '40/8919',
                                   'text': 'Marcelo Martins'},
                                  {'@pid': '78/8178',
                                   'text': 'Karthik Nagaraj'},
                                  {'@pid': '232/1411', 'text': 'Kevin Ngo'},
                                  {'@pid': '121/4072', 'text': 'Will Scott'},
                                  {'@pid': '27/3108', 'text': 'Manuel Egele'},
                                  {'@pid': 'k/EnginKirda',
                                   'text': 'Engin Kirda'}]},
           'ee': 'https://www.usenix.org/publications/login/august-2012-volume-37-number-4/9th-usenix-symposium-networked-systems-design-and',
           'key': 'journals/usenix-login/DixitFFLMNNSEK12',
           'number': '4',
           'title': 'NSDI &apos;12 and LEET &apos;12.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/usenix-login/DixitFFLMNNSEK12',
           'venue': 'login Usenix Mag.',
           'volume': '37',
           'year': '2012'},
  'url': 'URL#3005812'},
 {'@id': '3007602',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '59/5292',
                                   'text': 'Jürgen P. Schulze'},
                                  {'@pid': '44/8106', 'text': 'Daniel Acevedo'},
                                  {'@pid': '62/11232', 'text': 'John Mangan'},
                                  {'@pid': '45/9078',
                                   'text': 'Andrew Prudhomme'},
                                  {'@pid': '97/7826', 'text': 'Phi Nguyen'},
                                  {'@pid': '39/9443',
                                   'text': 'Philip P. Weber'}]},
           'doi': '10.1109/3DUI.2012.6184187',
           'ee': 'https://doi.org/10.1109/3DUI.2012.6184187',
           'key': 'conf/3dui/SchulzeAMPNW12',
           'pages': '77-80',
           'title': 'Democratizing rendering for multiple viewers in surround '
                    'VR systems.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/3dui/SchulzeAMPNW12',
           'venue': '3DUI',
           'year': '2012'},
  'url': 'URL#3007602'},
 {'@id': '3026088',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '19/4764', 'text': 'Chao Jin'},
                                  {'@pid': '09/6203', 'text': 'David Abramson'},
                                  {'@pid': '19/8524', 'text': 'Minh Ngoc Dinh'},
                                  {'@pid': '70/10957',
                                   'text': 'Andrew Gontarek'},
                                  {'@pid': '48/8524', 'text': 'Robert Moench'},
                                  {'@pid': '91/357', 'text': 'Luiz De Rose'}]},
           'doi': '10.1109/CCGRID.2012.13',
           'ee': 'https://doi.org/10.1109/CCGrid.2012.13',
           'key': 'conf/ccgrid/JinADGMR12',
           'pages': '252-259',
           'title': 'A Scalable Parallel Debugging Library with Pluggable '
                    'Communication Protocols.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/ccgrid/JinADGMR12',
           'venue': 'CCGRID',
           'year': '2012'},
  'url': 'URL#3026088'},
 {'@id': '3039755',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '08/1542', 'text': 'Yaoguang Wei'},
                                  {'@pid': 's/CliffNSze',
                                   'text': 'Cliff C. N. Sze'},
                                  {'@pid': '15/1633',
                                   'text': 'Natarajan Viswanathan'},
                                  {'@pid': '51/4015-1', 'text': 'Zhuo Li 0001'},
                                  {'@pid': '41/4379',
                                   'text': 'Charles J. Alpert'},
                                  {'@pid': '04/2781',
                                   'text': 'Lakshmi N. Reddy'},
                                  {'@pid': '65/2074',
                                   'text': 'Andrew D. Huber'},
                                  {'@pid': '69/2239',
                                   'text': 'Gustavo E. Téllez'},
                                  {'@pid': '16/11468',
                                   'text': 'Douglas Keller'},
                                  {'@pid': 's/SachinSSapatnekar',
                                   'text': 'Sachin S. Sapatnekar'}]},
           'doi': '10.1145/2228360.2228499',
           'ee': 'https://doi.org/10.1145/2228360.2228499',
           'key': 'conf/dac/WeiSVLARHTKS12',
           'pages': '768-773',
           'title': 'GLARE - global and local wiring aware routability '
                    'evaluation.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/dac/WeiSVLARHTKS12',
           'venue': 'DAC',
           'year': '2012'},
  'url': 'URL#3039755'},
 {'@id': '3047111',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '90/4873',
                                   'text': 'Kouhyar Tavakolian'},
                                  {'@pid': '209/0565',
                                   'text': 'Gonzalo Portacio'},
                                  {'@pid': '209/1394',
                                   'text': 'Niloufar R. Tamddondoust'},
                                  {'@pid': '23/11408', 'text': 'Graeme Jahns'},
                                  {'@pid': '209/0365', 'text': 'Brandon Ngai'},
                                  {'@pid': '85/6594',
                                   'text': 'Guy Albert Dumont'},
                                  {'@pid': '165/9454',
                                   'text': 'Andrew P. Blaber'}]},
           'doi': '10.1109/EMBC.2012.6346795',
           'ee': 'https://doi.org/10.1109/EMBC.2012.6346795',
           'key': 'conf/embc/TavakolianPTJND12',
           'pages': '3801-3804',
           'title': 'Myocardial contractility - A seismocardiography approach.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/embc/TavakolianPTJND12',
           'venue': 'EMBC',
           'year': '2012'},
  'url': 'URL#3047111'},
 {'@id': '3050488',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '50/1341', 'text': 'Yujia Wang'},
                                  {'@pid': '26/9878', 'text': 'Andrew Grieco'},
                                  {'@pid': '23/9879', 'text': 'Boris Slutsky'},
                                  {'@pid': '23/5856',
                                   'text': 'Truong Q. Nguyen'}]},
           'ee': 'https://ieeexplore.ieee.org/document/6333861/',
           'key': 'conf/eusipco/WangGSN12',
           'pages': '2168-2172',
           'title': 'Constrained eigenfilter allpass design for photonic '
                    'systems.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/eusipco/WangGSN12',
           'venue': 'EUSIPCO',
           'year': '2012'},
  'url': 'URL#3050488'},
 {'@id': '3052427',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '30/6769', 'text': 'Yu-Ting Yang'},
                                  {'@pid': '95/8396',
                                   'text': 'Andrew Quitmeyer'},
                                  {'@pid': '08/8525', 'text': 'Brian Hrolenok'},
                                  {'@pid': '116/9302', 'text': 'Harry Shang'},
                                  {'@pid': '116/9373',
                                   'text': 'Dinh Bao Nguyen'},
                                  {'@pid': 'b/TuckerRBalch',
                                   'text': 'Tucker R. Balch'},
                                  {'@pid': '116/9330',
                                   'text': 'Terrance Medina'},
                                  {'@pid': '116/9297', 'text': 'Cole Sherer'},
                                  {'@pid': 'h/MariaHybinette',
                                   'text': 'Maria Hybinette'}]},
           'ee': 'http://www.aaai.org/ocs/index.php/FLAIRS/FLAIRS12/paper/view/4400',
           'key': 'conf/flairs/YangQHSNBMSH12',
           'title': 'Ant Hunt - Towards a Validated Model of Live Ant Hunting '
                    'Behavior.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/flairs/YangQHSNBMSH12',
           'venue': 'FLAIRS Conference',
           'year': '2012'},
  'url': 'URL#3052427'},
 {'@id': '3053174',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '21/10309',
                                   'text': 'Long Hoang Nguyen 0001'},
                                  {'@pid': 'r/AWRoscoe',
                                   'text': 'A. W. Roscoe 0001'}]},
           'doi': '10.1007/978-3-642-34047-5_19',
           'ee': 'https://doi.org/10.1007/978-3-642-34047-5_19',
           'key': 'conf/fse/NguyenR12',
           'pages': '326-345',
           'title': 'Short-Output Universal Hash Functions and Their Use in '
                    'Fast and Secure Data Authentication.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/fse/NguyenR12',
           'venue': 'FSE',
           'year': '2012'},
  'url': 'URL#3053174'},
 {'@id': '3058932',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '155/2726', 'text': 'Mary K. Lam'},
                                  {'@pid': '155/2957',
                                   'text': 'Krestina L. Amon'},
                                  {'@pid': '122/9159',
                                   'text': 'Melanie Nguyen'},
                                  {'@pid': '155/2018',
                                   'text': 'Andrew J. Campbell'},
                                  {'@pid': '155/2012',
                                   'text': 'Victoria Neville'}]},
           'doi': '10.3233/978-1-61499-078-9-99',
           'ee': 'https://doi.org/10.3233/978-1-61499-078-9-99',
           'key': 'conf/hic/LamANCN12',
           'pages': '99-104',
           'title': 'The effect of e-health contents on health science '
                    'students&apos; attitude toward the efficiency of health '
                    'ICT in care provision.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/hic/LamANCN12',
           'venue': 'HIC',
           'year': '2012'},
  'url': 'URL#3058932'},
 {'@id': '3091828',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '04/6137', 'text': 'Navdeep Jaitly'},
                                  {'@pid': '81/657', 'text': 'Patrick Nguyen'},
                                  {'@pid': '88/3071',
                                   'text': 'Andrew W. Senior'},
                                  {'@pid': '69/7157',
                                   'text': 'Vincent Vanhoucke'}]},
           'ee': 'http://www.isca-speech.org/archive/interspeech_2012/i12_2578.html',
           'key': 'conf/interspeech/JaitlyNSV12',
           'pages': '2578-2581',
           'title': 'Application of Pretrained Deep Neural Networks to Large '
                    'Vocabulary Speech Recognition.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/interspeech/JaitlyNSV12',
           'venue': 'INTERSPEECH',
           'year': '2012'},
  'url': 'URL#3091828'},
 {'@id': '3104930',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '124/2894',
                                   'text': 'Xiao Bao Clark'},
                                  {'@pid': '124/2839',
                                   'text': 'Jackson G. Finlay'},
                                  {'@pid': '124/3051',
                                   'text': 'Andrew J. Wilson'},
                                  {'@pid': '124/2870',
                                   'text': 'Keith L. J. Milburn'},
                                  {'@pid': '32/5736-2',
                                   'text': 'Minh Hoang Nguyen 0002'},
                                  {'@pid': 'l/CLutteroth',
                                   'text': 'Christof Lutteroth'},
                                  {'@pid': 'w/BurkhardWunsche',
                                   'text': 'Burkhard Wünsche'}]},
           'doi': '10.1145/2425836.2425927',
           'ee': 'https://doi.org/10.1145/2425836.2425927',
           'key': 'conf/ivcnz/ClarkFWMNLW12',
           'pages': '480-485',
           'title': 'An investigation into graph cut parameter optimisation '
                    'for image-fusion applications.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/ivcnz/ClarkFWMNLW12',
           'venue': 'IVCNZ',
           'year': '2012'},
  'url': 'URL#3104930'},
 {'@id': '3122148',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '19/8524', 'text': 'Minh Ngoc Dinh'},
                                  {'@pid': '09/6203', 'text': 'David Abramson'},
                                  {'@pid': '19/4764', 'text': 'Chao Jin'},
                                  {'@pid': '70/10957',
                                   'text': 'Andrew Gontarek'},
                                  {'@pid': '48/8524', 'text': 'Bob Moench'},
                                  {'@pid': '91/357', 'text': 'Luiz De Rose'}]},
           'doi': '10.1145/2145816.2145870',
           'ee': 'https://doi.org/10.1145/2145816.2145870',
           'key': 'conf/ppopp/DinhAJGMR12',
           'pages': '311-312',
           'title': 'Scalable parallel debugging with statistical assertions.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/ppopp/DinhAJGMR12',
           'venue': 'PPOPP',
           'year': '2012'},
  'url': 'URL#3122148'},
 {'@id': '3129608',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '71/4882',
                                   'text': 'Jens Lehmann 0001'},
                                  {'@pid': 'f/TimFurche', 'text': 'Tim Furche'},
                                  {'@pid': '84/4787-1',
                                   'text': 'Giovanni Grasso 0001'},
                                  {'@pid': '65/4336',
                                   'text': 'Axel-Cyrille Ngonga Ngomo'},
                                  {'@pid': 's/ChristianSchallhart',
                                   'text': 'Christian Schallhart'},
                                  {'@pid': '55/9376',
                                   'text': 'Andrew Jon Sellers'},
                                  {'@pid': '50/9766',
                                   'text': 'Christina Unger'},
                                  {'@pid': '75/8883', 'text': 'Lorenz Bühmann'},
                                  {'@pid': '70/8503', 'text': 'Daniel Gerber'},
                                  {'@pid': '37/10894',
                                   'text': 'Konrad Höffner'},
                                  {'@pid': '09/1814', 'text': 'David Liu'},
                                  {'@pid': '05/6406', 'text': 'Sören Auer'}]},
           'doi': '10.1007/978-3-642-35173-0_9',
           'ee': 'https://doi.org/10.1007/978-3-642-35173-0_9',
           'key': 'conf/semweb/LehmannFGNSSUBGHLA12',
           'pages': '131-147',
           'title': 'deqa - Deep Web Extraction for Question Answering.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/semweb/LehmannFGNSSUBGHLA12',
           'venue': 'International Semantic Web Conference',
           'year': '2012'},
  'url': 'URL#3129608'},
 {'@id': '3150726',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '19/8524', 'text': 'Minh Ngoc Dinh'},
                                  {'@pid': '09/6203', 'text': 'David Abramson'},
                                  {'@pid': '19/4764', 'text': 'Chao Jin'},
                                  {'@pid': '26/5207',
                                   'text': 'Donny Kurniawan'},
                                  {'@pid': '70/10957',
                                   'text': 'Andrew Gontarek'},
                                  {'@pid': '48/8524', 'text': 'Bob Moench'},
                                  {'@pid': '91/357', 'text': 'Luiz De Rose'}]},
           'doi': '10.1016/J.PROCS.2012.04.212',
           'ee': 'https://doi.org/10.1016/j.procs.2012.04.212',
           'key': 'journals/procedia/DinhAJKGMR12',
           'pages': '1940-1949',
           'title': 'Debugging Scientific Applications With Statistical '
                    'Assertions.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/journals/procedia/DinhAJKGMR12',
           'venue': 'ICCS',
           'year': '2012'},
  'url': 'URL#3150726'},
 {'@id': '3161808',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '24/8344',
                                   'text': 'Truong-Huy Dinh Nguyen'},
                                  {'@pid': '29/331', 'text': 'David Hsu'},
                                  {'@pid': '86/1498', 'text': 'Wee Sun Lee'},
                                  {'@pid': '16/3956', 'text': 'Tze-Yun Leong'},
                                  {'@pid': 'k/LesliePackKaelbling',
                                   'text': 'Leslie Pack Kaelbling'},
                                  {'@pid': '90/752',
                                   'text': 'Tomás Lozano-Pérez'},
                                  {'@pid': '79/10890',
                                   'text': 'Andrew Haydn Grant'}]},
           'ee': 'http://arxiv.org/abs/1206.5928',
           'key': 'journals/corr/abs-1206-5928',
           'title': 'CAPIR - Collaborative Action Planning with Intention '
                    'Recognition',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-1206-5928',
           'venue': 'CoRR',
           'volume': 'abs/1206.5928',
           'year': '2012'},
  'url': 'URL#3161808'},
 {'@id': '3163665',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '117/6048', 'text': 'Andrew Lamb'},
                                  {'@pid': '117/5979', 'text': 'Matt Fuller'},
                                  {'@pid': '63/2265',
                                   'text': 'Ramakrishna Varadarajan'},
                                  {'@pid': '80/4976', 'text': 'Nga Tran'},
                                  {'@pid': '75/206', 'text': 'Ben Vandiver'},
                                  {'@pid': '117/5997', 'text': 'Lyric Doshi'},
                                  {'@pid': '32/6287', 'text': 'Chuck Bear'}]},
           'ee': 'http://arxiv.org/abs/1208.4173',
           'key': 'journals/corr/abs-1208-4173',
           'title': 'The Vertica Analytic Database - C-Store 7 Years Later',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/abs-1208-4173',
           'venue': 'CoRR',
           'volume': 'abs/1208.4173',
           'year': '2012'},
  'url': 'URL#3163665'},
 {'@id': '3168595',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '21/10309',
                                   'text': 'Long Hoang Nguyen 0001'},
                                  {'@pid': 'r/AWRoscoe',
                                   'text': 'Andrew William Roscoe'}]},
           'ee': 'http://eprint.iacr.org/2012/429',
           'key': 'journals/iacr/NguyenR12',
           'pages': '429',
           'title': 'Simple construction of epsilon-biased distribution.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/iacr/NguyenR12',
           'venue': 'IACR Cryptol. ePrint Arch.',
           'volume': '2012',
           'year': '2012'},
  'url': 'URL#3168595'},
 {'@id': '3189859',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '68/9447', 'text': 'Preetma Soin'},
                                  {'@pid': '85/8065',
                                   'text': 'Andrew P. Horsfield'},
                                  {'@pid': '13/9448',
                                   'text': 'D. Nguyen-Manh'}]},
           'doi': '10.1016/J.CPC.2011.01.030',
           'ee': 'https://doi.org/10.1016/j.cpc.2011.01.030',
           'key': 'journals/cphysics/SoinHN11',
           'number': '6',
           'pages': '1350-1360',
           'title': 'Efficient self-consistency for magnetic tight binding.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/cphysics/SoinHN11',
           'venue': 'Comput. Phys. Commun.',
           'volume': '182',
           'year': '2011'},
  'url': 'URL#3189859'},
 {'@id': '3217354',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '56/9737',
                                   'text': 'Urmimala Sarkar'},
                                  {'@pid': '57/9737',
                                   'text': 'Andrew J. Karter'},
                                  {'@pid': '80/9737',
                                   'text': 'Jennifer Y. Liu'},
                                  {'@pid': '51/9738', 'text': 'Nancy E. Adler'},
                                  {'@pid': '44/9737', 'text': 'Robert Nguyen'},
                                  {'@pid': '58/9737', 'text': 'Andrea López'},
                                  {'@pid': '69/9737',
                                   'text': 'Dean Schillinger'}]},
           'doi': '10.1136/JAMIA.2010.006015',
           'ee': 'https://doi.org/10.1136/jamia.2010.006015',
           'key': 'journals/jamia/SarkarKLANLS11',
           'number': '3',
           'pages': '318-321',
           'title': 'Social disparities in internet patient portal use in '
                    'diabetes - evidence that the digital divide extends '
                    'beyond access.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/jamia/SarkarKLANLS11',
           'venue': 'J. Am. Medical Informatics Assoc.',
           'volume': '18',
           'year': '2011'},
  'url': 'URL#3217354'},
 {'@id': '3221177',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '21/10309',
                                   'text': 'Long Hoang Nguyen 0001'},
                                  {'@pid': 'r/AWRoscoe',
                                   'text': 'A. W. Roscoe 0001'}]},
           'doi': '10.3233/JCS-2010-0403',
           'ee': 'https://doi.org/10.3233/JCS-2010-0403',
           'key': 'journals/jcs/NguyenR11',
           'number': '1',
           'pages': '139-201',
           'title': 'Authentication protocols based on low-bandwidth '
                    'unspoofable channels - A comparative survey.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/jcs/NguyenR11',
           'venue': 'J. Comput. Secur.',
           'volume': '19',
           'year': '2011'},
  'url': 'URL#3221177'},
 {'@id': '3240775',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '65/3743', 'text': 'David Kane'},
                                  {'@pid': '21/501', 'text': 'Andrew Liu'},
                                  {'@pid': '53/6791', 'text': 'Khanh Nguyen'}]},
           'doi': '10.32614/RJ-2011-010',
           'ee': 'https://doi.org/10.32614/rj-2011-010',
           'key': 'journals/rjour/KaneLN11',
           'number': '1',
           'pages': '64',
           'title': 'Analyzing an Electronic Limit Order Book.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/rjour/KaneLN11',
           'venue': 'R J.',
           'volume': '3',
           'year': '2011'},
  'url': 'URL#3240775'},
 {'@id': '3263980',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '01/9034',
                                   'text': 'Andrew V. Nguyen'},
                                  {'@pid': '43/9034', 'text': 'Rob Wynden'},
                                  {'@pid': '62/6846', 'text': 'Yao Sun'}]},
           'ee': 'http://www.aaai.org/ocs/index.php/SSS/SSS11/paper/view/2479',
           'key': 'conf/aaaiss/NguyenWS11',
           'title': 'HBase, MapReduce, and Integrated Data Visualization for '
                    'Processing Clinical Signal Data.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/aaaiss/NguyenWS11',
           'venue': 'AAAI Spring Symposium - Computational Physiology',
           'year': '2011'},
  'url': 'URL#3263980'},
 {'@id': '3267582',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '24/8344',
                                   'text': 'Truong-Huy Dinh Nguyen'},
                                  {'@pid': '29/331', 'text': 'David Hsu'},
                                  {'@pid': '86/1498', 'text': 'Wee Sun Lee'},
                                  {'@pid': '16/3956', 'text': 'Tze-Yun Leong'},
                                  {'@pid': 'k/LesliePackKaelbling',
                                   'text': 'Leslie Pack Kaelbling'},
                                  {'@pid': '90/752',
                                   'text': 'Tomás Lozano-Pérez'},
                                  {'@pid': '79/10890',
                                   'text': 'Andrew Haydn Grant'}]},
           'ee': 'http://www.aaai.org/ocs/index.php/AIIDE/AIIDE11/paper/view/4052',
           'key': 'conf/aiide/NguyenHLLKLG11',
           'title': 'CAPIR - Collaborative Action Planning with Intention '
                    'Recognition.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/aiide/NguyenHLLKLG11',
           'venue': 'AIIDE',
           'year': '2011'},
  'url': 'URL#3267582'},
 {'@id': '3293776',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '46/6957-1',
                                   'text': 'Andrew Nelson 0001'},
                                  {'@pid': '33/2059',
                                   'text': 'Orlando Moreira'},
                                  {'@pid': '59/3148',
                                   'text': 'Anca Mariana Molnos'},
                                  {'@pid': '42/6513', 'text': 'Sander Stuijk'},
                                  {'@pid': '59/10491',
                                   'text': 'Ba Thang Nguyen'},
                                  {'@pid': 'g/KeesGoossens',
                                   'text': 'Kees Goossens'}]},
           'doi': '10.1109/DSD.2011.19',
           'ee': 'https://doi.org/10.1109/DSD.2011.19',
           'key': 'conf/dsd/NelsonMMSNG11',
           'pages': '117-124',
           'title': 'Power Minimisation for Real-Time Dataflow Applications.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/dsd/NelsonMMSNG11',
           'venue': 'DSD',
           'year': '2011'},
  'url': 'URL#3293776'},
 {'@id': '3295866',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '08/10057', 'text': 'Ngit Chan Lye'},
                                  {'@pid': '13/3307', 'text': 'Kok Wai Wong'},
                                  {'@pid': '65/4623', 'text': 'Andrew Chiou'}]},
           'doi': '10.1007/978-3-642-23456-9_59',
           'ee': 'https://doi.org/10.1007/978-3-642-23456-9_59',
           'key': 'conf/edutainment/LyeWC11',
           'pages': '317-325',
           'title': 'Framework for Educational Robotics - A Multiphase '
                    'Approach to Enhance User Learning in a Competitive Arena.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/edutainment/LyeWC11',
           'venue': 'Edutainment',
           'year': '2011'},
  'url': 'URL#3295866'},
 {'@id': '3298149',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '90/4873',
                                   'text': 'Kouhyar Tavakolian'},
                                  {'@pid': '209/0365', 'text': 'Brandon Ngai'},
                                  {'@pid': '165/9454',
                                   'text': 'Andrew P. Blaber'},
                                  {'@pid': '88/6578',
                                   'text': 'Bozena Kaminska'}]},
           'doi': '10.1109/IEMBS.2011.6091061',
           'ee': 'https://doi.org/10.1109/IEMBS.2011.6091061',
           'key': 'conf/embc/TavakolianNBK11',
           'pages': '4275-4278',
           'title': 'Infrasonic cardiac signals - Complementary windows to '
                    'cardiovascular dynamics.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/embc/TavakolianNBK11',
           'venue': 'EMBC',
           'year': '2011'},
  'url': 'URL#3298149'},
 {'@id': '3305303',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '70/3231',
                                   'text': 'Kim Khoa Nguyen'},
                                  {'@pid': '69/4317',
                                   'text': 'Mohamed Cheriet'},
                                  {'@pid': '18/4179', 'text': 'Mathieu Lemay'},
                                  {'@pid': '23/4571',
                                   'text': 'Bill St. Arnaud'},
                                  {'@pid': '78/89', 'text': 'Victor Reijs'},
                                  {'@pid': '29/9992',
                                   'text': 'Andrew Mackarel'},
                                  {'@pid': '43/9106', 'text': 'Pau Minoves'},
                                  {'@pid': '92/9992', 'text': 'Alin Pastrama'},
                                  {'@pid': '02/9992',
                                   'text': 'Ward Van Heddeghem'}]},
           'doi': '10.1007/978-3-642-20898-0_30',
           'ee': 'https://doi.org/10.1007/978-3-642-20898-0_30',
           'key': 'conf/fia/NguyenCLARMMPH11',
           'pages': '419-430',
           'title': 'Renewable Energy Provisioning for ICT Services in a '
                    'Future Internet.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/fia/NguyenCLARMMPH11',
           'venue': 'Future Internet Assembly',
           'year': '2011'},
  'url': 'URL#3305303'},
 {'@id': '3307959',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '98/10049', 'text': 'Jerene Jacob'},
                                  {'@pid': '184/9439', 'text': 'Tam Q. Nguyen'},
                                  {'@pid': '83/5489',
                                   'text': 'Donald Y. C. Lie'},
                                  {'@pid': '84/10049',
                                   'text': 'Steven Zupancic'},
                                  {'@pid': '98/10053', 'text': 'J. Bishara'},
                                  {'@pid': '33/10053',
                                   'text': 'Andrew Dentino'},
                                  {'@pid': '52/10051',
                                   'text': 'Ron E. Banister'}]},
           'doi': '10.1109/FUZZY.2011.6007744',
           'ee': 'https://doi.org/10.1109/FUZZY.2011.6007744',
           'key': 'conf/fuzzIEEE/JacobNLZBDB11',
           'pages': '666-671',
           'title': 'A fall detection study on the sensors placement location '
                    'and a rule-based multi-thresholds algorithm using both '
                    'accelerometer and gyroscopes.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/fuzzIEEE/JacobNLZBDB11',
           'venue': 'FUZZ-IEEE',
           'year': '2011'},
  'url': 'URL#3307959'},
 {'@id': '3310887',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '50/1341', 'text': 'Yujia Wang'},
                                  {'@pid': '26/9878', 'text': 'Andrew Grieco'},
                                  {'@pid': '23/9879', 'text': 'Boris Slutsky'},
                                  {'@pid': '32/1480', 'text': 'Bhaskar Rao'},
                                  {'@pid': '30/3427',
                                   'text': 'Yeshaiahu Fainman'},
                                  {'@pid': '23/5856',
                                   'text': 'Truong Q. Nguyen'}]},
           'doi': '10.1109/GLOCOM.2011.6133623',
           'ee': 'https://doi.org/10.1109/GLOCOM.2011.6133623',
           'key': 'conf/globecom/WangGSRFN11',
           'pages': '1-5',
           'title': 'Stochastic Model on the Post-Fabrication Error for a '
                    'Bragg Reflectors Based Photonic Allpass Filter.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/globecom/WangGSRFN11',
           'venue': 'GLOBECOM',
           'year': '2011'},
  'url': 'URL#3310887'},
 {'@id': '3314163',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '72/9188',
                                   'text': 'Raghavendra Rajkumar'},
                                  {'@pid': '58/5765-2',
                                   'text': 'Andrew Wang 0002'},
                                  {'@pid': '88/5011', 'text': 'Jason Hiser'},
                                  {'@pid': '06/6439',
                                   'text': 'Anh Nguyen-Tuong'},
                                  {'@pid': 'd/JWDavidson',
                                   'text': 'Jack W. Davidson'},
                                  {'@pid': '87/4375',
                                   'text': 'John C. Knight'}]},
           'doi': '10.1109/HICSS.2011.122',
           'ee': 'https://doi.org/10.1109/HICSS.2011.122',
           'key': 'conf/hicss/RajkumarWHNDK11',
           'pages': '1-10',
           'title': 'Component-Oriented Monitoring of Binaries for Security.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/hicss/RajkumarWHNDK11',
           'venue': 'HICSS',
           'year': '2011'},
  'url': 'URL#3314163'},
 {'@id': '3319799',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '50/1341', 'text': 'Yujia Wang'},
                                  {'@pid': '26/9878', 'text': 'Andrew Grieco'},
                                  {'@pid': '23/9879', 'text': 'Boris Slutsky'},
                                  {'@pid': '32/1480', 'text': 'Bhaskar Rao'},
                                  {'@pid': '30/3427',
                                   'text': 'Yeshaiahu Fainman'},
                                  {'@pid': '23/5856',
                                   'text': 'Truong Q. Nguyen'}]},
           'doi': '10.1109/ICASSP.2011.5946811',
           'ee': 'https://doi.org/10.1109/ICASSP.2011.5946811',
           'key': 'conf/icassp/WangGSRFN11',
           'pages': '1633-1636',
           'title': 'Design and analysis of a narrowband filter for optical '
                    'platform.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icassp/WangGSRFN11',
           'venue': 'ICASSP',
           'year': '2011'},
  'url': 'URL#3319799'},
 {'@id': '3333417',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '30/4876',
                                   'text': 'Quang Vinh Nguyen'},
                                  {'@pid': '67/10461',
                                   'text': 'Andrew Gleeson'},
                                  {'@pid': '32/10462', 'text': 'Nicholas Ho'},
                                  {'@pid': 'h/MaoLinHuang',
                                   'text': 'Mao Lin Huang'},
                                  {'@pid': '39/1218',
                                   'text': 'Simeon J. Simoff'},
                                  {'@pid': '40/744',
                                   'text': 'Daniel R. Catchpoole'}]},
           'doi': '10.1007/978-3-642-24955-6_14',
           'ee': 'https://doi.org/10.1007/978-3-642-24955-6_14',
           'key': 'conf/iconip/NguyenGHHSC11',
           'pages': '113-120',
           'title': 'Visual Analytics of Clinical and Genetic Datasets of '
                    'Acute Lymphoblastic Leukaemia.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/iconip/NguyenGHHSC11',
           'venue': 'ICONIP',
           'year': '2011'},
  'url': 'URL#3333417'},
 {'@id': '3353817',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': 'c/ChungKuanCheng',
                                   'text': 'Chung-Kuan Cheng'},
                                  {'@pid': '02/6086', 'text': 'Peng Du'},
                                  {'@pid': 'k/AndrewBKahng',
                                   'text': 'Andrew B. Kahng'},
                                  {'@pid': '23/590',
                                   'text': 'Grantham K. H. Pang'},
                                  {'@pid': '12/8314', 'text': 'Yuanzhe Wang'},
                                  {'@pid': '88/3656', 'text': 'Ngai Wong'}]},
           'doi': '10.1145/1960397.1960435',
           'ee': 'https://doi.org/10.1145/1960397.1960435',
           'key': 'conf/ispd/ChengDKPWW11',
           'pages': '159-166',
           'title': 'More realistic power grid verification based on '
                    'hierarchical current and power constraints.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/ispd/ChengDKPWW11',
           'venue': 'ISPD',
           'year': '2011'},
  'url': 'URL#3353817'},
 {'@id': '3358537',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '03/3923-1',
                                   'text': 'Xiaodong He 0001'},
                                  {'@pid': '86/9737',
                                   'text': 'Amittai Axelrod'},
                                  {'@pid': '31/1974-1', 'text': 'Li Deng 0001'},
                                  {'@pid': 'a/AlexAcero', 'text': 'Alex Acero'},
                                  {'@pid': '72/3526', 'text': 'Mei-Yuh Hwang'},
                                  {'@pid': '143/7019', 'text': 'Alisa Nguyen'},
                                  {'@pid': '58/5765', 'text': 'Andrew Wang'},
                                  {'@pid': '143/7022',
                                   'text': 'Xiahui Huang'}]},
           'ee': 'http://www.isca-speech.org/archive/iwslt_11/sltb_057.html',
           'key': 'conf/iwslt/HeADAHNWH11',
           'pages': '57-61',
           'title': 'The MSR SYSTEM for IWSLT 2011 evaluation.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/iwslt/HeADAHNWH11',
           'venue': 'IWSLT',
           'year': '2011'},
  'url': 'URL#3358537'},
 {'@id': '3360170',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '73/8333',
                                   'text': 'Suong H. Nguyen'},
                                  {'@pid': '22/58',
                                   'text': 'Lachlan L. H. Andrew'},
                                  {'@pid': '20/5601', 'text': 'Hai Le Vu'}]},
           'doi': '10.1109/LCN.2011.6115165',
           'ee': 'https://doi.org/10.1109/LCN.2011.6115165',
           'key': 'conf/lcn/NguyenAV11',
           'pages': '109-116',
           'title': 'Service differentiation without prioritization in IEEE '
                    '802.11 WLANs.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/lcn/NguyenAV11',
           'venue': 'LCN',
           'year': '2011'},
  'url': 'URL#3360170'},
 {'@id': '3372564',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '71/5735', 'text': 'Keshav Pingali'},
                                  {'@pid': '48/4701', 'text': 'Donald Nguyen'},
                                  {'@pid': '47/1003',
                                   'text': 'Milind Kulkarni 0001'},
                                  {'@pid': '93/903',
                                   'text': 'Martin Burtscher'},
                                  {'@pid': '92/7751',
                                   'text': 'Muhammad Amber Hassaan'},
                                  {'@pid': '38/9698', 'text': 'Rashid Kaleem'},
                                  {'@pid': '91/7544',
                                   'text': 'Tsung-Hsien Lee'},
                                  {'@pid': '15/2621',
                                   'text': 'Andrew Lenharth'},
                                  {'@pid': '24/120', 'text': 'Roman Manevich'},
                                  {'@pid': 'm/MarioMendezLojo',
                                   'text': 'Mario Méndez-Lojo'},
                                  {'@pid': '06/5033',
                                   'text': 'Dimitrios Prountzos'},
                                  {'@pid': '83/3853', 'text': 'Xin Sui'}]},
           'doi': '10.1145/1993498.1993501',
           'ee': 'https://doi.org/10.1145/1993498.1993501',
           'key': 'conf/pldi/PingaliNKBHKLLMMPS11',
           'pages': '12-25',
           'title': 'The tao of parallelism in algorithms.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/pldi/PingaliNKBHKLLMMPS11',
           'venue': 'PLDI',
           'year': '2011'},
  'url': 'URL#3372564'},
 {'@id': '3384976',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '60/9687', 'text': 'Bangdao Chen'},
                                  {'@pid': '21/10309',
                                   'text': 'Long Hoang Nguyen 0001'},
                                  {'@pid': 'r/AWRoscoe',
                                   'text': 'Andrew William Roscoe'}]},
           'doi': '10.1007/978-3-642-25867-1_10',
           'ee': 'https://doi.org/10.1007/978-3-642-25867-1_10',
           'key': 'conf/spw/ChenNR11',
           'pages': '115-125',
           'title': 'When Context Is Better Than Identity - Authentication by '
                    'Context Using Empirical Channels.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/spw/ChenNR11',
           'venue': 'Security Protocols Workshop',
           'year': '2011'},
  'url': 'URL#3384976'},
 {'@id': '3415579',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '21/10309',
                                   'text': 'Long Hoang Nguyen 0001'},
                                  {'@pid': 'r/AWRoscoe',
                                   'text': 'Andrew William Roscoe'}]},
           'ee': 'http://eprint.iacr.org/2011/116',
           'key': 'journals/iacr/NguyenR11',
           'pages': '116',
           'title': 'On the construction of digest functions for manual '
                    'authentication protocols.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/iacr/NguyenR11',
           'venue': 'IACR Cryptol. ePrint Arch.',
           'volume': '2011',
           'year': '2011'},
  'url': 'URL#3415579'},
 {'@id': '3471652',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '38/234',
                                   'text': 'Brian S. Leibowitz'},
                                  {'@pid': '78/2056', 'text': 'Robert Palmer'},
                                  {'@pid': '86/5771', 'text': 'John Poulton'},
                                  {'@pid': '28/10712', 'text': 'Yohan Frans'},
                                  {'@pid': '96/1774', 'text': 'Simon Li'},
                                  {'@pid': '05/4137-2',
                                   'text': 'John M. Wilson 0002'},
                                  {'@pid': '06/10711',
                                   'text': 'Michael Bucher'},
                                  {'@pid': '05/10710',
                                   'text': 'Andrew M. Fuller'},
                                  {'@pid': '12/3316', 'text': 'John G. Eyles'},
                                  {'@pid': '87/687', 'text': 'Marko Aleksic'},
                                  {'@pid': '94/499', 'text': 'Trey Greer'},
                                  {'@pid': '66/1339', 'text': 'Nhat Nguyen'}]},
           'doi': '10.1109/JSSC.2010.2040230',
           'ee': 'https://doi.org/10.1109/JSSC.2010.2040230',
           'key': 'journals/jssc/LeibowitzPPFLWBFEAGN10',
           'number': '4',
           'pages': '889-898',
           'title': 'A 4.3 GB/s Mobile Memory Interface With Power-Efficient '
                    'Bandwidth Scaling.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/jssc/LeibowitzPPFLWBFEAGN10',
           'venue': 'IEEE J. Solid State Circuits',
           'volume': '45',
           'year': '2010'},
  'url': 'URL#3471652'},
 {'@id': '3532966',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '06/6439',
                                   'text': 'Anh Nguyen-Tuong'},
                                  {'@pid': '58/5765-2',
                                   'text': 'Andrew Wang 0002'},
                                  {'@pid': '88/5011', 'text': 'Jason Hiser'},
                                  {'@pid': '87/4375', 'text': 'John C. Knight'},
                                  {'@pid': 'd/JWDavidson',
                                   'text': 'Jack W. Davidson'}]},
           'doi': '10.1145/1842752.1842788',
           'ee': 'https://doi.org/10.1145/1842752.1842788',
           'key': 'conf/ecsa/Nguyen-TuongWHKD10',
           'pages': '170-174',
           'title': 'On the effectiveness of the metamorphic shield.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/ecsa/Nguyen-TuongWHKD10',
           'venue': 'ECSA Companion Volume',
           'year': '2010'},
  'url': 'URL#3532966'},
 {'@id': '3536534',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '05/2943', 'text': 'Fábio Oliveira'},
                                  {'@pid': '37/49', 'text': 'Andrew Tjang'},
                                  {'@pid': '85/2722',
                                   'text': 'Ricardo Bianchini'},
                                  {'@pid': '55/3942',
                                   'text': 'Richard P. Martin'},
                                  {'@pid': 'n/ThuDNguyen',
                                   'text': 'Thu D. Nguyen'}]},
           'doi': '10.1145/1755913.1755924',
           'ee': 'https://doi.org/10.1145/1755913.1755924',
           'key': 'conf/eurosys/OliveiraTBMN10',
           'pages': '83-96',
           'title': 'Barricade - defending systems against operator mistakes.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/eurosys/OliveiraTBMN10',
           'venue': 'EuroSys',
           'year': '2010'},
  'url': 'URL#3536534'},
 {'@id': '3585181',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '30/2562',
                                   'text': 'Elisabeth A. Nguyen'},
                                  {'@pid': '62/8782',
                                   'text': 'Carlos F. Rexach'},
                                  {'@pid': '95/8782',
                                   'text': 'David P. Thorpe'},
                                  {'@pid': '94/8782',
                                   'text': 'Andrew E. Walther'}]},
           'doi': '10.1109/ISSRE.2010.49',
           'ee': 'https://doi.org/10.1109/ISSRE.2010.49',
           'key': 'conf/issre/NguyenRTW10',
           'pages': '220-228',
           'title': 'The Importance of Data Quality in Software Reliability '
                    'Modeling.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/issre/NguyenRTW10',
           'venue': 'ISSRE',
           'year': '2010'},
  'url': 'URL#3585181'},
 {'@id': '3588390',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '60/9687', 'text': 'Chen Bangdao'},
                                  {'@pid': 'r/AWRoscoe',
                                   'text': 'A. W. Roscoe 0001'},
                                  {'@pid': '32/7188', 'text': 'Ronald Kainda'},
                                  {'@pid': '21/10309',
                                   'text': 'Long Hoang Nguyen 0001'}]},
           'key': 'conf/iwsec/BangdaoRKN10',
           'pages': '94-109',
           'title': 'The Missing Link - Human Interactive Security Protocols '
                    'in Mobile Payment.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/iwsec/BangdaoRKN10',
           'venue': 'IWSEC',
           'year': '2010'},
  'url': 'URL#3588390'},
 {'@id': '3608531',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '01/9034',
                                   'text': 'Andrew V. Nguyen'},
                                  {'@pid': '43/6402',
                                   'text': 'Donna L. Hudson'},
                                  {'@pid': '08/1501',
                                   'text': 'Maurice E. Cohen'}]},
           'key': 'conf/sede/NguyenHC10',
           'pages': '366-369',
           'title': 'Hadoop and MapReduce for Storage and Processing of '
                    'Physiological Data.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/sede/NguyenHC10',
           'venue': 'SEDE',
           'year': '2010'},
  'url': 'URL#3608531'},
 {'@id': '3621293',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '73/8333',
                                   'text': 'Suong H. Nguyen'},
                                  {'@pid': '20/5601', 'text': 'Hai Le Vu'},
                                  {'@pid': '22/58',
                                   'text': 'Lachlan L. H. Andrew'}]},
           'doi': '10.1109/WCNC.2010.5506226',
           'ee': 'https://doi.org/10.1109/WCNC.2010.5506226',
           'key': 'conf/wcnc/NguyenVA10',
           'pages': '1-6',
           'title': 'Packet Size Variability Affects Collisions and Energy '
                    'Efficiency in WLANs.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/wcnc/NguyenVA10',
           'venue': 'WCNC',
           'year': '2010'},
  'url': 'URL#3621293'},
 {'@id': '3640715',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '21/10309',
                                   'text': 'Long Hoang Nguyen 0001'},
                                  {'@pid': 'r/AWRoscoe',
                                   'text': 'A. W. Roscoe 0001'}]},
           'ee': 'http://eprint.iacr.org/2010/206',
           'key': 'journals/iacr/NguyenR10',
           'pages': '206',
           'title': 'Authentication protocols based on low-bandwidth '
                    'unspoofable channels - a comparative survey.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/iacr/NguyenR10',
           'venue': 'IACR Cryptol. ePrint Arch.',
           'volume': '2010',
           'year': '2010'},
  'url': 'URL#3640715'},
 {'@id': '3719720',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '01/6410', 'text': 'Wen Hu'},
                                  {'@pid': '04/6227',
                                   'text': 'Nirupama Bulusu'},
                                  {'@pid': '79/812', 'text': 'Chun Tung Chou'},
                                  {'@pid': 'j/SanjayJha',
                                   'text': 'Sanjay K. Jha'},
                                  {'@pid': 't/AndrewTaylor',
                                   'text': 'Andrew Taylor'},
                                  {'@pid': '23/2192',
                                   'text': 'Van Nghia Tran'}]},
           'doi': '10.1145/1464420.1464424',
           'ee': 'https://doi.org/10.1145/1464420.1464424',
           'key': 'journals/tosn/HuBCJTT09',
           'number': '1',
           'pages': '4:1-4:28',
           'title': 'Design and evaluation of a hybrid sensor network for cane '
                    'toad monitoring.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/tosn/HuBCJTT09',
           'venue': 'ACM Trans. Sens. Networks',
           'volume': '5',
           'year': '2009'},
  'url': 'URL#3719720'},
 {'@id': '3726335',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '44/6047', 'text': 'Binh Nguyen'},
                                  {'@pid': '61/3779',
                                   'text': 'Andrew Skabar'}]},
           'doi': '10.1007/978-3-642-10427-5_8',
           'ee': 'https://doi.org/10.1007/978-3-642-10427-5_8',
           'key': 'conf/acal/NguyenS09',
           'pages': '73-85',
           'title': 'Evolutionary Intelligence and Communication in Societies '
                    'of Virtually Embodied Agents.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/acal/NguyenS09',
           'venue': 'ACAL',
           'year': '2009'},
  'url': 'URL#3726335'},
 {'@id': '3742024',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '49/6876',
                                   'text': 'S. Camille Peres'},
                                  {'@pid': '71/1018', 'text': 'Vickie Nguyen'},
                                  {'@pid': '39/1520',
                                   'text': 'Philip T. Kortum'},
                                  {'@pid': '38/6282', 'text': 'Magdy Akladios'},
                                  {'@pid': '60/7018', 'text': 'S. Bart Wood'},
                                  {'@pid': '43/5554',
                                   'text': 'Andrew Muddimer'}]},
           'doi': '10.1145/1520340.1520599',
           'ee': 'https://doi.org/10.1145/1520340.1520599',
           'key': 'conf/chi/PeresNKAWM09',
           'pages': '3949-3954',
           'title': 'Software ergonomics - relating subjective and objective '
                    'measures.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/chi/PeresNKAWM09',
           'venue': 'CHI Extended Abstracts',
           'year': '2009'},
  'url': 'URL#3742024'},
 {'@id': '3807377',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '16/2862', 'text': 'Lane Schwartz'},
                                  {'@pid': '01/16', 'text': 'Luan Nguyen'},
                                  {'@pid': '51/6834', 'text': 'Andrew Exley'},
                                  {'@pid': '21/41',
                                   'text': 'William Schuler'}]},
           'doi': '10.1145/1502650.1502682',
           'ee': 'https://doi.org/10.1145/1502650.1502682',
           'key': 'conf/iui/SchwartzNES09',
           'pages': '217-226',
           'title': 'Positive effects of redundant descriptions in an '
                    'interactive semantic speech interface.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/iui/SchwartzNES09',
           'venue': 'IUI',
           'year': '2009'},
  'url': 'URL#3807377'},
 {'@id': '3834293',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '37/49', 'text': 'Andrew Tjang'},
                                  {'@pid': '05/2943', 'text': 'Fábio Oliveira'},
                                  {'@pid': '85/2722',
                                   'text': 'Ricardo Bianchini'},
                                  {'@pid': '55/3942',
                                   'text': 'Richard P. Martin'},
                                  {'@pid': 'n/ThuDNguyen',
                                   'text': 'Thu D. Nguyen'}]},
           'doi': '10.1109/SRDS.2009.24',
           'ee': 'https://doi.org/10.1109/SRDS.2009.24',
           'key': 'conf/srds/TjangOBMN09',
           'pages': '61-70',
           'title': 'Model-Based Validation for Internet Services.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/srds/TjangOBMN09',
           'venue': 'SRDS',
           'year': '2009'},
  'url': 'URL#3834293'},
 {'@id': '3861562',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '21/10309',
                                   'text': 'Long Hoang Nguyen 0001'},
                                  {'@pid': 'r/AWRoscoe',
                                   'text': 'A. W. Roscoe 0001'}]},
           'ee': 'http://eprint.iacr.org/2009/003',
           'key': 'journals/iacr/NguyenR09',
           'pages': '3',
           'title': 'Separating two roles of hashing in one-way message '
                    'authentication.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/iacr/NguyenR09',
           'venue': 'IACR Cryptol. ePrint Arch.',
           'volume': '2009',
           'year': '2009'},
  'url': 'URL#3861562'},
 {'@id': '3861563',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '21/10309',
                                   'text': 'Long Hoang Nguyen 0001'},
                                  {'@pid': 'r/AWRoscoe',
                                   'text': 'A. W. Roscoe 0001'}]},
           'ee': 'http://eprint.iacr.org/2009/150',
           'key': 'journals/iacr/NguyenR09a',
           'pages': '150',
           'title': 'Efficient group authentication protocols based on human '
                    'interaction.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/iacr/NguyenR09a',
           'venue': 'IACR Cryptol. ePrint Arch.',
           'volume': '2009',
           'year': '2009'},
  'url': 'URL#3861563'},
 {'@id': '3861564',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '21/10309',
                                   'text': 'Long Hoang Nguyen 0001'},
                                  {'@pid': 'r/AWRoscoe',
                                   'text': 'A. W. Roscoe 0001'}]},
           'ee': 'http://eprint.iacr.org/2009/153',
           'key': 'journals/iacr/NguyenR09b',
           'pages': '153',
           'title': 'New combinatorial bounds for universal hash functions.',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/iacr/NguyenR09b',
           'venue': 'IACR Cryptol. ePrint Arch.',
           'volume': '2009',
           'year': '2009'},
  'url': 'URL#3861564'},
 {'@id': '3888872',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '21/10309',
                                   'text': 'Long Hoang Nguyen 0001'},
                                  {'@pid': 'r/AWRoscoe',
                                   'text': 'A. W. Roscoe 0001'}]},
           'doi': '10.1016/J.IC.2007.07.010',
           'ee': 'https://doi.org/10.1016/j.ic.2007.07.010',
           'key': 'journals/iandc/NguyenR08',
           'number': '2-4',
           'pages': '250-271',
           'title': 'Authenticating ad hoc networks by comparison of short '
                    'digests.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/iandc/NguyenR08',
           'venue': 'Inf. Comput.',
           'volume': '206',
           'year': '2008'},
  'url': 'URL#3888872'},
 {'@id': '3923736',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '25/3221', 'text': 'Puneet Kapur'},
                                  {'@pid': '64/6167', 'text': 'An Ngo-The'},
                                  {'@pid': '42/6131', 'text': 'Günther Ruhe'},
                                  {'@pid': '87/1676', 'text': 'Andrew Smith'}]},
           'doi': '10.1002/SMR.379',
           'ee': 'https://doi.org/10.1002/smr.379',
           'key': 'journals/smr/KapurNRS08',
           'number': '5',
           'pages': '365-386',
           'title': 'Optimized staffing for product releases and its '
                    'application at Chartwell Technology.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/smr/KapurNRS08',
           'venue': 'J. Softw. Maintenance Res. Pract.',
           'volume': '20',
           'year': '2008'},
  'url': 'URL#3923736'},
 {'@id': '3924151',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': 'b/LadislauBoloni',
                                   'text': 'Ladislau Bölöni'},
                                  {'@pid': '42/5366',
                                   'text': 'Linus J. Luotsinen'},
                                  {'@pid': '38/3900',
                                   'text': 'Joakim N. Ekblad'},
                                  {'@pid': '96/5542',
                                   'text': 'T. Ryan Fitz-Gibbon'},
                                  {'@pid': '16/5174',
                                   'text': 'Charles Andrew Houchin'},
                                  {'@pid': '73/4740',
                                   'text': 'Justin Logan Key'},
                                  {'@pid': '61/1306', 'text': 'Majid Ali Khan'},
                                  {'@pid': '48/3616', 'text': 'Jin Lyu'},
                                  {'@pid': '04/1425', 'text': 'Johann Nguyen'},
                                  {'@pid': '63/567', 'text': 'Rex R. Oleson'},
                                  {'@pid': '36/1718', 'text': 'Gary Stein'},
                                  {'@pid': '96/874',
                                   'text': 'Scott A. Vander Weide'},
                                  {'@pid': '67/4738', 'text': 'Viet Trinh'}]},
           'doi': '10.1002/SPE.832',
           'ee': 'https://doi.org/10.1002/spe.832',
           'key': 'journals/spe/BoloniLEFHKKLNOSWT08',
           'number': '3',
           'pages': '259-305',
           'title': 'A comparison study of 12 paradigms for developing '
                    'embodied agents.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/spe/BoloniLEFHKKLNOSWT08',
           'venue': 'Softw. Pract. Exp.',
           'volume': '38',
           'year': '2008'},
  'url': 'URL#3924151'},
 {'@id': '3967118',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '03/1909',
                                   'text': 'Muhammad Ali Babar'},
                                  {'@pid': '66/4119',
                                   'text': 'Andrew Northway'},
                                  {'@pid': '74/3329', 'text': 'Ian Gorton'},
                                  {'@pid': '41/4856', 'text': 'Paul Heuer'},
                                  {'@pid': '29/5255', 'text': 'Thong Nguyen'}]},
           'doi': '10.1109/ECBS.2008.27',
           'ee': 'https://doi.org/10.1109/ECBS.2008.27',
           'key': 'conf/ecbs/BabarNGHN08',
           'pages': '105-113',
           'title': 'Introducing Tool Support for Managing Architectural '
                    'Knowledge - An Experience Report.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/ecbs/BabarNGHN08',
           'venue': 'ECBS',
           'year': '2008'},
  'url': 'URL#3967118'},
 {'@id': '4123348',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '116/5682',
                                   'text': 'T. D. Barbara Nguyen-Vu'},
                                  {'@pid': '44/2144', 'text': 'Hua Chen'},
                                  {'@pid': '116/5534',
                                   'text': 'Alan M. Cassell'},
                                  {'@pid': '67/6198',
                                   'text': 'Russell J. Andrews'},
                                  {'@pid': '68/6168', 'text': 'M. Meyyappan'},
                                  {'@pid': '116/1011-30',
                                   'text': 'Jun Li 0030'}]},
           'doi': '10.1109/TBME.2007.891169',
           'ee': 'https://doi.org/10.1109/TBME.2007.891169',
           'key': 'journals/tbe/Nguyen-VuCCAML07',
           'number': '6',
           'pages': '1121-1128',
           'title': 'Vertically Aligned Carbon Nanofiber Architecture as a '
                    'Multifunctional 3-D Neural Electrical Interface.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/tbe/Nguyen-VuCCAML07',
           'venue': 'IEEE Trans. Biomed. Eng.',
           'volume': '54',
           'year': '2007'},
  'url': 'URL#4123348'},
 {'@id': '4173842',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '75/3011',
                                   'text': 'Jonathan C. Rowanhill'},
                                  {'@pid': '13/6090',
                                   'text': 'Glenn S. Wasson'},
                                  {'@pid': '07/1930', 'text': 'Zach Hill'},
                                  {'@pid': '13/3150', 'text': 'Jim Basney'},
                                  {'@pid': '93/80', 'text': 'Yuliyan Kiryakov'},
                                  {'@pid': '87/4375', 'text': 'John C. Knight'},
                                  {'@pid': '06/6439',
                                   'text': 'Anh Nguyen-Tuong'},
                                  {'@pid': 'g/AndrewSGrimshaw',
                                   'text': 'Andrew S. Grimshaw'},
                                  {'@pid': 'h/MartyHumphrey',
                                   'text': 'Marty Humphrey'}]},
           'doi': '10.1007/978-3-540-75444-2_29',
           'ee': 'https://doi.org/10.1007/978-3-540-75444-2_29',
           'key': 'conf/hpcc/RowanhillWHBKKNGH07',
           'pages': '260-272',
           'title': 'Dynamic System-Wide Reconfiguration of Grid Deployments '
                    'in Response to Intrusion Detections.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/hpcc/RowanhillWHBKKNGH07',
           'venue': 'HPCC',
           'year': '2007'},
  'url': 'URL#4173842'},
 {'@id': '4206377',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '38/234',
                                   'text': 'Brian S. Leibowitz'},
                                  {'@pid': '144/2046', 'text': 'Jade Kizer'},
                                  {'@pid': '18/11177', 'text': 'Haechang Lee'},
                                  {'@pid': '88/5560', 'text': 'Fred Chen'},
                                  {'@pid': '11/765', 'text': 'Andrew Ho'},
                                  {'@pid': '26/1765', 'text': 'Metha Jeeradit'},
                                  {'@pid': '21/8468', 'text': 'Akash Bansal'},
                                  {'@pid': '94/499', 'text': 'Trey Greer'},
                                  {'@pid': '96/1774', 'text': 'Simon Li'},
                                  {'@pid': '03/2889',
                                   'text': 'Ramin Farjad-Rad'},
                                  {'@pid': '91/11128',
                                   'text': 'William F. Stonecypher'},
                                  {'@pid': '28/10712', 'text': 'Yohan Frans'},
                                  {'@pid': '98/6507', 'text': 'Barry Daly'},
                                  {'@pid': '37/10276', 'text': 'Fred Heaton'},
                                  {'@pid': '09/4820',
                                   'text': 'Bruno W. Garlepp'},
                                  {'@pid': '144/1985',
                                   'text': 'Carl W. Werner'},
                                  {'@pid': '66/1339', 'text': 'Nhat Nguyen'},
                                  {'@pid': '17/6937',
                                   'text': 'Vladimir Stojanovic'},
                                  {'@pid': '51/10186', 'text': 'Jared Zerbe'}]},
           'doi': '10.1109/ISSCC.2007.373377',
           'ee': 'https://doi.org/10.1109/ISSCC.2007.373377',
           'key': 'conf/isscc/LeibowitzKLCHJBGLFSFDHGWNSZ07',
           'pages': '228-599',
           'title': 'A 7.5Gb/s 10-Tap DFE Receiver with First Tap Partial '
                    'Response, Spectrally Gated Adaptation, and 2nd-Order '
                    'Data-Filtered CDR.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/isscc/LeibowitzKLCHJBGLFSFDHGWNSZ07',
           'venue': 'ISSCC',
           'year': '2007'},
  'url': 'URL#4206377'},
 {'@id': '4254579',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '57/4259',
                                   'text': 'Cheun Ngen Chong'},
                                  {'@pid': '75/5681', 'text': 'Ricardo Corin'},
                                  {'@pid': '56/5087', 'text': 'Jeroen Doumen'},
                                  {'@pid': 'e/SandroEtalle',
                                   'text': 'Sandro Etalle'},
                                  {'@pid': 'h/PieterHHartel',
                                   'text': 'Pieter H. Hartel'},
                                  {'@pid': '62/4404', 'text': 'Yee Wei Law'},
                                  {'@pid': '14/5477',
                                   'text': 'Andrew Tokmakoff'}]},
           'doi': '10.1007/BF03219910',
           'ee': 'https://doi.org/10.1007/BF03219910',
           'key': 'journals/adt/ChongCDEHLT06',
           'number': '3-4',
           'pages': '284-331',
           'title': 'LicenseScript - a logical language for digital rights '
                    'management.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/adt/ChongCDEHLT06',
           'venue': 'Ann. des Télécommunications',
           'volume': '61',
           'year': '2006'},
  'url': 'URL#4254579'},
 {'@id': '4273529',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '04/2451',
                                   'text': 'Wendy Belluomini'},
                                  {'@pid': '14/2690', 'text': 'Damir Jamsek'},
                                  {'@pid': '33/5498',
                                   'text': 'Andrew K. Martin'},
                                  {'@pid': '14/2072',
                                   'text': 'Chandler McDowell'},
                                  {'@pid': '91/5357',
                                   'text': 'Robert K. Montoye'},
                                  {'@pid': '08/1123', 'text': 'Hung C. Ngo'},
                                  {'@pid': '94/3018', 'text': 'Jun Sawada'}]},
           'doi': '10.1147/RD.502.0277',
           'ee': 'https://doi.org/10.1147/rd.502.0277',
           'key': 'journals/ibmrd/BelluominiJMMMNS06',
           'number': '2-3',
           'pages': '277-286',
           'title': 'Limited switch dynamic logic circuits for high-speed '
                    'low-power circuit design.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/ibmrd/BelluominiJMMMNS06',
           'venue': 'IBM J. Res. Dev.',
           'volume': '50',
           'year': '2006'},
  'url': 'URL#4273529'},
 {'@id': '4324687',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '37/49', 'text': 'Andrew Tjang'},
                                  {'@pid': '05/2943', 'text': 'Fábio Oliveira'},
                                  {'@pid': '55/3942',
                                   'text': 'Richard P. Martin'},
                                  {'@pid': 'n/ThuDNguyen',
                                   'text': 'Thu D. Nguyen'}]},
           'doi': '10.1145/1215995.1216003',
           'ee': 'https://doi.org/10.1145/1215995.1216003',
           'key': 'conf/asplos/TjangOMN06',
           'pages': '8',
           'title': 'A - an assertion language for distributed systems.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/asplos/TjangOMN06',
           'venue': 'PLOS',
           'year': '2006'},
  'url': 'URL#4324687'},
 {'@id': '4325041',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '64/6229',
                                   'text': 'Andrew Guillory'},
                                  {'@pid': '70/1552', 'text': 'Hai Nguyen'},
                                  {'@pid': 'b/TuckerRBalch',
                                   'text': 'Tucker R. Balch'},
                                  {'@pid': 'i/LCIsbell',
                                   'text': 'Charles Lee Isbell Jr.'}]},
           'doi': '10.1145/1160633.1160774',
           'ee': 'https://doi.org/10.1145/1160633.1160774',
           'key': 'conf/atal/GuilloryNBI06',
           'pages': '795-797',
           'title': 'Learning executable agent behaviors from observation.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/atal/GuilloryNBI06',
           'venue': 'AAMAS',
           'year': '2006'},
  'url': 'URL#4325041'},
 {'@id': '4336730',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '41/4379',
                                   'text': 'Charles J. Alpert'},
                                  {'@pid': 'k/AndrewBKahng',
                                   'text': 'Andrew B. Kahng'},
                                  {'@pid': 's/CliffNSze',
                                   'text': 'Cliff C. N. Sze'},
                                  {'@pid': '36/2168', 'text': 'Qinke Wang'}]},
           'doi': '10.1145/1146909.1147012',
           'ee': 'https://doi.org/10.1145/1146909.1147012',
           'key': 'conf/dac/AlpertKSW06',
           'pages': '389-392',
           'title': 'Timing-driven Steiner trees are (practically) free.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/dac/AlpertKSW06',
           'venue': 'DAC',
           'year': '2006'},
  'url': 'URL#4336730'},
 {'@id': '4400679',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '42/5366',
                                   'text': 'Linus J. Luotsinen'},
                                  {'@pid': '38/3900',
                                   'text': 'Joakim N. Ekblad'},
                                  {'@pid': '96/5542',
                                   'text': 'T. Ryan Fitz-Gibbon'},
                                  {'@pid': '16/5174',
                                   'text': 'Charles Andrew Houchin'},
                                  {'@pid': '73/4740',
                                   'text': 'Justin Logan Key'},
                                  {'@pid': '61/1306', 'text': 'Majid Ali Khan'},
                                  {'@pid': '48/3616', 'text': 'Jin Lyu'},
                                  {'@pid': '04/1425', 'text': 'Johann Nguyen'},
                                  {'@pid': '63/567', 'text': 'Rex R. Oleson'},
                                  {'@pid': '36/1718', 'text': 'Gary Stein'},
                                  {'@pid': '96/874',
                                   'text': 'Scott A. Vander Weide'},
                                  {'@pid': '67/4738', 'text': 'Viet Trinh'},
                                  {'@pid': 'b/LadislauBoloni',
                                   'text': 'Ladislau Bölöni'}]},
           'doi': '10.1007/978-3-540-71956-4_6',
           'ee': 'https://doi.org/10.1007/978-3-540-71956-4_6',
           'key': 'conf/promas/LuotsinenEFHKKLNOSWTB06',
           'pages': '93-112',
           'title': 'Comparing Apples with Oranges - Evaluating Twelve '
                    'Paradigms of Agency.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/promas/LuotsinenEFHKKLNOSWTB06',
           'venue': 'PROMAS',
           'year': '2006'},
  'url': 'URL#4400679'},
 {'@id': '4456428',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '38/3622', 'text': 'Steve Haga'},
                                  {'@pid': '54/3551', 'text': 'Andrew Webber'},
                                  {'@pid': '64/6544', 'text': 'Yi Zhang'},
                                  {'@pid': '40/5631', 'text': 'Nghi Nguyen'},
                                  {'@pid': 'b/RajeevBarua',
                                   'text': 'Rajeev Barua'}]},
           'ee': 'http://content.iospress.com/articles/journal-of-embedded-computing/jec00043',
           'key': 'journals/jec/HagaWZNB05',
           'number': '3',
           'pages': '415-433',
           'title': 'Reducing code size in VLIW instruction scheduling.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/jec/HagaWZNB05',
           'venue': 'J. Embed. Comput.',
           'volume': '1',
           'year': '2005'},
  'url': 'URL#4456428'},
 {'@id': '4519792',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': 'g/AndrewSGrimshaw',
                                   'text': 'Andrew S. Grimshaw'},
                                  {'@pid': 'h/MartyHumphrey',
                                   'text': 'Marty A. Humphrey'},
                                  {'@pid': '87/4375', 'text': 'John C. Knight'},
                                  {'@pid': '06/6439',
                                   'text': 'Anh Nguyen-Tuong'},
                                  {'@pid': '75/3011',
                                   'text': 'Jonathan C. Rowanhill'},
                                  {'@pid': '13/6090',
                                   'text': 'Glenn S. Wasson'},
                                  {'@pid': '13/3150', 'text': 'Jim Basney'}]},
           'doi': '10.1007/11428848_94',
           'ee': 'https://doi.org/10.1007/11428848_94',
           'key': 'conf/iccS/GrimshawHKNRWB05',
           'pages': '729-737',
           'title': 'The Development of Dependable and Survivable Grids.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/iccS/GrimshawHKNRWB05',
           'venue': 'International Conference on Computational Science',
           'year': '2005'},
  'url': 'URL#4519792'},
 {'@id': '4536415',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '01/6410', 'text': 'Wen Hu'},
                                  {'@pid': '23/2192', 'text': 'Van Nghia Tran'},
                                  {'@pid': '04/6227',
                                   'text': 'Nirupama Bulusu'},
                                  {'@pid': '79/812', 'text': 'Chun Tung Chou'},
                                  {'@pid': 'j/SanjayJha',
                                   'text': 'Sanjay K. Jha'},
                                  {'@pid': 't/AndrewTaylor',
                                   'text': 'Andrew Taylor'}]},
           'doi': '10.1109/IPSN.2005.1440984',
           'ee': 'https://doi.org/10.1109/IPSN.2005.1440984',
           'key': 'conf/ipsn/HuTBCJT05',
           'pages': '503-508',
           'title': 'The design and evaluation of a hybrid sensor network for '
                    'cane-toad monitoring.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/ipsn/HuTBCJT05',
           'venue': 'IPSN',
           'year': '2005'},
  'url': 'URL#4536415'},
 {'@id': '4559692',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '01/6410', 'text': 'Wen Hu'},
                                  {'@pid': '04/6227',
                                   'text': 'Nirupama Bulusu'},
                                  {'@pid': '79/812', 'text': 'Chun Tung Chou'},
                                  {'@pid': 'j/SanjayJha',
                                   'text': 'Sanjay K. Jha'},
                                  {'@pid': 't/AndrewTaylor',
                                   'text': 'Andrew Taylor'},
                                  {'@pid': '23/2192',
                                   'text': 'Van Nghia Tran'}]},
           'doi': '10.1145/1098918.1098970',
           'ee': 'https://doi.org/10.1145/1098918.1098970',
           'key': 'conf/sensys/HuBCJTT05',
           'pages': '305',
           'title': 'A hybrid sensor network for cane-toad monitoring.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/sensys/HuBCJTT05',
           'venue': 'SenSys',
           'year': '2005'},
  'url': 'URL#4559692'},
 {'@id': '4575236',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '72/5342', 'text': 'Kim Nguyen'},
                                  {'@pid': '174/6375',
                                   'text': 'Andrew Weigl'}]},
           'doi': '10.1201/9781420034981.PT7',
           'ee': 'https://doi.org/10.1201/9781420034981.pt7',
           'key': 'reference/crc/NguyenW05',
           'pages': '616-646',
           'title': 'Fast Arithmetic in Hardware.',
           'type': 'Reference Works',
           'url': 'https://dblp.org/rec/reference/crc/NguyenW05',
           'venue': 'Handbook of Elliptic and Hyperelliptic Curve Cryptography',
           'year': '2005'},
  'url': 'URL#4575236'},
 {'@id': '4646679',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': 'd/GritDenker',
                                   'text': 'Grit Denker'},
                                  {'@pid': '58/2247', 'text': 'Son Nguyen'},
                                  {'@pid': '35/150', 'text': 'Andrew Ton'}]},
           'doi': '10.1007/978-3-540-25956-5_17',
           'ee': 'https://doi.org/10.1007/978-3-540-25956-5_17',
           'key': 'conf/esws/DenkerNT04',
           'pages': '240-253',
           'title': 'OWL-S Semantics of Security Web Services - a Case Study.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/esws/DenkerNT04',
           'venue': 'ESWS',
           'year': '2004'},
  'url': 'URL#4646679'},
 {'@id': '4684790',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '10/9254',
                                   'text': 'Robert H. Dolin'},
                                  {'@pid': '76/11528',
                                   'text': 'John E. Mattison'},
                                  {'@pid': '116/1532', 'text': 'Simon P. Cohn'},
                                  {'@pid': '04/1599',
                                   'text': 'Keith E. Campbell'},
                                  {'@pid': '200/3708',
                                   'text': 'Andrew M. Wiesenthal'},
                                  {'@pid': '200/3853',
                                   'text': 'Brad Hochhalter'},
                                  {'@pid': '200/3942', 'text': 'Diane Laberge'},
                                  {'@pid': '200/3878', 'text': 'Rita Barsoum'},
                                  {'@pid': '148/3726', 'text': 'James Shalaby'},
                                  {'@pid': '149/5296', 'text': 'Alan Abilla'},
                                  {'@pid': '200/3772',
                                   'text': 'Robert J. Clements'},
                                  {'@pid': '02/6895',
                                   'text': 'Carol M. Correia'},
                                  {'@pid': '200/3819', 'text': 'Diane Esteva'},
                                  {'@pid': '200/3744',
                                   'text': 'John M. Fedack'},
                                  {'@pid': '149/5519',
                                   'text': 'Bruce J. Goldberg'},
                                  {'@pid': '200/3925',
                                   'text': 'Sridhar Gopalarao'},
                                  {'@pid': '200/3839', 'text': 'Eza Hafeza'},
                                  {'@pid': '155/8462', 'text': 'Peter Hendler'},
                                  {'@pid': '200/3888',
                                   'text': 'Enrique Hernandez'},
                                  {'@pid': '200/3882', 'text': 'Ron Kamangar'},
                                  {'@pid': '200/3843',
                                   'text': 'Rafique A. Khan'},
                                  {'@pid': '200/3775',
                                   'text': 'Georgina Kurtovich'},
                                  {'@pid': '200/3915',
                                   'text': 'Gerry Lazzareschi'},
                                  {'@pid': '200/3737', 'text': 'Moon H. Lee'},
                                  {'@pid': '200/3812', 'text': 'Tracy Lee'},
                                  {'@pid': '149/8621', 'text': 'David H. Levy'},
                                  {'@pid': '149/5408',
                                   'text': 'Jonathan Y. Lukoff'},
                                  {'@pid': '200/3368',
                                   'text': 'Cyndie Lundberg'},
                                  {'@pid': '200/3755',
                                   'text': 'Michael P. Madden'},
                                  {'@pid': '200/3907',
                                   'text': 'Trongtu L. Ngo'},
                                  {'@pid': '200/3965', 'text': 'Ben T. Nguyen'},
                                  {'@pid': '200/3822',
                                   'text': 'Nikhilkumar P. Patel'},
                                  {'@pid': '200/3834', 'text': 'Jim Resneck'},
                                  {'@pid': '165/4643', 'text': 'David E. Ross'},
                                  {'@pid': '200/3867',
                                   'text': 'Kathleen M. Schwarz'},
                                  {'@pid': '200/3946',
                                   'text': 'Charles C. Selhorst'},
                                  {'@pid': '149/8841', 'text': 'Aaron Snyder'},
                                  {'@pid': '200/3829',
                                   'text': 'Mohamed I. Umarji'},
                                  {'@pid': '200/3767', 'text': 'Max Vilner'},
                                  {'@pid': '200/3927', 'text': 'Roy Zer-Chen'},
                                  {'@pid': '116/1610', 'text': 'Chris Zingo'}]},
           'doi': '10.3233/978-1-60750-949-3-346',
           'ee': 'https://doi.org/10.3233/978-1-60750-949-3-346',
           'key': 'conf/medinfo/DolinMCCWHLBSAC04',
           'pages': '346-350',
           'title': 'Kaiser Permanente&apos;s Convergent Medical Terminology.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/medinfo/DolinMCCWHLBSAC04',
           'venue': 'MedInfo',
           'year': '2004'},
  'url': 'URL#4684790'},
 {'@id': '4709290',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '18/6599',
                                   'text': 'Matthew J. Berryman'},
                                  {'@pid': '04/4860', 'text': 'Wei-Li Khoo'},
                                  {'@pid': '25/834', 'text': 'Hiep Nguyen'},
                                  {'@pid': '44/2659',
                                   'text': 'Erin O&apos;Neill'},
                                  {'@pid': '71/4553', 'text': 'Andrew Allison'},
                                  {'@pid': 'a/DerekAbbott',
                                   'text': 'Derek Abbott'}]},
           'ee': 'http://arxiv.org/abs/cs/0404017',
           'key': 'journals/corr/cs-NE-0404017',
           'title': 'Exploring tradeoffs in pleiotropy and redundancy using '
                    'evolutionary computing',
           'type': 'Informal Publications',
           'url': 'https://dblp.org/rec/journals/corr/cs-NE-0404017',
           'venue': 'CoRR',
           'volume': 'cs.NE/0404017',
           'year': '2004'},
  'url': 'URL#4709290'},
 {'@id': '4736890',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '11/3294',
                                   'text': 'Michael J. Lewis'},
                                  {'@pid': '05/3631', 'text': 'Adam Ferrari'},
                                  {'@pid': 'h/MartyHumphrey',
                                   'text': 'Marty Humphrey'},
                                  {'@pid': '28/663',
                                   'text': 'John F. Karpovich'},
                                  {'@pid': '68/3481', 'text': 'Mark M. Morgan'},
                                  {'@pid': '42/2728', 'text': 'Anand Natrajan'},
                                  {'@pid': '06/6439',
                                   'text': 'Anh Nguyen-Tuong'},
                                  {'@pid': '13/6090',
                                   'text': 'Glenn S. Wasson'},
                                  {'@pid': 'g/AndrewSGrimshaw',
                                   'text': 'Andrew S. Grimshaw'}]},
           'doi': '10.1016/S0743-7315(03)00012-1',
           'ee': 'https://doi.org/10.1016/S0743-7315(03)00012-1',
           'key': 'journals/jpdc/LewisFHKMNNWG03',
           'number': '5',
           'pages': '525-538',
           'title': 'Support for extensibility and site autonomy in the Legion '
                    'grid system object model.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/jpdc/LewisFHKMNNWG03',
           'venue': 'J. Parallel Distributed Comput.',
           'volume': '63',
           'year': '2003'},
  'url': 'URL#4736890'},
 {'@id': '4825470',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '83/6453',
                                   'text': 'Peggy Israel Doerschuk'},
                                  {'@pid': '161/6330',
                                   'text': 'Vinh D. Nguyen'},
                                  {'@pid': '161/6315',
                                   'text': 'Andrew L. Li'}]},
           'doi': '10.1023/A:1015731916039',
           'ee': 'https://doi.org/10.1023/A:1015731916039',
           'key': 'journals/apin/DoerschukNL02',
           'number': '1',
           'pages': '75-87',
           'title': 'A Scalable Intelligent Takeoff Controller for a Simulated '
                    'Running Jointed Leg.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/apin/DoerschukNL02',
           'venue': 'Appl. Intell.',
           'volume': '17',
           'year': '2002'},
  'url': 'URL#4825470'},
 {'@id': '4830124',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '42/2728', 'text': 'Anand Natrajan'},
                                  {'@pid': '06/6439',
                                   'text': 'Anh Nguyen-Tuong'},
                                  {'@pid': 'h/MartyHumphrey',
                                   'text': 'Marty Humphrey'},
                                  {'@pid': '81/4272',
                                   'text': 'Michael Herrick'},
                                  {'@pid': '68/4455',
                                   'text': 'Brian P. Clarke'},
                                  {'@pid': 'g/AndrewSGrimshaw',
                                   'text': 'Andrew S. Grimshaw'}]},
           'doi': '10.1002/CPE.672',
           'ee': 'https://doi.org/10.1002/cpe.672',
           'key': 'journals/concurrency/NatrajanNHHCG02',
           'number': '13-15',
           'pages': '1365-1394',
           'title': 'The Legion Grid Portal.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/concurrency/NatrajanNHHCG02',
           'venue': 'Concurr. Comput. Pract. Exp.',
           'volume': '14',
           'year': '2002'},
  'url': 'URL#4830124'},
 {'@id': '5048784',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '61/3214', 'text': 'Brian S. White'},
                                  {'@pid': 'g/AndrewSGrimshaw',
                                   'text': 'Andrew S. Grimshaw'},
                                  {'@pid': '06/6439',
                                   'text': 'Anh Nguyen-Tuong'}]},
           'doi': '10.1109/HPDC.2000.868647',
           'ee': 'https://doi.org/10.1109/HPDC.2000.868647',
           'key': 'conf/hpdc/WhiteGN00',
           'pages': '165-174',
           'title': 'Grid-based File Access - The Legion I/O Model.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/hpdc/WhiteGN00',
           'venue': 'HPDC',
           'year': '2000'},
  'url': 'URL#5048784'},
 {'@id': '5099414',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '06/6439',
                                   'text': 'Anh Nguyen-Tuong'},
                                  {'@pid': 'g/AndrewSGrimshaw',
                                   'text': 'Andrew S. Grimshaw'}]},
           'doi': '10.1142/S0129626499000268',
           'ee': 'https://doi.org/10.1142/S0129626499000268',
           'key': 'journals/ppl/Nguyen-TuongG99',
           'number': '2',
           'pages': '291-301',
           'title': 'Using Reflection for Incorporating Fault-Tolerance '
                    'Techniques into Distributed Applications.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/ppl/Nguyen-TuongG99',
           'venue': 'Parallel Process. Lett.',
           'volume': '9',
           'year': '1999'},
  'url': 'URL#5099414'},
 {'@id': '5167623',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '83/6453',
                                   'text': 'Peggy Israel Doerschuk'},
                                  {'@pid': '135/4565', 'text': 'W. E. Simon'},
                                  {'@pid': '161/6330',
                                   'text': 'Vinh D. Nguyen'},
                                  {'@pid': '161/6315',
                                   'text': 'Andrew L. Li'}]},
           'doi': '10.1109/100.692336',
           'ee': 'https://doi.org/10.1109/100.692336',
           'key': 'journals/ram/DoerschukSNL98',
           'number': '2',
           'pages': '12-21',
           'title': 'A modular approach to intelligent control of a simulated '
                    'jointed leg.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/ram/DoerschukSNL98',
           'venue': 'IEEE Robotics Autom. Mag.',
           'volume': '5',
           'year': '1998'},
  'url': 'URL#5167623'},
 {'@id': '5182003',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '89/3325', 'text': 'Vikram Chalana'},
                                  {'@pid': '36/6603',
                                   'text': 'Andrew G. Bruce'},
                                  {'@pid': '76/4829', 'text': 'Thien Nguyen'}]},
           'doi': '10.1117/12.304630',
           'ee': 'https://doi.org/10.1117/12.304630',
           'key': 'conf/drr/ChalanaBN98',
           'pages': '169-178',
           'title': 'Duplicate document detection in DocBrowse.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/drr/ChalanaBN98',
           'venue': 'Document Recognition',
           'year': '1998'},
  'url': 'URL#5182003'},
 {'@id': '5187071',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '06/6439',
                                   'text': 'Anh Nguyen-Tuong'},
                                  {'@pid': 'c/SJChapin',
                                   'text': 'Steve J. Chapin'},
                                  {'@pid': 'g/AndrewSGrimshaw',
                                   'text': 'Andrew S. Grimshaw'}]},
           'doi': '10.1109/HPDC.1998.710023',
           'ee': 'https://doi.org/10.1109/HPDC.1998.710023',
           'key': 'conf/hpdc/Nguyen-TuongCG98',
           'pages': '346-347',
           'title': 'Extending Metasystem Functionality Using Reflection.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/hpdc/Nguyen-TuongCG98',
           'venue': 'HPDC',
           'year': '1998'},
  'url': 'URL#5187071'},
 {'@id': '5187631',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '82/3605',
                                   'text': 'Ngai-Man Cheung'},
                                  {'@pid': '147/1751',
                                   'text': 'Steven Trautmann'},
                                  {'@pid': '09/5385',
                                   'text': 'Andrew Horner'}]},
           'doi': '10.1109/ICASSP.1998.679630',
           'ee': 'https://doi.org/10.1109/ICASSP.1998.679630',
           'key': 'conf/icassp/CheungTH98',
           'pages': '3529-3532',
           'title': 'Head-related transfer function modeling in 3-D sound '
                    'systems with genetic algorithms.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icassp/CheungTH98',
           'venue': 'ICASSP',
           'year': '1998'},
  'url': 'URL#5187631'},
 {'@id': '5220694',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': 'g/AndrewSGrimshaw',
                                   'text': 'Andrew S. Grimshaw'},
                                  {'@pid': '06/6439',
                                   'text': 'Anh Nguyen-Tuong'},
                                  {'@pid': '11/3294',
                                   'text': 'Michael J. Lewis'},
                                  {'@pid': '93/6030', 'text': 'Mark Hyett'}]},
           'doi': '10.1177/109434209701100206',
           'ee': 'https://doi.org/10.1177/109434209701100206',
           'key': 'journals/ijhpca/GrimshawNLH97',
           'number': '2',
           'pages': '129-143',
           'title': 'Campus-Wide Computing - Early Results Using Legion At the '
                    'University of Virginia.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/ijhpca/GrimshawNLH97',
           'venue': 'Int. J. High Perform. Comput. Appl.',
           'volume': '11',
           'year': '1997'},
  'url': 'URL#5220694'},
 {'@id': '5223450',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '76/1760',
                                   'text': 'T. Nguyen Dzung'},
                                  {'@pid': '72/6918',
                                   'text': 'Andrew C. Scheiner'},
                                  {'@pid': '94/392', 'text': 'Jan W. Andzelm'},
                                  {'@pid': '82/2041',
                                   'text': 'Suzanne W. Sirois'},
                                  {'@pid': '89/1450',
                                   'text': 'Dennis R. Salahub'},
                                  {'@pid': '34/4902',
                                   'text': 'Arnold T. Hagler'}]},
           'doi': '10.1002/(SICI)1096-987X(199710)18:13&lt;1609::AID-JCC4&gt;3.0.CO;2-V',
           'ee': 'https://doi.org/10.1002/(SICI)1096-987X(199710)18:13&lt;1609::AID-JCC4&gt;3.0.CO;2-V',
           'key': 'journals/jcc/DzungSASSH97',
           'number': '13',
           'pages': '1609-1631',
           'title': 'A density functional study of the glycine molecule - '
                    'Comparison with post-Hartree-Fock calculations and '
                    'experiment.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/jcc/DzungSASSH97',
           'venue': 'J. Comput. Chem.',
           'volume': '18',
           'year': '1997'},
  'url': 'URL#5223450'},
 {'@id': '5258869',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': 'v/CharlesLViles',
                                   'text': 'Charles L. Viles'},
                                  {'@pid': '11/3294',
                                   'text': 'Michael J. Lewis'},
                                  {'@pid': '05/3631', 'text': 'Adam Ferrari'},
                                  {'@pid': '06/6439',
                                   'text': 'Anh Nguyen-Tuong'},
                                  {'@pid': 'g/AndrewSGrimshaw',
                                   'text': 'Andrew S. Grimshaw'}]},
           'key': 'conf/pdpta/VilesLFNG97',
           'pages': '265-274',
           'title': 'Enabling Flexibility in the Legion Run-Time Library.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/pdpta/VilesLFNG97',
           'venue': 'PDPTA',
           'year': '1997'},
  'url': 'URL#5258869'},
 {'@id': '5287526',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': 'n/KingNgiNgan',
                                   'text': 'King N. Ngan'},
                                  {'@pid': '82/3767', 'text': 'Douglas Chai'},
                                  {'@pid': '115/8108',
                                   'text': 'Andrew Millin'}]},
           'doi': '10.1109/76.499839',
           'ee': 'https://doi.org/10.1109/76.499839',
           'key': 'journals/tcsv/NganCM96',
           'number': '3',
           'pages': '308-312',
           'title': 'Very low bit rate video coding using H.263 coder.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/tcsv/NganCM96',
           'venue': 'IEEE Trans. Circuits Syst. Video Technol.',
           'volume': '6',
           'year': '1996'},
  'url': 'URL#5287526'},
 {'@id': '5294997',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '93/5342',
                                   'text': 'Mysore Y. Jaisimha'},
                                  {'@pid': '36/6603',
                                   'text': 'Andrew G. Bruce'},
                                  {'@pid': '76/4829', 'text': 'Thien Nguyen'}]},
           'doi': '10.1142/9789812797704_0022',
           'ee': 'https://doi.org/10.1142/9789812797704_0022',
           'key': 'conf/das/JaisimhaBN96',
           'pages': '409-432',
           'title': 'Docbrowse - a System for Textual and Graphical Querying '
                    'on Degraded Document Image Data.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/das/JaisimhaBN96',
           'venue': 'DAS',
           'year': '1996'},
  'url': 'URL#5294997'},
 {'@id': '5309716',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '83/6453',
                                   'text': 'Peggy Israel Doerschuk'},
                                  {'@pid': '182/0737', 'text': 'Vihn Nguyen'},
                                  {'@pid': '182/0757',
                                   'text': 'Mani Venkatesh'},
                                  {'@pid': '182/0819', 'text': 'Faqiang Kwong'},
                                  {'@pid': '161/6315',
                                   'text': 'Andrew L. Li'}]},
           'doi': '10.1117/12.265333',
           'ee': 'https://doi.org/10.1117/12.265333',
           'key': 'conf/mr/DoerschukNVKL96',
           'pages': '2-9',
           'title': 'Intelligent control of a simulated running jointed leg.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/mr/DoerschukNVKL96',
           'venue': 'Mobile Robots / Automated Vehicle Control Systems',
           'year': '1996'},
  'url': 'URL#5309716'},
 {'@id': '5313594',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '93/5342',
                                   'text': 'Mysore Y. Jaisimha'},
                                  {'@pid': '36/6603',
                                   'text': 'Andrew G. Bruce'},
                                  {'@pid': '76/4829', 'text': 'Thien Nguyen'}]},
           'doi': '10.1117/12.234774',
           'ee': 'https://doi.org/10.1117/12.234774',
           'key': 'conf/spieSR/JaisimhaBN96',
           'pages': '350-361',
           'title': 'DocBrowse - A System for Information Retrieval from '
                    'Document Image Data.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/spieSR/JaisimhaBN96',
           'venue': 'Storage and Retrieval for Image and Video Databases',
           'year': '1996'},
  'url': 'URL#5313594'},
 {'@id': '5313670',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '06/6439',
                                   'text': 'Anh Nguyen-Tuong'},
                                  {'@pid': 'g/AndrewSGrimshaw',
                                   'text': 'Andrew S. Grimshaw'},
                                  {'@pid': '93/6030', 'text': 'Mark Hyett'}]},
           'doi': '10.1109/SRDS.1996.10001',
           'ee': 'http://doi.ieeecomputersociety.org/10.1109/SRDS.1996.10001',
           'key': 'conf/srds/Nguyen-TuongSH96',
           'pages': '2-11',
           'title': 'Exploiting Data-Flow for Fault-Tolerance in a Wide-Area '
                    'Parallel System.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/srds/Nguyen-TuongSH96',
           'venue': 'SRDS',
           'year': '1996'},
  'url': 'URL#5313670'},
 {'@id': '5337977',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '73/5375', 'text': 'Joel Auslander'},
                                  {'@pid': 'f/ASFukunaga',
                                   'text': 'Alex S. Fukunaga'},
                                  {'@pid': '65/1220', 'text': 'Hadi Partovi'},
                                  {'@pid': '95/6362',
                                   'text': 'Jon Christensen'},
                                  {'@pid': '40/436', 'text': 'Lloyd Hsu'},
                                  {'@pid': '74/2874', 'text': 'Peter Reiss'},
                                  {'@pid': '70/5341', 'text': 'Andrew Shuman'},
                                  {'@pid': '45/2351', 'text': 'Joe Marks'},
                                  {'@pid': '08/648', 'text': 'J. Thomas Ngo'}]},
           'doi': '10.1145/225294.225295',
           'ee': 'https://doi.org/10.1145/225294.225295',
           'key': 'journals/tog/AuslanderFPCHRSMN95',
           'number': '4',
           'pages': '311-336',
           'title': 'Further Experience with Controller-Based Automatic Motion '
                    'Synthesis for Articulated Figures.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/tog/AuslanderFPCHRSMN95',
           'venue': 'ACM Trans. Graph.',
           'volume': '14',
           'year': '1995'},
  'url': 'URL#5337977'},
 {'@id': '5345155',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '06/5295', 'text': 'Derek Chiou'},
                                  {'@pid': '12/4504', 'text': 'Boon Seong Ang'},
                                  {'@pid': '46/5775', 'text': 'Robert Greiner'},
                                  {'@pid': 'a/Arvind', 'text': 'Arvind'},
                                  {'@pid': '33/3960', 'text': 'James C. Hoe'},
                                  {'@pid': '05/1093',
                                   'text': 'Michael J. Beckerle'},
                                  {'@pid': '06/5034', 'text': 'James E. Hicks'},
                                  {'@pid': '63/5557',
                                   'text': 'G. Andrew Boughton'}]},
           'doi': '10.1007/BFB0020458',
           'ee': 'https://doi.org/10.1007/BFb0020458',
           'key': 'conf/europar/ChiouAGAHBHB95',
           'pages': '101-116',
           'title': 'START-NG - Delivering Seamless Parallel Computing.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/europar/ChiouAGAHBHB95',
           'venue': 'Euro-Par',
           'year': '1995'},
  'url': 'URL#5345155'},
 {'@id': '5350254',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '09/5385', 'text': 'Andrew Horner'},
                                  {'@pid': '82/3605',
                                   'text': 'Ngai-Man Cheung'},
                                  {'@pid': '96/769',
                                   'text': 'James W. Beauchamp'}]},
           'ee': 'http://hdl.handle.net/2027/spo.bbp2372.1995.062',
           'key': 'conf/icmc/HornerCB95',
           'title': 'Genetic Algorithm Optimization of Additive Synthesis '
                    'Envelope Breakpoints and Group Synthesis Parameters.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icmc/HornerCB95',
           'venue': 'ICMC',
           'year': '1995'},
  'url': 'URL#5350254'},
 {'@id': '5351953',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '83/6453',
                                   'text': 'Peggy Israel Doerschuk'},
                                  {'@pid': '161/6330',
                                   'text': 'Vinh D. Nguyen'},
                                  {'@pid': '161/6315',
                                   'text': 'Andrew L. Li'}]},
           'doi': '10.1109/TAI.1995.479614',
           'ee': 'https://doi.org/10.1109/TAI.1995.479614',
           'key': 'conf/ictai/DoerschukNL95',
           'pages': '278-281',
           'title': 'Neural network control of a three-link leg.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/ictai/DoerschukNL95',
           'venue': 'ICTAI',
           'year': '1995'},
  'url': 'URL#5351953'},
 {'@id': '5358472',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '06/6439',
                                   'text': 'Anh Nguyen-Tuong'},
                                  {'@pid': 'g/AndrewSGrimshaw',
                                   'text': 'Andrew S. Grimshaw'},
                                  {'@pid': '28/663',
                                   'text': 'John F. Karpovich'}]},
           'doi': '10.1007/BFB0023066',
           'ee': 'https://doi.org/10.1007/BFb0023066',
           'key': 'conf/psls/Nguyen-TuongGK95',
           'pages': '250-265',
           'title': 'Fault Tolerance via Replication in Coarse Grain '
                    'Data-Flow.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/psls/Nguyen-TuongGK95',
           'venue': 'PSLS',
           'year': '1995'},
  'url': 'URL#5358472'},
 {'@id': '5460472',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '64/6364',
                                   'text': 'Thang Nguyen Bui'},
                                  {'@pid': '81/4365', 'text': 'Andrew Peck'}]},
           'doi': '10.1137/0221016',
           'ee': 'https://doi.org/10.1137/0221016',
           'key': 'journals/siamcomp/BuiP92',
           'number': '2',
           'pages': '203-215',
           'title': 'Partitioning Planar Graphs.',
           'type': 'Journal Articles',
           'url': 'https://dblp.org/rec/journals/siamcomp/BuiP92',
           'venue': 'SIAM J. Comput.',
           'volume': '21',
           'year': '1992'},
  'url': 'URL#5460472'},
 {'@id': '5472713',
  '@score': '2',
  'info': {'authors': {'author': [{'@pid': '14/2803',
                                   'text': 'Brian H. Wilcox'},
                                  {'@pid': 'm/LarryMatthies',
                                   'text': 'Larry H. Matthies'},
                                  {'@pid': '53/2932',
                                   'text': 'Donald B. Gennery'},
                                  {'@pid': '127/8428',
                                   'text': 'Brian K. Cooper'},
                                  {'@pid': '50/692', 'text': 'Tam Nguyen'},
                                  {'@pid': '40/6691', 'text': 'Todd Litwin'},
                                  {'@pid': '32/126', 'text': 'Andrew Mishkin'},
                                  {'@pid': '139/2878',
                                   'text': 'Henry W. Stone'}]},
           'doi': '10.1109/ROBOT.1992.220266',
           'ee': 'https://doi.org/10.1109/ROBOT.1992.220266',
           'key': 'conf/icra/WilcoxMGCNLMS92',
           'pages': '175-180',
           'title': 'Robotic vehicles for planetary exploration.',
           'type': 'Conference and Workshop Papers',
           'url': 'https://dblp.org/rec/conf/icra/WilcoxMGCNLMS92',
           'venue': 'ICRA',
           'year': '1992'},
  'url': 'URL#5472713'}]

NoSQL: MongoDB document store¶

vs SQL:

  • document store: no fixed schema, more flexible
    • new records with extra fields!
  • encapsulates hierarchical information
    • no need for flattening/data normalization, etc.
  • naturally amenable for distributed storage and processing

BeautifulSoup

MongoDB Atlas: Let's use their free tier cloud offering to try it out

MongoDB storage model¶

  • Projects
    • Databases
      • Collections
        • Data records: stored as BSON documents (BSON: Binary JSON, for storage efficiency)
  • You can access and manipulate through GUI, scripts/shell, as well from programming environments
    • Here, we shall see how to do so with Python using pymongo
  • Other benefits (not focus of this course): Automatic fault-tolerant load-balanced elastic storage

Useful resources: https://university.mongodb.com/

In [31]:
#!pip3 install pymongo -U
#!pip3 install "pymongo[srv]" -U
#!pip3 install dnspython
# You would need to restart runtime after installations. 
# Useful resource: https://pymongo.readthedocs.io/en/stable/tutorial.html
import pymongo
import dns
In [32]:
### COMMENT THIS OUT
fo = open("mongodb-uri.txt", "r")
str = fo.readline()
fo.close()

### Put in appropriate conn_str uri string with your MongoDB deployment's connection string.
# Typically, it will be something like
# conn_str=mongodb+srv://USER:TOKEN@cluster0.5tnpm.mongodb.net/sample_airbnb?retryWrites=true&w=majority
conn_str = str
# set a 5-second connection timeout
client = pymongo.MongoClient(conn_str, serverSelectionTimeoutMS=5000)
print(client.server_info()) # just a sanity check
{'version': '4.4.8', 'gitVersion': '83b8bb8b6b325d8d8d3dfd2ad9f744bdad7d6ca0', 'modules': ['enterprise'], 'allocator': 'tcmalloc', 'javascriptEngine': 'mozjs', 'sysInfo': 'deprecated', 'versionArray': [4, 4, 8, 0], 'openssl': {'running': 'OpenSSL 1.0.1e-fips 11 Feb 2013', 'compiled': 'OpenSSL 1.0.1e-fips 11 Feb 2013'}, 'buildEnvironment': {'distmod': 'rhel70', 'distarch': 'x86_64', 'cc': '/opt/mongodbtoolchain/v3/bin/gcc: gcc (GCC) 8.5.0', 'ccflags': '-fno-omit-frame-pointer -fno-strict-aliasing -fasynchronous-unwind-tables -ggdb -pthread -Wall -Wsign-compare -Wno-unknown-pragmas -Winvalid-pch -Werror -O2 -Wno-unused-local-typedefs -Wno-unused-function -Wno-deprecated-declarations -Wno-unused-const-variable -Wno-unused-but-set-variable -Wno-missing-braces -fstack-protector-strong -fno-builtin-memcmp', 'cxx': '/opt/mongodbtoolchain/v3/bin/g++: g++ (GCC) 8.5.0', 'cxxflags': '-Woverloaded-virtual -Wno-maybe-uninitialized -fsized-deallocation -std=c++17', 'linkflags': '-pthread -Wl,-z,now -rdynamic -Wl,--fatal-warnings -fstack-protector-strong -fuse-ld=gold -Wl,--no-threads -Wl,--build-id -Wl,--hash-style=gnu -Wl,-z,noexecstack -Wl,--warn-execstack -Wl,-z,relro -Wl,-rpath,/usr/lib64/perl5/CORE -Wl,-z,origin -Wl,--enable-new-dtags', 'target_arch': 'x86_64', 'target_os': 'linux', 'cppdefines': 'SAFEINT_USE_INTRINSICS 0 PCRE_STATIC NDEBUG _XOPEN_SOURCE 700 _GNU_SOURCE _FORTIFY_SOURCE 2 BOOST_THREAD_VERSION 5 BOOST_THREAD_USES_DATETIME BOOST_SYSTEM_NO_DEPRECATED BOOST_MATH_NO_LONG_DOUBLE_MATH_FUNCTIONS BOOST_ENABLE_ASSERT_DEBUG_HANDLER BOOST_LOG_NO_SHORTHAND_NAMES BOOST_LOG_USE_NATIVE_SYSLOG BOOST_LOG_WITHOUT_THREAD_ATTR ABSL_FORCE_ALIGNED_ACCESS'}, 'bits': 64, 'debug': False, 'maxBsonObjectSize': 16777216, 'storageEngines': ['biggie', 'devnull', 'ephemeralForTest', 'inMemory', 'queryable_wt', 'wiredTiger'], 'ok': 1.0, '$clusterTime': {'clusterTime': Timestamp(1629862129, 6), 'signature': {'hash': b'H\xdc\x16!O\x8cn\\\xaf\xbe\xa3i.\x93\xca<\xf2\xd6-\x82', 'keyId': 6959259638558621697}}, 'operationTime': Timestamp(1629862129, 6)}
In [33]:
# I will use some default datasets provided by MongoDB 
# for illustrative examples, so that you can reproduce/rerun them
# More about this default dataset https://docs.atlas.mongodb.com/sample-data/available-sample-datasets/  

client.list_database_names()
Out[33]:
['dblpMongo',
 'sample_airbnb',
 'sample_analytics',
 'sample_geospatial',
 'sample_mflix',
 'sample_restaurants',
 'sample_supplies',
 'sample_training',
 'sample_weatherdata',
 'admin',
 'local']


BeautifulSoup

MongoDB Atlas DB viewer
In [34]:
db1 = client['sample_airbnb']
db2 = client['sample_analytics']
In [35]:
list(db1.list_collections())
Out[35]:
[{'name': 'listingsAndReviews',
  'type': 'collection',
  'options': {},
  'info': {'readOnly': False,
   'uuid': UUID('3b44bd30-808a-4d19-b60a-44b523195391')},
  'idIndex': {'v': 2, 'key': {'_id': 1}, 'name': '_id_'}}]
In [36]:
pprint.pprint(list(db2.list_collections()))
[{'idIndex': {'key': {'_id': 1}, 'name': '_id_', 'v': 2},
  'info': {'readOnly': False,
           'uuid': UUID('4b510301-29cd-41d2-85b8-74cb147d26ab')},
  'name': 'accounts',
  'options': {},
  'type': 'collection'},
 {'idIndex': {'key': {'_id': 1}, 'name': '_id_', 'v': 2},
  'info': {'readOnly': False,
           'uuid': UUID('ea93b891-039c-40a2-90a6-e643c9b6ca2a')},
  'name': 'transactions',
  'options': {},
  'type': 'collection'},
 {'idIndex': {'key': {'_id': 1}, 'name': '_id_', 'v': 2},
  'info': {'readOnly': False,
           'uuid': UUID('efcfd80e-e94d-43c0-9689-794ce2c7ed16')},
  'name': 'customers',
  'options': {},
  'type': 'collection'}]
In [37]:
# Let's access one of these collections
listings=db1.listingsAndReviews
# Let's access one of the records in that collection
pprint.pprint(listings.find_one()) 
# find_one returns the first matching instance (first per the system's storage) 
{'_id': '10006546',
 'access': 'We are always available to help guests. The house is fully '
           'available to guests. We are always ready to assist guests. when '
           'possible we pick the guests at the airport.  This service transfer '
           'have a cost per person. We will also have service "meal at home" '
           'with a diverse menu and the taste of each. Enjoy the moment!',
 'accommodates': 8,
 'address': {'country': 'Portugal',
             'country_code': 'PT',
             'government_area': 'Cedofeita, Ildefonso, Sé, Miragaia, Nicolau, '
                                'Vitória',
             'location': {'coordinates': [-8.61308, 41.1413],
                          'is_location_exact': False,
                          'type': 'Point'},
             'market': 'Porto',
             'street': 'Porto, Porto, Portugal',
             'suburb': ''},
 'amenities': ['TV',
               'Cable TV',
               'Wifi',
               'Kitchen',
               'Paid parking off premises',
               'Smoking allowed',
               'Pets allowed',
               'Buzzer/wireless intercom',
               'Heating',
               'Family/kid friendly',
               'Washer',
               'First aid kit',
               'Fire extinguisher',
               'Essentials',
               'Hangers',
               'Hair dryer',
               'Iron',
               'Pack ’n Play/travel crib',
               'Room-darkening shades',
               'Hot water',
               'Bed linens',
               'Extra pillows and blankets',
               'Microwave',
               'Coffee maker',
               'Refrigerator',
               'Dishwasher',
               'Dishes and silverware',
               'Cooking basics',
               'Oven',
               'Stove',
               'Cleaning before checkout',
               'Waterfront'],
 'availability': {'availability_30': 28,
                  'availability_365': 239,
                  'availability_60': 47,
                  'availability_90': 74},
 'bathrooms': Decimal128('1.0'),
 'bed_type': 'Real Bed',
 'bedrooms': 3,
 'beds': 5,
 'calendar_last_scraped': datetime.datetime(2019, 2, 16, 5, 0),
 'cancellation_policy': 'moderate',
 'cleaning_fee': Decimal128('35.00'),
 'description': 'Fantastic duplex apartment with three bedrooms, located in '
                'the historic area of Porto, Ribeira (Cube) - UNESCO World '
                'Heritage Site. Centenary building fully rehabilitated, '
                'without losing their original character. Privileged views of '
                'the Douro River and Ribeira square, our apartment offers the '
                'perfect conditions to discover the history and the charm of '
                'Porto. Apartment comfortable, charming, romantic and cozy in '
                'the heart of Ribeira. Within walking distance of all the most '
                'emblematic places of the city of Porto. The apartment is '
                'fully equipped to host 8 people, with cooker, oven, washing '
                'machine, dishwasher, microwave, coffee machine (Nespresso) '
                'and kettle. The apartment is located in a very typical area '
                'of the city that allows to cross with the most picturesque '
                'population of the city, welcoming, genuine and happy people '
                'that fills the streets with his outspoken speech and '
                'contagious with your sincere generosity, wrapped in a only '
                'parochial spirit. We are always available to help guests',
 'extra_people': Decimal128('15.00'),
 'first_review': datetime.datetime(2016, 1, 3, 5, 0),
 'guests_included': Decimal128('6'),
 'host': {'host_about': 'Gostamos de passear, de viajar, de conhecer pessoas e '
                        'locais novos, gostamos de desporto e animais! Vivemos '
                        'na cidade mais linda do mundo!!!',
          'host_has_profile_pic': True,
          'host_id': '51399391',
          'host_identity_verified': True,
          'host_is_superhost': False,
          'host_listings_count': 3,
          'host_location': 'Porto, Porto District, Portugal',
          'host_name': 'Ana&Gonçalo',
          'host_neighbourhood': '',
          'host_picture_url': 'https://a0.muscache.com/im/pictures/fab79f25-2e10-4f0f-9711-663cb69dc7d8.jpg?aki_policy=profile_x_medium',
          'host_response_rate': 100,
          'host_response_time': 'within an hour',
          'host_thumbnail_url': 'https://a0.muscache.com/im/pictures/fab79f25-2e10-4f0f-9711-663cb69dc7d8.jpg?aki_policy=profile_small',
          'host_total_listings_count': 3,
          'host_url': 'https://www.airbnb.com/users/show/51399391',
          'host_verifications': ['email',
                                 'phone',
                                 'reviews',
                                 'jumio',
                                 'offline_government_id',
                                 'government_id']},
 'house_rules': 'Make the house your home...',
 'images': {'medium_url': '',
            'picture_url': 'https://a0.muscache.com/im/pictures/e83e702f-ef49-40fb-8fa0-6512d7e26e9b.jpg?aki_policy=large',
            'thumbnail_url': '',
            'xl_picture_url': ''},
 'interaction': 'Cot - 10 € / night Dog - € 7,5 / night',
 'last_review': datetime.datetime(2019, 1, 20, 5, 0),
 'last_scraped': datetime.datetime(2019, 2, 16, 5, 0),
 'listing_url': 'https://www.airbnb.com/rooms/10006546',
 'maximum_nights': '30',
 'minimum_nights': '2',
 'name': 'Ribeira Charming Duplex',
 'neighborhood_overview': 'In the neighborhood of the river, you can find '
                          'several restaurants as varied flavors, but without '
                          'forgetting the so traditional northern food. You '
                          'can also find several bars and pubs to unwind after '
                          "a day's visit to the magnificent Port. To enjoy the "
                          'Douro River can board the boats that daily make the '
                          'ride of six bridges. You can also embark towards '
                          "Régua, Barca d'Alva, Pinhão, etc and enjoy the "
                          'Douro Wine Region, World Heritage of Humanity. The '
                          "Infante's house is a few meters and no doubt it "
                          'deserves a visit. They abound grocery stores, '
                          'bakeries, etc. to make your meals. Souvenir shop, '
                          'wine cellars, etc. to bring some souvenirs.',
 'notes': 'Lose yourself in the narrow streets and staircases zone, have lunch '
          'in pubs and typical restaurants, and find the renovated cafes and '
          'shops in town. If you like exercise, rent a bicycle in the area and '
          'ride along the river to the sea, where it will enter beautiful '
          'beaches and terraces for everyone. The area is safe, find the bus '
          'stops 1min and metro line 5min. The bustling nightlife is a 10 min '
          'walk, where the streets are filled with people and entertainment '
          'for all. But Porto is much more than the historical center, here is '
          'modern museums, concert halls, clean and cared for beaches and surf '
          'all year round. Walk through the Ponte D. Luis and visit the '
          'different Caves of Port wine, where you will enjoy the famous port '
          'wine. Porto is a spoken city everywhere in the world as the best to '
          'be visited and savored by all ... natural beauty, culture, '
          'tradition, river, sea, beach, single people, typical food, and we '
          'are among those who best receive tourists, confirm! Come visit us '
          'and feel at ho',
 'number_of_reviews': 51,
 'price': Decimal128('80.00'),
 'property_type': 'House',
 'review_scores': {'review_scores_accuracy': 9,
                   'review_scores_checkin': 10,
                   'review_scores_cleanliness': 9,
                   'review_scores_communication': 10,
                   'review_scores_location': 10,
                   'review_scores_rating': 89,
                   'review_scores_value': 9},
 'reviews': [{'_id': '58663741',
              'comments': 'A casa da Ana e do Gonçalo foram o local escolhido '
                          'para a passagem de ano com um grupo de amigos. '
                          'Fomos super bem recebidos com uma grande simpatia e '
                          'predisposição a ajudar com qualquer coisa que fosse '
                          'necessário.\r\n'
                          'A casa era ainda melhor do que parecia nas fotos, '
                          'totalmente equipada, com mantas, aquecedor e tudo o '
                          'que pudessemos precisar.\r\n'
                          'A localização não podia ser melhor! Não há melhor '
                          'do que acordar de manhã e ao virar da esquina estar '
                          'a ribeira do Porto.',
              'date': datetime.datetime(2016, 1, 3, 5, 0),
              'listing_id': '10006546',
              'reviewer_id': '51483096',
              'reviewer_name': 'Cátia'},
             {'_id': '62413197',
              'comments': "We are french's students, we traveled some days in "
                          'Porto, this space was good and we can cooking '
                          'easly. It was rainning so we eard every time the '
                          'water fall to the ground in the street when we '
                          'sleeping. But It was cool and or was well received '
                          'by Ana et Gonçalo',
              'date': datetime.datetime(2016, 2, 14, 5, 0),
              'listing_id': '10006546',
              'reviewer_id': '40031996',
              'reviewer_name': 'Théo'},
             {'_id': '68310569',
              'comments': 'We had a spledid time in the old centre of '
                          'Porto.\r\n'
                          'The appartment is very well situated next to the '
                          "old Ribeira square. It's perfect to have such an "
                          'appartment to your disposal, you feel home, and '
                          'have a place to relax between the exploration of '
                          'this very nice city.\r\n'
                          'We thank Ana & Gonçalo, and we hope the appartment '
                          'is free when we go back next year. Porto is '
                          'charming original.',
              'date': datetime.datetime(2016, 4, 4, 4, 0),
              'listing_id': '10006546',
              'reviewer_id': '53859850',
              'reviewer_name': 'Bart'},
             {'_id': '69693942',
              'comments': 'Ana and Goncalo were very helpful and '
                          'accommodating. When they were not available they '
                          'put us in touch with their nephew who was equally '
                          'as helpful. The flat was as described, neat and '
                          'tidy. The weather was quite cold, but thankfully '
                          'A&G left us with extra blankets and electric '
                          'heaters to use. Location was great. Outside the '
                          'flat there was a slight smell of the river/ sewage, '
                          'but in all honesty it did not come into the flat, '
                          "and once you go down the road it doesn't carry on. "
                          'This may also have been down to the very wet '
                          'weather we had while there. All in all, very happy '
                          'and would definitely recommend.',
              'date': datetime.datetime(2016, 4, 12, 4, 0),
              'listing_id': '10006546',
              'reviewer_id': '3135623',
              'reviewer_name': 'Alex'},
             {'_id': '71451096',
              'comments': 'The hosts were very accommodating and agreed to '
                          'meet with my parents as they were arriving before '
                          'us. Communicated very well and always responded in '
                          "a very timely manner. You couldn't have asked for a "
                          'better location of this apartment and the place was '
                          'identical to the pictures in the in the listing.',
              'date': datetime.datetime(2016, 4, 25, 4, 0),
              'listing_id': '10006546',
              'reviewer_id': '13187858',
              'reviewer_name': 'Dan'},
             {'_id': '73191268',
              'comments': "THE PLACE TO BE, l'appartement est situé au milieu "
                          "de la Ribeira , tout peut se faire à pieds c'est "
                          "l'ideal,l'appartement est très bien agencé et "
                          'équipé.\r\n'
                          'Nous avons passé un séjour très agréable dans ce '
                          'duplex avec beaucoup de charme .\r\n'
                          'Accueil très chaleureux de Ana et Gonçalo, ils ont '
                          "pris du temps pour nous indiquer tout ce qu'il y "
                          'avait à faire sur Porto et répondus  à toutes nos '
                          'interrogations en terme de commodités.. Merci..\r\n',
              'date': datetime.datetime(2016, 5, 7, 4, 0),
              'listing_id': '10006546',
              'reviewer_id': '61434690',
              'reviewer_name': 'Anne'},
             {'_id': '77438107',
              'comments': 'We had a great time in Porto. Ana’s & Goncalo’s '
                          'apartment is located right in the heart of the Old '
                          'Town and is great value for money. You really are '
                          'at the centre of things and it’s the perfect place '
                          'to get swept away in the hustle and bustle of '
                          'Porto. Ana and Goncalo were great hosts.',
              'date': datetime.datetime(2016, 5, 31, 4, 0),
              'listing_id': '10006546',
              'reviewer_id': '3673216',
              'reviewer_name': 'Chris'},
             {'_id': '89637734',
              'comments': 'Ana and Gonçalo were very welcoming and made a lot '
                          "of information about Porto's sights available. It "
                          'was very clean, very beautiful and the location was '
                          'superb. It does have a lot of restaurants around '
                          'it, so it could be a bit noisy for us at night but '
                          'otherwise  great location. We would stay there '
                          'again. ',
              'date': datetime.datetime(2016, 7, 29, 4, 0),
              'listing_id': '10006546',
              'reviewer_id': '9172374',
              'reviewer_name': 'Leslie'},
             {'_id': '96574146',
              'comments': 'Super appartement très bien placé, au cœur de '
                          "l'animation de la Ribeira !\r\n"
                          'Nous avons passé un super séjour à Porto !\r\n'
                          'Toutes les informations données par Ana et les '
                          'documents laissés nous ont bien aidé à organiser '
                          'notre séjour.  Nous avons (presque) tout fait à '
                          'pied ! Le parking Ribeira est proche et bien utile '
                          'pour garer le véhicule.\r\n'
                          'Merci !!!\r\n'
                          'Philippe\r\n',
              'date': datetime.datetime(2016, 8, 23, 4, 0),
              'listing_id': '10006546',
              'reviewer_id': '71985274',
              'reviewer_name': 'Philippe'},
             {'_id': '108444999',
              'comments': 'The appartment was great, it is really nice and '
                          'cosy, and it is situated at a perfect location. Ana '
                          'and Goncalo were very friendly, they were very '
                          'helpfull during our stay. We had a great time '
                          'during our stay in Porto!',
              'date': datetime.datetime(2016, 10, 16, 4, 0),
              'listing_id': '10006546',
              'reviewer_id': '24960918',
              'reviewer_name': 'Hanneke'},
             {'_id': '111065376',
              'comments': 'Kävimme majoittajan kanssa viestinvaihtoa ennen '
                          'lomaa ja he antoivat mukavan vaikutelman. He '
                          'olivatkin hyvin mukavia ihmisiä. He tulivat '
                          'lentokentälle vastaan kahdella autolla mikä oli '
                          'hyvin ystävällistä. He kertoivat myös kaupungista '
                          'ja sen nähtävyyksistä. Asunnon sijainti oli '
                          'täydellinen. Se oli myös erittäin romanttinen ja '
                          'kaunis. Kokemus oli hyvin onnistunut.',
              'date': datetime.datetime(2016, 10, 30, 4, 0),
              'listing_id': '10006546',
              'reviewer_id': '74079092',
              'reviewer_name': 'Kati'},
             {'_id': '111655209',
              'comments': 'Hemos pasado unos días increíbles en Oporto. '
                          'Llegamos más tarde de lo que habíamos pensado y Ana '
                          '& Gonçalo nos esperaron pacientemente y nos '
                          'facilitaron la llegada, además nos recibieron con '
                          'un regalo de bienvenida!. Nos dieron todo tipo de '
                          'indicaciones y consejos más que de sobra para '
                          'disfrutar de los días que estuvimos allí. La '
                          'ubicación de la casa es inmejorable!! la única pega '
                          'fue que el soporte de la ducha estaba roto pero '
                          'como eran pocos días no quisimos molestar a Ana & '
                          'Gonçalo y no se lo comentamos. ',
              'date': datetime.datetime(2016, 11, 1, 4, 0),
              'listing_id': '10006546',
              'reviewer_id': '40413493',
              'reviewer_name': 'Julia'},
             {'_id': '132811625',
              'comments': 'Great location, comfortable place, responsive and '
                          'friendly host! Highly recommended!',
              'date': datetime.datetime(2017, 2, 19, 5, 0),
              'listing_id': '10006546',
              'reviewer_id': '8986056',
              'reviewer_name': 'Joshua'},
             {'_id': '144627907',
              'comments': 'This house is in the heart of Porto, set back '
                          'enough to be away from the hustle and bustle but '
                          'only a few steps up from the river, bars and '
                          'restaurants. A great place to stay.\n'
                          'The house was clean and functional. Ana and Goncalo '
                          'are perfect hosts with lots of information on '
                          'places to visit and   eat.',
              'date': datetime.datetime(2017, 4, 16, 4, 0),
              'listing_id': '10006546',
              'reviewer_id': '113254568',
              'reviewer_name': 'Tracey'},
             {'_id': '149009243',
              'comments': 'The location of the house is wonderful! You are in '
                          'the heart of the old city and the Douro ist just a '
                          'few meters away. Perfect for a first visit to '
                          'Porto!\n'
                          'Very cosy and warm house with everything you need.\n'
                          'Gonçalo gives a lot of good tips that will help you '
                          'to have a perfect stay. Communication is very easy '
                          'with him.',
              'date': datetime.datetime(2017, 5, 2, 4, 0),
              'listing_id': '10006546',
              'reviewer_id': '11263097',
              'reviewer_name': 'Willem'},
             {'_id': '150518693',
              'comments': 'We spend a really good time in Porto, the flat is '
                          'so well situated. The bridge is just next door, the '
                          'view on the river is amazing, and plenty of '
                          'restaurants and pubs, transport are just around.\n'
                          'Gonzalo is very kind to wait for us, also lat, for '
                          'the check in, thank you.\n',
              'date': datetime.datetime(2017, 5, 8, 4, 0),
              'listing_id': '10006546',
              'reviewer_id': '108507776',
              'reviewer_name': 'Fanny'},
             {'_id': '155913947',
              'comments': 'Thanks for a great stay! 6 of us were in Porto for '
                          'a long weekend and we had a blast. The apartment '
                          'was perfect; location and size to accomodate us. '
                          'The hosts were great, then even picked us up at the '
                          'airport (for a fee but it was a great service). '
                          'Thanks again! Bridget.',
              'date': datetime.datetime(2017, 5, 29, 4, 0),
              'listing_id': '10006546',
              'reviewer_id': '30254816',
              'reviewer_name': 'Bridget'},
             {'_id': '159692160',
              'comments': 'Superb location and very nice, big and overall '
                          'pleasant apartment!',
              'date': datetime.datetime(2017, 6, 11, 4, 0),
              'listing_id': '10006546',
              'reviewer_id': '124514204',
              'reviewer_name': 'Oscar'},
             {'_id': '164881958',
              'comments': 'The apartment provides basic facilities but is good '
                          'value for money and very well positioned for easy '
                          'access to restaurants and bars, the Ribeira '
                          'district and the Port house in Gaia.',
              'date': datetime.datetime(2017, 6, 29, 4, 0),
              'listing_id': '10006546',
              'reviewer_id': '105188418',
              'reviewer_name': 'Steve'},
             {'_id': '166990342',
              'comments': 'Ana und Gonçalo sind sehr hilfsbereite liebe Leute, '
                          'die  alles tun, damit man sich wohl fühlt. Wenn es '
                          'etwas zu beanstanden gab, wird das sofort '
                          'problemlos erledigt. Das Apartment ist charmant, '
                          'die Möbel schon etwas mitgenommen, aber das passt '
                          'insgesamt ins Bild von Porto und macht den Reiz '
                          'aus. Die Lage ist super, genau am Duoro. Es gibt '
                          'Strassenmusik bis in den späten Abend und auch '
                          "morgens geht's früh los mit fröhlichen Lärm von der "
                          'Flusspromenade. Nichts also für Leute, die es ruhig '
                          'brauchen! Die Lage ist wirklich exklusiv und '
                          'tröstet über den recht teuren Mietpreis. Im Umfeld '
                          'gibt es typische Touri-Fallen, wo alles doppelt '
                          'kostet, aber gleichzeitig findet man auch sehr '
                          'nette kleine Bars, in der man chillig und günstig '
                          'frühstücken oder generell lecker essen kann. Die '
                          'Stadt ist klein genug, um sich schnell '
                          'zurechtzufinden und groß genug, um immer wieder '
                          'neues zu entdecken. Wir waren zu dritt (50, 25, 20 '
                          'Jahre) und haben die Zeit wirklich genossen. ',
              'date': datetime.datetime(2017, 7, 5, 4, 0),
              'listing_id': '10006546',
              'reviewer_id': '52660694',
              'reviewer_name': 'Tina'},
             {'_id': '180030365',
              'comments': 'Very well located appartement ideal for a family of '
                          '5 who want to make the most of the city center.\n'
                          'It may be a bit noisy at night but this is '
                          'acceptable.\n'
                          'Globally we recommend this place.',
              'date': datetime.datetime(2017, 8, 9, 4, 0),
              'listing_id': '10006546',
              'reviewer_id': '25469637',
              'reviewer_name': 'Mathieu'},
             {'_id': '198679769',
              'comments': 'Great location! The apartment is somewhat basic. We '
                          'were family with 3 teenagers and had a good time. '
                          'Also it’s a bit noisy until very late at night.',
              'date': datetime.datetime(2017, 9, 30, 4, 0),
              'listing_id': '10006546',
              'reviewer_id': '21837853',
              'reviewer_name': 'Ido'},
             {'_id': '199885226',
              'comments': 'This apartment is in the perfect location for being '
                          'in the middle of the action. There were tons of '
                          'restaurants close to the apartment and it was a '
                          'quick walk across the bridge to tour the Port '
                          'wineries. Be forewarned; if you are looking for a '
                          'very quiet location, this area may not be for you. '
                          'However, if you are looking to step outside of your '
                          'door and start enjoying what Porto has to offer, I '
                          'recommend this location.',
              'date': datetime.datetime(2017, 10, 3, 4, 0),
              'listing_id': '10006546',
              'reviewer_id': '56528632',
              'reviewer_name': 'Amanda'},
             {'_id': '207942636',
              'comments': 'Acceuil très très chaleureux de Gonçalo  et Ana '
                          'lors de notre arrivée très tardive due à un '
                          'changement d"\'horaire d\'avion....appartement '
                          'super bien situé dans Porto près du Douro, fidèle '
                          'aux photos mises sur le site....Nous avons adoré ce '
                          'quartier bien animé  .....Encore merci à Gonçalo et '
                          'Ana. ....',
              'date': datetime.datetime(2017, 10, 30, 4, 0),
              'listing_id': '10006546',
              'reviewer_id': '102474818',
              'reviewer_name': 'Geneviève'},
             {'_id': '209455775',
              'comments': 'Localização perfeita, muito aconchegante, Ana e '
                          'Gonçalo são pessoas muito atenciosas e simpáticas!',
              'date': datetime.datetime(2017, 11, 5, 4, 0),
              'listing_id': '10006546',
              'reviewer_id': '10371877',
              'reviewer_name': 'Andrea'},
             {'_id': '223995518',
              'comments': 'Perfect position to see everything that Porto has '
                          'to offer. Ana and Gonçalo were great hosts quick to '
                          "respond and welcoming. Couldn't recommend a better "
                          'place to stay in Porto to be able to see the sights '
                          'and be within walking distance to so many '
                          'restaurants.',
              'date': datetime.datetime(2018, 1, 2, 5, 0),
              'listing_id': '10006546',
              'reviewer_id': '10184070',
              'reviewer_name': 'Jennifer'},
             {'_id': '225725834',
              'comments': 'Great location!',
              'date': datetime.datetime(2018, 1, 7, 5, 0),
              'listing_id': '10006546',
              'reviewer_id': '156411765',
              'reviewer_name': 'Nathalie'},
             {'_id': '230559180',
              'comments': 'Probably Ana&Gonzalo´s place is great for summer '
                          'but definitely not in winter. The house is NOT WARM '
                          'and ready for a stay in cold and humit season. '
                          'There is NO HEATING in any of the rooms and living '
                          'room, only bed covers (not nordic duvet) and small '
                          'heaters which you have to switch off during the '
                          'night. Those were not enough during our stay in '
                          'January even we had sunny days! Moreover we were 5 '
                          'people in the house without NO HOT WATER enough for '
                          'all of us. \n'
                          'The pictures did not show the reality. Furniture '
                          'was much older and WiFi signal is only available in '
                          'the living room, not the rooms.\n'
                          'On the other hand, location is great if you want to '
                          'stay close to the river. Although think about that '
                          'all restaurants, bars and main tourist attractions '
                          'are close to Train Station and Clerigos Tower which '
                          'means 15-20 min uphill walking distance from the '
                          'house.',
              'date': datetime.datetime(2018, 1, 28, 5, 0),
              'listing_id': '10006546',
              'reviewer_id': '2524423',
              'reviewer_name': 'Cayetana'},
             {'_id': '232271631',
              'comments': 'Appartement très cosy! Nous y avons été pour un '
                          "court séjour à 7 et avons adoré. L'appartement est "
                          'idéalement situé dans le quartier magnifique de la '
                          "Ribeira. L'accueil a ete très chaleureux: Nous "
                          "étions trompé d'adresse car le GPS avaient "
                          'confondus les rues mais Ana a su nous retrouver '
                          "pour nous amener à l'appartement.  L'appartement "
                          'était très  propre et nous avons eu largement tout '
                          "ce qu'il fallait en linge.\n"
                          'Encore un Grand merci à eux!',
              'date': datetime.datetime(2018, 2, 4, 5, 0),
              'listing_id': '10006546',
              'reviewer_id': '167219338',
              'reviewer_name': 'Mérex'},
             {'_id': '234847900',
              'comments': 'ottima ospitalità, la posizione della casa è '
                          'ottima, vicina ai mezzi di trasporto e alle '
                          'principali attrazioni della città, torneremo '
                          'sicuramente. Consigliato!!',
              'date': datetime.datetime(2018, 2, 14, 5, 0),
              'listing_id': '10006546',
              'reviewer_id': '6735587',
              'reviewer_name': 'Andrea'},
             {'_id': '235293831',
              'comments': 'Nice apartment in Porto, we enjoy staying in it for '
                          'a few days. The apartment is comfortable and has a '
                          'very nice location. Thanks to Ana and Gonsalo for '
                          'hospitality.',
              'date': datetime.datetime(2018, 2, 16, 5, 0),
              'listing_id': '10006546',
              'reviewer_id': '130170949',
              'reviewer_name': 'Bogdan'},
             {'_id': '240252220',
              'comments': 'Great location. Good value thanks for the stay',
              'date': datetime.datetime(2018, 3, 4, 5, 0),
              'listing_id': '10006546',
              'reviewer_id': '153415353',
              'reviewer_name': 'Alison'},
             {'_id': '244738269',
              'comments': 'Me and my friends (7 ppl tot) have booked Gonçalo '
                          'and Ana’s apartment for our holidays and i think we '
                          'cannot do a better choice like that.\n'
                          'The apartment is situated near Oporto’s riverside, '
                          'in Ribeira district, at 2 minutes walking to Sao '
                          'Bento’s station, 10minutes to Lello’s library and '
                          'clerics’s tower. In less than 10 minutes u’re in '
                          'Vila Nova De Gaia where u can find the wineries of '
                          'porto’s wine.\n'
                          'The apartment is really spacious and comfortable, '
                          'perfect for 7 italian people that want to have fun '
                          'in Oporto.\n'
                          'Suggested!!!',
              'date': datetime.datetime(2018, 3, 19, 4, 0),
              'listing_id': '10006546',
              'reviewer_id': '59706237',
              'reviewer_name': 'Marco'},
             {'_id': '246334180',
              'comments': "L'emplacement et vraiment au coeur de l'animation "
                          "du vieux Porto. Au pied de l'appartement se "
                          'trouvent de charmants café avec vue sur le Douro.\n'
                          "Ana&Gonçalo ont été très attentionnés et à l'écoute "
                          'de nos demandes\n'
                          'Michel',
              'date': datetime.datetime(2018, 3, 25, 4, 0),
              'listing_id': '10006546',
              'reviewer_id': '12047570',
              'reviewer_name': 'Michel'},
             {'_id': '259708770',
              'comments': 'Great location right next to the Dom Luiz bridge '
                          'and Douro river and plenty of restaurants. Enough '
                          'room for about 6 people. Ana was very responsive to '
                          'any concerns we had. Would stay again.',
              'date': datetime.datetime(2018, 5, 1, 4, 0),
              'listing_id': '10006546',
              'reviewer_id': '174003310',
              'reviewer_name': 'Dariusz'},
             {'_id': '263239322',
              'comments': 'The house was supernice and located in the middle '
                          'of the center. We really enjoyed our stay here!',
              'date': datetime.datetime(2018, 5, 11, 4, 0),
              'listing_id': '10006546',
              'reviewer_id': '31033799',
              'reviewer_name': 'Margriet'},
             {'_id': '264125733',
              'comments': 'Great Location. Ana & Gonzalo are very nice, '
                          'flexible, and fast-responsive. Apartment is ok but '
                          'only one toilet for 3 rooms + sofa-bed.',
              'date': datetime.datetime(2018, 5, 13, 4, 0),
              'listing_id': '10006546',
              'reviewer_id': '15554470',
              'reviewer_name': 'Carlos'},
             {'_id': '267283092',
              'comments': "Ana&Gonçalo's apartment was nice, comfy, clean and "
                          'most of all really well located in the city '
                          'center!!!\n'
                          'We could easily move everywhere in Porto from there '
                          'and it was perfect for discovering the city!\n'
                          "Also, I'd like to mention that Gonçalo was nice and "
                          'patient with us on the day of the arrival even if '
                          'we were a bit late.\n'
                          'I strongly recommend this place!',
              'date': datetime.datetime(2018, 5, 21, 4, 0),
              'listing_id': '10006546',
              'reviewer_id': '39358900',
              'reviewer_name': 'Gaspard'},
             {'_id': '269853203',
              'comments': 'Incredible location, beautiful house. Everything '
                          'was very easy and we would highly recommend this '
                          'accommodation. Excellent. ',
              'date': datetime.datetime(2018, 5, 28, 4, 0),
              'listing_id': '10006546',
              'reviewer_id': '42864948',
              'reviewer_name': 'James'},
             {'_id': '272277314',
              'comments': 'good lication good experience',
              'date': datetime.datetime(2018, 6, 3, 4, 0),
              'listing_id': '10006546',
              'reviewer_id': '45990306',
              'reviewer_name': '紫仪'},
             {'_id': '275044729',
              'comments': 'We loved it',
              'date': datetime.datetime(2018, 6, 10, 4, 0),
              'listing_id': '10006546',
              'reviewer_id': '176337667',
              'reviewer_name': 'Sebastian'},
             {'_id': '302971185',
              'comments': 'Great location right on the river. Lots of tourists '
                          'in the area. Easy to get to public transportation. '
                          'Besides the hot weather, we had a good time. ',
              'date': datetime.datetime(2018, 8, 6, 4, 0),
              'listing_id': '10006546',
              'reviewer_id': '52572680',
              'reviewer_name': 'Robby'},
             {'_id': '320887590',
              'comments': 'Merci à Ana & Gonçalo pour l’accueil !',
              'date': datetime.datetime(2018, 9, 9, 4, 0),
              'listing_id': '10006546',
              'reviewer_id': '20965806',
              'reviewer_name': 'Romain'},
             {'_id': '325025167',
              'comments': '-',
              'date': datetime.datetime(2018, 9, 18, 4, 0),
              'listing_id': '10006546',
              'reviewer_id': '15097268',
              'reviewer_name': 'Roula'},
             {'_id': '331735682',
              'comments': 'Our stay in Ana and Gancalo’s apartment was lovely. '
                          'The location was perfect and Gancalo graciously '
                          'picked us up from the airport. It does get a little '
                          'loud in the morning but that’s only because the '
                          'apartment is perfectly located right on the river '
                          'front. You do have to hold the shower wand when '
                          'showering but the pressure is good. Overall I would '
                          'definitely stay in the apartment again!',
              'date': datetime.datetime(2018, 10, 3, 4, 0),
              'listing_id': '10006546',
              'reviewer_id': '35313286',
              'reviewer_name': 'Alexander'},
             {'_id': '334789252',
              'comments': 'It was a wonderful experience, the location is '
                          'fantastic and the accommodations were outstanding.',
              'date': datetime.datetime(2018, 10, 10, 4, 0),
              'listing_id': '10006546',
              'reviewer_id': '206502919',
              'reviewer_name': 'Mark'},
             {'_id': '347372623',
              'comments': 'Ana’s place is very well located, at 2 min walking '
                          'distance to the Douro, so that everything is close '
                          'by! Ana communicated well regarding check in info, '
                          'and was even flexible regarding check out timing. '
                          'The description / pictures are relevant; only the '
                          'bathroom  is not as recent. We appreciated the '
                          'extra blanket as heaters have to be switched off '
                          'once u leave the flat, but once they are switched '
                          'on we had no problem afterwards regarding the '
                          'temperature of the flat.',
              'date': datetime.datetime(2018, 11, 11, 5, 0),
              'listing_id': '10006546',
              'reviewer_id': '17503135',
              'reviewer_name': 'Camille'},
             {'_id': '354708379',
              'comments': 'If you want to stay in the heart of Porto for '
                          'reasonable price this is a good alternative. '
                          'However, I’d selected again it for group of more '
                          'than 6 people.',
              'date': datetime.datetime(2018, 12, 2, 5, 0),
              'listing_id': '10006546',
              'reviewer_id': '34178931',
              'reviewer_name': 'Pawel'},
             {'_id': '362865132',
              'comments': 'Very helpful hosts. Cooked traditional Portuguese '
                          'Christmas dinner for 6. Location is perfect. Right '
                          'off square that is on river right by famous bridge '
                          'engineered by protege of Gustav Eifel. Looks like '
                          'same type structure.',
              'date': datetime.datetime(2018, 12, 27, 5, 0),
              'listing_id': '10006546',
              'reviewer_id': '208880077',
              'reviewer_name': 'Thomas'},
             {'_id': '364728730',
              'comments': 'Ana & Goncalo were great on communication, '
                          'responding instantly to questions.\n'
                          '5 of us stayed in their home for 3 nights and found '
                          'the location to be great and central to all the '
                          'amazing sights Porto has to offer. \n'
                          'We found the home to be difficult to heat on our '
                          'first night, the rooms have heaters but took time '
                          'to get the room to a comfortable temperature level. '
                          "But in warmer months Im sure this isn't an issue.\n"
                          'The beds are a little hard with one slightly out of '
                          'shape,  and the shower is fairly basic (hand held) '
                          'but does the job. Because of the central location '
                          'some noise can be expected early in the mornings. \n'
                          'Overall the apartment suited our needs for our '
                          'short stay and the price is more than reasonable '
                          'for what we got.',
              'date': datetime.datetime(2018, 12, 31, 5, 0),
              'listing_id': '10006546',
              'reviewer_id': '91827533',
              'reviewer_name': 'Mr'},
             {'_id': '403055315',
              'comments': 'The house was extremely well located and Ana was '
                          'able to give us some really great tips on locations '
                          'to have lunch and eat out. The house was perfectly '
                          'clean and the easily able to accommodate 6 people '
                          'despite only having one bathroom. The beds and '
                          'living room were comfortable. \n'
                          '\n'
                          'However, we always felt somewhat on edge in the '
                          'house due to the number of signs posted around the '
                          'kitchen, bedrooms and bathroom about being charged '
                          '15€ for all sorts of extras like not washing up or '
                          'using extra towels and bed linen. Not that this '
                          'would be particularly unreasonable but it made us '
                          'feel like we were walking on egg shells in and '
                          'around the house. \n'
                          '\n'
                          'The hosts were aware that we were a group of six '
                          'yet one of the beds was not prepared and we ran out '
                          'of toilet paper well before we were due to check '
                          'out despite only being there 2 nights. It really '
                          "wasn't the end of the world but the shower head "
                          'does not have a wall fitting meaning you had to '
                          'hold it yourself if you wanted to stand underneath '
                          'it.',
              'date': datetime.datetime(2019, 1, 20, 5, 0),
              'listing_id': '10006546',
              'reviewer_id': '15138940',
              'reviewer_name': 'Milo'}],
 'room_type': 'Entire home/apt',
 'security_deposit': Decimal128('200.00'),
 'space': 'Privileged views of the Douro River and Ribeira square, our '
          'apartment offers the perfect conditions to discover the history and '
          'the charm of Porto. Apartment comfortable, charming, romantic and '
          'cozy in the heart of Ribeira. Within walking distance of all the '
          'most emblematic places of the city of Porto. The apartment is fully '
          'equipped to host 8 people, with cooker, oven, washing machine, '
          'dishwasher, microwave, coffee machine (Nespresso) and kettle. The '
          'apartment is located in a very typical area of the city that allows '
          'to cross with the most picturesque population of the city, '
          'welcoming, genuine and happy people that fills the streets with his '
          'outspoken speech and contagious with your sincere generosity, '
          'wrapped in a only parochial spirit.',
 'summary': 'Fantastic duplex apartment with three bedrooms, located in the '
            'historic area of Porto, Ribeira (Cube) - UNESCO World Heritage '
            'Site. Centenary building fully rehabilitated, without losing '
            'their original character.',
 'transit': 'Transport: • Metro station and S. Bento railway 5min; • Bus stop '
            'a 50 meters; • Lift Guindais (Funicular) 50 meters; • Tuc Tuc-to '
            'get around the city; • Buses tourist; • Cycling through the '
            'marginal drive; • Cable car in Gaia, overlooking the Port (just '
            'cross the bridge).'}
In [38]:
pprint.pprint(listings.find_one({'_id':"10009999"})) 
# I had checked manually using the GUI DB browser that there is a record with this id
{'_id': '10009999',
 'access': '',
 'accommodates': 4,
 'address': {'country': 'Brazil',
             'country_code': 'BR',
             'government_area': 'Jardim Botânico',
             'location': {'coordinates': [-43.23074991429229,
                                          -22.966253551739655],
                          'is_location_exact': True,
                          'type': 'Point'},
             'market': 'Rio De Janeiro',
             'street': 'Rio de Janeiro, Rio de Janeiro, Brazil',
             'suburb': 'Jardim Botânico'},
 'amenities': ['Wifi',
               'Wheelchair accessible',
               'Kitchen',
               'Free parking on premises',
               'Smoking allowed',
               'Hot tub',
               'Buzzer/wireless intercom',
               'Family/kid friendly',
               'Washer',
               'First aid kit',
               'Essentials',
               'Hangers',
               'Hair dryer',
               'Iron',
               'Laptop friendly workspace'],
 'availability': {'availability_30': 0,
                  'availability_365': 0,
                  'availability_60': 0,
                  'availability_90': 0},
 'bathrooms': Decimal128('1.0'),
 'bed_type': 'Real Bed',
 'bedrooms': 1,
 'beds': 2,
 'calendar_last_scraped': datetime.datetime(2019, 2, 11, 5, 0),
 'cancellation_policy': 'flexible',
 'cleaning_fee': Decimal128('187.00'),
 'description': 'One bedroom + sofa-bed in quiet and bucolic neighbourhood '
                'right next to the Botanical Garden. Small garden, outside '
                'shower, well equipped kitchen and bathroom with shower and '
                'tub. Easy for transport with many restaurants and basic '
                'facilities in the area. Lovely one bedroom + sofa-bed in the '
                'living room, perfect for two but fits up to four '
                'comfortably.  There´s a small outside garden with a shower '
                'There´s a well equipped open kitchen with both 110V / 220V '
                'wall plugs and one bathroom with shower, tub and even a sauna '
                'machine! All newly refurbished! I´ll be happy to help you '
                'with any doubts, tips or any other information needed during '
                'your stay. This charming ground floor flat is located in '
                'Horto, a quiet and bucolic neighborhood just next to the '
                'Botanical Garden, where most of the descendants of it´s first '
                'gardeners still live. You´ll be 30 minutes walk from '
                'waterfalls in the rainforest with easy hiking trails! There '
                'are nice bars and restaurants as well as basic facilities - '
                'pharmacy, b',
 'extra_people': Decimal128('0.00'),
 'guests_included': Decimal128('1'),
 'host': {'host_about': 'I am an artist and traveling is a major part of my '
                        'life. I love treating visitors the way I like to be '
                        "treated when I´m abroad and I'm usually renting my "
                        "flat while I'm away. I can recommend some cool "
                        'parties and nights out as well as advise on some '
                        'hidden secrets of Rio’s nature!',
          'host_has_profile_pic': True,
          'host_id': '1282196',
          'host_identity_verified': False,
          'host_is_superhost': False,
          'host_listings_count': 1,
          'host_location': 'Rio de Janeiro, State of Rio de Janeiro, Brazil',
          'host_name': 'Ynaie',
          'host_neighbourhood': 'Jardim Botânico',
          'host_picture_url': 'https://a0.muscache.com/im/pictures/9681e3cc-4af1-4046-b294-2881dffb4ff8.jpg?aki_policy=profile_x_medium',
          'host_thumbnail_url': 'https://a0.muscache.com/im/pictures/9681e3cc-4af1-4046-b294-2881dffb4ff8.jpg?aki_policy=profile_small',
          'host_total_listings_count': 1,
          'host_url': 'https://www.airbnb.com/users/show/1282196',
          'host_verifications': ['email', 'phone', 'facebook']},
 'house_rules': 'I just hope the guests treat the space as they´re own, with '
                'respect to it as well as to my neighbours! Espero apenas que '
                'os hóspedes tratem o lugar com carinho e respeito aos '
                'vizinhos!',
 'images': {'medium_url': '',
            'picture_url': 'https://a0.muscache.com/im/pictures/5b408b9e-45da-4808-be65-4edc1f29c453.jpg?aki_policy=large',
            'thumbnail_url': '',
            'xl_picture_url': ''},
 'interaction': 'I´ll be happy to help you with any doubts, tips or any other '
                'information needed during your stay.',
 'last_scraped': datetime.datetime(2019, 2, 11, 5, 0),
 'listing_url': 'https://www.airbnb.com/rooms/10009999',
 'maximum_nights': '1125',
 'minimum_nights': '2',
 'monthly_price': Decimal128('4849.00'),
 'name': 'Horto flat with small garden',
 'neighborhood_overview': 'This charming ground floor flat is located in '
                          'Horto, a quiet and bucolic neighborhood just next '
                          'to the Botanical Garden, where most of the '
                          'descendants of it´s first gardeners still live. '
                          'You´ll be 30 minutes walk from waterfalls in the '
                          'rainforest with easy hiking trails! There are nice '
                          'bars and restaurants as well as basic facilities - '
                          'pharmacy, bakery, small market - in the area.',
 'notes': 'There´s a table in the living room now, that does not show in the '
          'photos.',
 'number_of_reviews': 0,
 'price': Decimal128('317.00'),
 'property_type': 'Apartment',
 'review_scores': {},
 'reviews': [],
 'room_type': 'Entire home/apt',
 'space': 'Lovely one bedroom + sofa-bed in the living room, perfect for two '
          'but fits up to four comfortably.  There´s a small outside garden '
          'with a shower There´s a well equipped open kitchen with both 110V / '
          '220V wall plugs and one bathroom with shower, tub and even a sauna '
          'machine! All newly refurbished!',
 'summary': 'One bedroom + sofa-bed in quiet and bucolic neighbourhood right '
            'next to the Botanical Garden. Small garden, outside shower, well '
            'equipped kitchen and bathroom with shower and tub. Easy for '
            'transport with many restaurants and basic facilities in the area.',
 'transit': 'Easy access to transport (bus, taxi, car) and easy free parking '
            'around. Very close to Gávea, Leblon, Ipanema, Copacabana and '
            'Botafogo.',
 'weekly_price': Decimal128('1492.00')}
In [39]:
# We can refine the search with conditions 
listings.find_one({"bedrooms": 3, 'minimum_nights': '2'}) 
Out[39]:
{'_id': '10006546',
 'listing_url': 'https://www.airbnb.com/rooms/10006546',
 'name': 'Ribeira Charming Duplex',
 'summary': 'Fantastic duplex apartment with three bedrooms, located in the historic area of Porto, Ribeira (Cube) - UNESCO World Heritage Site. Centenary building fully rehabilitated, without losing their original character.',
 'space': 'Privileged views of the Douro River and Ribeira square, our apartment offers the perfect conditions to discover the history and the charm of Porto. Apartment comfortable, charming, romantic and cozy in the heart of Ribeira. Within walking distance of all the most emblematic places of the city of Porto. The apartment is fully equipped to host 8 people, with cooker, oven, washing machine, dishwasher, microwave, coffee machine (Nespresso) and kettle. The apartment is located in a very typical area of the city that allows to cross with the most picturesque population of the city, welcoming, genuine and happy people that fills the streets with his outspoken speech and contagious with your sincere generosity, wrapped in a only parochial spirit.',
 'description': 'Fantastic duplex apartment with three bedrooms, located in the historic area of Porto, Ribeira (Cube) - UNESCO World Heritage Site. Centenary building fully rehabilitated, without losing their original character. Privileged views of the Douro River and Ribeira square, our apartment offers the perfect conditions to discover the history and the charm of Porto. Apartment comfortable, charming, romantic and cozy in the heart of Ribeira. Within walking distance of all the most emblematic places of the city of Porto. The apartment is fully equipped to host 8 people, with cooker, oven, washing machine, dishwasher, microwave, coffee machine (Nespresso) and kettle. The apartment is located in a very typical area of the city that allows to cross with the most picturesque population of the city, welcoming, genuine and happy people that fills the streets with his outspoken speech and contagious with your sincere generosity, wrapped in a only parochial spirit. We are always available to help guests',
 'neighborhood_overview': "In the neighborhood of the river, you can find several restaurants as varied flavors, but without forgetting the so traditional northern food. You can also find several bars and pubs to unwind after a day's visit to the magnificent Port. To enjoy the Douro River can board the boats that daily make the ride of six bridges. You can also embark towards Régua, Barca d'Alva, Pinhão, etc and enjoy the Douro Wine Region, World Heritage of Humanity. The Infante's house is a few meters and no doubt it deserves a visit. They abound grocery stores, bakeries, etc. to make your meals. Souvenir shop, wine cellars, etc. to bring some souvenirs.",
 'notes': 'Lose yourself in the narrow streets and staircases zone, have lunch in pubs and typical restaurants, and find the renovated cafes and shops in town. If you like exercise, rent a bicycle in the area and ride along the river to the sea, where it will enter beautiful beaches and terraces for everyone. The area is safe, find the bus stops 1min and metro line 5min. The bustling nightlife is a 10 min walk, where the streets are filled with people and entertainment for all. But Porto is much more than the historical center, here is modern museums, concert halls, clean and cared for beaches and surf all year round. Walk through the Ponte D. Luis and visit the different Caves of Port wine, where you will enjoy the famous port wine. Porto is a spoken city everywhere in the world as the best to be visited and savored by all ... natural beauty, culture, tradition, river, sea, beach, single people, typical food, and we are among those who best receive tourists, confirm! Come visit us and feel at ho',
 'transit': 'Transport: • Metro station and S. Bento railway 5min; • Bus stop a 50 meters; • Lift Guindais (Funicular) 50 meters; • Tuc Tuc-to get around the city; • Buses tourist; • Cycling through the marginal drive; • Cable car in Gaia, overlooking the Port (just cross the bridge).',
 'access': 'We are always available to help guests. The house is fully available to guests. We are always ready to assist guests. when possible we pick the guests at the airport.  This service transfer have a cost per person. We will also have service "meal at home" with a diverse menu and the taste of each. Enjoy the moment!',
 'interaction': 'Cot - 10 € / night Dog - € 7,5 / night',
 'house_rules': 'Make the house your home...',
 'property_type': 'House',
 'room_type': 'Entire home/apt',
 'bed_type': 'Real Bed',
 'minimum_nights': '2',
 'maximum_nights': '30',
 'cancellation_policy': 'moderate',
 'last_scraped': datetime.datetime(2019, 2, 16, 5, 0),
 'calendar_last_scraped': datetime.datetime(2019, 2, 16, 5, 0),
 'first_review': datetime.datetime(2016, 1, 3, 5, 0),
 'last_review': datetime.datetime(2019, 1, 20, 5, 0),
 'accommodates': 8,
 'bedrooms': 3,
 'beds': 5,
 'number_of_reviews': 51,
 'bathrooms': Decimal128('1.0'),
 'amenities': ['TV',
  'Cable TV',
  'Wifi',
  'Kitchen',
  'Paid parking off premises',
  'Smoking allowed',
  'Pets allowed',
  'Buzzer/wireless intercom',
  'Heating',
  'Family/kid friendly',
  'Washer',
  'First aid kit',
  'Fire extinguisher',
  'Essentials',
  'Hangers',
  'Hair dryer',
  'Iron',
  'Pack ’n Play/travel crib',
  'Room-darkening shades',
  'Hot water',
  'Bed linens',
  'Extra pillows and blankets',
  'Microwave',
  'Coffee maker',
  'Refrigerator',
  'Dishwasher',
  'Dishes and silverware',
  'Cooking basics',
  'Oven',
  'Stove',
  'Cleaning before checkout',
  'Waterfront'],
 'price': Decimal128('80.00'),
 'security_deposit': Decimal128('200.00'),
 'cleaning_fee': Decimal128('35.00'),
 'extra_people': Decimal128('15.00'),
 'guests_included': Decimal128('6'),
 'images': {'thumbnail_url': '',
  'medium_url': '',
  'picture_url': 'https://a0.muscache.com/im/pictures/e83e702f-ef49-40fb-8fa0-6512d7e26e9b.jpg?aki_policy=large',
  'xl_picture_url': ''},
 'host': {'host_id': '51399391',
  'host_url': 'https://www.airbnb.com/users/show/51399391',
  'host_name': 'Ana&Gonçalo',
  'host_location': 'Porto, Porto District, Portugal',
  'host_about': 'Gostamos de passear, de viajar, de conhecer pessoas e locais novos, gostamos de desporto e animais! Vivemos na cidade mais linda do mundo!!!',
  'host_response_time': 'within an hour',
  'host_thumbnail_url': 'https://a0.muscache.com/im/pictures/fab79f25-2e10-4f0f-9711-663cb69dc7d8.jpg?aki_policy=profile_small',
  'host_picture_url': 'https://a0.muscache.com/im/pictures/fab79f25-2e10-4f0f-9711-663cb69dc7d8.jpg?aki_policy=profile_x_medium',
  'host_neighbourhood': '',
  'host_response_rate': 100,
  'host_is_superhost': False,
  'host_has_profile_pic': True,
  'host_identity_verified': True,
  'host_listings_count': 3,
  'host_total_listings_count': 3,
  'host_verifications': ['email',
   'phone',
   'reviews',
   'jumio',
   'offline_government_id',
   'government_id']},
 'address': {'street': 'Porto, Porto, Portugal',
  'suburb': '',
  'government_area': 'Cedofeita, Ildefonso, Sé, Miragaia, Nicolau, Vitória',
  'market': 'Porto',
  'country': 'Portugal',
  'country_code': 'PT',
  'location': {'type': 'Point',
   'coordinates': [-8.61308, 41.1413],
   'is_location_exact': False}},
 'availability': {'availability_30': 28,
  'availability_60': 47,
  'availability_90': 74,
  'availability_365': 239},
 'review_scores': {'review_scores_accuracy': 9,
  'review_scores_cleanliness': 9,
  'review_scores_checkin': 10,
  'review_scores_communication': 10,
  'review_scores_location': 10,
  'review_scores_value': 9,
  'review_scores_rating': 89},
 'reviews': [{'_id': '58663741',
   'date': datetime.datetime(2016, 1, 3, 5, 0),
   'listing_id': '10006546',
   'reviewer_id': '51483096',
   'reviewer_name': 'Cátia',
   'comments': 'A casa da Ana e do Gonçalo foram o local escolhido para a passagem de ano com um grupo de amigos. Fomos super bem recebidos com uma grande simpatia e predisposição a ajudar com qualquer coisa que fosse necessário.\r\nA casa era ainda melhor do que parecia nas fotos, totalmente equipada, com mantas, aquecedor e tudo o que pudessemos precisar.\r\nA localização não podia ser melhor! Não há melhor do que acordar de manhã e ao virar da esquina estar a ribeira do Porto.'},
  {'_id': '62413197',
   'date': datetime.datetime(2016, 2, 14, 5, 0),
   'listing_id': '10006546',
   'reviewer_id': '40031996',
   'reviewer_name': 'Théo',
   'comments': "We are french's students, we traveled some days in Porto, this space was good and we can cooking easly. It was rainning so we eard every time the water fall to the ground in the street when we sleeping. But It was cool and or was well received by Ana et Gonçalo"},
  {'_id': '68310569',
   'date': datetime.datetime(2016, 4, 4, 4, 0),
   'listing_id': '10006546',
   'reviewer_id': '53859850',
   'reviewer_name': 'Bart',
   'comments': "We had a spledid time in the old centre of Porto.\r\nThe appartment is very well situated next to the old Ribeira square. It's perfect to have such an appartment to your disposal, you feel home, and have a place to relax between the exploration of this very nice city.\r\nWe thank Ana & Gonçalo, and we hope the appartment is free when we go back next year. Porto is charming original."},
  {'_id': '69693942',
   'date': datetime.datetime(2016, 4, 12, 4, 0),
   'listing_id': '10006546',
   'reviewer_id': '3135623',
   'reviewer_name': 'Alex',
   'comments': "Ana and Goncalo were very helpful and accommodating. When they were not available they put us in touch with their nephew who was equally as helpful. The flat was as described, neat and tidy. The weather was quite cold, but thankfully A&G left us with extra blankets and electric heaters to use. Location was great. Outside the flat there was a slight smell of the river/ sewage, but in all honesty it did not come into the flat, and once you go down the road it doesn't carry on. This may also have been down to the very wet weather we had while there. All in all, very happy and would definitely recommend."},
  {'_id': '71451096',
   'date': datetime.datetime(2016, 4, 25, 4, 0),
   'listing_id': '10006546',
   'reviewer_id': '13187858',
   'reviewer_name': 'Dan',
   'comments': "The hosts were very accommodating and agreed to meet with my parents as they were arriving before us. Communicated very well and always responded in a very timely manner. You couldn't have asked for a better location of this apartment and the place was identical to the pictures in the in the listing."},
  {'_id': '73191268',
   'date': datetime.datetime(2016, 5, 7, 4, 0),
   'listing_id': '10006546',
   'reviewer_id': '61434690',
   'reviewer_name': 'Anne',
   'comments': "THE PLACE TO BE, l'appartement est situé au milieu de la Ribeira , tout peut se faire à pieds c'est l'ideal,l'appartement est très bien agencé et équipé.\r\nNous avons passé un séjour très agréable dans ce duplex avec beaucoup de charme .\r\nAccueil très chaleureux de Ana et Gonçalo, ils ont pris du temps pour nous indiquer tout ce qu'il y avait à faire sur Porto et répondus  à toutes nos interrogations en terme de commodités.. Merci..\r\n"},
  {'_id': '77438107',
   'date': datetime.datetime(2016, 5, 31, 4, 0),
   'listing_id': '10006546',
   'reviewer_id': '3673216',
   'reviewer_name': 'Chris',
   'comments': 'We had a great time in Porto. Ana’s & Goncalo’s apartment is located right in the heart of the Old Town and is great value for money. You really are at the centre of things and it’s the perfect place to get swept away in the hustle and bustle of Porto. Ana and Goncalo were great hosts.'},
  {'_id': '89637734',
   'date': datetime.datetime(2016, 7, 29, 4, 0),
   'listing_id': '10006546',
   'reviewer_id': '9172374',
   'reviewer_name': 'Leslie',
   'comments': "Ana and Gonçalo were very welcoming and made a lot of information about Porto's sights available. It was very clean, very beautiful and the location was superb. It does have a lot of restaurants around it, so it could be a bit noisy for us at night but otherwise  great location. We would stay there again. "},
  {'_id': '96574146',
   'date': datetime.datetime(2016, 8, 23, 4, 0),
   'listing_id': '10006546',
   'reviewer_id': '71985274',
   'reviewer_name': 'Philippe',
   'comments': "Super appartement très bien placé, au cœur de l'animation de la Ribeira !\r\nNous avons passé un super séjour à Porto !\r\nToutes les informations données par Ana et les documents laissés nous ont bien aidé à organiser notre séjour.  Nous avons (presque) tout fait à pied ! Le parking Ribeira est proche et bien utile pour garer le véhicule.\r\nMerci !!!\r\nPhilippe\r\n"},
  {'_id': '108444999',
   'date': datetime.datetime(2016, 10, 16, 4, 0),
   'listing_id': '10006546',
   'reviewer_id': '24960918',
   'reviewer_name': 'Hanneke',
   'comments': 'The appartment was great, it is really nice and cosy, and it is situated at a perfect location. Ana and Goncalo were very friendly, they were very helpfull during our stay. We had a great time during our stay in Porto!'},
  {'_id': '111065376',
   'date': datetime.datetime(2016, 10, 30, 4, 0),
   'listing_id': '10006546',
   'reviewer_id': '74079092',
   'reviewer_name': 'Kati',
   'comments': 'Kävimme majoittajan kanssa viestinvaihtoa ennen lomaa ja he antoivat mukavan vaikutelman. He olivatkin hyvin mukavia ihmisiä. He tulivat lentokentälle vastaan kahdella autolla mikä oli hyvin ystävällistä. He kertoivat myös kaupungista ja sen nähtävyyksistä. Asunnon sijainti oli täydellinen. Se oli myös erittäin romanttinen ja kaunis. Kokemus oli hyvin onnistunut.'},
  {'_id': '111655209',
   'date': datetime.datetime(2016, 11, 1, 4, 0),
   'listing_id': '10006546',
   'reviewer_id': '40413493',
   'reviewer_name': 'Julia',
   'comments': 'Hemos pasado unos días increíbles en Oporto. Llegamos más tarde de lo que habíamos pensado y Ana & Gonçalo nos esperaron pacientemente y nos facilitaron la llegada, además nos recibieron con un regalo de bienvenida!. Nos dieron todo tipo de indicaciones y consejos más que de sobra para disfrutar de los días que estuvimos allí. La ubicación de la casa es inmejorable!! la única pega fue que el soporte de la ducha estaba roto pero como eran pocos días no quisimos molestar a Ana & Gonçalo y no se lo comentamos. '},
  {'_id': '132811625',
   'date': datetime.datetime(2017, 2, 19, 5, 0),
   'listing_id': '10006546',
   'reviewer_id': '8986056',
   'reviewer_name': 'Joshua',
   'comments': 'Great location, comfortable place, responsive and friendly host! Highly recommended!'},
  {'_id': '144627907',
   'date': datetime.datetime(2017, 4, 16, 4, 0),
   'listing_id': '10006546',
   'reviewer_id': '113254568',
   'reviewer_name': 'Tracey',
   'comments': 'This house is in the heart of Porto, set back enough to be away from the hustle and bustle but only a few steps up from the river, bars and restaurants. A great place to stay.\nThe house was clean and functional. Ana and Goncalo are perfect hosts with lots of information on places to visit and   eat.'},
  {'_id': '149009243',
   'date': datetime.datetime(2017, 5, 2, 4, 0),
   'listing_id': '10006546',
   'reviewer_id': '11263097',
   'reviewer_name': 'Willem',
   'comments': 'The location of the house is wonderful! You are in the heart of the old city and the Douro ist just a few meters away. Perfect for a first visit to Porto!\nVery cosy and warm house with everything you need.\nGonçalo gives a lot of good tips that will help you to have a perfect stay. Communication is very easy with him.'},
  {'_id': '150518693',
   'date': datetime.datetime(2017, 5, 8, 4, 0),
   'listing_id': '10006546',
   'reviewer_id': '108507776',
   'reviewer_name': 'Fanny',
   'comments': 'We spend a really good time in Porto, the flat is so well situated. The bridge is just next door, the view on the river is amazing, and plenty of restaurants and pubs, transport are just around.\nGonzalo is very kind to wait for us, also lat, for the check in, thank you.\n'},
  {'_id': '155913947',
   'date': datetime.datetime(2017, 5, 29, 4, 0),
   'listing_id': '10006546',
   'reviewer_id': '30254816',
   'reviewer_name': 'Bridget',
   'comments': 'Thanks for a great stay! 6 of us were in Porto for a long weekend and we had a blast. The apartment was perfect; location and size to accomodate us. The hosts were great, then even picked us up at the airport (for a fee but it was a great service). Thanks again! Bridget.'},
  {'_id': '159692160',
   'date': datetime.datetime(2017, 6, 11, 4, 0),
   'listing_id': '10006546',
   'reviewer_id': '124514204',
   'reviewer_name': 'Oscar',
   'comments': 'Superb location and very nice, big and overall pleasant apartment!'},
  {'_id': '164881958',
   'date': datetime.datetime(2017, 6, 29, 4, 0),
   'listing_id': '10006546',
   'reviewer_id': '105188418',
   'reviewer_name': 'Steve',
   'comments': 'The apartment provides basic facilities but is good value for money and very well positioned for easy access to restaurants and bars, the Ribeira district and the Port house in Gaia.'},
  {'_id': '166990342',
   'date': datetime.datetime(2017, 7, 5, 4, 0),
   'listing_id': '10006546',
   'reviewer_id': '52660694',
   'reviewer_name': 'Tina',
   'comments': "Ana und Gonçalo sind sehr hilfsbereite liebe Leute, die  alles tun, damit man sich wohl fühlt. Wenn es etwas zu beanstanden gab, wird das sofort problemlos erledigt. Das Apartment ist charmant, die Möbel schon etwas mitgenommen, aber das passt insgesamt ins Bild von Porto und macht den Reiz aus. Die Lage ist super, genau am Duoro. Es gibt Strassenmusik bis in den späten Abend und auch morgens geht's früh los mit fröhlichen Lärm von der Flusspromenade. Nichts also für Leute, die es ruhig brauchen! Die Lage ist wirklich exklusiv und tröstet über den recht teuren Mietpreis. Im Umfeld gibt es typische Touri-Fallen, wo alles doppelt kostet, aber gleichzeitig findet man auch sehr nette kleine Bars, in der man chillig und günstig frühstücken oder generell lecker essen kann. Die Stadt ist klein genug, um sich schnell zurechtzufinden und groß genug, um immer wieder neues zu entdecken. Wir waren zu dritt (50, 25, 20 Jahre) und haben die Zeit wirklich genossen. "},
  {'_id': '180030365',
   'date': datetime.datetime(2017, 8, 9, 4, 0),
   'listing_id': '10006546',
   'reviewer_id': '25469637',
   'reviewer_name': 'Mathieu',
   'comments': 'Very well located appartement ideal for a family of 5 who want to make the most of the city center.\nIt may be a bit noisy at night but this is acceptable.\nGlobally we recommend this place.'},
  {'_id': '198679769',
   'date': datetime.datetime(2017, 9, 30, 4, 0),
   'listing_id': '10006546',
   'reviewer_id': '21837853',
   'reviewer_name': 'Ido',
   'comments': 'Great location! The apartment is somewhat basic. We were family with 3 teenagers and had a good time. Also it’s a bit noisy until very late at night.'},
  {'_id': '199885226',
   'date': datetime.datetime(2017, 10, 3, 4, 0),
   'listing_id': '10006546',
   'reviewer_id': '56528632',
   'reviewer_name': 'Amanda',
   'comments': 'This apartment is in the perfect location for being in the middle of the action. There were tons of restaurants close to the apartment and it was a quick walk across the bridge to tour the Port wineries. Be forewarned; if you are looking for a very quiet location, this area may not be for you. However, if you are looking to step outside of your door and start enjoying what Porto has to offer, I recommend this location.'},
  {'_id': '207942636',
   'date': datetime.datetime(2017, 10, 30, 4, 0),
   'listing_id': '10006546',
   'reviewer_id': '102474818',
   'reviewer_name': 'Geneviève',
   'comments': 'Acceuil très très chaleureux de Gonçalo  et Ana lors de notre arrivée très tardive due à un changement d"\'horaire d\'avion....appartement super bien situé dans Porto près du Douro, fidèle aux photos mises sur le site....Nous avons adoré ce quartier bien animé  .....Encore merci à Gonçalo et Ana. ....'},
  {'_id': '209455775',
   'date': datetime.datetime(2017, 11, 5, 4, 0),
   'listing_id': '10006546',
   'reviewer_id': '10371877',
   'reviewer_name': 'Andrea',
   'comments': 'Localização perfeita, muito aconchegante, Ana e Gonçalo são pessoas muito atenciosas e simpáticas!'},
  {'_id': '223995518',
   'date': datetime.datetime(2018, 1, 2, 5, 0),
   'listing_id': '10006546',
   'reviewer_id': '10184070',
   'reviewer_name': 'Jennifer',
   'comments': "Perfect position to see everything that Porto has to offer. Ana and Gonçalo were great hosts quick to respond and welcoming. Couldn't recommend a better place to stay in Porto to be able to see the sights and be within walking distance to so many restaurants."},
  {'_id': '225725834',
   'date': datetime.datetime(2018, 1, 7, 5, 0),
   'listing_id': '10006546',
   'reviewer_id': '156411765',
   'reviewer_name': 'Nathalie',
   'comments': 'Great location!'},
  {'_id': '230559180',
   'date': datetime.datetime(2018, 1, 28, 5, 0),
   'listing_id': '10006546',
   'reviewer_id': '2524423',
   'reviewer_name': 'Cayetana',
   'comments': 'Probably Ana&Gonzalo´s place is great for summer but definitely not in winter. The house is NOT WARM and ready for a stay in cold and humit season. There is NO HEATING in any of the rooms and living room, only bed covers (not nordic duvet) and small heaters which you have to switch off during the night. Those were not enough during our stay in January even we had sunny days! Moreover we were 5 people in the house without NO HOT WATER enough for all of us. \nThe pictures did not show the reality. Furniture was much older and WiFi signal is only available in the living room, not the rooms.\nOn the other hand, location is great if you want to stay close to the river. Although think about that all restaurants, bars and main tourist attractions are close to Train Station and Clerigos Tower which means 15-20 min uphill walking distance from the house.'},
  {'_id': '232271631',
   'date': datetime.datetime(2018, 2, 4, 5, 0),
   'listing_id': '10006546',
   'reviewer_id': '167219338',
   'reviewer_name': 'Mérex',
   'comments': "Appartement très cosy! Nous y avons été pour un court séjour à 7 et avons adoré. L'appartement est idéalement situé dans le quartier magnifique de la Ribeira. L'accueil a ete très chaleureux: Nous étions trompé d'adresse car le GPS avaient confondus les rues mais Ana a su nous retrouver pour nous amener à l'appartement.  L'appartement était très  propre et nous avons eu largement tout ce qu'il fallait en linge.\nEncore un Grand merci à eux!"},
  {'_id': '234847900',
   'date': datetime.datetime(2018, 2, 14, 5, 0),
   'listing_id': '10006546',
   'reviewer_id': '6735587',
   'reviewer_name': 'Andrea',
   'comments': 'ottima ospitalità, la posizione della casa è ottima, vicina ai mezzi di trasporto e alle principali attrazioni della città, torneremo sicuramente. Consigliato!!'},
  {'_id': '235293831',
   'date': datetime.datetime(2018, 2, 16, 5, 0),
   'listing_id': '10006546',
   'reviewer_id': '130170949',
   'reviewer_name': 'Bogdan',
   'comments': 'Nice apartment in Porto, we enjoy staying in it for a few days. The apartment is comfortable and has a very nice location. Thanks to Ana and Gonsalo for hospitality.'},
  {'_id': '240252220',
   'date': datetime.datetime(2018, 3, 4, 5, 0),
   'listing_id': '10006546',
   'reviewer_id': '153415353',
   'reviewer_name': 'Alison',
   'comments': 'Great location. Good value thanks for the stay'},
  {'_id': '244738269',
   'date': datetime.datetime(2018, 3, 19, 4, 0),
   'listing_id': '10006546',
   'reviewer_id': '59706237',
   'reviewer_name': 'Marco',
   'comments': 'Me and my friends (7 ppl tot) have booked Gonçalo and Ana’s apartment for our holidays and i think we cannot do a better choice like that.\nThe apartment is situated near Oporto’s riverside, in Ribeira district, at 2 minutes walking to Sao Bento’s station, 10minutes to Lello’s library and clerics’s tower. In less than 10 minutes u’re in Vila Nova De Gaia where u can find the wineries of porto’s wine.\nThe apartment is really spacious and comfortable, perfect for 7 italian people that want to have fun in Oporto.\nSuggested!!!'},
  {'_id': '246334180',
   'date': datetime.datetime(2018, 3, 25, 4, 0),
   'listing_id': '10006546',
   'reviewer_id': '12047570',
   'reviewer_name': 'Michel',
   'comments': "L'emplacement et vraiment au coeur de l'animation du vieux Porto. Au pied de l'appartement se trouvent de charmants café avec vue sur le Douro.\nAna&Gonçalo ont été très attentionnés et à l'écoute de nos demandes\nMichel"},
  {'_id': '259708770',
   'date': datetime.datetime(2018, 5, 1, 4, 0),
   'listing_id': '10006546',
   'reviewer_id': '174003310',
   'reviewer_name': 'Dariusz',
   'comments': 'Great location right next to the Dom Luiz bridge and Douro river and plenty of restaurants. Enough room for about 6 people. Ana was very responsive to any concerns we had. Would stay again.'},
  {'_id': '263239322',
   'date': datetime.datetime(2018, 5, 11, 4, 0),
   'listing_id': '10006546',
   'reviewer_id': '31033799',
   'reviewer_name': 'Margriet',
   'comments': 'The house was supernice and located in the middle of the center. We really enjoyed our stay here!'},
  {'_id': '264125733',
   'date': datetime.datetime(2018, 5, 13, 4, 0),
   'listing_id': '10006546',
   'reviewer_id': '15554470',
   'reviewer_name': 'Carlos',
   'comments': 'Great Location. Ana & Gonzalo are very nice, flexible, and fast-responsive. Apartment is ok but only one toilet for 3 rooms + sofa-bed.'},
  {'_id': '267283092',
   'date': datetime.datetime(2018, 5, 21, 4, 0),
   'listing_id': '10006546',
   'reviewer_id': '39358900',
   'reviewer_name': 'Gaspard',
   'comments': "Ana&Gonçalo's apartment was nice, comfy, clean and most of all really well located in the city center!!!\nWe could easily move everywhere in Porto from there and it was perfect for discovering the city!\nAlso, I'd like to mention that Gonçalo was nice and patient with us on the day of the arrival even if we were a bit late.\nI strongly recommend this place!"},
  {'_id': '269853203',
   'date': datetime.datetime(2018, 5, 28, 4, 0),
   'listing_id': '10006546',
   'reviewer_id': '42864948',
   'reviewer_name': 'James',
   'comments': 'Incredible location, beautiful house. Everything was very easy and we would highly recommend this accommodation. Excellent. '},
  {'_id': '272277314',
   'date': datetime.datetime(2018, 6, 3, 4, 0),
   'listing_id': '10006546',
   'reviewer_id': '45990306',
   'reviewer_name': '紫仪',
   'comments': 'good lication good experience'},
  {'_id': '275044729',
   'date': datetime.datetime(2018, 6, 10, 4, 0),
   'listing_id': '10006546',
   'reviewer_id': '176337667',
   'reviewer_name': 'Sebastian',
   'comments': 'We loved it'},
  {'_id': '302971185',
   'date': datetime.datetime(2018, 8, 6, 4, 0),
   'listing_id': '10006546',
   'reviewer_id': '52572680',
   'reviewer_name': 'Robby',
   'comments': 'Great location right on the river. Lots of tourists in the area. Easy to get to public transportation. Besides the hot weather, we had a good time. '},
  {'_id': '320887590',
   'date': datetime.datetime(2018, 9, 9, 4, 0),
   'listing_id': '10006546',
   'reviewer_id': '20965806',
   'reviewer_name': 'Romain',
   'comments': 'Merci à Ana & Gonçalo pour l’accueil !'},
  {'_id': '325025167',
   'date': datetime.datetime(2018, 9, 18, 4, 0),
   'listing_id': '10006546',
   'reviewer_id': '15097268',
   'reviewer_name': 'Roula',
   'comments': '-'},
  {'_id': '331735682',
   'date': datetime.datetime(2018, 10, 3, 4, 0),
   'listing_id': '10006546',
   'reviewer_id': '35313286',
   'reviewer_name': 'Alexander',
   'comments': 'Our stay in Ana and Gancalo’s apartment was lovely. The location was perfect and Gancalo graciously picked us up from the airport. It does get a little loud in the morning but that’s only because the apartment is perfectly located right on the river front. You do have to hold the shower wand when showering but the pressure is good. Overall I would definitely stay in the apartment again!'},
  {'_id': '334789252',
   'date': datetime.datetime(2018, 10, 10, 4, 0),
   'listing_id': '10006546',
   'reviewer_id': '206502919',
   'reviewer_name': 'Mark',
   'comments': 'It was a wonderful experience, the location is fantastic and the accommodations were outstanding.'},
  {'_id': '347372623',
   'date': datetime.datetime(2018, 11, 11, 5, 0),
   'listing_id': '10006546',
   'reviewer_id': '17503135',
   'reviewer_name': 'Camille',
   'comments': 'Ana’s place is very well located, at 2 min walking distance to the Douro, so that everything is close by! Ana communicated well regarding check in info, and was even flexible regarding check out timing. The description / pictures are relevant; only the bathroom  is not as recent. We appreciated the extra blanket as heaters have to be switched off once u leave the flat, but once they are switched on we had no problem afterwards regarding the temperature of the flat.'},
  {'_id': '354708379',
   'date': datetime.datetime(2018, 12, 2, 5, 0),
   'listing_id': '10006546',
   'reviewer_id': '34178931',
   'reviewer_name': 'Pawel',
   'comments': 'If you want to stay in the heart of Porto for reasonable price this is a good alternative. However, I’d selected again it for group of more than 6 people.'},
  {'_id': '362865132',
   'date': datetime.datetime(2018, 12, 27, 5, 0),
   'listing_id': '10006546',
   'reviewer_id': '208880077',
   'reviewer_name': 'Thomas',
   'comments': 'Very helpful hosts. Cooked traditional Portuguese Christmas dinner for 6. Location is perfect. Right off square that is on river right by famous bridge engineered by protege of Gustav Eifel. Looks like same type structure.'},
  {'_id': '364728730',
   'date': datetime.datetime(2018, 12, 31, 5, 0),
   'listing_id': '10006546',
   'reviewer_id': '91827533',
   'reviewer_name': 'Mr',
   'comments': "Ana & Goncalo were great on communication, responding instantly to questions.\n5 of us stayed in their home for 3 nights and found the location to be great and central to all the amazing sights Porto has to offer. \nWe found the home to be difficult to heat on our first night, the rooms have heaters but took time to get the room to a comfortable temperature level. But in warmer months Im sure this isn't an issue.\nThe beds are a little hard with one slightly out of shape,  and the shower is fairly basic (hand held) but does the job. Because of the central location some noise can be expected early in the mornings. \nOverall the apartment suited our needs for our short stay and the price is more than reasonable for what we got."},
  {'_id': '403055315',
   'date': datetime.datetime(2019, 1, 20, 5, 0),
   'listing_id': '10006546',
   'reviewer_id': '15138940',
   'reviewer_name': 'Milo',
   'comments': "The house was extremely well located and Ana was able to give us some really great tips on locations to have lunch and eat out. The house was perfectly clean and the easily able to accommodate 6 people despite only having one bathroom. The beds and living room were comfortable. \n\nHowever, we always felt somewhat on edge in the house due to the number of signs posted around the kitchen, bedrooms and bathroom about being charged 15€ for all sorts of extras like not washing up or using extra towels and bed linen. Not that this would be particularly unreasonable but it made us feel like we were walking on egg shells in and around the house. \n\nThe hosts were aware that we were a group of six yet one of the beds was not prepared and we ran out of toilet paper well before we were due to check out despite only being there 2 nights. It really wasn't the end of the world but the shower head does not have a wall fitting meaning you had to hold it yourself if you wanted to stand underneath it."}]}
In [40]:
# accessing sub-fields (fields of the sub-documents) using dotted namespace
listings.find_one({"bedrooms": 3, 'minimum_nights': '2', 'host.host_has_profile_pic': False}) 
Out[40]:
{'_id': '4025482',
 'listing_url': 'https://www.airbnb.com/rooms/4025482',
 'name': '3 Bedrooms charmante sur le plateau',
 'summary': 'warm and bright apartment with terrace, wi-fi, fully equipped, in the heart of the plateau trendy Montreal, 10 min. from downtown center, metro and all services. This appartement is a place for quiet and respectful people (No party, no celebration, no visitors) Price depending on the number of bedrooms you will used, go to ; "Description + / Accès des voyageurs" to see all the option and tell me your choice. You have access to the bedroom reserved according to your number of traveler.',
 'space': 'bright space in a very peaceful and quiet area. This appartement is a place for quiet and respectful people. (Visitors are not allowed.)',
 'description': 'warm and bright apartment with terrace, wi-fi, fully equipped, in the heart of the plateau trendy Montreal, 10 min. from downtown center, metro and all services. This appartement is a place for quiet and respectful people (No party, no celebration, no visitors) Price depending on the number of bedrooms you will used, go to ; "Description + / Accès des voyageurs" to see all the option and tell me your choice. You have access to the bedroom reserved according to your number of traveler. bright space in a very peaceful and quiet area. This appartement is a place for quiet and respectful people. (Visitors are not allowed.) You will have access to all housing and the bedrooms reserved according to your number of traveler.  The other bedroom will be locked at all times. Price depending on the number of bedrooms used: Bedroom 1 (1 or 2 peoples) = $ 89 / night Bedrooms 1 & 2 (2 peoples) = $ 129 / night Bedrooms 1,2 & 3 (3 peoples) = $ 189 / night Bedrooms 1 & 2 (4 peoples) = $ 189 / night Bedr',
 'neighborhood_overview': 'the neighborhood You will be at the center of the most fashionable district of Montreal in a quiet and peaceful area. The grocery store, restaurants and shop are located in two blocks of housing. There is an art gallery and a convenience store at the corner. Lafontaine Park is at the corner of the street and the home of cycling and a bike path. You will find everything you need close one step away.',
 'notes': 'The Non-compliance with regulations can result in loss of security deposit.',
 'transit': 'The metro is 10 minutes walk, there is street parking without a sticker with the possibility to purchase a parking permit at a cost of $ 6 / day for areas for area residents.',
 'access': 'You will have access to all housing and the bedrooms reserved according to your number of traveler.  The other bedroom will be locked at all times. Price depending on the number of bedrooms used: Bedroom 1 (1 or 2 peoples) = $ 89 / night Bedrooms 1 & 2 (2 peoples) = $ 129 / night Bedrooms 1,2 & 3 (3 peoples) = $ 189 / night Bedrooms 1 & 2 (4 peoples) = $ 189 / night Bedrooms 1 ,2 & 3 (5 peoples) = $ 239 / night  Bedroom 1,2 & 3 (6 peoples) = $ 289 / night  Tell me your choice and i will send you a "special offer" at the price of  your choice.',
 'interaction': 'It will be possible to contact me for any information regarding the appartement.',
 'house_rules': 'This place is located in a peaceful neighborhoods. It is strictly forbidden to disturbing the peace and tranquility. It is strictly forbidden to make partys and celebration. This is a place for quiet and respectful people. It is forbidden to have visitors.',
 'property_type': 'Apartment',
 'room_type': 'Entire home/apt',
 'bed_type': 'Real Bed',
 'minimum_nights': '2',
 'maximum_nights': '365',
 'cancellation_policy': 'moderate',
 'last_scraped': datetime.datetime(2019, 3, 11, 4, 0),
 'calendar_last_scraped': datetime.datetime(2019, 3, 11, 4, 0),
 'first_review': datetime.datetime(2016, 10, 9, 4, 0),
 'last_review': datetime.datetime(2016, 10, 9, 4, 0),
 'accommodates': 6,
 'bedrooms': 3,
 'beds': 3,
 'number_of_reviews': 1,
 'bathrooms': Decimal128('1.0'),
 'amenities': ['TV',
  'Wifi',
  'Air conditioning',
  'Kitchen',
  'Paid parking off premises',
  'Free street parking',
  'Heating',
  'Washer',
  'Dryer',
  'Smoke detector',
  'Fire extinguisher',
  'Laptop friendly workspace',
  'translation missing: en.hosting_amenity_49',
  'translation missing: en.hosting_amenity_50',
  'Self check-in',
  'Keypad'],
 'price': Decimal128('85.00'),
 'weekly_price': Decimal128('950.00'),
 'monthly_price': Decimal128('2600.00'),
 'security_deposit': Decimal128('330.00'),
 'cleaning_fee': Decimal128('60.00'),
 'extra_people': Decimal128('40.00'),
 'guests_included': Decimal128('2'),
 'images': {'thumbnail_url': '',
  'medium_url': '',
  'picture_url': 'https://a0.muscache.com/im/pictures/1ef48360-ab16-4227-ace2-deff95248a32.jpg?aki_policy=large',
  'xl_picture_url': ''},
 'host': {'host_id': '20870347',
  'host_url': 'https://www.airbnb.com/users/show/20870347',
  'host_name': 'Dö',
  'host_location': 'Montreal, Québec, Canada',
  'host_about': '',
  'host_thumbnail_url': 'https://a0.muscache.com/defaults/user_pic-50x50.png?v=3',
  'host_picture_url': 'https://a0.muscache.com/defaults/user_pic-225x225.png?v=3',
  'host_neighbourhood': 'Le Plateau',
  'host_is_superhost': False,
  'host_has_profile_pic': False,
  'host_identity_verified': False,
  'host_listings_count': 1,
  'host_total_listings_count': 1,
  'host_verifications': ['email',
   'phone',
   'reviews',
   'jumio',
   'government_id']},
 'address': {'street': 'Montréal, Québec, Canada',
  'suburb': 'Le Plateau-Mont-Royal',
  'government_area': 'Le Plateau-Mont-Royal',
  'market': 'Montreal',
  'country': 'Canada',
  'country_code': 'CA',
  'location': {'type': 'Point',
   'coordinates': [-73.57516, 45.52557],
   'is_location_exact': True}},
 'availability': {'availability_30': 0,
  'availability_60': 0,
  'availability_90': 0,
  'availability_365': 0},
 'review_scores': {'review_scores_accuracy': 8,
  'review_scores_cleanliness': 10,
  'review_scores_checkin': 10,
  'review_scores_communication': 10,
  'review_scores_location': 8,
  'review_scores_value': 10,
  'review_scores_rating': 100},
 'reviews': [{'_id': '107152296',
   'date': datetime.datetime(2016, 10, 9, 4, 0),
   'listing_id': '4025482',
   'reviewer_id': '741455',
   'reviewer_name': 'Sharky',
   'comments': 'Dominic was friendly and helpful! We were not in the unit much as we were out for the whole day.'}]}
In [41]:
# What if I do not want the whole record, but only parts of it?
# Use *** projections ***
# https://docs.mongodb.com/manual/tutorial/project-fields-from-query-results/

listings.find_one({"bedrooms": 3}, {'number_of_reviews':1,'review_scores':1}) 
Out[41]:
{'_id': '10006546',
 'number_of_reviews': 51,
 'review_scores': {'review_scores_accuracy': 9,
  'review_scores_cleanliness': 9,
  'review_scores_checkin': 10,
  'review_scores_communication': 10,
  'review_scores_location': 10,
  'review_scores_value': 9,
  'review_scores_rating': 89}}
In [42]:
# If we want to find all the entries matching certain conditions!
# Use find: Since there are too many results, I only show the size instead
len(list(listings.find({"bedrooms": 3}, {'number_of_reviews':1,'review_scores':1})))
Out[42]:
427
In [43]:
# If you actually just want to know the size, you can (still) do so using a native count() method
listings.find({"bedrooms": 4}).count()
<ipython-input-43-e9527d243008>:2: DeprecationWarning: count is deprecated. Use Collection.count_documents instead.
  listings.find({"bedrooms": 4}).count()
Out[43]:
161
In [44]:
# The new recommended way to do so
listings.count_documents({"bedrooms": 4})
Out[44]:
161
In [45]:
# What if you need other query filters than just equality?  
listings.count_documents({"bedrooms": {"$gte": 4}})
Out[45]:
229
In [46]:
# If you want full-text search, you will need to index it first (only once, if your data itself is static)
# Here, we are indexing the description text.
try:
    listings.create_index([('description', 'text')])
    print('Indexed')
except:  
    print('Sometimes issues WriteConcernError')
# Very like replica synch issues. In any case, the index is already created.    
Indexed
In [47]:
listings.count_documents( { "$text": { "$search": "Botanical Garden" } } )
Out[47]:
478
In [49]:
botanicgarden_listings=listings.find( { "$text": { "$search": "Botanical Garden" } } ,{'number_of_reviews':1,'review_scores':1, 'reviews':1, 'description':1 } )
In [50]:
pprint.pprint(botanicgarden_listings[470])
{'_id': '846854',
 'description': 'Large duplex on prime Park block in West 80ies. Bedrooms '
                'sleep 4 adults and 1 or 2 toddlers plus a couch for 2 adults. '
                'Lower level with office and TV room. Easy subway/bus access '
                'and Citi bikes. Ask us for chromebook or baby supplies. Large '
                'duplex on prime block on UWS in 80ies between CPW and '
                'Columbus. 2 bedrooms sleep 4 adults and 2 toddlers. There is '
                'a sleeping couch for 2 more adults. Ask us for chromebook or '
                'baby supplies. We have it.  Upper West Side garden level '
                'apartment in brownstone building on 80ies between Central '
                'Park West and Columbus Ave. Walk in less than 5 minutes to '
                'Central Park. Great to discover the Upper West Side (3 blocks '
                'from Natural History Museum), Central park (close to the '
                'jogging track at the Jacky Onassis Reservoir), as well as the '
                'Upper East Side (short walk through Park to Guggenheim etc). '
                'Many top restaurants in waking distance. Easy to get '
                'downtown: 2 blocks away from subway stop (B, C) and the red '
                'line is also close.  The apartment was fully renovated',
 'number_of_reviews': 87,
 'review_scores': {'review_scores_accuracy': 10,
                   'review_scores_checkin': 10,
                   'review_scores_cleanliness': 10,
                   'review_scores_communication': 10,
                   'review_scores_location': 10,
                   'review_scores_rating': 99,
                   'review_scores_value': 10},
 'reviews': [{'_id': '4462736',
              'comments': 'We stayed there for one week with our 1 1/2 old '
                          'daughter. Lovely little place with a garden - '
                          'perfect for her to run around and play. It was such '
                          'a nice and quiet street - you could even hear birds '
                          'chirping in the morning. Amazing location - one '
                          'block from the park, and one block from the nicest '
                          'part of the upper westside.\r\n'
                          'We would definitely stay there again.',
              'date': datetime.datetime(2013, 5, 6, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '6108625',
              'reviewer_name': 'Sara And Louis'},
             {'_id': '4843213',
              'comments': "We loved staying here, it's perfect or a family and "
                          'a beautiful, convenient location. Everything you '
                          'could possibly need at your doorstep.\r\n'
                          '\r\n'
                          'Dirk was a great host letting us in and showing us '
                          'around when we arrived, he even helped us with our '
                          'bags. Debra-Jo who assists with the property when '
                          "Dirk isn't around was fantastic and helpful too. "
                          'She even asked some delicious cookies for us. I '
                          'look forward to staying here again.',
              'date': datetime.datetime(2013, 5, 28, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '5646285',
              'reviewer_name': 'Kat'},
             {'_id': '5134853',
              'comments': 'What a place to stay for a family in NYC! This '
                          'apartment was amazing for the 5 of us, it is more '
                          'like a 4 bedroom apartment rather than 2.5, as '
                          'there is so much space over the 2 floors. The best '
                          'things about it include the amazing interior design '
                          'and furnishings, the size of the space and the '
                          'proximity to Central Park that is no more than 100 '
                          'yards away (the subway is about 200 yards away). '
                          'The apartment also has a garden and a BBQ grill '
                          'which is remarkable considering the location.\r\n'
                          '\r\n'
                          ' My only slight worry was the stairs that were '
                          "quite steep for my 2 year old but that didn't "
                          'matter as we put a sofa in front of them so he '
                          "couldn't access them. \r\n"
                          '\r\n'
                          'Our hosts, Dirk and his family and Debra Jo were '
                          'amazing. They left us some cookies which my wife '
                          'and kids loved and made us feel really welcome. '
                          'They even lent us a wide variety of toys and '
                          'scooters to play with and my daughter ended up '
                          "playing with our host's kids. We had the best time "
                          'in New York, and so much thanks is due to the '
                          'amazing hospitality and apartment that our hosts '
                          'let us stay in. Thank you guys.',
              'date': datetime.datetime(2013, 6, 14, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '6642260',
              'reviewer_name': 'Titus'},
             {'_id': '5709508',
              'comments': 'Our family of four just enjoyed a fantastic (near '
                          "month) stay at Dirk's lovely apartment. The "
                          'apartment has been renovated with top quality '
                          'materials and appliances.  The location is '
                          'unbeatable - a few blocks from Natural History '
                          'Museum and subway, half a block from Central Park, '
                          'and only a block away from our favorite breakfast '
                          'restaurant, and a zillion other great restaurants. '
                          'Dirk was absolutely lovely and efficient to deal '
                          'with - as was Debra Jo who as our contact for '
                          'anything we needed. The space, while only being "2 '
                          'bedroom" could clearly cater for more.  We only '
                          'used the top floor, and rarely went to the basement '
                          'level, but it was great to stretch out into and not '
                          'feel cluttered.  Thanks for Dirk and Debra Jo for '
                          'our lovely stay.',
              'date': datetime.datetime(2013, 7, 13, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '5414040',
              'reviewer_name': 'Kristen'},
             {'_id': '6047858',
              'comments': 'Perfect UWS base for a group of five.  Stylish '
                          'apartment with outside space is ideal for young '
                          'children.',
              'date': datetime.datetime(2013, 7, 28, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '1766134',
              'reviewer_name': 'Christian'},
             {'_id': '7336780',
              'comments': 'Absolutely gorgeous apartment located in a very '
                          'cozy part of the busiest city in the world. The '
                          'apartment is very spacious (especially considering '
                          "the fact that you're in New York), and the kitchen "
                          'and living rooms are amazing. If you like to cook, '
                          'this is the place for you- the kitchen space is '
                          'extremely generous, there is also an kitchen island '
                          'with some benches. Dirk provided all the '
                          'pots/pans/kitchenware, and the gorgeous dining '
                          'table seats 6. Lastly, the patio in the back (see '
                          'picture) was an amazing place to just unwind and '
                          'relax. If you sit there for long enough, you will '
                          'forget you are living in one of the most populous '
                          'cities in the world. Oh, and if you decide that the '
                          "patio isn't a good enough way to escape from the "
                          'city, central park is only a 5 minute walk away. I '
                          'would highly recommend this apartment for anyone '
                          'looking for a great time in NY! ',
              'date': datetime.datetime(2013, 9, 16, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '5671165',
              'reviewer_name': 'Julian'},
             {'_id': '7644415',
              'comments': 'We had a wonderful time in NYC much thanks to Dirk '
                          'and his wife. The apartment was wonderful. Very '
                          'clean and stylish. They were very helpful and '
                          'answered many questions and always with a very fast '
                          'respond time. We stayed 5 adults and 1 child of 4 '
                          'without any problems. They apartment had everything '
                          'that you need and there is a grocery store close by '
                          'on the corner of the street. \r\n'
                          '\r\n'
                          'I can very much recommend this rental.',
              'date': datetime.datetime(2013, 9, 28, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '7955896',
              'reviewer_name': 'Anders'},
             {'_id': '7782099',
              'comments': 'I shared this great apartment with my business '
                          'partner and his wife & kid. It was just perfect. It '
                          "is much larger than any other place I've stayed in "
                          'NY, and the extra rooms downstairs were perfect for '
                          'the little one to stay. It really worked as a 3 '
                          'bedroom for us.\r\n'
                          '\r\n'
                          'The hosts we re accommodating, quick to respond, '
                          "and very thoughtful. I'd stay there again in a "
                          'heartbeat.',
              'date': datetime.datetime(2013, 10, 2, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '1381740',
              'reviewer_name': 'Bryan'},
             {'_id': '8350419',
              'comments': 'Superbe logement, très bien placé et parfaitement '
                          'équipé.\r\n'
                          'Je le recommande vivement.\r\n'
                          'Merci Dirk.',
              'date': datetime.datetime(2013, 10, 27, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '4574124',
              'reviewer_name': 'Eric'},
             {'_id': '8558957',
              'comments': 'My family stayed here for the NYC Marathon weekend '
                          'and it was the perfect place. It had everything we '
                          'needed and great location close to the park (very '
                          'convenient for the finish line of the marathon!). I '
                          'would highly reccommend staying here! We also '
                          'received some delicious muffins! Thank you Dirk for '
                          'your hospitality.',
              'date': datetime.datetime(2013, 11, 5, 5, 0),
              'listing_id': '846854',
              'reviewer_id': '6641442',
              'reviewer_name': 'Ashlin'},
             {'_id': '8689544',
              'comments': 'A gorgeous, large apartment an easy walk to '
                          'everything you need. Beautifully furnished and very '
                          'well equipped. Easily accommodated two adults and a '
                          "very busy three-year-old. We'll definitely be back. "
                          'Thanks for everything Dirk!',
              'date': datetime.datetime(2013, 11, 12, 5, 0),
              'listing_id': '846854',
              'reviewer_id': '2264036',
              'reviewer_name': 'Kirsten'},
             {'_id': '9587170',
              'comments': 'Très bel appartement, spacieux, très bien décoré et '
                          'bien placé à côté de central park. 2 stations de '
                          'métro desservant Manahattan et Brooklyn sont à deux '
                          'pas.\r\n'
                          'Dirk est très réactif et arrangeant (nous sommes '
                          'arrivés à 2h du matin!).\r\n'
                          'Nous étions 5, il y a un grand lit très '
                          'confortable, l autre lit double est un canapé lit '
                          'peu confortable et les autres lits sont des petits '
                          'lits une place.\r\n'
                          '\r\n'
                          'Nous le recommandons.\r\n',
              'date': datetime.datetime(2014, 1, 3, 5, 0),
              'listing_id': '846854',
              'reviewer_id': '3616414',
              'reviewer_name': 'Fazzari'},
             {'_id': '11833552',
              'comments': 'The apartment was fantastic for 3 adults and 2 '
                          'toddlers.  It was easy to get all of our gear into '
                          'the apartment, had a very large foyer outside of '
                          'the apartment proper for shoes, strollers, etc.  '
                          'Inside, the apartment was very nice with good '
                          'furniture, high end bathrooms (Duravit/ Grohe) '
                          'useful kitchen with nice applicances.  It was also '
                          'spotless (even under the bed that we moved to put '
                          'up 2 pack and plays).  The downstairs area was '
                          'great so our nanny had her own space -- felt almost '
                          'like 2 separate apartments.  \r\n'
                          '\r\n'
                          'The manager of the apartment was great!  She saved '
                          'us a parking space in front of the building and was '
                          'extremely responsive to e-mails, texts and phone '
                          'calls.  Met us at the apartment and walked through '
                          'everything.  Also was great to have a washer and '
                          'dryer to do a couple loads of laundry.\r\n'
                          '\r\n'
                          'Finally, location was fantastic.  I lived on the '
                          'Upper West Side for 5 years and everthing was '
                          'nearby.  Zabars, Gristedes, Macoron Parlour, Levain '
                          "Bakery, Fairway, Sarabeth's, b Cafe, Corvo (cool "
                          'for drinks), etc.',
              'date': datetime.datetime(2014, 4, 16, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '12449048',
              'reviewer_name': 'Carl'},
             {'_id': '12880820',
              'comments': 'Best stay ever in New York! We have been to the '
                          "city many times to visit our children, and Dirk's "
                          'lovely apartment was the highlight of our latest '
                          'visit. Easy to get to via car or subway; quiet, '
                          'relaxing atmosphere; clean and comfortable and '
                          'beautifully decorated. We used the patio and grill '
                          'for lunch one day, and enjoyed sipping wine under '
                          'the stars at night.  Debra Jo answered any '
                          'questions we had immediately, and left a delicious '
                          "carrot cake as a Mother's Day treat. We highly "
                          "recommend Dirk's apartment!",
              'date': datetime.datetime(2014, 5, 13, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '12149956',
              'reviewer_name': 'Beth'},
             {'_id': '13221319',
              'comments': 'Dirk is really friendly, easy & fast for '
                          'communication.\r\n'
                          '\r\n'
                          "The house is great--I didn't expect such a spacious "
                          'house in upper west side, just one block away from '
                          'Central Park!\r\n'
                          '\r\n'
                          'Check-in was easy, neighborhood is nice, house is '
                          'comfortable!\r\n'
                          '\r\n'
                          'Would highly recommend for a family trip!',
              'date': datetime.datetime(2014, 5, 22, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '10443961',
              'reviewer_name': 'Daisy'},
             {'_id': '21507628',
              'comments': 'We had an amazing time at this beautiful apartment '
                          "in the upper west side of NYC. The photos don't do "
                          'the place justice - it is spacious, and beautifully '
                          'decorated. The beds are super comfy, and the '
                          'kitchen is very well equipped. Dirk and Debra-Jo '
                          'made us feel very comfortable and were very quick '
                          'to provide us with everything we needed. The area '
                          'is fantastic for restaurants, and the metro is one '
                          'block away and Central Park is at the end of the '
                          'street! We hope to come back one day. ',
              'date': datetime.datetime(2014, 10, 19, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '18773117',
              'reviewer_name': 'Christie'},
             {'_id': '21844519',
              'comments': 'Well located close to Central Park. Nice, clean and '
                          'a lot of space. Kitchen well equiped. \r\n'
                          'Subway nearby. We arrived late but thanks to the '
                          'responsive communication, everything went '
                          'smoothly. \r\n'
                          'Dirk and DebraJo seemed to be relaxed People. Great '
                          'place to stay. ',
              'date': datetime.datetime(2014, 10, 25, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '21932899',
              'reviewer_name': 'Gerdien'},
             {'_id': '23317990',
              'comments': 'This was our first experience with Airbnb and it '
                          "couldn't have been better. Everything ran very "
                          "smoothly. Dirk's apartment was beautifully "
                          'decorated, had plenty of space and was in the '
                          'perfect location for our family vacation. They even '
                          "baked us a cake! Such a thoughtful gesture. I'd "
                          'highly recommend this apartment and set of hosts!',
              'date': datetime.datetime(2014, 11, 29, 5, 0),
              'listing_id': '846854',
              'reviewer_id': '16288134',
              'reviewer_name': 'Mendi'},
             {'_id': '23649523',
              'comments': 'Perfect location! Beautiful, clean and very '
                          'comfortable apartment! And very responsive and '
                          'friendly host and property manager! (The property '
                          'mgr even fm dropped off homemade scones for us one '
                          'morning :-) We spent a week at this wonderful '
                          "apartment and I can safely say we'll be returning "
                          'in the future for sure! Perfect for 2 couples as '
                          'there are 2 queen bedrooms or for a family with '
                          'small children. Our host even provided toys, games '
                          '& strollers for the little ones.  Also the '
                          "apartment is spacious so you never feel like you're "
                          'on top of each other. The kitchen was stocked with '
                          'everything you need to cook but if you feel like '
                          "eating out there's literally dozens of fabulous "
                          'places within walking distance.  I highly recommend '
                          'this apartment to anyone looking to have a '
                          'comfortable, relaxing lodging experience in NYC!',
              'date': datetime.datetime(2014, 12, 7, 5, 0),
              'listing_id': '846854',
              'reviewer_id': '5369186',
              'reviewer_name': 'Kate'},
             {'_id': '24632521',
              'comments': 'Dirk was perfect.\r\n'
                          'The apartement was also wonderfull.\r\n'
                          'We will come again.\r\n'
                          'Thanks',
              'date': datetime.datetime(2015, 1, 1, 5, 0),
              'listing_id': '846854',
              'reviewer_id': '4574124',
              'reviewer_name': 'Eric'},
             {'_id': '26304701',
              'comments': "Wonderful, wonderful, wonderful. Dirk's apartment "
                          'was exactly what we wanted. We were traveling with '
                          '5 adults, 4 year old and a 1 year old. Everything '
                          'we needed was supplied. Very spacious, very '
                          'comfortable and very homely. Dirk stayed in '
                          'constant communication with us, before arriving and '
                          'while in New York. Thank you so much for sharing '
                          'your home with us.',
              'date': datetime.datetime(2015, 2, 9, 5, 0),
              'listing_id': '846854',
              'reviewer_id': '23369875',
              'reviewer_name': 'Mel'},
             {'_id': '26616049',
              'comments': "We had a great experience at Dirk's place. Great "
                          'location, great apartment, great host. \n'
                          'No hesitations recommending this place. ',
              'date': datetime.datetime(2015, 2, 16, 5, 0),
              'listing_id': '846854',
              'reviewer_id': '20228505',
              'reviewer_name': 'Joe'},
             {'_id': '30222354',
              'comments': 'Accommodations were exactly as described in the '
                          'listing. The apartment is bright, spacious and had '
                          'everything we could have wanted with an 18-month '
                          'old in tow. Dirk was great, providing concise info '
                          'about key pick up, check out time, etc. Location '
                          'was unbelievable. Right next to Central Park, the '
                          'Natural History Museum and the blue / orange subway '
                          'lines. Really a family friendly NYC neighborhood '
                          'and walking distance to Shake Shack. What could be '
                          'better?',
              'date': datetime.datetime(2015, 4, 19, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '19118604',
              'reviewer_name': 'Peyton'},
             {'_id': '31318190',
              'comments': 'My group had a wonderful stay at this beautiful '
                          'apartment. The outdoor garden was an oasis of sorts '
                          'and the decor was mid century modern-straight out '
                          'of Mad Men! The pictures simply do not do the '
                          'wonderful space justice. The host was easy to '
                          'communicate with and accommodating in regards to '
                          'check in/check out times. We were greeted by '
                          'homemade brownies and thoroughly enjoyed our stay. '
                          'The location was also fantastic as it was right '
                          'near Central Park and the American Museum of '
                          'Natural History. Cannot recommend this apartment '
                          'enough and hope to return in the future.',
              'date': datetime.datetime(2015, 5, 4, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '29060742',
              'reviewer_name': 'Michelle'},
             {'_id': '32176310',
              'comments': 'Dirk has been a fantastic host and the appartment '
                          'was very beautiful, clean and cozy. We really loved '
                          "to stay in Dirk's appartment and especially enjoyed "
                          'the littlte garden. Dirk was very responsive and '
                          'answered all our questions immediately. He gave us '
                          'very good restaurant tips in the neighbourhood. It '
                          'was amazing that we were surprised with fresh baked '
                          'brownies during our stay. We will definitely come '
                          'back!',
              'date': datetime.datetime(2015, 5, 15, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '17934692',
              'reviewer_name': 'Lutz'},
             {'_id': '33084167',
              'comments': 'We had a fantastic 9 night stay in the apartment.  '
                          'It was very clean, quiet (very unique for NYC!), '
                          'spacious and comfortable for us (4 adults and 1 '
                          'child). Dirk and his family were so welcoming and '
                          'helpful throughout the stay: there was a delicious '
                          'welcome cake, assisting my parents with their bags '
                          'and arrival, a well equipped apartment (kitchen has '
                          'everything you need, and Dirk kindly provided a box '
                          'of toys which kept our daughter happy for hours and '
                          'a stroller for us to all get out and about despite '
                          "the jet lag) and farm fresh eggs from the farmers' "
                          'market.  We valued their local knowledge and '
                          'assistance, especially when our daughter broke her '
                          'arm...the advice helped us get everything sorted '
                          'very quickly.  And the garden is a little oasis.\n'
                          'All in all, I can highly recommend Dirk as a host '
                          'and his apartment.  We had an excellent experience '
                          'and would definitely return.',
              'date': datetime.datetime(2015, 5, 25, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '22207989',
              'reviewer_name': 'Kirsten'},
             {'_id': '33786396',
              'comments': 'Experience Dirk house was simply fabulous, I have '
                          'no words to thank them for everything they did for '
                          'us. Debra and him exceeded their responsibilities '
                          'as hosts.\n'
                          '1- Being a group of 6 adults and a 7 years old '
                          'child traveling through our wedding, it was very '
                          'important for us to find a comfortable place and '
                          'also nice one for our pre-wedding photo shoot. '
                          'During the booking process Dirk was very friendly '
                          'and answered each of my questions more '
                          'attentively.\n'
                          '2- The place: an apartment on the ground floor '
                          '(with small but lovely garden with deck) with two '
                          'main rooms (one with a window overlooking the '
                          'garden) and a third room in the basement, hardwood '
                          'floors, kitchen modern, fully equipped, air '
                          'conditioning, WiFi, TV in the basement (which we '
                          'never used), minimalist modern finishes ... In '
                          'short: beautiful\n'
                          '3- Location: one block from Central Park! Two '
                          'blocks from the Blue (C) line and about 3 blocks '
                          'from the red line on Broadway.\n'
                          'A Deli on the corner for fast food purchases. A '
                          'quiet and safe area. UWS is a family area ...\n'
                          '4- Communication: Debra was at all times aware of '
                          'our needs via whatssap; We had a big problem with '
                          "my brother's family that used for the first time "
                          'Airbnb in another apartment In the  area, and had '
                          'to leave abruptly because The person rented them '
                          'was not the real owner. Debra and Dirk helped with '
                          'this urgency, which I will be grateful forever! My '
                          'advice: always read the reviews and ask if the '
                          'writer own the property.\n'
                          '100% recommend this accommodation. Dirk we will '
                          'back!',
              'date': datetime.datetime(2015, 6, 1, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '5468980',
              'reviewer_name': 'Fanny'},
             {'_id': '34154527',
              'comments': 'Apt had everything we needed. Well stocked and very '
                          'comfortable. Loved the vibe and location was '
                          'superb. Very close to museum,park and restaurants. ',
              'date': datetime.datetime(2015, 6, 5, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '7581636',
              'reviewer_name': 'Madelyn'},
             {'_id': '34865758',
              'comments': 'Really great location half a block from park and 2 '
                          'blocks from subway. Apt was clean and spacious and '
                          'quiet. Great AC also for the hot summer days. Dirk '
                          'was incredibly responsive and helpful throughout '
                          'trip. Would stay again anytime',
              'date': datetime.datetime(2015, 6, 13, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '13240642',
              'reviewer_name': 'Steve'},
             {'_id': '35819002',
              'comments': 'We stayed with three adults and 2 young children '
                          '(ages 3 & 1) and Dirk was a tremendous host. He '
                          'made available for us a travel crib, a toddler bed, '
                          'toys, scooters and a stroller and was provided '
                          'prompt and helpful communication whenever needed. '
                          'He even brought by a bicycle pump so we could pump '
                          'up the stroller tires. The space was exceptionally '
                          'clean and, for NYC, remarkably spacious. The '
                          'apartment is well-appointed with sheets, towels, '
                          'soap, detergent for the washing machine, and '
                          'kitchen equipment, and very much as pictured. I '
                          "wish only we'd lived there when we were Manhattan "
                          'residents! Oh, and the cookies the housekeeper '
                          'brought for us were divine, and such a kind touch.',
              'date': datetime.datetime(2015, 6, 22, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '3954112',
              'reviewer_name': 'Jennifer'},
             {'_id': '39265935',
              'comments': 'Had a great time in NY, and this appartement. Was '
                          'perfect for our family, with 3 kids. Close to '
                          'Central Park, subway, and nice restaurants and '
                          'places to buy required breakfast or other good '
                          'food.\n'
                          'When we arrived, it smelled a bit, the host came to '
                          'act quickly. Later I noticed same smell in whole '
                          'area, I guess result from torential rains earlier '
                          'that morning, so not really something that could be '
                          'influenced. All in all, we had a great stay.',
              'date': datetime.datetime(2015, 7, 22, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '25677360',
              'reviewer_name': 'Marnix'},
             {'_id': '40984156',
              'comments': 'It is a wonderful house for our family with two '
                          'kids. This house is very nice, comfortable and '
                          'convenient. My family had a greet time here. ',
              'date': datetime.datetime(2015, 8, 3, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '32680253',
              'reviewer_name': 'Li'},
             {'_id': '41334822',
              'comments': 'Dirk was very accommodating and welcoming when '
                          'booking and arranging the vacation. The apartment '
                          'was as pictured with high quality finishing and '
                          'fixtures throughout.  Some little extra touches '
                          'such as the tea and toiletries were thoughtful and '
                          'well received as well as the box of games and toys '
                          'as he knew that we were bringing our young '
                          'daughter. \r\n',
              'date': datetime.datetime(2015, 8, 7, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '3704971',
              'reviewer_name': 'Ian'},
             {'_id': '47075088',
              'comments': 'The apartment is lovely and spacious and is very '
                          'well organised for guests. Dirk is very responsive '
                          'to queries. The apartment is on a beautiful '
                          'tree-lined street. The garden in the back is '
                          'fantastic. I would love to come back again.',
              'date': datetime.datetime(2015, 9, 15, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '41691806',
              'reviewer_name': 'N'},
             {'_id': '47833030',
              'comments': 'We were six friends discovering New York for the '
                          "first time and dirk's appartment was the perfect "
                          'place to do that. Best location, spacious and '
                          'confortable bedrooms furnished with taste. Dirk was '
                          'helpful and responsive. Special thanks to Debrajo '
                          'who took care of us and solve all our little issues '
                          'during our stay. Highly recommanded !',
              'date': datetime.datetime(2015, 9, 21, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '6601130',
              'reviewer_name': 'Stephanie'},
             {'_id': '48181387',
              'comments': "A terrific stay.   It's a beautiful apartment in a "
                          'great location. Host is very accommodating and '
                          "responsive.  Apt is well equipped. We'd definitely "
                          'stay here again. The only minor downside was the '
                          '7am sounds of kids upstairs... A little early for '
                          'West Coasters... But to be expected in a NYC '
                          'brownstone.',
              'date': datetime.datetime(2015, 9, 24, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '13007871',
              'reviewer_name': 'Mireille'},
             {'_id': '48678460',
              'comments': 'Fantastic apartment where we spent three nights for '
                          'a wedding. Dirk provided us with a crib in the '
                          'master bedroom for our infant and the guest room '
                          'was ready with two beds for our older boys (5 and '
                          '7). Another couple stayed with us on the sofa-bed '
                          'in the basement. It was all perfect and we loved '
                          'eating our meals outside on the back terrace. There '
                          'also are strollers and scooters available for the '
                          'kids, which was just incredible. The neighborhood '
                          'is super safe with all the amenities anyone would '
                          'want/need. Basically, perfect!',
              'date': datetime.datetime(2015, 9, 28, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '33035012',
              'reviewer_name': 'Thomas'},
             {'_id': '50619459',
              'comments': 'The apartment was perfect!  It was just as listed '
                          'and the location could not have been better!  My '
                          'family enjoyed the lemon cake the host dropped off '
                          '-just to welcome them to NYC! Dirk was very prompt '
                          'and responsive to our inquiries.',
              'date': datetime.datetime(2015, 10, 13, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '36277206',
              'reviewer_name': 'Mary Jo'},
             {'_id': '51318833',
              'comments': 'Perfect!  A very nice home away from home.  The '
                          'apartment is very comfortable and the kitchen is '
                          'well outfitted for meal prep (limits dining out).  '
                          'Easy walking to subway, museums, Central Park, '
                          'markets, restaurants, etc.  Nice neighborhood to '
                          'walk around and always felt safe.  We would '
                          'definitely try to stay here again if we have future '
                          'visits to NY.',
              'date': datetime.datetime(2015, 10, 19, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '29329218',
              'reviewer_name': 'David'},
             {'_id': '52670130',
              'comments': "Highly recommend this garden duplex! It's exactly "
                          'as shown, which is wonderful, and the location and '
                          'neighborhood are even better! Dirk and Debra Jo '
                          'were a joy to deal with, and the home baked goodies '
                          "were a great welcome. Seriously can't say enough "
                          'kind things about the host and our experience. This '
                          'place is amazing - we will be back! ',
              'date': datetime.datetime(2015, 11, 1, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '29815575',
              'reviewer_name': 'Steve'},
             {'_id': '53602722',
              'comments': 'The description is accurate and the apartment was '
                          'very clean.  The garden is lovely.     I do not '
                          'think the apartment would be suitable for an active '
                          'toddler as the stairs are very steep and one of the '
                          'couches leans against a low glass wall that is over '
                          'the stairs.\r\n'
                          '  Dirk was great to send someone over when we were '
                          'having a problem with a circuit tripping.   \r\n'
                          'The location was fantastic for us and is a very '
                          'short walk to Central Park.     ',
              'date': datetime.datetime(2015, 11, 10, 5, 0),
              'listing_id': '846854',
              'reviewer_id': '22090524',
              'reviewer_name': 'Catherine'},
             {'_id': '53954712',
              'comments': 'Great stay ! The appartment is very well located, '
                          'very comfortable  , quiet and exactly as '
                          'described.\r\n'
                          "We appreciated Debra Jo's cakes when we "
                          'arrived. \r\n'
                          'Dirk was very reactive\r\n'
                          'We warmly recommand this place.',
              'date': datetime.datetime(2015, 11, 15, 5, 0),
              'listing_id': '846854',
              'reviewer_id': '35227459',
              'reviewer_name': 'Levigne'},
             {'_id': '54838782',
              'comments': 'Dirk was very responsive and a great host - the '
                          'apartment was clean and exactly as pictured.',
              'date': datetime.datetime(2015, 11, 25, 5, 0),
              'listing_id': '846854',
              'reviewer_id': '6756698',
              'reviewer_name': 'Kristen'},
             {'_id': '55093868',
              'comments': "Dirk's place was fantastic (yes, all those other "
                          'reviews are accurate).  The space was perfect for '
                          'our family of 4 (two kids ages 2 & 6) plus my '
                          'in-laws.  The kids had toys to play with and the 6 '
                          'year old really enjoyed riding the bike and '
                          'scooters in the park.  The kitchen was equipped '
                          'with everything we needed to cook a fully '
                          'Thanksgiving meal.  The location, less than 1 block '
                          'from Central Park, is perfect for active kids. This '
                          "was also the perfect place for the Macy's Parade.  "
                          'We will definitely be staying again.  ',
              'date': datetime.datetime(2015, 11, 28, 5, 0),
              'listing_id': '846854',
              'reviewer_id': '17045984',
              'reviewer_name': 'Jeremy'},
             {'_id': '55716067',
              'comments': 'Dirk is an amazing host and did all he could to '
                          'make our stay easy and comfortable! His apartment '
                          'is very nice, spacious, great kitchen and nice '
                          'neighborhood!  Half a block from the park so great '
                          'for a morning wall to the Reservoir. First time '
                          'using Airbnb and if I need to use it again in NY '
                          'will certainly look for his place or any other '
                          'location he manages in the future',
              'date': datetime.datetime(2015, 12, 5, 5, 0),
              'listing_id': '846854',
              'reviewer_id': '26226968',
              'reviewer_name': 'Maria'},
             {'_id': '57863285',
              'comments': 'Very nice garden duplex as stated just a half block '
                          'from Central Park and a big range of restaurants. '
                          'The apartment is very stylishly furnished and more '
                          'spacious than we had expected - with plenty of room '
                          'for a family of five and no kids sharing beds.  '
                          'Overall, a holiday treat. Note that the lower floor '
                          'is a basement, but it is only for sleeping in so '
                          'not a big deal. ',
              'date': datetime.datetime(2015, 12, 30, 5, 0),
              'listing_id': '846854',
              'reviewer_id': '21022505',
              'reviewer_name': 'Chris'},
             {'_id': '58417833',
              'comments': 'The condo was excellent. It was clean, convenient '
                          'and comfortable. The location is ideal, especially '
                          'for a family. The proximity to Central Park is '
                          'amazing and there are numerous shops and tasty '
                          'restaurants nearby. We hope to stay there again the '
                          'next time we visit. There were no issues and '
                          'communication with the owner was seamless. ',
              'date': datetime.datetime(2016, 1, 2, 5, 0),
              'listing_id': '846854',
              'reviewer_id': '46646036',
              'reviewer_name': 'Antara'},
             {'_id': '60565357',
              'comments': 'Todo muy bien, la casa tal cual se ve en las fotos. '
                          'Dick muy atento y dispuesto a colaborar en todo. '
                          'Gracias!\r\n',
              'date': datetime.datetime(2016, 1, 25, 5, 0),
              'listing_id': '846854',
              'reviewer_id': '13099113',
              'reviewer_name': 'Roberta'},
             {'_id': '62933080',
              'comments': 'This apartment is truly special.  You feel like you '
                          'have your very own NYC apartment, the location is '
                          'superb and the apartment is spacious and well '
                          'appointed.',
              'date': datetime.datetime(2016, 2, 18, 5, 0),
              'listing_id': '846854',
              'reviewer_id': '1570232',
              'reviewer_name': 'Patrick'},
             {'_id': '67124680',
              'comments': 'The apartment is incredibly nice, super clean, well '
                          'decorated, comfortable and in an incredible '
                          'neighborhood, I love the UWS. Dirk and his support '
                          'team  were impeccable, the apartment was waiting '
                          'with fresh flowers. Did not meet them but were in '
                          'contact for any need or concern and even left by '
                          'the door fresh baked cookies for my sons one early '
                          'morning for breakfast.  The apartment is as '
                          'described, everything is working and well stocked. '
                          'Its big for Manhattan standards and the garden in '
                          'the back is a nice bonus. All the linen is very '
                          'nice. Dirk is easy going and flexible to adjust in '
                          'and outs according to flight schedules. He responds '
                          'intently to any question. Would love to be back '
                          'sometime.',
              'date': datetime.datetime(2016, 3, 27, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '20736565',
              'reviewer_name': 'Jorgelina'},
             {'_id': '72238607',
              'comments': 'Dirk was an excellent host who was very '
                          'accommodating and friendly. Everything went as '
                          'seamlessly as possible. The property is just as '
                          'pictured and is an extremely ideal location. I '
                          'would absolutely stay at this property again.',
              'date': datetime.datetime(2016, 5, 1, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '66142482',
              'reviewer_name': 'Matthew'},
             {'_id': '77231692',
              'comments': 'We had a great stay at this location.  Property was '
                          'clean and exactly as described.  Location is '
                          'excellent and we would definitely return again.  '
                          'Perfect for a NYC visit with kids -- gives you a '
                          'bit more room than a hotel.',
              'date': datetime.datetime(2016, 5, 30, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '13306748',
              'reviewer_name': 'George'},
             {'_id': '86956285',
              'comments': 'Beautiful spot on the upper east side! Conveniently '
                          'located to the Met, Natural History Museum and '
                          'Central Park. Safe quite neighborhood - excellent '
                          'option for families. The host Dirk allowed us an '
                          'early check in as well as a late check out with out '
                          'any penalty, much appreciated! ',
              'date': datetime.datetime(2016, 7, 18, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '10151591',
              'reviewer_name': 'Alec'},
             {'_id': '91767649',
              'comments': 'Great apartment in a nice part of town.  We are a '
                          'family of 6 (2 adults / 4 kids under 10) and there '
                          'was plenty of room.  The garden is a bonus.  Dirk '
                          'was incredibly helpful and responsive, both before '
                          'and during our stay.  Really close to Central Park '
                          'and the 86th St subway for quick access to midtown, '
                          'downtown and the main tourist sites.  Highly '
                          'recommended.',
              'date': datetime.datetime(2016, 8, 6, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '12228436',
              'reviewer_name': 'Chris'},
             {'_id': '94108021',
              'comments': 'Dirk and his assistant Debora Jo were outstanding '
                          'and incredibly responsive hosts and their apartment '
                          'was truly perfect for our vacation. We came with 2 '
                          'small children and the layout and location were '
                          'perfect for us. The house is pre-stocked with '
                          'childrens books, toys, a stroller and a pack and '
                          'play, and downstairs and back garden offer a lot of '
                          'extra space to spread out. The finishes and '
                          'fixtures are great, the interior design is '
                          'beautiful, and everything is very intelligently '
                          'laid out.\r\n'
                          '\r\n'
                          'This apartment is on a beautiful and quiet street, '
                          '1/2 block from Central Park and just steps to a '
                          'dozen great restaurants and cafes on Columbus and '
                          "Amsterdam. Childrens' Musuem. Natural History "
                          'Museum. All so close by. You can truly walk to '
                          'everything. \r\n'
                          '\r\n'
                          'Best of all, Debora Jo surprised us with a hand '
                          'baked carot cake. Classy all around.\r\n',
              'date': datetime.datetime(2016, 8, 14, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '2867590',
              'reviewer_name': 'Doug'},
             {'_id': '100126953',
              'comments': 'Great place to stay, perfect for a family and easy '
                          'location. Very enjoyable! ',
              'date': datetime.datetime(2016, 9, 7, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '30375884',
              'reviewer_name': 'Acacia'},
             {'_id': '110038600',
              'comments': "The house is awesome. It's ideally located close to "
                          'many shops and proximity to Central Park is a plus '
                          'with children. Dirk has been very friendly and '
                          'accommodating with us. We highly recommend this '
                          'house.',
              'date': datetime.datetime(2016, 10, 23, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '80955413',
              'reviewer_name': 'Pierre'},
             {'_id': '111763240',
              'comments': 'Dirk was a great host and the duplex is in a '
                          'fantastic location.  We had a really good time.',
              'date': datetime.datetime(2016, 11, 1, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '27144273',
              'reviewer_name': 'Stewart'},
             {'_id': '120732548',
              'comments': 'This home was perfect for our family of five.  The '
                          'UWS is family friendly and Central Park is a very '
                          'short walk away.  There is plenty of room, and the '
                          'home was well appointed.  We would gladly stay here '
                          'again on our next trip to the city. ',
              'date': datetime.datetime(2016, 12, 11, 5, 0),
              'listing_id': '846854',
              'reviewer_id': '26653106',
              'reviewer_name': 'Matthew'},
             {'_id': '130536281',
              'comments': 'Great stay! We had a wonderful experience!',
              'date': datetime.datetime(2017, 2, 6, 5, 0),
              'listing_id': '846854',
              'reviewer_id': '62287249',
              'reviewer_name': 'Melanie'},
             {'_id': '150170715',
              'comments': "This is our second stay in Dirk's lovely apartment. "
                          'It has been updated since our last stay years ago '
                          'and everything was perfect. We had our large family '
                          'with two small children and everyone was happy. We '
                          'cooked dinner one night and had plenty of room to '
                          'eat and play. Highly recommended!',
              'date': datetime.datetime(2017, 5, 7, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '12149956',
              'reviewer_name': 'Beth'},
             {'_id': '161737742',
              'comments': "Dirk's place is an oasis from busy NYC. Upper west "
                          "side is calm, it's 1 block fr Central Park, easy "
                          'subway access and the apt is really well equipped. '
                          'Dirk was easy to work with, has a smooth check-in '
                          'and check out process. A perfect situation for our '
                          'family retreat!',
              'date': datetime.datetime(2017, 6, 18, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '1172650',
              'reviewer_name': 'Sage'},
             {'_id': '179439234',
              'comments': 'No need to check any further!  This place is better '
                          'then you can imagine. Pictures do not do the '
                          'apartment justice. Perfect location on the '
                          'Upperwest Side. Steps to Central Park and about a '
                          'block to Subway. Awesome restaurants within walking '
                          'distance. \n'
                          'Apartment was extremely comfortable and modern. '
                          'Shower was great along with all the personal '
                          'touches of comfort around the house. Outdoor area '
                          'is truly tranquil and peaceful. Dirk is an amazing '
                          'host and will answer all your questions and '
                          'concerns within minutes. \n'
                          'We stayed almost 3 weeks and were very sad to '
                          'leave. You actually feel like a New Yorker!',
              'date': datetime.datetime(2017, 8, 7, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '110182771',
              'reviewer_name': 'Jeremy'},
             {'_id': '193470202',
              'comments': "This spacious garden apartment is truly that!  It's "
                          'a modern, very efficiently designed home with many '
                          'convenient touches including central air '
                          'conditioning and full size laundry and dryer '
                          'machines. Our family of three adults and two '
                          'teenagers were extremely comfortable.  And Dirk is '
                          'a tremendous host. He and his team were extremely '
                          'responsive. Truly appreciated his hospitality.',
              'date': datetime.datetime(2017, 9, 13, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '23357910',
              'reviewer_name': 'Melissa'},
             {'_id': '197012830',
              'comments': "Dirk's place is a wonderful gem in the middle of "
                          'the upper west side. It is nice, clean and '
                          'spacious. The kitchen is well equipped and the '
                          'bathrooms were perfectly clean. We will be happy to '
                          'return someday. Thanks Dirk!',
              'date': datetime.datetime(2017, 9, 24, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '23780333',
              'reviewer_name': 'Hagit'},
             {'_id': '216330826',
              'comments': 'It was our first time using Airbnb and I have to '
                          'admit I was not sure what to expect, but could not '
                          'asked for better accommodations and host.\n'
                          '\n'
                          'The location is perfect, you have everything closed '
                          'by including Central Park a subway station and all '
                          'the shops on Columbus Av.\n'
                          '\n'
                          'The apartment itself is stylish, clean and '
                          'comfortable.\n'
                          '\n'
                          'Thank you Kirk!',
              'date': datetime.datetime(2017, 12, 3, 5, 0),
              'listing_id': '846854',
              'reviewer_id': '135493693',
              'reviewer_name': 'Leticia'},
             {'_id': '225471704',
              'comments': 'Nous venons de passer un très agréable séjour '
                          "durant 8 jours, afin de démarrer l'année 2018 à "
                          'New-York !\n'
                          "L'appartement de Dirk est vraiment formidable : "
                          'spacieux, moderne, pratique (y compris par temps de '
                          'neige avec un couloir servant de vestibule aussi où '
                          'faire sécher les affaires mouillées.)\n'
                          'La répartition sur 2 niveaux est optimum avec des '
                          "ados à qui nous avions dédié l'espace du bas. Tous "
                          'le confort existe dans cet appartement avec un '
                          'electro-ménager à la pointe.\n'
                          'Enfin, l’emplacement géographique est vraiment '
                          'TOP¨, à proximité de Central Parcs, de toutes les '
                          'commodités pour les courses, des quartiers '
                          'touristiques et animés, du métro et des bus.\n'
                          'Je recommande cet appartement et remercie '
                          'sincèrement Dirk de son écoute, et de ses '
                          'conseils.\n'
                          'Cdt.',
              'date': datetime.datetime(2018, 1, 6, 5, 0),
              'listing_id': '846854',
              'reviewer_id': '147862339',
              'reviewer_name': 'Isabelle'},
             {'_id': '228619006',
              'comments': 'Apartment in a typical brownstone house in the UWS, '
                          'great location and a lot of space (even though we '
                          'could not enjoy the private backyard because of the '
                          'cold weather, my kids had a lot of space to play '
                          "inside and in the basement). We weren't there for "
                          'tourism in New York City, so we actually "lived" in '
                          'the house for 10 days, cooking meals (the kitchen '
                          'is great!), washing clothes, working and playing '
                          'and we found everything that we needed for a '
                          "comfortable stay. We haven't met Dirk in person, "
                          'but he was very easy to communicate with and for '
                          'sure has good taste in furnishing. The only '
                          '"negative" point, if I must mention anything that '
                          'could be improved, is the lack of storage room in '
                          'the second bedroom. Otherwise, everything was '
                          'great!',
              'date': datetime.datetime(2018, 1, 20, 5, 0),
              'listing_id': '846854',
              'reviewer_id': '15028689',
              'reviewer_name': 'Daniela'},
             {'_id': '236838929',
              'comments': 'great spot. dirk was responsive and available to '
                          'answer questions. i lived in the neighborhood and  '
                          'felt right at home in the brownstone. will '
                          'definitely return for another visit.',
              'date': datetime.datetime(2018, 2, 20, 5, 0),
              'listing_id': '846854',
              'reviewer_id': '143147130',
              'reviewer_name': 'Susan'},
             {'_id': '246042747',
              'comments': 'Dirk’s place was great for a family!  Having an '
                          'outdoor garden area was a huge plus, since we have '
                          'an 8 year old and a 2 year old.  We are from '
                          'Florida and it snowed, and they had a safe and '
                          'clean place to make a snowman!  It was a '
                          'comfortable, cozy place to stay, with lots of '
                          'restaurants and a great park nearby.  Dirk was very '
                          'responsive, and check in was  easy.\n'
                          'My complaint is about the third bedroom, which is '
                          'in a finished basement.  There was no heat down '
                          'there, and the fold out couch was very '
                          'uncomfortable.  But the two bedrooms and the rest '
                          'of the living area located on the main floor were '
                          'perfect.\n'
                          'Overall I would definitely recommend Dirk’s place '
                          'to you.',
              'date': datetime.datetime(2018, 3, 24, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '98527030',
              'reviewer_name': 'Heather'},
             {'_id': '250047168',
              'comments': 'Location Location Location - Central Park is right '
                          "there, subway around the corner one way, Joe's "
                          'coffee around the corner the other way, Gristedes, '
                          'too. Wine bar across from the apartment, quiet '
                          'quiet street, totally clean apartment, well '
                          'equipped as far as furniture, kitchen, bathrooms, '
                          'etc. but not overstuffed, so there is plenty of '
                          'room for your things as well. Dirk  is extremely '
                          "quick to offer a tip, communication very fast, he's "
                          'a terrific host. I am from NYC originally but this '
                          "is not 'my' neighborhood so it was a real treat to "
                          'get to know the Upper West Side. My kids, husband '
                          'and friends & family all loved the apartment, too. '
                          "If you're traveling for a while as we were, the "
                          'washer & dryer are a huge assist. You cannot go '
                          'wrong with this place, it checks all the boxes. '
                          'Enjoy!',
              'date': datetime.datetime(2018, 4, 3, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '1351749',
              'reviewer_name': 'Pamela'},
             {'_id': '250885670',
              'comments': "Dirk's apartment is a real treasure. I lived in "
                          'Manhattan for many years so I can appreciate the '
                          'quality of the space. Nowhere can you find a duplex '
                          'on the Upper West Side with this much room, and all '
                          'the included amenities, for this price. It handled '
                          'my family of 5 easily . The garden space out back '
                          'is a real plus. The place has everything you could '
                          "possibly need. It's on a quiet block just steps "
                          'from Central Park and the Museum of Natural History '
                          'with easy access to the subway. Great restaurants '
                          'abound in the area. The physical layout was quite '
                          'nice and even though it was a garden-level '
                          'apartment it was completely quiet at night; no '
                          'street noise to speak of, and no noise from '
                          'upstairs. The design is mid-century modern, with '
                          'European flair, a pretty neat combination. The '
                          'bottom part of the duplex was a perfect area for my '
                          '13 year-old to commandeer  as it is set off from '
                          'the main area by a cool metal staircase. There is a '
                          '1/2 bath on the lower level and a nicely sized full '
                          'bath on the first floor. Appliances were all '
                          'relatively new and in good working order. \n'
                          '\n'
                          'I appreciatethe fact that the apartment is on a '
                          'residential block of lovely brownstones; there is a '
                          'real neighborhood feel to the UWS and its easy to '
                          'slip into the day-to-day routines of the block. We '
                          'live nearby on Long Island and spent three days '
                          'here while some work was being done at our house. '
                          'We will definitely be back on future occasions when '
                          'we need a dose of Manhattan.\n'
                          '\n'
                          'Dirk was very responsive to any inquiry I had about '
                          'the space. I would rent from him again.',
              'date': datetime.datetime(2018, 4, 6, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '98965397',
              'reviewer_name': 'Mark'},
             {'_id': '258669581',
              'comments': 'Ottima posizione appartamento spazioso pulito e '
                          'contemporaneo ideale per famiglie.',
              'date': datetime.datetime(2018, 4, 29, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '14114040',
              'reviewer_name': 'Silvio'},
             {'_id': '262363268',
              'comments': 'Dirk was a very gracious and flexible host.  The '
                          'space is lovely, with a well equipped kitchen .  '
                          'The close proximity to Central Park was great for '
                          'morning walks and playground time. It is also just '
                          'a minute walk from multiple restaurants, a grocery '
                          'store and a deli.   I would recommend it to '
                          'families/guests up to a party of five.',
              'date': datetime.datetime(2018, 5, 8, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '14862149',
              'reviewer_name': 'Caitlin'},
             {'_id': '265582204',
              'comments': 'Dirks place was perfect for our family of 4 ( Kids '
                          'are 20 and 18). They loved having their own space '
                          'to sleep- one upstairs and one down on pullout '
                          'couch. The apt. is very clean and just as pictured. '
                          'They outdoor space was perfect for us to have a few '
                          'family members for lunch after my daughters college '
                          'graduation! Dirk is great with communication and '
                          'very easy to work with. We loved the neighborhood '
                          'and ate out at one of the local restaurants almost '
                          'every night- plenty to choose from. Also easy to '
                          'buy groceries in the neighborhood. Would definitely '
                          'would stay again-- perfect for families!',
              'date': datetime.datetime(2018, 5, 17, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '27272857',
              'reviewer_name': 'Kim'},
             {'_id': '284398937',
              'comments': 'We had an amazing stay at Dirk’s apartment. '
                          'Everything was very neat and clean. It’s 3 blocks '
                          'away from the subway station and there are lots of '
                          'stores and restaurants walking distance. Dirk was '
                          'always quick to respond and very accommodating with '
                          'check in and check out times. Central Park half a '
                          'block away with kids was incredible. I hope we can '
                          'come back soon!',
              'date': datetime.datetime(2018, 7, 1, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '2651289',
              'reviewer_name': 'Bianca'},
             {'_id': '293587820',
              'comments': 'Dirk’s apartment was ideal for our family with two '
                          'children aged 8 and 5. Beautifully appointed and '
                          'comfy beds. The location was perfect for access to '
                          'subway, Central Park and great food options. '
                          'Communication was always very clear and responsive. '
                          'We will really miss the lovely wine bar across the '
                          'road.',
              'date': datetime.datetime(2018, 7, 20, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '157246315',
              'reviewer_name': 'Anthony'},
             {'_id': '300590287',
              'comments': "Dirk's home was the perfect landing spot for our "
                          "family's two week vacation in NYC. The location is "
                          'incredible with quick entry into Central Park, lots '
                          'of great restaurants, and only a few blocks to the '
                          'subway and the Natural History Museum. '
                          'Exceptionally clean with thoughtful attention to '
                          'outfitting the home with anything our family could '
                          'need. There was lots of space for us to spread out '
                          'and relax, with the outdoor garden as a wonderful '
                          'bonus. A private entrance with space to store '
                          'umbrellas and scooters was fantastic. Dirk was '
                          'quick to respond to questions and wonderfully '
                          'thoughtful and kind (we came home to a delicious '
                          "plate of cookies after a long day's adventure). We "
                          "were very sad to leave and can't wait to return "
                          'soon. ',
              'date': datetime.datetime(2018, 8, 2, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '29521046',
              'reviewer_name': 'Kate'},
             {'_id': '322271688',
              'comments': 'A very pleasant apartment in a great location, near '
                          'the park, restaurants and public transportation. '
                          'Place is clean and well equipped. Dirk is very '
                          'welcoming, was recipient to our request on early '
                          'check in, and went out of his way to assist with '
                          'problems that came up. We highly recommend the '
                          'place..',
              'date': datetime.datetime(2018, 9, 12, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '23780333',
              'reviewer_name': 'Hagit'},
             {'_id': '323445517',
              'comments': 'Dirk was an outstanding host, very accommodating '
                          'and quick with communication.  His garden-level '
                          'condo is an ideal location, close to everything you '
                          'need but on a very nice and quiet side street.  The '
                          'apartment itself was immaculate and worked great '
                          'for a family with several kids.',
              'date': datetime.datetime(2018, 9, 15, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '214928364',
              'reviewer_name': 'Jeff'},
             {'_id': '326552814',
              'comments': 'Dirks house is very comfortable on a beautiful road '
                          'walking distance fron the wonderful central park \n'
                          'He was kind to accept our big family with the best '
                          'of energy \n'
                          'We would happily visit again \n'
                          'Highly recommedable',
              'date': datetime.datetime(2018, 9, 22, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '6183796',
              'reviewer_name': 'Carolina'},
             {'_id': '329749717',
              'comments': 'This was our first experience with AirBnB and it '
                          'was fantastic. We were looking for a place to stay '
                          'in NYC with a "neighborhood feel" and Dirk\'s place '
                          'fit the bill perfectly. The Upper West side is a '
                          'great place and the proximity to the subway made '
                          'everything perfectly accessible. My kids (ages 14, '
                          '11, 8) all loved were able to spread out and not be '
                          'on top of each other like most trips staying in a '
                          'hotel. The garden space was a perfect cherry on top '
                          'of the location.',
              'date': datetime.datetime(2018, 9, 29, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '195206859',
              'reviewer_name': 'Harlan'},
             {'_id': '343161572',
              'comments': 'Dirks place suited our every need. Location to '
                          'Central Park is less than a block, great for that '
                          'morning stroll or run to start the day. It was so '
                          'nice to leave the hustle and bustle behind  after '
                          'spending a day on the well worn tourist path and '
                          'enjoy a local night out for dinner. No shortage of '
                          'great options around the corner. Overall was '
                          'awesome, would stay here again if I get the '
                          'opportunity.',
              'date': datetime.datetime(2018, 10, 30, 4, 0),
              'listing_id': '846854',
              'reviewer_id': '69474245',
              'reviewer_name': 'Mark'},
             {'_id': '347005196',
              'comments': 'Great apartment on two levels. The bedrooms at '
                          'opposite ends for more privacy. Second bathroom '
                          '(1/2) on lower level. Well equipped for families '
                          'with young kids. Kitchen has everything you need to '
                          'cook. Kids only missed having a TV on the main '
                          'level while we cooked (TV is downstairs). Not a bad '
                          'thing after all! \n'
                          'Location is perfect: great coffee, restaurants, '
                          "groceries (Gristedes, Trader Joe's, Zabars), "
                          "Central Park, subway, museums, farmer's market "
                          '(Tucker Square/Lincoln Center).',
              'date': datetime.datetime(2018, 11, 10, 5, 0),
              'listing_id': '846854',
              'reviewer_id': '157669572',
              'reviewer_name': 'Maryline'},
             {'_id': '355765598',
              'comments': "Our family had an amazing stay at Dirk's apartment. "
                          'We had to travel for a last minute family funeral '
                          'and Dirk really took care of us. He expedited the '
                          'cleaning of the space from former guests and made '
                          'our arrival/checkout seamless. The space is simply '
                          'incredible and a real gem in the city. It has '
                          'really nice touches and is quite spacious for the '
                          'city. No one likes traveling for funerals, but the '
                          'space could accommodate our larger group and meant '
                          'we could all be together. It was exactly what we '
                          'needed. Dirk was extremely responsive and a great '
                          'host overall. Would definitely stay here again!',
              'date': datetime.datetime(2018, 12, 5, 5, 0),
              'listing_id': '846854',
              'reviewer_id': '40741248',
              'reviewer_name': 'Tom'},
             {'_id': '357183638',
              'comments': 'Fantastic!',
              'date': datetime.datetime(2018, 12, 9, 5, 0),
              'listing_id': '846854',
              'reviewer_id': '12237028',
              'reviewer_name': 'Dominique'},
             {'_id': '410667056',
              'comments': 'Lovely garden apartment with European touches. Nice '
                          'and basic but perfect for kids! Great open kitchen '
                          'and big table to sit and have meals. Next to '
                          'wonderful things to do with kids - museums, Central '
                          'Park , tons of shops and kid friendly restaurants. '
                          'Linens were super soft, plenty of towels, stocked '
                          'kitchen with kids plates and cups, strollers and '
                          'toys. I can’t say enough great things about our '
                          'stay. We are New Yorkers but our apartment is '
                          'currently rented with tenants. This was a perfect '
                          'next best! We will be back!',
              'date': datetime.datetime(2019, 2, 10, 5, 0),
              'listing_id': '846854',
              'reviewer_id': '66167',
              'reviewer_name': 'Kelly'}]}
In [51]:
botanicgarden_listings[470]['reviews']
Out[51]:
[{'_id': '4462736',
  'date': datetime.datetime(2013, 5, 6, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '6108625',
  'reviewer_name': 'Sara And Louis',
  'comments': 'We stayed there for one week with our 1 1/2 old daughter. Lovely little place with a garden - perfect for her to run around and play. It was such a nice and quiet street - you could even hear birds chirping in the morning. Amazing location - one block from the park, and one block from the nicest part of the upper westside.\r\nWe would definitely stay there again.'},
 {'_id': '4843213',
  'date': datetime.datetime(2013, 5, 28, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '5646285',
  'reviewer_name': 'Kat',
  'comments': "We loved staying here, it's perfect or a family and a beautiful, convenient location. Everything you could possibly need at your doorstep.\r\n\r\nDirk was a great host letting us in and showing us around when we arrived, he even helped us with our bags. Debra-Jo who assists with the property when Dirk isn't around was fantastic and helpful too. She even asked some delicious cookies for us. I look forward to staying here again."},
 {'_id': '5134853',
  'date': datetime.datetime(2013, 6, 14, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '6642260',
  'reviewer_name': 'Titus',
  'comments': "What a place to stay for a family in NYC! This apartment was amazing for the 5 of us, it is more like a 4 bedroom apartment rather than 2.5, as there is so much space over the 2 floors. The best things about it include the amazing interior design and furnishings, the size of the space and the proximity to Central Park that is no more than 100 yards away (the subway is about 200 yards away). The apartment also has a garden and a BBQ grill which is remarkable considering the location.\r\n\r\n My only slight worry was the stairs that were quite steep for my 2 year old but that didn't matter as we put a sofa in front of them so he couldn't access them. \r\n\r\nOur hosts, Dirk and his family and Debra Jo were amazing. They left us some cookies which my wife and kids loved and made us feel really welcome. They even lent us a wide variety of toys and scooters to play with and my daughter ended up playing with our host's kids. We had the best time in New York, and so much thanks is due to the amazing hospitality and apartment that our hosts let us stay in. Thank you guys."},
 {'_id': '5709508',
  'date': datetime.datetime(2013, 7, 13, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '5414040',
  'reviewer_name': 'Kristen',
  'comments': 'Our family of four just enjoyed a fantastic (near month) stay at Dirk\'s lovely apartment. The apartment has been renovated with top quality materials and appliances.  The location is unbeatable - a few blocks from Natural History Museum and subway, half a block from Central Park, and only a block away from our favorite breakfast restaurant, and a zillion other great restaurants. Dirk was absolutely lovely and efficient to deal with - as was Debra Jo who as our contact for anything we needed. The space, while only being "2 bedroom" could clearly cater for more.  We only used the top floor, and rarely went to the basement level, but it was great to stretch out into and not feel cluttered.  Thanks for Dirk and Debra Jo for our lovely stay.'},
 {'_id': '6047858',
  'date': datetime.datetime(2013, 7, 28, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '1766134',
  'reviewer_name': 'Christian',
  'comments': 'Perfect UWS base for a group of five.  Stylish apartment with outside space is ideal for young children.'},
 {'_id': '7336780',
  'date': datetime.datetime(2013, 9, 16, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '5671165',
  'reviewer_name': 'Julian',
  'comments': "Absolutely gorgeous apartment located in a very cozy part of the busiest city in the world. The apartment is very spacious (especially considering the fact that you're in New York), and the kitchen and living rooms are amazing. If you like to cook, this is the place for you- the kitchen space is extremely generous, there is also an kitchen island with some benches. Dirk provided all the pots/pans/kitchenware, and the gorgeous dining table seats 6. Lastly, the patio in the back (see picture) was an amazing place to just unwind and relax. If you sit there for long enough, you will forget you are living in one of the most populous cities in the world. Oh, and if you decide that the patio isn't a good enough way to escape from the city, central park is only a 5 minute walk away. I would highly recommend this apartment for anyone looking for a great time in NY! "},
 {'_id': '7644415',
  'date': datetime.datetime(2013, 9, 28, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '7955896',
  'reviewer_name': 'Anders',
  'comments': 'We had a wonderful time in NYC much thanks to Dirk and his wife. The apartment was wonderful. Very clean and stylish. They were very helpful and answered many questions and always with a very fast respond time. We stayed 5 adults and 1 child of 4 without any problems. They apartment had everything that you need and there is a grocery store close by on the corner of the street. \r\n\r\nI can very much recommend this rental.'},
 {'_id': '7782099',
  'date': datetime.datetime(2013, 10, 2, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '1381740',
  'reviewer_name': 'Bryan',
  'comments': "I shared this great apartment with my business partner and his wife & kid. It was just perfect. It is much larger than any other place I've stayed in NY, and the extra rooms downstairs were perfect for the little one to stay. It really worked as a 3 bedroom for us.\r\n\r\nThe hosts we re accommodating, quick to respond, and very thoughtful. I'd stay there again in a heartbeat."},
 {'_id': '8350419',
  'date': datetime.datetime(2013, 10, 27, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '4574124',
  'reviewer_name': 'Eric',
  'comments': 'Superbe logement, très bien placé et parfaitement équipé.\r\nJe le recommande vivement.\r\nMerci Dirk.'},
 {'_id': '8558957',
  'date': datetime.datetime(2013, 11, 5, 5, 0),
  'listing_id': '846854',
  'reviewer_id': '6641442',
  'reviewer_name': 'Ashlin',
  'comments': 'My family stayed here for the NYC Marathon weekend and it was the perfect place. It had everything we needed and great location close to the park (very convenient for the finish line of the marathon!). I would highly reccommend staying here! We also received some delicious muffins! Thank you Dirk for your hospitality.'},
 {'_id': '8689544',
  'date': datetime.datetime(2013, 11, 12, 5, 0),
  'listing_id': '846854',
  'reviewer_id': '2264036',
  'reviewer_name': 'Kirsten',
  'comments': "A gorgeous, large apartment an easy walk to everything you need. Beautifully furnished and very well equipped. Easily accommodated two adults and a very busy three-year-old. We'll definitely be back. Thanks for everything Dirk!"},
 {'_id': '9587170',
  'date': datetime.datetime(2014, 1, 3, 5, 0),
  'listing_id': '846854',
  'reviewer_id': '3616414',
  'reviewer_name': 'Fazzari',
  'comments': 'Très bel appartement, spacieux, très bien décoré et bien placé à côté de central park. 2 stations de métro desservant Manahattan et Brooklyn sont à deux pas.\r\nDirk est très réactif et arrangeant (nous sommes arrivés à 2h du matin!).\r\nNous étions 5, il y a un grand lit très confortable, l autre lit double est un canapé lit peu confortable et les autres lits sont des petits lits une place.\r\n\r\nNous le recommandons.\r\n'},
 {'_id': '11833552',
  'date': datetime.datetime(2014, 4, 16, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '12449048',
  'reviewer_name': 'Carl',
  'comments': "The apartment was fantastic for 3 adults and 2 toddlers.  It was easy to get all of our gear into the apartment, had a very large foyer outside of the apartment proper for shoes, strollers, etc.  Inside, the apartment was very nice with good furniture, high end bathrooms (Duravit/ Grohe) useful kitchen with nice applicances.  It was also spotless (even under the bed that we moved to put up 2 pack and plays).  The downstairs area was great so our nanny had her own space -- felt almost like 2 separate apartments.  \r\n\r\nThe manager of the apartment was great!  She saved us a parking space in front of the building and was extremely responsive to e-mails, texts and phone calls.  Met us at the apartment and walked through everything.  Also was great to have a washer and dryer to do a couple loads of laundry.\r\n\r\nFinally, location was fantastic.  I lived on the Upper West Side for 5 years and everthing was nearby.  Zabars, Gristedes, Macoron Parlour, Levain Bakery, Fairway, Sarabeth's, b Cafe, Corvo (cool for drinks), etc."},
 {'_id': '12880820',
  'date': datetime.datetime(2014, 5, 13, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '12149956',
  'reviewer_name': 'Beth',
  'comments': "Best stay ever in New York! We have been to the city many times to visit our children, and Dirk's lovely apartment was the highlight of our latest visit. Easy to get to via car or subway; quiet, relaxing atmosphere; clean and comfortable and beautifully decorated. We used the patio and grill for lunch one day, and enjoyed sipping wine under the stars at night.  Debra Jo answered any questions we had immediately, and left a delicious carrot cake as a Mother's Day treat. We highly recommend Dirk's apartment!"},
 {'_id': '13221319',
  'date': datetime.datetime(2014, 5, 22, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '10443961',
  'reviewer_name': 'Daisy',
  'comments': "Dirk is really friendly, easy & fast for communication.\r\n\r\nThe house is great--I didn't expect such a spacious house in upper west side, just one block away from Central Park!\r\n\r\nCheck-in was easy, neighborhood is nice, house is comfortable!\r\n\r\nWould highly recommend for a family trip!"},
 {'_id': '21507628',
  'date': datetime.datetime(2014, 10, 19, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '18773117',
  'reviewer_name': 'Christie',
  'comments': "We had an amazing time at this beautiful apartment in the upper west side of NYC. The photos don't do the place justice - it is spacious, and beautifully decorated. The beds are super comfy, and the kitchen is very well equipped. Dirk and Debra-Jo made us feel very comfortable and were very quick to provide us with everything we needed. The area is fantastic for restaurants, and the metro is one block away and Central Park is at the end of the street! We hope to come back one day. "},
 {'_id': '21844519',
  'date': datetime.datetime(2014, 10, 25, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '21932899',
  'reviewer_name': 'Gerdien',
  'comments': 'Well located close to Central Park. Nice, clean and a lot of space. Kitchen well equiped. \r\nSubway nearby. We arrived late but thanks to the responsive communication, everything went smoothly. \r\nDirk and DebraJo seemed to be relaxed People. Great place to stay. '},
 {'_id': '23317990',
  'date': datetime.datetime(2014, 11, 29, 5, 0),
  'listing_id': '846854',
  'reviewer_id': '16288134',
  'reviewer_name': 'Mendi',
  'comments': "This was our first experience with Airbnb and it couldn't have been better. Everything ran very smoothly. Dirk's apartment was beautifully decorated, had plenty of space and was in the perfect location for our family vacation. They even baked us a cake! Such a thoughtful gesture. I'd highly recommend this apartment and set of hosts!"},
 {'_id': '23649523',
  'date': datetime.datetime(2014, 12, 7, 5, 0),
  'listing_id': '846854',
  'reviewer_id': '5369186',
  'reviewer_name': 'Kate',
  'comments': "Perfect location! Beautiful, clean and very comfortable apartment! And very responsive and friendly host and property manager! (The property mgr even fm dropped off homemade scones for us one morning :-) We spent a week at this wonderful apartment and I can safely say we'll be returning in the future for sure! Perfect for 2 couples as there are 2 queen bedrooms or for a family with small children. Our host even provided toys, games & strollers for the little ones.  Also the apartment is spacious so you never feel like you're on top of each other. The kitchen was stocked with everything you need to cook but if you feel like eating out there's literally dozens of fabulous places within walking distance.  I highly recommend this apartment to anyone looking to have a comfortable, relaxing lodging experience in NYC!"},
 {'_id': '24632521',
  'date': datetime.datetime(2015, 1, 1, 5, 0),
  'listing_id': '846854',
  'reviewer_id': '4574124',
  'reviewer_name': 'Eric',
  'comments': 'Dirk was perfect.\r\nThe apartement was also wonderfull.\r\nWe will come again.\r\nThanks'},
 {'_id': '26304701',
  'date': datetime.datetime(2015, 2, 9, 5, 0),
  'listing_id': '846854',
  'reviewer_id': '23369875',
  'reviewer_name': 'Mel',
  'comments': "Wonderful, wonderful, wonderful. Dirk's apartment was exactly what we wanted. We were traveling with 5 adults, 4 year old and a 1 year old. Everything we needed was supplied. Very spacious, very comfortable and very homely. Dirk stayed in constant communication with us, before arriving and while in New York. Thank you so much for sharing your home with us."},
 {'_id': '26616049',
  'date': datetime.datetime(2015, 2, 16, 5, 0),
  'listing_id': '846854',
  'reviewer_id': '20228505',
  'reviewer_name': 'Joe',
  'comments': "We had a great experience at Dirk's place. Great location, great apartment, great host. \nNo hesitations recommending this place. "},
 {'_id': '30222354',
  'date': datetime.datetime(2015, 4, 19, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '19118604',
  'reviewer_name': 'Peyton',
  'comments': 'Accommodations were exactly as described in the listing. The apartment is bright, spacious and had everything we could have wanted with an 18-month old in tow. Dirk was great, providing concise info about key pick up, check out time, etc. Location was unbelievable. Right next to Central Park, the Natural History Museum and the blue / orange subway lines. Really a family friendly NYC neighborhood and walking distance to Shake Shack. What could be better?'},
 {'_id': '31318190',
  'date': datetime.datetime(2015, 5, 4, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '29060742',
  'reviewer_name': 'Michelle',
  'comments': 'My group had a wonderful stay at this beautiful apartment. The outdoor garden was an oasis of sorts and the decor was mid century modern-straight out of Mad Men! The pictures simply do not do the wonderful space justice. The host was easy to communicate with and accommodating in regards to check in/check out times. We were greeted by homemade brownies and thoroughly enjoyed our stay. The location was also fantastic as it was right near Central Park and the American Museum of Natural History. Cannot recommend this apartment enough and hope to return in the future.'},
 {'_id': '32176310',
  'date': datetime.datetime(2015, 5, 15, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '17934692',
  'reviewer_name': 'Lutz',
  'comments': "Dirk has been a fantastic host and the appartment was very beautiful, clean and cozy. We really loved to stay in Dirk's appartment and especially enjoyed the littlte garden. Dirk was very responsive and answered all our questions immediately. He gave us very good restaurant tips in the neighbourhood. It was amazing that we were surprised with fresh baked brownies during our stay. We will definitely come back!"},
 {'_id': '33084167',
  'date': datetime.datetime(2015, 5, 25, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '22207989',
  'reviewer_name': 'Kirsten',
  'comments': "We had a fantastic 9 night stay in the apartment.  It was very clean, quiet (very unique for NYC!), spacious and comfortable for us (4 adults and 1 child). Dirk and his family were so welcoming and helpful throughout the stay: there was a delicious welcome cake, assisting my parents with their bags and arrival, a well equipped apartment (kitchen has everything you need, and Dirk kindly provided a box of toys which kept our daughter happy for hours and a stroller for us to all get out and about despite the jet lag) and farm fresh eggs from the farmers' market.  We valued their local knowledge and assistance, especially when our daughter broke her arm...the advice helped us get everything sorted very quickly.  And the garden is a little oasis.\nAll in all, I can highly recommend Dirk as a host and his apartment.  We had an excellent experience and would definitely return."},
 {'_id': '33786396',
  'date': datetime.datetime(2015, 6, 1, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '5468980',
  'reviewer_name': 'Fanny',
  'comments': "Experience Dirk house was simply fabulous, I have no words to thank them for everything they did for us. Debra and him exceeded their responsibilities as hosts.\n1- Being a group of 6 adults and a 7 years old child traveling through our wedding, it was very important for us to find a comfortable place and also nice one for our pre-wedding photo shoot. During the booking process Dirk was very friendly and answered each of my questions more attentively.\n2- The place: an apartment on the ground floor (with small but lovely garden with deck) with two main rooms (one with a window overlooking the garden) and a third room in the basement, hardwood floors, kitchen modern, fully equipped, air conditioning, WiFi, TV in the basement (which we never used), minimalist modern finishes ... In short: beautiful\n3- Location: one block from Central Park! Two blocks from the Blue (C) line and about 3 blocks from the red line on Broadway.\nA Deli on the corner for fast food purchases. A quiet and safe area. UWS is a family area ...\n4- Communication: Debra was at all times aware of our needs via whatssap; We had a big problem with my brother's family that used for the first time Airbnb in another apartment In the  area, and had to leave abruptly because The person rented them was not the real owner. Debra and Dirk helped with this urgency, which I will be grateful forever! My advice: always read the reviews and ask if the writer own the property.\n100% recommend this accommodation. Dirk we will back!"},
 {'_id': '34154527',
  'date': datetime.datetime(2015, 6, 5, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '7581636',
  'reviewer_name': 'Madelyn',
  'comments': 'Apt had everything we needed. Well stocked and very comfortable. Loved the vibe and location was superb. Very close to museum,park and restaurants. '},
 {'_id': '34865758',
  'date': datetime.datetime(2015, 6, 13, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '13240642',
  'reviewer_name': 'Steve',
  'comments': 'Really great location half a block from park and 2 blocks from subway. Apt was clean and spacious and quiet. Great AC also for the hot summer days. Dirk was incredibly responsive and helpful throughout trip. Would stay again anytime'},
 {'_id': '35819002',
  'date': datetime.datetime(2015, 6, 22, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '3954112',
  'reviewer_name': 'Jennifer',
  'comments': "We stayed with three adults and 2 young children (ages 3 & 1) and Dirk was a tremendous host. He made available for us a travel crib, a toddler bed, toys, scooters and a stroller and was provided prompt and helpful communication whenever needed. He even brought by a bicycle pump so we could pump up the stroller tires. The space was exceptionally clean and, for NYC, remarkably spacious. The apartment is well-appointed with sheets, towels, soap, detergent for the washing machine, and kitchen equipment, and very much as pictured. I wish only we'd lived there when we were Manhattan residents! Oh, and the cookies the housekeeper brought for us were divine, and such a kind touch."},
 {'_id': '39265935',
  'date': datetime.datetime(2015, 7, 22, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '25677360',
  'reviewer_name': 'Marnix',
  'comments': 'Had a great time in NY, and this appartement. Was perfect for our family, with 3 kids. Close to Central Park, subway, and nice restaurants and places to buy required breakfast or other good food.\nWhen we arrived, it smelled a bit, the host came to act quickly. Later I noticed same smell in whole area, I guess result from torential rains earlier that morning, so not really something that could be influenced. All in all, we had a great stay.'},
 {'_id': '40984156',
  'date': datetime.datetime(2015, 8, 3, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '32680253',
  'reviewer_name': 'Li',
  'comments': 'It is a wonderful house for our family with two kids. This house is very nice, comfortable and convenient. My family had a greet time here. '},
 {'_id': '41334822',
  'date': datetime.datetime(2015, 8, 7, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '3704971',
  'reviewer_name': 'Ian',
  'comments': 'Dirk was very accommodating and welcoming when booking and arranging the vacation. The apartment was as pictured with high quality finishing and fixtures throughout.  Some little extra touches such as the tea and toiletries were thoughtful and well received as well as the box of games and toys as he knew that we were bringing our young daughter. \r\n'},
 {'_id': '47075088',
  'date': datetime.datetime(2015, 9, 15, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '41691806',
  'reviewer_name': 'N',
  'comments': 'The apartment is lovely and spacious and is very well organised for guests. Dirk is very responsive to queries. The apartment is on a beautiful tree-lined street. The garden in the back is fantastic. I would love to come back again.'},
 {'_id': '47833030',
  'date': datetime.datetime(2015, 9, 21, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '6601130',
  'reviewer_name': 'Stephanie',
  'comments': "We were six friends discovering New York for the first time and dirk's appartment was the perfect place to do that. Best location, spacious and confortable bedrooms furnished with taste. Dirk was helpful and responsive. Special thanks to Debrajo who took care of us and solve all our little issues during our stay. Highly recommanded !"},
 {'_id': '48181387',
  'date': datetime.datetime(2015, 9, 24, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '13007871',
  'reviewer_name': 'Mireille',
  'comments': "A terrific stay.   It's a beautiful apartment in a great location. Host is very accommodating and responsive.  Apt is well equipped. We'd definitely stay here again. The only minor downside was the 7am sounds of kids upstairs... A little early for West Coasters... But to be expected in a NYC brownstone."},
 {'_id': '48678460',
  'date': datetime.datetime(2015, 9, 28, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '33035012',
  'reviewer_name': 'Thomas',
  'comments': 'Fantastic apartment where we spent three nights for a wedding. Dirk provided us with a crib in the master bedroom for our infant and the guest room was ready with two beds for our older boys (5 and 7). Another couple stayed with us on the sofa-bed in the basement. It was all perfect and we loved eating our meals outside on the back terrace. There also are strollers and scooters available for the kids, which was just incredible. The neighborhood is super safe with all the amenities anyone would want/need. Basically, perfect!'},
 {'_id': '50619459',
  'date': datetime.datetime(2015, 10, 13, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '36277206',
  'reviewer_name': 'Mary Jo',
  'comments': 'The apartment was perfect!  It was just as listed and the location could not have been better!  My family enjoyed the lemon cake the host dropped off -just to welcome them to NYC! Dirk was very prompt and responsive to our inquiries.'},
 {'_id': '51318833',
  'date': datetime.datetime(2015, 10, 19, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '29329218',
  'reviewer_name': 'David',
  'comments': 'Perfect!  A very nice home away from home.  The apartment is very comfortable and the kitchen is well outfitted for meal prep (limits dining out).  Easy walking to subway, museums, Central Park, markets, restaurants, etc.  Nice neighborhood to walk around and always felt safe.  We would definitely try to stay here again if we have future visits to NY.'},
 {'_id': '52670130',
  'date': datetime.datetime(2015, 11, 1, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '29815575',
  'reviewer_name': 'Steve',
  'comments': "Highly recommend this garden duplex! It's exactly as shown, which is wonderful, and the location and neighborhood are even better! Dirk and Debra Jo were a joy to deal with, and the home baked goodies were a great welcome. Seriously can't say enough kind things about the host and our experience. This place is amazing - we will be back! "},
 {'_id': '53602722',
  'date': datetime.datetime(2015, 11, 10, 5, 0),
  'listing_id': '846854',
  'reviewer_id': '22090524',
  'reviewer_name': 'Catherine',
  'comments': 'The description is accurate and the apartment was very clean.  The garden is lovely.     I do not think the apartment would be suitable for an active toddler as the stairs are very steep and one of the couches leans against a low glass wall that is over the stairs.\r\n  Dirk was great to send someone over when we were having a problem with a circuit tripping.   \r\nThe location was fantastic for us and is a very short walk to Central Park.     '},
 {'_id': '53954712',
  'date': datetime.datetime(2015, 11, 15, 5, 0),
  'listing_id': '846854',
  'reviewer_id': '35227459',
  'reviewer_name': 'Levigne',
  'comments': "Great stay ! The appartment is very well located, very comfortable  , quiet and exactly as described.\r\nWe appreciated Debra Jo's cakes when we arrived. \r\nDirk was very reactive\r\nWe warmly recommand this place."},
 {'_id': '54838782',
  'date': datetime.datetime(2015, 11, 25, 5, 0),
  'listing_id': '846854',
  'reviewer_id': '6756698',
  'reviewer_name': 'Kristen',
  'comments': 'Dirk was very responsive and a great host - the apartment was clean and exactly as pictured.'},
 {'_id': '55093868',
  'date': datetime.datetime(2015, 11, 28, 5, 0),
  'listing_id': '846854',
  'reviewer_id': '17045984',
  'reviewer_name': 'Jeremy',
  'comments': "Dirk's place was fantastic (yes, all those other reviews are accurate).  The space was perfect for our family of 4 (two kids ages 2 & 6) plus my in-laws.  The kids had toys to play with and the 6 year old really enjoyed riding the bike and scooters in the park.  The kitchen was equipped with everything we needed to cook a fully Thanksgiving meal.  The location, less than 1 block from Central Park, is perfect for active kids. This was also the perfect place for the Macy's Parade.  We will definitely be staying again.  "},
 {'_id': '55716067',
  'date': datetime.datetime(2015, 12, 5, 5, 0),
  'listing_id': '846854',
  'reviewer_id': '26226968',
  'reviewer_name': 'Maria',
  'comments': 'Dirk is an amazing host and did all he could to make our stay easy and comfortable! His apartment is very nice, spacious, great kitchen and nice neighborhood!  Half a block from the park so great for a morning wall to the Reservoir. First time using Airbnb and if I need to use it again in NY will certainly look for his place or any other location he manages in the future'},
 {'_id': '57863285',
  'date': datetime.datetime(2015, 12, 30, 5, 0),
  'listing_id': '846854',
  'reviewer_id': '21022505',
  'reviewer_name': 'Chris',
  'comments': 'Very nice garden duplex as stated just a half block from Central Park and a big range of restaurants. The apartment is very stylishly furnished and more spacious than we had expected - with plenty of room for a family of five and no kids sharing beds.  Overall, a holiday treat. Note that the lower floor is a basement, but it is only for sleeping in so not a big deal. '},
 {'_id': '58417833',
  'date': datetime.datetime(2016, 1, 2, 5, 0),
  'listing_id': '846854',
  'reviewer_id': '46646036',
  'reviewer_name': 'Antara',
  'comments': 'The condo was excellent. It was clean, convenient and comfortable. The location is ideal, especially for a family. The proximity to Central Park is amazing and there are numerous shops and tasty restaurants nearby. We hope to stay there again the next time we visit. There were no issues and communication with the owner was seamless. '},
 {'_id': '60565357',
  'date': datetime.datetime(2016, 1, 25, 5, 0),
  'listing_id': '846854',
  'reviewer_id': '13099113',
  'reviewer_name': 'Roberta',
  'comments': 'Todo muy bien, la casa tal cual se ve en las fotos. Dick muy atento y dispuesto a colaborar en todo. Gracias!\r\n'},
 {'_id': '62933080',
  'date': datetime.datetime(2016, 2, 18, 5, 0),
  'listing_id': '846854',
  'reviewer_id': '1570232',
  'reviewer_name': 'Patrick',
  'comments': 'This apartment is truly special.  You feel like you have your very own NYC apartment, the location is superb and the apartment is spacious and well appointed.'},
 {'_id': '67124680',
  'date': datetime.datetime(2016, 3, 27, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '20736565',
  'reviewer_name': 'Jorgelina',
  'comments': 'The apartment is incredibly nice, super clean, well decorated, comfortable and in an incredible neighborhood, I love the UWS. Dirk and his support team  were impeccable, the apartment was waiting with fresh flowers. Did not meet them but were in contact for any need or concern and even left by the door fresh baked cookies for my sons one early morning for breakfast.  The apartment is as described, everything is working and well stocked. Its big for Manhattan standards and the garden in the back is a nice bonus. All the linen is very nice. Dirk is easy going and flexible to adjust in and outs according to flight schedules. He responds intently to any question. Would love to be back sometime.'},
 {'_id': '72238607',
  'date': datetime.datetime(2016, 5, 1, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '66142482',
  'reviewer_name': 'Matthew',
  'comments': 'Dirk was an excellent host who was very accommodating and friendly. Everything went as seamlessly as possible. The property is just as pictured and is an extremely ideal location. I would absolutely stay at this property again.'},
 {'_id': '77231692',
  'date': datetime.datetime(2016, 5, 30, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '13306748',
  'reviewer_name': 'George',
  'comments': 'We had a great stay at this location.  Property was clean and exactly as described.  Location is excellent and we would definitely return again.  Perfect for a NYC visit with kids -- gives you a bit more room than a hotel.'},
 {'_id': '86956285',
  'date': datetime.datetime(2016, 7, 18, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '10151591',
  'reviewer_name': 'Alec',
  'comments': 'Beautiful spot on the upper east side! Conveniently located to the Met, Natural History Museum and Central Park. Safe quite neighborhood - excellent option for families. The host Dirk allowed us an early check in as well as a late check out with out any penalty, much appreciated! '},
 {'_id': '91767649',
  'date': datetime.datetime(2016, 8, 6, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '12228436',
  'reviewer_name': 'Chris',
  'comments': 'Great apartment in a nice part of town.  We are a family of 6 (2 adults / 4 kids under 10) and there was plenty of room.  The garden is a bonus.  Dirk was incredibly helpful and responsive, both before and during our stay.  Really close to Central Park and the 86th St subway for quick access to midtown, downtown and the main tourist sites.  Highly recommended.'},
 {'_id': '94108021',
  'date': datetime.datetime(2016, 8, 14, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '2867590',
  'reviewer_name': 'Doug',
  'comments': "Dirk and his assistant Debora Jo were outstanding and incredibly responsive hosts and their apartment was truly perfect for our vacation. We came with 2 small children and the layout and location were perfect for us. The house is pre-stocked with childrens books, toys, a stroller and a pack and play, and downstairs and back garden offer a lot of extra space to spread out. The finishes and fixtures are great, the interior design is beautiful, and everything is very intelligently laid out.\r\n\r\nThis apartment is on a beautiful and quiet street, 1/2 block from Central Park and just steps to a dozen great restaurants and cafes on Columbus and Amsterdam. Childrens' Musuem. Natural History Museum. All so close by. You can truly walk to everything. \r\n\r\nBest of all, Debora Jo surprised us with a hand baked carot cake. Classy all around.\r\n"},
 {'_id': '100126953',
  'date': datetime.datetime(2016, 9, 7, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '30375884',
  'reviewer_name': 'Acacia',
  'comments': 'Great place to stay, perfect for a family and easy location. Very enjoyable! '},
 {'_id': '110038600',
  'date': datetime.datetime(2016, 10, 23, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '80955413',
  'reviewer_name': 'Pierre',
  'comments': "The house is awesome. It's ideally located close to many shops and proximity to Central Park is a plus with children. Dirk has been very friendly and accommodating with us. We highly recommend this house."},
 {'_id': '111763240',
  'date': datetime.datetime(2016, 11, 1, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '27144273',
  'reviewer_name': 'Stewart',
  'comments': 'Dirk was a great host and the duplex is in a fantastic location.  We had a really good time.'},
 {'_id': '120732548',
  'date': datetime.datetime(2016, 12, 11, 5, 0),
  'listing_id': '846854',
  'reviewer_id': '26653106',
  'reviewer_name': 'Matthew',
  'comments': 'This home was perfect for our family of five.  The UWS is family friendly and Central Park is a very short walk away.  There is plenty of room, and the home was well appointed.  We would gladly stay here again on our next trip to the city. '},
 {'_id': '130536281',
  'date': datetime.datetime(2017, 2, 6, 5, 0),
  'listing_id': '846854',
  'reviewer_id': '62287249',
  'reviewer_name': 'Melanie',
  'comments': 'Great stay! We had a wonderful experience!'},
 {'_id': '150170715',
  'date': datetime.datetime(2017, 5, 7, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '12149956',
  'reviewer_name': 'Beth',
  'comments': "This is our second stay in Dirk's lovely apartment. It has been updated since our last stay years ago and everything was perfect. We had our large family with two small children and everyone was happy. We cooked dinner one night and had plenty of room to eat and play. Highly recommended!"},
 {'_id': '161737742',
  'date': datetime.datetime(2017, 6, 18, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '1172650',
  'reviewer_name': 'Sage',
  'comments': "Dirk's place is an oasis from busy NYC. Upper west side is calm, it's 1 block fr Central Park, easy subway access and the apt is really well equipped. Dirk was easy to work with, has a smooth check-in and check out process. A perfect situation for our family retreat!"},
 {'_id': '179439234',
  'date': datetime.datetime(2017, 8, 7, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '110182771',
  'reviewer_name': 'Jeremy',
  'comments': 'No need to check any further!  This place is better then you can imagine. Pictures do not do the apartment justice. Perfect location on the Upperwest Side. Steps to Central Park and about a block to Subway. Awesome restaurants within walking distance. \nApartment was extremely comfortable and modern. Shower was great along with all the personal touches of comfort around the house. Outdoor area is truly tranquil and peaceful. Dirk is an amazing host and will answer all your questions and concerns within minutes. \nWe stayed almost 3 weeks and were very sad to leave. You actually feel like a New Yorker!'},
 {'_id': '193470202',
  'date': datetime.datetime(2017, 9, 13, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '23357910',
  'reviewer_name': 'Melissa',
  'comments': "This spacious garden apartment is truly that!  It's a modern, very efficiently designed home with many convenient touches including central air conditioning and full size laundry and dryer machines. Our family of three adults and two teenagers were extremely comfortable.  And Dirk is a tremendous host. He and his team were extremely responsive. Truly appreciated his hospitality."},
 {'_id': '197012830',
  'date': datetime.datetime(2017, 9, 24, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '23780333',
  'reviewer_name': 'Hagit',
  'comments': "Dirk's place is a wonderful gem in the middle of the upper west side. It is nice, clean and spacious. The kitchen is well equipped and the bathrooms were perfectly clean. We will be happy to return someday. Thanks Dirk!"},
 {'_id': '216330826',
  'date': datetime.datetime(2017, 12, 3, 5, 0),
  'listing_id': '846854',
  'reviewer_id': '135493693',
  'reviewer_name': 'Leticia',
  'comments': 'It was our first time using Airbnb and I have to admit I was not sure what to expect, but could not asked for better accommodations and host.\n\nThe location is perfect, you have everything closed by including Central Park a subway station and all the shops on Columbus Av.\n\nThe apartment itself is stylish, clean and comfortable.\n\nThank you Kirk!'},
 {'_id': '225471704',
  'date': datetime.datetime(2018, 1, 6, 5, 0),
  'listing_id': '846854',
  'reviewer_id': '147862339',
  'reviewer_name': 'Isabelle',
  'comments': "Nous venons de passer un très agréable séjour durant 8 jours, afin de démarrer l'année 2018 à New-York !\nL'appartement de Dirk est vraiment formidable : spacieux, moderne, pratique (y compris par temps de neige avec un couloir servant de vestibule aussi où faire sécher les affaires mouillées.)\nLa répartition sur 2 niveaux est optimum avec des ados à qui nous avions dédié l'espace du bas. Tous le confort existe dans cet appartement avec un electro-ménager à la pointe.\nEnfin, l’emplacement géographique est vraiment TOP¨, à proximité de Central Parcs, de toutes les commodités pour les courses, des quartiers touristiques et animés, du métro et des bus.\nJe recommande cet appartement et remercie sincèrement Dirk de son écoute, et de ses conseils.\nCdt."},
 {'_id': '228619006',
  'date': datetime.datetime(2018, 1, 20, 5, 0),
  'listing_id': '846854',
  'reviewer_id': '15028689',
  'reviewer_name': 'Daniela',
  'comments': 'Apartment in a typical brownstone house in the UWS, great location and a lot of space (even though we could not enjoy the private backyard because of the cold weather, my kids had a lot of space to play inside and in the basement). We weren\'t there for tourism in New York City, so we actually "lived" in the house for 10 days, cooking meals (the kitchen is great!), washing clothes, working and playing and we found everything that we needed for a comfortable stay. We haven\'t met Dirk in person, but he was very easy to communicate with and for sure has good taste in furnishing. The only "negative" point, if I must mention anything that could be improved, is the lack of storage room in the second bedroom. Otherwise, everything was great!'},
 {'_id': '236838929',
  'date': datetime.datetime(2018, 2, 20, 5, 0),
  'listing_id': '846854',
  'reviewer_id': '143147130',
  'reviewer_name': 'Susan',
  'comments': 'great spot. dirk was responsive and available to answer questions. i lived in the neighborhood and  felt right at home in the brownstone. will definitely return for another visit.'},
 {'_id': '246042747',
  'date': datetime.datetime(2018, 3, 24, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '98527030',
  'reviewer_name': 'Heather',
  'comments': 'Dirk’s place was great for a family!  Having an outdoor garden area was a huge plus, since we have an 8 year old and a 2 year old.  We are from Florida and it snowed, and they had a safe and clean place to make a snowman!  It was a comfortable, cozy place to stay, with lots of restaurants and a great park nearby.  Dirk was very responsive, and check in was  easy.\nMy complaint is about the third bedroom, which is in a finished basement.  There was no heat down there, and the fold out couch was very uncomfortable.  But the two bedrooms and the rest of the living area located on the main floor were perfect.\nOverall I would definitely recommend Dirk’s place to you.'},
 {'_id': '250047168',
  'date': datetime.datetime(2018, 4, 3, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '1351749',
  'reviewer_name': 'Pamela',
  'comments': "Location Location Location - Central Park is right there, subway around the corner one way, Joe's coffee around the corner the other way, Gristedes, too. Wine bar across from the apartment, quiet quiet street, totally clean apartment, well equipped as far as furniture, kitchen, bathrooms, etc. but not overstuffed, so there is plenty of room for your things as well. Dirk  is extremely quick to offer a tip, communication very fast, he's a terrific host. I am from NYC originally but this is not 'my' neighborhood so it was a real treat to get to know the Upper West Side. My kids, husband and friends & family all loved the apartment, too. If you're traveling for a while as we were, the washer & dryer are a huge assist. You cannot go wrong with this place, it checks all the boxes. Enjoy!"},
 {'_id': '250885670',
  'date': datetime.datetime(2018, 4, 6, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '98965397',
  'reviewer_name': 'Mark',
  'comments': "Dirk's apartment is a real treasure. I lived in Manhattan for many years so I can appreciate the quality of the space. Nowhere can you find a duplex on the Upper West Side with this much room, and all the included amenities, for this price. It handled my family of 5 easily . The garden space out back is a real plus. The place has everything you could possibly need. It's on a quiet block just steps from Central Park and the Museum of Natural History with easy access to the subway. Great restaurants abound in the area. The physical layout was quite nice and even though it was a garden-level apartment it was completely quiet at night; no street noise to speak of, and no noise from upstairs. The design is mid-century modern, with European flair, a pretty neat combination. The bottom part of the duplex was a perfect area for my 13 year-old to commandeer  as it is set off from the main area by a cool metal staircase. There is a 1/2 bath on the lower level and a nicely sized full bath on the first floor. Appliances were all relatively new and in good working order. \n\nI appreciatethe fact that the apartment is on a residential block of lovely brownstones; there is a real neighborhood feel to the UWS and its easy to slip into the day-to-day routines of the block. We live nearby on Long Island and spent three days here while some work was being done at our house. We will definitely be back on future occasions when we need a dose of Manhattan.\n\nDirk was very responsive to any inquiry I had about the space. I would rent from him again."},
 {'_id': '258669581',
  'date': datetime.datetime(2018, 4, 29, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '14114040',
  'reviewer_name': 'Silvio',
  'comments': 'Ottima posizione appartamento spazioso pulito e contemporaneo ideale per famiglie.'},
 {'_id': '262363268',
  'date': datetime.datetime(2018, 5, 8, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '14862149',
  'reviewer_name': 'Caitlin',
  'comments': 'Dirk was a very gracious and flexible host.  The space is lovely, with a well equipped kitchen .  The close proximity to Central Park was great for morning walks and playground time. It is also just a minute walk from multiple restaurants, a grocery store and a deli.   I would recommend it to families/guests up to a party of five.'},
 {'_id': '265582204',
  'date': datetime.datetime(2018, 5, 17, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '27272857',
  'reviewer_name': 'Kim',
  'comments': 'Dirks place was perfect for our family of 4 ( Kids are 20 and 18). They loved having their own space to sleep- one upstairs and one down on pullout couch. The apt. is very clean and just as pictured. They outdoor space was perfect for us to have a few family members for lunch after my daughters college graduation! Dirk is great with communication and very easy to work with. We loved the neighborhood and ate out at one of the local restaurants almost every night- plenty to choose from. Also easy to buy groceries in the neighborhood. Would definitely would stay again-- perfect for families!'},
 {'_id': '284398937',
  'date': datetime.datetime(2018, 7, 1, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '2651289',
  'reviewer_name': 'Bianca',
  'comments': 'We had an amazing stay at Dirk’s apartment. Everything was very neat and clean. It’s 3 blocks away from the subway station and there are lots of stores and restaurants walking distance. Dirk was always quick to respond and very accommodating with check in and check out times. Central Park half a block away with kids was incredible. I hope we can come back soon!'},
 {'_id': '293587820',
  'date': datetime.datetime(2018, 7, 20, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '157246315',
  'reviewer_name': 'Anthony',
  'comments': 'Dirk’s apartment was ideal for our family with two children aged 8 and 5. Beautifully appointed and comfy beds. The location was perfect for access to subway, Central Park and great food options. Communication was always very clear and responsive. We will really miss the lovely wine bar across the road.'},
 {'_id': '300590287',
  'date': datetime.datetime(2018, 8, 2, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '29521046',
  'reviewer_name': 'Kate',
  'comments': "Dirk's home was the perfect landing spot for our family's two week vacation in NYC. The location is incredible with quick entry into Central Park, lots of great restaurants, and only a few blocks to the subway and the Natural History Museum. Exceptionally clean with thoughtful attention to outfitting the home with anything our family could need. There was lots of space for us to spread out and relax, with the outdoor garden as a wonderful bonus. A private entrance with space to store umbrellas and scooters was fantastic. Dirk was quick to respond to questions and wonderfully thoughtful and kind (we came home to a delicious plate of cookies after a long day's adventure). We were very sad to leave and can't wait to return soon. "},
 {'_id': '322271688',
  'date': datetime.datetime(2018, 9, 12, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '23780333',
  'reviewer_name': 'Hagit',
  'comments': 'A very pleasant apartment in a great location, near the park, restaurants and public transportation. Place is clean and well equipped. Dirk is very welcoming, was recipient to our request on early check in, and went out of his way to assist with problems that came up. We highly recommend the place..'},
 {'_id': '323445517',
  'date': datetime.datetime(2018, 9, 15, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '214928364',
  'reviewer_name': 'Jeff',
  'comments': 'Dirk was an outstanding host, very accommodating and quick with communication.  His garden-level condo is an ideal location, close to everything you need but on a very nice and quiet side street.  The apartment itself was immaculate and worked great for a family with several kids.'},
 {'_id': '326552814',
  'date': datetime.datetime(2018, 9, 22, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '6183796',
  'reviewer_name': 'Carolina',
  'comments': 'Dirks house is very comfortable on a beautiful road walking distance fron the wonderful central park \nHe was kind to accept our big family with the best of energy \nWe would happily visit again \nHighly recommedable'},
 {'_id': '329749717',
  'date': datetime.datetime(2018, 9, 29, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '195206859',
  'reviewer_name': 'Harlan',
  'comments': 'This was our first experience with AirBnB and it was fantastic. We were looking for a place to stay in NYC with a "neighborhood feel" and Dirk\'s place fit the bill perfectly. The Upper West side is a great place and the proximity to the subway made everything perfectly accessible. My kids (ages 14, 11, 8) all loved were able to spread out and not be on top of each other like most trips staying in a hotel. The garden space was a perfect cherry on top of the location.'},
 {'_id': '343161572',
  'date': datetime.datetime(2018, 10, 30, 4, 0),
  'listing_id': '846854',
  'reviewer_id': '69474245',
  'reviewer_name': 'Mark',
  'comments': 'Dirks place suited our every need. Location to Central Park is less than a block, great for that morning stroll or run to start the day. It was so nice to leave the hustle and bustle behind  after spending a day on the well worn tourist path and enjoy a local night out for dinner. No shortage of great options around the corner. Overall was awesome, would stay here again if I get the opportunity.'},
 {'_id': '347005196',
  'date': datetime.datetime(2018, 11, 10, 5, 0),
  'listing_id': '846854',
  'reviewer_id': '157669572',
  'reviewer_name': 'Maryline',
  'comments': "Great apartment on two levels. The bedrooms at opposite ends for more privacy. Second bathroom (1/2) on lower level. Well equipped for families with young kids. Kitchen has everything you need to cook. Kids only missed having a TV on the main level while we cooked (TV is downstairs). Not a bad thing after all! \nLocation is perfect: great coffee, restaurants, groceries (Gristedes, Trader Joe's, Zabars), Central Park, subway, museums, farmer's market (Tucker Square/Lincoln Center)."},
 {'_id': '355765598',
  'date': datetime.datetime(2018, 12, 5, 5, 0),
  'listing_id': '846854',
  'reviewer_id': '40741248',
  'reviewer_name': 'Tom',
  'comments': "Our family had an amazing stay at Dirk's apartment. We had to travel for a last minute family funeral and Dirk really took care of us. He expedited the cleaning of the space from former guests and made our arrival/checkout seamless. The space is simply incredible and a real gem in the city. It has really nice touches and is quite spacious for the city. No one likes traveling for funerals, but the space could accommodate our larger group and meant we could all be together. It was exactly what we needed. Dirk was extremely responsive and a great host overall. Would definitely stay here again!"},
 {'_id': '357183638',
  'date': datetime.datetime(2018, 12, 9, 5, 0),
  'listing_id': '846854',
  'reviewer_id': '12237028',
  'reviewer_name': 'Dominique',
  'comments': 'Fantastic!'},
 {'_id': '410667056',
  'date': datetime.datetime(2019, 2, 10, 5, 0),
  'listing_id': '846854',
  'reviewer_id': '66167',
  'reviewer_name': 'Kelly',
  'comments': 'Lovely garden apartment with European touches. Nice and basic but perfect for kids! Great open kitchen and big table to sit and have meals. Next to wonderful things to do with kids - museums, Central Park , tons of shops and kid friendly restaurants. Linens were super soft, plenty of towels, stocked kitchen with kids plates and cups, strollers and toys. I can’t say enough great things about our stay. We are New Yorkers but our apartment is currently rented with tenants. This was a perfect next best! We will be back!'}]
In [53]:
botanic_listings_df=pd.DataFrame(list(botanicgarden_listings)) 
botanic_listings_df
Out[53]:
_id description number_of_reviews review_scores reviews
0 6171211 Large 1br in a 3br. available. Apartment is lo... 0 {} []
1 15100883 Fordham university is a walking distance away,... 1 {'review_scores_accuracy': 6, 'review_scores_c... [{'_id': '327815723', 'date': 2018-09-24 04:00...
2 6541214 Cute and huge one bedroom apartment only 5 min... 1 {'review_scores_accuracy': 10, 'review_scores_... [{'_id': '43940821', 'date': 2015-08-23 04:00:...
3 16976284 My accommodation is within a 10 minute walk fr... 87 {'review_scores_accuracy': 10, 'review_scores_... [{'_id': '137800254', 'date': 2017-03-17 04:00...
4 10009999 One bedroom + sofa-bed in quiet and bucolic ne... 0 {} []
... ... ... ... ... ...
473 13748617 My place is close to jean coutu, Metro super m... 0 {} []
474 20744948 We're close to JFK airport,3 groceries (Walmar... 33 {'review_scores_accuracy': 8, 'review_scores_c... [{'_id': '191218025', 'date': 2017-09-06 04:00...
475 15116002 Newly renovated, open and airy, 900 sq foot, f... 71 {'review_scores_accuracy': 10, 'review_scores_... [{'_id': '106902696', 'date': 2016-10-08 04:00...
476 5650901 Suite avaibable for the time you need Great lo... 56 {'review_scores_accuracy': 10, 'review_scores_... [{'_id': '31045600', 'date': 2015-05-01 04:00:...
477 21031806 Este recém-renovado apartamento goza de uma lo... 7 {'review_scores_accuracy': 10, 'review_scores_... [{'_id': '202176208', 'date': 2017-10-10 04:00...

478 rows × 5 columns

Aggregation¶

  • process data records and return computed results
    • aggregation pipeline
      • example follows
    • map-reduce
    • single-purpose aggregations
      • we already saw an example for this, namely counting

Check more at

  • https://docs.mongodb.com/manual/aggregation/
  • https://pymongo.readthedocs.io/en/stable/examples/aggregation.html
In [54]:
# Find average price depending on number of bedrooms in the AirBNB sample dataset
# sorted in increasing order of avgPrice
# See https://www.youtube.com/watch?v=0MZFTiKIPnU to see how to build this aggregation pipeline
# using the GUI on MongoDB Atlas, and export the Python code

agg_pipeline=[{'$match': {'address.country_code': 'US'}},
 {'$group': {'_id': '$bedrooms', 'avgPrice': {'$avg': '$price'}}},
 {'$sort': {'avgPrice': 1}}] 

pprint.pprint(list(listings.aggregate(agg_pipeline)))
[{'_id': None, 'avgPrice': Decimal128('79.00')},
 {'_id': 1, 'avgPrice': Decimal128('127.1636863823933975240715268225585')},
 {'_id': 0, 'avgPrice': Decimal128('139.2867647058823529411764705882353')},
 {'_id': 2, 'avgPrice': Decimal128('258.3797468354430379746835443037975')},
 {'_id': 3, 'avgPrice': Decimal128('360.8481012658227848101265822784810')},
 {'_id': 4, 'avgPrice': Decimal128('513.9166666666666666666666666666667')},
 {'_id': 6, 'avgPrice': Decimal128('668.6666666666666666666666666666667')},
 {'_id': 5, 'avgPrice': Decimal128('1763.333333333333333333333333333333')}]

CRUD operations: create, read, update, and delete¶

  • Let's look at creation of a new DB/collection, and data insertion
In [55]:
dblpMongo = client["dblpMongo"]
print(client.list_database_names())
# The DB is not created until it is populated
['dblpMongo', 'sample_airbnb', 'sample_analytics', 'sample_geospatial', 'sample_mflix', 'sample_restaurants', 'sample_supplies', 'sample_training', 'sample_weatherdata', 'admin', 'local']
In [56]:
dblpCollect = dblpMongo["Researchers"]
print(client.list_database_names())
# The collection is not created until it is populated
['dblpMongo', 'sample_airbnb', 'sample_analytics', 'sample_geospatial', 'sample_mflix', 'sample_restaurants', 'sample_supplies', 'sample_training', 'sample_weatherdata', 'admin', 'local']
In [59]:
x = dblpCollect.insert_one(dblp_data_instance)
print(x.inserted_id) 
# Check out Bulk.insert() https://docs.mongodb.com/manual/reference/method/Bulk.insert/
print(client.list_database_names())
pprint.pprint(list(dblpMongo.list_collections()))
# Et voila! The DB and the collection are also created now!!
6125b905bd2b079502748003
['dblpMongo', 'sample_airbnb', 'sample_analytics', 'sample_geospatial', 'sample_mflix', 'sample_restaurants', 'sample_supplies', 'sample_training', 'sample_weatherdata', 'admin', 'local']
[{'idIndex': {'key': {'_id': 1}, 'name': '_id_', 'v': 2},
  'info': {'readOnly': False,
           'uuid': UUID('ddd84d74-3f75-4321-8a65-e4ff0416b764')},
  'name': 'Researchers',
  'options': {},
  'type': 'collection'}]

Inserted data instance
Note: I have deleted/inserted the same record multiple times. The id shown in the screenshot may not match the id created the last time this notebook has been executed.

Wrap up¶

  • This module:
    • Data acquisition from various sources
      • Scraping webpages and extracting data (BeautifulSoup)
      • Using API wrappers and endpoints
    • JSON format
    • NoSQL datastore (MongoDB)

Wrap up¶

Drawing So far in this course
  • Data Products & Pipeline: The big picture
  • Module 1: Traditional data storage
    • RDBMS (SQLite)
  • Module 2: Basic data manipulation & cleaning
    • Pandas
    • RegEX
  • Module 3: Data acquisition & NoSQL
    • BeautifulSoup
    • APIs
    • MongoDB

That's it folks!

NoSQL!