SauravMaheshkar
commited on
Commit
•
b92bb2d
1
Parent(s):
a8d20fc
feat: add data objects
Browse files- .gitignore +1 -0
- processed/inductive/test_df.csv +0 -0
- processed/inductive/train_df.csv +0 -0
- processed/inductive/val_df.csv +0 -0
- processed/transductive/test_df.csv +0 -0
- processed/transductive/train_df.csv +0 -0
- processed/transductive/val_df.csv +0 -0
- raw/DATA-DESCRIPTION.txt +44 -0
- raw/README.txt +8 -0
- raw/contact-high-school-nverts.txt +0 -0
- raw/contact-high-school-simplices.txt +0 -0
- raw/contact-high-school-times.txt +0 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
**/.DS_Store
|
processed/inductive/test_df.csv
ADDED
The diff for this file is too large to render.
See raw diff
|
|
processed/inductive/train_df.csv
ADDED
The diff for this file is too large to render.
See raw diff
|
|
processed/inductive/val_df.csv
ADDED
The diff for this file is too large to render.
See raw diff
|
|
processed/transductive/test_df.csv
ADDED
The diff for this file is too large to render.
See raw diff
|
|
processed/transductive/train_df.csv
ADDED
The diff for this file is too large to render.
See raw diff
|
|
processed/transductive/val_df.csv
ADDED
The diff for this file is too large to render.
See raw diff
|
|
raw/DATA-DESCRIPTION.txt
ADDED
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Each timestamped simplex dataset consists of three files:
|
2 |
+
1. dataset-nverts.txt
|
3 |
+
2. dataset-simplices.txt
|
4 |
+
3. dataset-times.txt
|
5 |
+
|
6 |
+
All three files represent a vector of integers. There is one integer per line.
|
7 |
+
|
8 |
+
The first file contains the number of vertices within each simplex. The second
|
9 |
+
file is a contiguous list of the nodes comprising the simplices, where the
|
10 |
+
ordering of the simplices is the same as in the first file. The third file
|
11 |
+
contains the timestamps for each simplex. The length of the vectors in the first
|
12 |
+
and third files is the same, and the length of the vector in the second file is
|
13 |
+
the sum of the integers in the first file.
|
14 |
+
|
15 |
+
Consider an example dataset consisting of three simplices:
|
16 |
+
1. {1, 2, 3} at time 10
|
17 |
+
2. {2, 4} at time 15.
|
18 |
+
3. {1, 3, 4, 5} at time 21.
|
19 |
+
Then files would look as follows:
|
20 |
+
|
21 |
+
example-nverts.txt
|
22 |
+
3
|
23 |
+
2
|
24 |
+
4
|
25 |
+
|
26 |
+
example-simplices.xt
|
27 |
+
1
|
28 |
+
2
|
29 |
+
3
|
30 |
+
2
|
31 |
+
4
|
32 |
+
1
|
33 |
+
3
|
34 |
+
4
|
35 |
+
5
|
36 |
+
|
37 |
+
example-times.txt
|
38 |
+
10
|
39 |
+
15
|
40 |
+
21
|
41 |
+
|
42 |
+
|
43 |
+
|
44 |
+
For problems, please contact Austin Benson at arb@cs.cornell.edu.
|
raw/README.txt
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
This dataset is constructed from a contact network amongst high school students
|
2 |
+
in Marseilles, France, in December 2013. The contact network was downloaded from
|
3 |
+
http://www.sociopatterns.org/datasets/high-school-contact-and-friendship-networks/
|
4 |
+
|
5 |
+
We form simplices through cliques of simultaneous contacts. Specifically, for
|
6 |
+
every unique timestamp in the dataset, we construct a simplex for every maximal
|
7 |
+
clique amongst the contact edges that exist for that timestamp. Timestamps were
|
8 |
+
recorded in 20 second intervals.
|
raw/contact-high-school-nverts.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
raw/contact-high-school-simplices.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
raw/contact-high-school-times.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|