fixing intuitive data interpretation grant

pull/1/head
Oliver Kennedy 2016-05-25 21:08:03 -04:00
parent 7b28378b65
commit b682828649
7 changed files with 32 additions and 7 deletions

View File

@ -42,6 +42,9 @@ site :odin_lab, out: "build" do
for_files(/people\/.*\.html$/) do
add_dependency "db/lab.json"
end
for_files(/grants\/index\.html/) do
add_dependency "db/cv/okennedy/grants.json"
end
## Static assets
add_assets([

View File

@ -25,10 +25,15 @@
"role" : "PI",
"amount" : 89187,
"effort" : "100%",
"status" : "submitted",
"status" : "accepted",
"start" : "05/2016", "end" : "05/2017",
"type" : "gift",
"commitment" : { "summer" : 1 }
"supports" : ["Ying Yang", "Poonam Kumari"],
"commitment" : { "summer" : 1 },
"urls" : {
"abstract" : "http://odin.cse.buffalo.edu/grants/2016-Oracle-IntuitiveDataInterpretation-Abstract.rtf",
"proposal" : "http://odin.cse.buffalo.edu/grants/2016-Oracle-IntuitiveDataInterpretation-Full.rtf"
}
},
{ "title" : "CI-P: Supporting Pocket Scale Data Management Research",
"agency" : "NSF: CISE: IIS: CRI",
@ -99,8 +104,8 @@
"start" : "03/2015", "end" : "03/2016",
"type" : "gift",
"urls" : {
"abstract" : "http://odin.cse.buffalo.edu/grants/2015-Oracle-IntuitiveDataInterprestation-Abstract.txt",
"proposal" : "http://odin.cse.buffalo.edu/grants/2015-Oracle-IntuitiveDataInterprestation-Full.txt"
"abstract" : "http://odin.cse.buffalo.edu/grants/2015-Oracle-IntuitiveDataInterpretation-Abstract.txt",
"proposal" : "http://odin.cse.buffalo.edu/grants/2015-Oracle-IntuitiveDataInterpretation-Full.txt"
},
"supports" : [ "Niccolò Meneghetti", "Ying Yang", "Arindam Nandi" ],
"commitment" : { "summer" : 1 }

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,14 @@
{\rtf1\ansi\ansicpg1252\cocoartf1404\cocoasubrtf340
{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
{\colortbl;\red255\green255\blue255;}
\margl1440\margr1440\vieww10800\viewh8400\viewkind0
\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\pardirnatural\partightenfactor0
\f0\b\fs24 \cf0 Dynamic Relational Views for In-Situ Hierarchical Data
\b0 \
\
The Mimir project has been working to limit the need for up-front data wrangling by enabling a deferred, \'91On-Demand\'92 form of data curation that allows analysts to defer data wrangling costs until they are actually required. We introduced \'91lenses\'92, a relational operator that applies a data cleaning heuristic (e.g., data interpolation), but requires little to no
\i upfront
\i0 configuration or validation. Instead of asking the user to manually perform data wrangling tasks before analyzing her data, the Mimir system makes a best-effort heuristic guess. Mimir annotates the output of lenses with provenance markers that track what query results are affected by these guesses, and how big of an effect the guess has. \
\
Our initial efforts focused on the data cleaning aspects of curation: repairing missing values, data interpolation, and related issues. Our next target is In-Situ query processing, particularly over nested data models like JSON, XML, and Graph Data if time permits. The primary challenges in this setting are identifying a relevant set of relations to extract from the JSON/XML object, assigning appropriate schemas to these relations, and unifying data from JSON/XML documents from different sources. Signals that can be considered are existing relationships in the data (parent/child relationships, edges), as well as information drawn from queries (which assume specific schemas from source data). Our goal is to create a 360 degree lens that implements \'91best-guess zero-configuration\'92 query evaluation over nested data models. }

View File

@ -23,11 +23,13 @@ title: Funding Sources
pis.push("Oliver Kennedy")
end %>
<%= pis.map { |pi| LabMetadata::link_for pi }.join(", ") %></div>
<div class="section"><b>Supports:</b>
<%= grant["supports"].map { |student| LabMetadata::link_for student }.join(", ")%></div>
<% if grant.has_key? "supports" %>
<div class="section"><b>Supports:</b>
<%= grant["supports"].map { |student| LabMetadata::link_for student }.join(", ")%></div>
<% end %>
<% if grant.has_key? "urls" %>
<div class="section">
<%= grant["urls"].map { |r, url| "<a href=\"%{url}\">#{r}</a>" }.join(", ") %>
<%= grant["urls"].map { |r, url| "<a href=\"#{url}\">#{r}</a>" }.join(", ") %>
</div>
<% end %>
</li>