-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
94 lines (84 loc) · 4.2 KB
/
index.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<html>
<head>
<meta chartset="utf-8"/>
<title>AidData Activity Coding Challenge Homepage</title>
<link rel="stylesheet" type="text/css" href="css\bootstrap.min.css"/>
<link rel="stylesheet" type="text/css" href="css\style.css"/>
</head>
<body>
<div class="container">
<div class="row-fluid header">
<h3>AidData Activity Coding Challenge</h3>
</div>
<div class="row-fluid">
<h4>Overview</h4>
<p>International development projects are usually tagged to a specific sector, such as "Health" or "Water and Sanitation". However, for real-world planning and coordination, much more detail is needed. Over the past 5 years, AidData.org has worked to do detailed "activity coding" on development projects - taking them from "Health" to "Malaria control" or "Medical Insurance Programs" - based on written project descriptions.</p>
<p>The challenge is now for developers with skills in natural language processing, machine learning, and/or algorithm design to automate some of this coding.</p>
<p>Below you will find past submission and their scores. Feel free to browse, borrow, and remix previous entries (barring any license restrictions).</p>
<h4>Submit</h4>
<p>Submit your entry by editing the index.html with a link to your GitHub project, and your final scores.</p>
</div>
<div class="row-fluid">
<h4>Results</h4>
<table class="table table-striped">
<thead>
<tr>
<th>Submission Name</th>
<th>Word Bank Donor</th>
<th>AfDB Donor</th>
<th>Education Sector</th>
<th>Health Sector</th>
<th>Agriculture Sector</th>
<th>Short (<=20 chars) Description Length</th>
<th>Medium (21 to 100 chars) Description Length</th>
<th>Long (100+ chars) Description Length</th>
</tr>
</thead>
<tbody id="table-body">
</tbody>
<table>
</div>
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/underscore-min.js"></script>
<script type="text/javascript">
//========= add your team's results here =========
var results = [
{
name:'AidData RoboCoder',
repoLink:'https://github.com/AidData/robocoder/releases/tag/BestPerformance',
authors: [],
accuracy: {
wbd:21.28,
afdb:11.8,
edu:27,
health:8,
agri:0, //actually gets 0, just returns same 2 codes whole time.
short:14 ,
med:11.5 ,
long:11,
},
verified:true
},
{
name:'Yours...',
authors: [],
repoLink:'#',
accuracy: {
wbd:1,
afdb:1,
edu:1,
health:1,
agri:1,
short:1 ,
med:1 ,
long:1,
},
verified:false
}
]
//=================================================
_.each(results, function(result) {
$('#table-body').append('<tr><td><a href="' + result.repoLink + '">' + result.name + '</a></td>' + _.map( _.values(result.accuracy), function(value) { return '<td>' + value + '</td>'; }).join('') + '</tr>');
});
</script>
</body>