-
Notifications
You must be signed in to change notification settings - Fork 0
/
monitoring.html
65 lines (56 loc) · 2.11 KB
/
monitoring.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
---
title: Monitoring
layout: page
jsarr:
- tables/monitoring.js
---
In Smart Harvesting II, we did some research on scheduling data ingestion for curators.
In particular, we tried to see if we can model curators' decisions to ingest a particular dataset at a given point in time, by employing knowledge from historical data and features of the data streams (in our case, proceedings of conferences).
Our first approach at this problem has been published as "Prioritizing and Scheduling Conferences for Metadata Harvesting in dblp" at JCDL 2018.
See the <a href="{{ site.baseurl }}/publications">Publications</a> page for more details.
Below is a demonstration of the tool we envision with our work. Each conference is assigned a score which is based on temporal relations of past data ingestions, and features like rating, size or internationality.
The curator can decide which features to include in the final score.
The conferences with the highest scores should then be top priority for ingestion.
<br/>
For the demo, we assume that the current date is in 2018-08.
<br/>
View the ranking that is based on the feature (<a id="reset" href="#">reset</a>):<br/>
<a id="rating" href="#">Rating</a><br/>
<a id="activity" href="#">Activity</a><br/>
<a id="activity_rating" href="#">Activity+Rating</a><br/>
<br/>
<table id="results" class="display">
<thead>
<tr>
<th>Conference Key</th>
<th>Score</th>
<th>Interval</th>
<th>Month</th>
<th>Delay</th>
<th>Last Entry</th>
<th>Expected Next</th>
<th>Activity</th>
<th>Rating</th>
<th>Prominence</th>
<th>Internationality</th>
<th>Size</th>
<th>Affiliations</th>
<th>Log score</th>
</tr>
</thead>
<tbody>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<!-- http://blog.emmatosch.com/2016/03/09/using-custom-javascript-in-jekyll-blogs.html -->