-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog-post-augmentation.html
161 lines (151 loc) · 7.49 KB
/
blog-post-augmentation.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title>Anwar Said</title>
<link rel="shortcut icon" href="assets/img/favicon.ico" />
<link rel="stylesheet" href="assets/css/bootstrap.min.css" />
<link rel="stylesheet" href="assets/css/fontawsom-all.min.css" />
<link rel="stylesheet" type="text/css" href="assets/css/style.css" />
</head>
<body>
<div class="container-fluid">
<div class="container profile-container">
<div class="row">
<div id="menu-jk" class="col-md-4">
<div class="pro-s-cover">
<img src="assets/img/profile.jpg" alt="" />
<h6>Anwar Said</h6>
<span
>Institute for Software Integrated Systems,<br />
Department of Computer Science,<br />
Vanderbilt University,<br />
Nashville, TN</span
>
<p>Postdoctoral Research Scholar</p>
<div class="num-box w-100 d-flex">
<div class="text-left">
<br />
<a href="index.html#about" class="text-primary">About Me</a><br />
<a href="index.html#latest" class="text-primary">Latest</a><br />
<a href="index.html#publication" class="text-primary">Publications</a
><br />
<a href="index.html#awarda" class="text-primary">Awards</a><br />
<a href="blogs.html" class="text-primary">Blogs</a><br />
</div>
</div>
<!-- <div class="msg-box d-flex">
<div class="hire">
<button type="button" class="btn btn-outline-dark">Hire</button>
</div>
<div class="msg">
<button type="button" class="btn btn-outline-dark">CV</button>
</div>
</div> -->
</div>
<div class="con-cover">
<h4>Contact</h4>
<ul class="row no-margin">
<li>
<a href="https://www.researchgate.net/profile/Anwar-Said"
><i class="fab fa-researchgate"></i
></a>
</li>
<!-- <li><a href=""><i class="fab fa-facebook-f"></i></a></li> -->
<li>
<a href="https://twitter.com/anwarsaid135"
><i class="fab fa-twitter"></i
></a>
</li>
<li>
<a
href="https://scholar.google.com/citations?user=eSEelAgAAAAJ&hl=en"
><i class="fab fa-google"></i
></a>
</li>
<li>
<a href="https://www.linkedin.com/in/anwar-said-9bb596b4"
><i class="fab fa-linkedin-in"></i
></a>
</li>
<li>
<a href="https://github.com/Anwar-Said/"
><i class="fab fa-github"></i
></a>
</li>
</ul>
<!-- <div class="cd-ro row no-margin">
<span>Mobile No</span>
<p><i class="fas fa-phone-square"></i> +1 233 232 4322</p>
</div> -->
<div class="cd-ro row no-margin">
<span>Email Addreess</span>
<p>
<a href="mailto:[email protected]"
><i class="fas fa-envelope-square"></i>
>
</p>
</div>
</div>
</div>
<div class="col-md-8" id="about">
<div class="data-box">
<header class="blog-post-header">
<h2 class="title mb-2">
<a href="https://www.sciencedirect.com/science/article/pii/S1568494623001229?casa_token=z66yI6mxFFUAAAAA:hBt8nbkVlrdTZGSeFC6CDPbkVR2zl9g2rl53yxeLtTib0M1cFyXeyjh1xDw1x8KDr3yvaNPS" target="_blank"
>On Augmenting Toplogical Graph Representations for Attributed Graphs</a
</h2>
<div class="meta mb-3">
<span class="date">Published Feb. 2023</span
><span class="time">5 min read</span
></span>
</div>
<div class="meta mb-3">
<span><a href="https://doi.org/10.24433/CO.5927044.v1" color="" green>Github</a></span>
</div>
</header>
<article class="blog-post">
<div class="blog-post-body">
<figure class="blog-banner">
<a href=""
><img
class="img-fluid"
src="assets/images/blog/augmentation-2.png"
alt="image"
/></a>
<figcaption class="mt-2 text-center image-caption">
Graph Augmentation Framework
<!-- <a href="https://made4dev.com?ref=devblog" target="_blank"
>made4dev.com (Premium Programming T-shirts)</a
> -->
</figcaption>
</figure>
<p>
Graph representations based on embedding methods
allow for easier analysis of the network structure and can be used
for a variety of tasks, such as link prediction and node classification.
These methods have been shown to be effective in a variety of settings and have
become an important tool in the field of graph learning. These methods are easy to implement, and their predictions yield interpretable results. However, most graph embedding methods rely solely on graph structural information and do not consider node/edge attributes, limiting their applicability. In this paper, we propose graph-theoretic designs to incorporate node and edge attributes within the topology, enabling graph-embedding methods to seamlessly work on attributed graphs. To find ideal representation for a given attributed graph, we propose augmenting special subgraph structures within original network. We discuss the potential challenges of the proposed approach and prove some of its theoretical limitations. We test the efficacy of our approach by comparing state-of-the-art graph classification models on 15 standard bioinformatics datasets. We observe an encouraging improvement of up to 5% in
classification accuracy on the augmented graphs compared to the results on the original graphs. <br />
</p>
</article>
</div>
</div>
</div>
</div>
</div>
</body>
<script src="assets/js/jquery-3.2.1.min.js"></script>
<script src="assets/js/popper.min.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<script
type="application/javascript"
src="assets/js/jquery-scrolltofixed-min.js"
></script>
<script src="assets/js/script.js"></script>
</html>