Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 80a0463

Browse files
Started working on latent graph learning
1 parent 21bf310 commit 80a0463

File tree

6 files changed

+231
-19
lines changed

6 files changed

+231
-19
lines changed

‎FixedPointIterationsMethods.ipynb

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@
44
"cell_type": "code",
55
"execution_count": 2,
66
"metadata": {
7-
"collapsed": true
7+
"collapsed": true,
8+
"jupyter": {
9+
"outputs_hidden": true
10+
}
811
},
912
"outputs": [],
1013
"source": [
@@ -632,7 +635,7 @@
632635
],
633636
"metadata": {
634637
"kernelspec": {
635-
"display_name": "Python 3",
638+
"display_name": "Python 3 (ipykernel)",
636639
"language": "python",
637640
"name": "python3"
638641
},
@@ -646,9 +649,9 @@
646649
"name": "python",
647650
"nbconvert_exporter": "python",
648651
"pygments_lexer": "ipython3",
649-
"version": "3.8.10"
652+
"version": "3.11.5"
650653
}
651654
},
652655
"nbformat": 4,
653-
"nbformat_minor": 1
656+
"nbformat_minor": 4
654657
}

‎InformationTheoryOptimization.ipynb

Lines changed: 35 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -604,7 +604,10 @@
604604
{
605605
"cell_type": "markdown",
606606
"metadata": {
607-
"collapsed": true
607+
"collapsed": true,
608+
"jupyter": {
609+
"outputs_hidden": true
610+
}
608611
},
609612
"source": [
610613
"### Cross Entropy\n",
@@ -622,7 +625,10 @@
622625
{
623626
"cell_type": "markdown",
624627
"metadata": {
625-
"collapsed": true
628+
"collapsed": true,
629+
"jupyter": {
630+
"outputs_hidden": true
631+
}
626632
},
627633
"source": [
628634
"### Mutual information\n",
@@ -811,7 +817,10 @@
811817
{
812818
"cell_type": "markdown",
813819
"metadata": {
814-
"collapsed": true
820+
"collapsed": true,
821+
"jupyter": {
822+
"outputs_hidden": true
823+
}
815824
},
816825
"source": [
817826
"# KL Divergence and maximum likelihood\n",
@@ -982,7 +991,10 @@
982991
{
983992
"cell_type": "markdown",
984993
"metadata": {
985-
"collapsed": true
994+
"collapsed": true,
995+
"jupyter": {
996+
"outputs_hidden": true
997+
}
986998
},
987999
"source": [
9881000
"### Solving the problem\n",
@@ -1262,7 +1274,10 @@
12621274
{
12631275
"cell_type": "markdown",
12641276
"metadata": {
1265-
"collapsed": true
1277+
"collapsed": true,
1278+
"jupyter": {
1279+
"outputs_hidden": true
1280+
}
12661281
},
12671282
"source": [
12681283
"#### Expectation Maximization Algorithm\n",
@@ -1293,7 +1308,10 @@
12931308
{
12941309
"cell_type": "markdown",
12951310
"metadata": {
1296-
"collapsed": true
1311+
"collapsed": true,
1312+
"jupyter": {
1313+
"outputs_hidden": true
1314+
}
12971315
},
12981316
"source": [
12991317
"#### Conditional probability, sum of Poisson distibutions and binomial law\n",
@@ -1501,7 +1519,10 @@
15011519
{
15021520
"cell_type": "markdown",
15031521
"metadata": {
1504-
"collapsed": true
1522+
"collapsed": true,
1523+
"jupyter": {
1524+
"outputs_hidden": true
1525+
}
15051526
},
15061527
"source": [
15071528
"#### Some remark about this Expectation Maximization instance\n",
@@ -1527,7 +1548,10 @@
15271548
{
15281549
"cell_type": "markdown",
15291550
"metadata": {
1530-
"collapsed": true
1551+
"collapsed": true,
1552+
"jupyter": {
1553+
"outputs_hidden": true
1554+
}
15311555
},
15321556
"source": [
15331557
"## Bayesian statistics, MCMC, and the magical world of probabilistic programming\n",
@@ -1983,7 +2007,7 @@
19832007
],
19842008
"metadata": {
19852009
"kernelspec": {
1986-
"display_name": "Python 3",
2010+
"display_name": "Python 3 (ipykernel)",
19872011
"language": "python",
19882012
"name": "python3"
19892013
},
@@ -1997,9 +2021,9 @@
19972021
"name": "python",
19982022
"nbconvert_exporter": "python",
19992023
"pygments_lexer": "ipython3",
2000-
"version": "3.8.10"
2024+
"version": "3.11.5"
20012025
}
20022026
},
20032027
"nbformat": 4,
2004-
"nbformat_minor": 1
2028+
"nbformat_minor": 4
20052029
}

‎LatentGraphLearning.ipynb

Lines changed: 155 additions & 0 deletions
Large diffs are not rendered by default.

‎OptimalTransportWasserteinDistance.ipynb

Lines changed: 33 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -789,19 +789,49 @@
789789
"metadata": {},
790790
"source": [
791791
"### Optimal transport and Sinkhorn divergence on graphs\n",
792-
"This chapter has been inspired by Nicolas Keriven tweet: https://twitter.com/n_keriven/status/1453276234637578253\n",
793-
"\n"
792+
"This chapter has been inspired by Nicolas Keriven tweet: https://twitter.com/n_keriven/status/1453276234637578253"
794793
]
795794
},
796795
{
797796
"cell_type": "code",
798-
"execution_count": 1,
797+
"execution_count": null,
798+
"metadata": {},
799+
"outputs": [],
800+
"source": [
801+
"#IFrame(\"doc/OptimalTransportWasserteinDistance/LatentGraphLearning.pdf\", width=1200, height=800)"
802+
]
803+
},
804+
{
805+
"cell_type": "markdown",
806+
"metadata": {},
807+
"source": [
808+
"And one of its source: \"A. L. Smith, D. M. Asta, and C. A. Calder. The geometry of continuous latent space models for network data\""
809+
]
810+
},
811+
{
812+
"cell_type": "code",
813+
"execution_count": 2,
799814
"metadata": {},
800815
"outputs": [],
801816
"source": [
802817
"#IFrame(\"doc/OptimalTransportWasserteinDistance/NKeriven_OTGraph.pdf\", width=1200, height=800)"
803818
]
804819
},
820+
{
821+
"cell_type": "markdown",
822+
"metadata": {},
823+
"source": []
824+
},
825+
{
826+
"cell_type": "markdown",
827+
"metadata": {},
828+
"source": []
829+
},
830+
{
831+
"cell_type": "markdown",
832+
"metadata": {},
833+
"source": []
834+
},
805835
{
806836
"cell_type": "code",
807837
"execution_count": null,

‎RoddierWaveFrontReconstruction.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@
319319
"source": [
320320
"* Also [this](https://docs.sciml.ai/NeuralPDE/stable/) amazing website/github project that I also forked. You will also find a basic introduction to neural PDE, and why normalizing flows are useful for those type of models in the NormalizingFlows notebook.\n",
321321
"\n",
322-
"* Nvidi []()"
322+
"* Nvidia also release modulus, an opensource framework for physics informed PDEs introduced [here](https://developer.nvidia.com/blog/develop-physics-informed-machine-learning-models-with-graph-neural-networks/) and available [here](https://catalog.ngc.nvidia.com/orgs/nvidia/teams/modulus/containers/modulus)"
323323
]
324324
},
325325
{
Binary file not shown.

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /