Skip to content

Commit 2c93097

Browse files
committed
imports after title
1 parent 952fc66 commit 2c93097

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

notebooks/02_spectral.ipynb

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
{
22
"cells": [
3+
{
4+
"cell_type": "markdown",
5+
"metadata": {},
6+
"source": [
7+
"# 2 Spectral Graph Theory\n",
8+
"\n",
9+
"We'll see here two of the most celebrated algorithms stemming from Spectral Graph Theory:\n",
10+
"1. [Spectral clustering](https://en.wikipedia.org/wiki/Spectral_clustering): clustering data using a similarity graphs\n",
11+
"1. [Laplacian eigenmaps](https://en.wikipedia.org/wiki/Nonlinear_dimensionality_reduction#Laplacian_eigenmaps): dimensionality reduction which preserves geodesic distances"
12+
]
13+
},
314
{
415
"cell_type": "code",
516
"execution_count": null,
@@ -18,17 +29,6 @@
1829
"from mpl_toolkits.mplot3d import Axes3D"
1930
]
2031
},
21-
{
22-
"cell_type": "markdown",
23-
"metadata": {},
24-
"source": [
25-
"# 2 Spectral Graph Theory\n",
26-
"\n",
27-
"We'll see here two of the most celebrated algorithms stemming from Spectral Graph Theory:\n",
28-
"1. [Spectral clustering](https://en.wikipedia.org/wiki/Spectral_clustering): clustering data using a similarity graphs\n",
29-
"1. [Laplacian eigenmaps](https://en.wikipedia.org/wiki/Nonlinear_dimensionality_reduction#Laplacian_eigenmaps): dimensionality reduction which preserves geodesic distances"
30-
]
31-
},
3232
{
3333
"cell_type": "markdown",
3434
"metadata": {},

0 commit comments

Comments
 (0)