Darshana's first paper

pull/1/head
Oliver Kennedy 2019-02-03 17:24:12 -05:00
parent ccd73c5e58
commit 23319f1a75
5 changed files with 81 additions and 32 deletions

View File

@ -32,6 +32,11 @@
"dept" : "Department of Computer Science",
"Thesis" : "Watch out for... What?: Monitoring and Uncertainty in Scientific Computing",
"Advisor" : "Christoph Koch",
"Committee" : [
"Andrew Myers",
"Nate Foster",
"James Sethna"
],
"year" : 2011
},
{

View File

@ -1,5 +1,24 @@
[
{ "title" : "III: SMALL: Constrained, Informed Laziness for Mobile Data Management [This Proposal]",
{ "title" : "CCRI: Medium: Enabling Pocket-Scale Data Management Research [This Proposal]",
"agency" : "NSF: CISE: IIS: CCRI",
"role" : "PI",
"amount" : 700319,
"effort" : "50%",
"status" : "submitted",
"start" : "08/15/2019", "end" : "08/14/2022",
"type" : "grant",
"commitment" : { "summer" : 0.25 },
"copis" : [
"Lukasz Ziarek"
],
"collaborative" : [
{ "institution" : "Delaware State University",
"pis" : ["Gokhan Kul"],
"amount" : 224544
}
]
},
{ "title" : "III: SMALL: Constrained, Informed Laziness for Mobile Data Management",
"agency" : "NSF: CISE: IIS: SMALL",
"role" : "Co-PI",
"amount" : 477250,
@ -7,12 +26,9 @@
"status" : "submitted",
"start" : "01/01/2020", "end" : "12/31/2022",
"type" : "grant",
"commitment" : { "summer" : "0.25" },
"collaborative" : [
{ "institution" : "Illinois Inst. Tech.",
"pis" : ["Boris Glavic"],
"amount" : 450000
}
"commitment" : { "summer" : 0.25 },
"copis" : [
"Lukasz Ziarek"
]
},
{ "title" : "SAM: complex environments and behavior through adolescence",
@ -26,13 +42,13 @@
"type" : "grant",
"commitment" : { "summer" : 0.25 },
"copis" : [
"Kordas, Katarzyna",
"Katarzyna Kordas",
"Elena I. Queirolo",
"Gabriel Barg",
"Colder, Craig",
"Kennedy, Oliver",
"Olson, James",
"Ahmed, Zia"
"Craig Colder",
"Oliver Kennedy",
"James Olson",
"Zia Ahmed"
]
},
{ "title" : "III: MEDIUM: Collaborative Research: U4U - Taming Uncertainty with Uncertainty-Annotated Databases",
@ -44,6 +60,9 @@
"start" : "06/2019", "end" : "05/2023",
"type" : "grant",
"commitment" : { "summer" : 0.5 },
"copis" : [
"Atri Rudra"
],
"collaborative" : [
{ "institution" : "Illinois Inst. Tech.",
"pis" : ["Boris Glavic"],
@ -101,7 +120,7 @@
"role" : "PI",
"amount" : 96684,
"effort" : "100%",
"status" : "accepted",
"status" : "completed",
"start" : "12/2017", "end" : "12/2018",
"type" : "gift",
"supports" : ["William Spoth", "Ting Xie"],
@ -379,7 +398,7 @@
"effort" : "25%",
"copis" : ["Hung Ngo", "Shambhu Upadhyaya", "Varun Chandola"],
"status" : "accepted",
"start" : "09/2014", "end" : "08/2018",
"start" : "09/2014", "end" : "08/2019",
"type" : "grant",
"agency_id": "1409551",
"collaborative" : [

View File

@ -1,9 +1,25 @@
{
"Ahmed, Zia" : {
{
"Andrew Myers" : {
"institution" : "Cornell University",
"updated" : "2019"
},
"James Sethna" : {
"institution" : "Cornell University",
"updated" : "2019"
},
"Nate Foster" : {
"institution" : "Cornell University",
"updated" : "2019"
},
"Atri Rudra" : {
"institution" : "University at Buffaoo",
"updated" : "2019"
},
"Zia Ahmed" : {
"institution" : "University at Buffalo",
"updated" : "2018"
},
"Colder, Craig" : {
"Craig Colder" : {
"institution" : "University at Buffalo",
"updated" : "2018"
},
@ -19,11 +35,11 @@
"institution" : "University at Buffalo",
"updated" : "2018"
},
"Kordas, Katarzyna" : {
"Katarzyna Kordas" : {
"institution" : "University at Buffalo",
"updated" : "2018"
},
"Olson, James" : {
"James Olson" : {
"institution" : "University at Buffalo",
"updated" : "2018"
},

View File

@ -74,23 +74,30 @@ class NSFConflicts
end
def advisors
@data["cv/#{@shortname}/education"].
where { |inst| inst["degree"] == "PhD" }.
map { |inst| inst["Advisor"] }
@data["cv/#{@shortname}/education"]
.where { |inst| inst["degree"] == "PhD" }
.map { |inst| inst["Advisor"] }
end
def committee
@data["cv/#{@shortname}/education"]
.where { |inst| inst["degree"] == "PhD" }
.map { |inst| inst["Committee"] }
.flatten(1)
end
def phd_students
@data["lab/members"].
values.
where { |person| person["status"] == "PhD" }.
map { |person| person["name"] }
@data["lab/members"]
.values
.where { |person| person["status"] == "PhD" }
.map { |person| person["name"] }
end
def phd_alumni
@data["lab/alumni"].
values.
where { |person| person["degree"] == "PhD" }.
map { |person| person["name"] }
@data["lab/alumni"]
.values
.where { |person| person["degree"] == "PhD" }
.map { |person| person["name"] }
end
def canonicalize(person)
@ -114,7 +121,7 @@ class NSFConflicts
def render(target)
all_collabs = (
(grant_co_pis + paper_coauthors).map { |x| x[0] } +
(phd_students + phd_alumni + advisors)
(phd_students + phd_alumni + advisors + committee)
).uniq.sort
missing_collabs =
@ -137,7 +144,7 @@ class NSFConflicts
full_details(advisors).each do |adv|
f.puts "G:\t#{render_name(adv)}\t#{adv["institution"]}\t#{adv["email"]}"
end
full_details((phd_students + phd_alumni).uniq.sort).each do |stud|
full_details((committee + phd_students + phd_alumni).uniq.sort).each do |stud|
f.puts "T:\t#{render_name(stud)}\t#{stud["institution"]}\t#{stud["email"]}"
end
f.puts("==== TABLE C ====")

View File

@ -101,6 +101,8 @@ claims:
speaker: Sneha Sudhakaran Nair
- title: "Incremental knowledge base construction using deepdive"
speaker: Meha Rajeev Raote
- title: "Query Optimization for Dynamic Imputation"
speaker: Darshana Balakrishnan
schedule:
- date: Feb 6
event: Class Canceled due to Snow