ShimizuYuki commited on
Commit
dd4d9ba
·
verified ·
1 Parent(s): 1e1ad56

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +33 -74
README.md CHANGED
@@ -1,12 +1,12 @@
1
  ---
2
  configs:
3
- - config_name: hero_hero_comic
4
- data_files: hero_hero_comic.csv
5
- - config_name: adjacency_list
6
- data_files: adjacency_list.csv
7
- - config_name: adjacency_matrix(preview)
8
- data_files: processing_data/adjacency_matrix_preview.csv
9
- license: artistic-2.0
10
  language:
11
  - en
12
  size_categories:
@@ -15,96 +15,55 @@ task_categories:
15
  - feature-extraction
16
  ---
17
 
18
- # Dataset Card for Dataset Name
19
 
20
- <!-- Provide a quick summary of the dataset. -->
21
 
22
- This dataset card aims to be a base template for new datasets. It has been generated using [this raw template](https://github.com/huggingface/huggingface_hub/blob/main/src/huggingface_hub/templates/datasetcard_template.md?plain=1).
23
 
24
- ## Dataset Details
25
 
26
- ### Dataset Description
27
 
28
- <!-- Provide a longer summary of what this dataset is. -->
29
-
30
-
31
-
32
- - **Curated by:** [More Information Needed]
33
- - **Language(s) (NLP):** [More Information Needed]
34
- - **License:** [More Information Needed]
35
-
36
- ### Dataset Sources [optional]
37
-
38
- <!-- Provide the basic links for the dataset. -->
39
-
40
- - **Repository:** [More Information Needed]
41
- - **Paper [optional]:** [More Information Needed]
42
- - **Demo [optional]:** [More Information Needed]
43
 
44
  ## Uses
45
 
46
- <!-- Address questions around how the dataset is intended to be used. -->
 
47
 
48
- ### Direct Use
 
49
 
50
- <!-- This section describes suitable use cases for the dataset. -->
 
51
 
52
- [More Information Needed]
53
 
54
  ## Dataset Structure
55
 
56
- Adjacency_list.csv
57
-
58
- Adjacency_matrix.csv
59
-
60
- ## Dataset Creation
61
-
62
- ### Curation Rationale
63
-
64
- <!-- Motivation for the creation of this dataset. -->
65
-
66
- [More Information Needed]
67
-
68
- ### Source Data
69
 
70
- <!-- This section describes the source data (e.g. news text and headlines, social media posts, translated sentences, ...). -->
 
71
 
 
 
72
 
73
- #### Who are the source data producers?
74
 
75
- <!-- This section describes the people or systems who originally created the data. It should also include self-reported demographic or identity information for the source data creators if this information is available. -->
76
 
77
- ## Bias, Risks, and Limitations
78
-
79
- [More Information Needed]
80
-
81
- ### Recommendations
82
 
 
83
 
84
  ## Citation
85
 
86
- **BibTeX:**
87
-
88
- [More Information Needed]
89
-
90
- **APA:**
91
-
92
- [More Information Needed]
93
-
94
- ## Glossary [optional]
95
-
96
- <!-- If relevant, include terms and calculations in this section that can help readers understand the dataset or dataset card. -->
97
-
98
- [More Information Needed]
99
-
100
- ## More Information [optional]
101
-
102
- [More Information Needed]
103
-
104
- ## Dataset Card Authors [optional]
105
-
106
- [More Information Needed]
107
 
108
  ## Dataset Card Contact
109
 
110
- [More Information Needed]
 
 
1
  ---
2
  configs:
3
+ - config_name: hero_hero_comic
4
+ data_files: hero_hero_comic.csv
5
+ - config_name: adjacency_list
6
+ data_files: adjacency_list.csv
7
+ - config_name: adjacency_matrix(preview)
8
+ data_files: processing_data/adjacency_matrix_preview.csv
9
+ license: afl-3.0
10
  language:
11
  - en
12
  size_categories:
 
15
  - feature-extraction
16
  ---
17
 
18
+ # Dataset Card for Marvel Network
19
 
20
+ This is a dataset for Marvel universe social network, which contains the relationships between Marvel heroes.
21
 
22
+ ## Dataset Description
23
 
24
+ The Marvel Comics character collaboration graph was originally constructed by Cesc Rosselló, Ricardo Alberich, and Joe Miro from the University of the Balearic Islands. They compare the characteristics of this universe to real-world collaboration networks, such as the Hollywood network, or the one created by scientists who work together in producing research papers. The dataset contains heroes and comics, and the relationship between them got from Marvel comics
25
 
26
+ This dataset consists of three subsets, hero_hero_comic.csv, adjacency_list.csv and adjacency_matrix.csv.
27
 
28
+ - **Language(s) (NLP):** [EN]
29
+ - **License:** afl-3.0
 
 
 
 
 
 
 
 
 
 
 
 
 
30
 
31
  ## Uses
32
 
33
+ Network Topology Analysis,
34
+ Just like what the original work did, we can try to analyze the network topology to discover whether the interpersonal relationships and social structures created in novels conform to real-world social networks, whether they fit the small-world model; we can also use this to infer the core heroes of the Marvel Universe, etc.
35
 
36
+ Community Detection,
37
+ This is an excellent toy model for applying community detection algorithms, and we naturally have clear community outcomes such as the "Avengers Alliance" for comparison.
38
 
39
+ Link Prediction, Attack Robustness, etc.
40
+ In fact, all algorithms effective for conventional network models can be transferred and applied to this network, including but not limited to: link prediction: which predicts which heroes might collaborate in future works; attack robustness: studying whether Thanos's snap would damage the hero ecosystem of the entire Marvel Universe; word2vec: assigning network structural features, finding heroes paires like Spider-Man and Venom...
41
 
 
42
 
43
  ## Dataset Structure
44
 
45
+ hero_hero_comic.csv:
46
+ A table three columns hero1[str], hero2[str] and comic[str]. hero1 and hero2 shows together in a same comic, which is the comic in the third colunm.
 
 
 
 
 
 
 
 
 
 
 
47
 
48
+ adjacency_list.csv:
49
+ A table contains three columns hero1[str], hero2[str] and counts[int], which is the total times hero1 and hero2 shows together in a comic.
50
 
51
+ adjacency_matrix.csv:
52
+ A matrix contains 6267 columns times 6267 rows, each cell with an [int] value. Each row/column represents a hero, each nondiagonal cell represents the total times the colunm hero and the row hero shows in a same comic and each diagonal cell represents the total counts of the colunm(row) hero in this dataset.
53
 
54
+ ## Source Data
55
 
56
+ The sourse data is from https://www.kaggle.com/datasets/csanhueza/the-marvel-universe-social-network, which is collected from Marvel comics.
57
 
58
+ ## Source Data Producers
 
 
 
 
59
 
60
+ The sourse data is created by Claudio Sanhueza
61
 
62
  ## Citation
63
 
64
+ Alberich, R., Miro-Julia, J., & Rosselló, F. (2002). Marvel Universe looks almost like a real social network. arXiv preprint cond-mat/0202174.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
65
 
66
  ## Dataset Card Contact
67
 
68
+ Haocheng Qin, Duke Univ.,
69
+ hq37@duke.edu