Spaces:
Running
Running
omkarenator
commited on
Commit
•
fc75e66
1
Parent(s):
7602a54
fix find cc image
Browse files
common.py
CHANGED
@@ -374,7 +374,10 @@ global_div = Div(
|
|
374 |
),
|
375 |
Section(
|
376 |
H3("Finding Connected Components using MapReduce"),
|
377 |
-
Img(
|
|
|
|
|
|
|
378 |
P(
|
379 |
"The purpose of this step is to create a set of clusters of matching pairs. For example, a list of pairs (A, B), (B, C), (D, E) is merged into a list of components (A, B, C) and (D, E). Using a third-party library like NetworkX to find connected components would require all pairs to fit into the memory of a single machine, which is not feasible. Instead, we implemented a distributed connected component finder",
|
380 |
D_cite(bibtex_key="6785473"),
|
|
|
374 |
),
|
375 |
Section(
|
376 |
H3("Finding Connected Components using MapReduce"),
|
377 |
+
Img(
|
378 |
+
src="images/findcc.svg",
|
379 |
+
style="max-width: 100%; display: block; margin: 0 auto; padding: 30px;",
|
380 |
+
),
|
381 |
P(
|
382 |
"The purpose of this step is to create a set of clusters of matching pairs. For example, a list of pairs (A, B), (B, C), (D, E) is merged into a list of components (A, B, C) and (D, E). Using a third-party library like NetworkX to find connected components would require all pairs to fit into the memory of a single machine, which is not feasible. Instead, we implemented a distributed connected component finder",
|
383 |
D_cite(bibtex_key="6785473"),
|