CIDR Abstract

This commit is contained in:
Oliver Kennedy 2016-12-07 12:30:49 -05:00
parent ab6766719d
commit 5858dcd3c5
4 changed files with 29 additions and 0 deletions

View file

@ -1,5 +1,18 @@
[
{
"title" : "Stop the Truthiness and Just Be Wrong",
"authors" : [
"Oliver Kennedy"
],
"venue" : "CIDR",
"track":"abstract",
"year" : 2017,
"projects" : ["mimir"],
"length" : 1,
"urls" : {
"abstract" : "http://odin.cse.buffalo.edu/papers/2017/CIDR-Truthiness-abstract.pdf"
}
}, {
"title" : "Convergent Inference with Leaky Joins",
"authors" : [
"Ying Yang", "Oliver Kennedy"

View file

@ -84,6 +84,13 @@
"selectivity" : {
"average" : "unknown (less than 30% in previous years)"
// source: http://www.cs.duke.edu/~shivnath/publications.html
},
"tracks" : {
"abstract" : {
"fullname" : "CIDR Abstracts",
"type" : "abstract",
"acronym" : "CIDR-Abstract"
}
}
},
"IEEE BigData" : {

View file

@ -159,6 +159,15 @@ module LabMetadata
year: publication["year"]
}
]
when "abstract"
[ "misc",
{
author: authors.join(" and "),
title: publication["title"],
howpublished: LabMetadata.venue_name(venue, size: :short),
year: publication["year"]
}
]
else
raise "Unknown venue type '#{venue["type"]}' for publication '#{publication["title"]}'"
end