-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (25 loc) · 1.01 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
---
# front matter tells Jekyll to process Liquid
layout: default
title: Homepage
---
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>{{ page.title }}</title>
</head>
<body>
<h1>– Introduction</h1>
<h3>Building the dataset for our project wasn't so easy. </h3>
<p>Nowadays it's common to find unlabeled data
and labeling them is very time consuming, but sometimes it's necessary.<br>
We are dealing with social data, retrieved by Twitter: in our project we've tried to manually
classify tweets but wasn't easy because a quick look to them it's not enough.</p>
<h1>– Why classify tweets?</h1>
<p>The idea is the following: if I'm curious about some "Sports" news, I want to read them by
applying a simple filter about Sport and dinamically show the result with the newest/hottest tweets
about sport news.</p>
<p> But first of all, let's give a look to build a <a href = "dataset.html">dataset</a> from Twitter's API.</p>
</body>
</html>