├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ └── bookdown.yaml ├── .gitignore ├── LICENSE ├── README.md ├── _bookdown.yml ├── _output.yml ├── bib ├── appendix.bib ├── main.bib └── related-work.bib ├── css ├── glossarybox.css └── style.css ├── doc ├── cookbook.md └── installation.md ├── figures ├── B12.pdf ├── B12.png ├── adjmog_adjcc.pdf ├── adjmog_adjcc.png ├── adjmog_adjcc_scaled.png ├── augmented_hasse_graph_examples.pdf ├── augmented_hasse_graph_examples.png ├── augmented_mapper_cc.pdf ├── augmented_mapper_cc.png ├── cc_examples.pdf ├── cc_examples.png ├── cc_map.pdf ├── cc_map.png ├── cloth.pdf ├── cloth.png ├── cts_discrete_nbhd.pdf ├── cts_discrete_nbhd.png ├── experiment.pdf ├── experiment.png ├── factors_thru.pdf ├── factors_thru.png ├── functor.pdf ├── functor.png ├── graph_tda.pdf ├── graph_tda.png ├── graph_tda_appendix.pdf ├── graph_tda_appendix.png ├── hasse_graph_pooling.pdf ├── hasse_graph_pooling.png ├── hasse_graph_pooling_scaled.png ├── homp.pdf ├── homp.png ├── hon.pdf ├── hon.png ├── hon_example.pdf ├── hon_example.png ├── hs.pdf ├── hs.png ├── image_pooling.pdf ├── image_pooling.png ├── inductive_bias.pdf ├── inductive_bias.png ├── lifting_maps.pdf ├── lifting_maps.png ├── main_figure.pdf ├── main_figure.png ├── mapper_and_pooling.pdf ├── mapper_and_pooling.png ├── mapping_cochain.pdf ├── mapping_cochain.png ├── merge_example.pdf ├── merge_example.png ├── merge_example_scaled.png ├── merge_node.pdf ├── merge_node.png ├── merge_node_scaled.png ├── pooling.pdf ├── pooling.png ├── pooling_examples.pdf ├── pooling_examples.png ├── pooling_motivation.pdf ├── pooling_motivation.png ├── poset.pdf ├── poset.png ├── prior_work.pdf ├── prior_work.png ├── prop_structure.pdf ├── prop_structure.png ├── proximity.pdf ├── proximity.png ├── push_forward.pdf ├── push_forward.png ├── read_out.pdf ├── read_out.png ├── split_merge_push.pdf ├── split_merge_push.png ├── structure_adj.pdf ├── structure_adj.png ├── structure_inc.pdf ├── structure_inc.png ├── tasks.pdf ├── tasks.png ├── tdl_blue_print.pdf ├── tdl_blue_print.png ├── tensor_diagram.pdf ├── tensor_diagram.png ├── two_tori_horse.pdf ├── two_tori_horse.png ├── unifying.pdf └── unifying.png ├── index.rmd ├── krantz.cls ├── renv.lock ├── rmd ├── 01-introduction.rmd ├── 02-motivation.rmd ├── 03-preliminaries.rmd ├── 04-ccs.rmd ├── 05-ccnns.rmd ├── 06-message-passing.rmd ├── 07-push-forward-and-pooling.rmd ├── 08-hasse-graph-interpretation.rmd ├── 09-implementation-and-numerical-experiments.rmd ├── 10-related-work.rmd ├── 11-conclusions.rmd ├── 80-glossary.rmd ├── 81-lifting-maps.rmd ├── 82-ccnns-and-tqft.rmd ├── 83-learning-dec-operators-with-ccanns.rmd ├── 84-a-mapper-induced-topology-preserving-cc-pooling-operation.rmd └── 99-references.rmd └── tdlbook.Rproj /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/bookdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/.github/workflows/bookdown.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/README.md -------------------------------------------------------------------------------- /_bookdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/_bookdown.yml -------------------------------------------------------------------------------- /_output.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/_output.yml -------------------------------------------------------------------------------- /bib/appendix.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/bib/appendix.bib -------------------------------------------------------------------------------- /bib/main.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/bib/main.bib -------------------------------------------------------------------------------- /bib/related-work.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/bib/related-work.bib -------------------------------------------------------------------------------- /css/glossarybox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/css/glossarybox.css -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/css/style.css -------------------------------------------------------------------------------- /doc/cookbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/doc/cookbook.md -------------------------------------------------------------------------------- /doc/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/doc/installation.md -------------------------------------------------------------------------------- /figures/B12.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/B12.pdf -------------------------------------------------------------------------------- /figures/B12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/B12.png -------------------------------------------------------------------------------- /figures/adjmog_adjcc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/adjmog_adjcc.pdf -------------------------------------------------------------------------------- /figures/adjmog_adjcc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/adjmog_adjcc.png -------------------------------------------------------------------------------- /figures/adjmog_adjcc_scaled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/adjmog_adjcc_scaled.png -------------------------------------------------------------------------------- /figures/augmented_hasse_graph_examples.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/augmented_hasse_graph_examples.pdf -------------------------------------------------------------------------------- /figures/augmented_hasse_graph_examples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/augmented_hasse_graph_examples.png -------------------------------------------------------------------------------- /figures/augmented_mapper_cc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/augmented_mapper_cc.pdf -------------------------------------------------------------------------------- /figures/augmented_mapper_cc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/augmented_mapper_cc.png -------------------------------------------------------------------------------- /figures/cc_examples.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/cc_examples.pdf -------------------------------------------------------------------------------- /figures/cc_examples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/cc_examples.png -------------------------------------------------------------------------------- /figures/cc_map.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/cc_map.pdf -------------------------------------------------------------------------------- /figures/cc_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/cc_map.png -------------------------------------------------------------------------------- /figures/cloth.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/cloth.pdf -------------------------------------------------------------------------------- /figures/cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/cloth.png -------------------------------------------------------------------------------- /figures/cts_discrete_nbhd.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/cts_discrete_nbhd.pdf -------------------------------------------------------------------------------- /figures/cts_discrete_nbhd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/cts_discrete_nbhd.png -------------------------------------------------------------------------------- /figures/experiment.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/experiment.pdf -------------------------------------------------------------------------------- /figures/experiment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/experiment.png -------------------------------------------------------------------------------- /figures/factors_thru.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/factors_thru.pdf -------------------------------------------------------------------------------- /figures/factors_thru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/factors_thru.png -------------------------------------------------------------------------------- /figures/functor.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/functor.pdf -------------------------------------------------------------------------------- /figures/functor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/functor.png -------------------------------------------------------------------------------- /figures/graph_tda.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/graph_tda.pdf -------------------------------------------------------------------------------- /figures/graph_tda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/graph_tda.png -------------------------------------------------------------------------------- /figures/graph_tda_appendix.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/graph_tda_appendix.pdf -------------------------------------------------------------------------------- /figures/graph_tda_appendix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/graph_tda_appendix.png -------------------------------------------------------------------------------- /figures/hasse_graph_pooling.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/hasse_graph_pooling.pdf -------------------------------------------------------------------------------- /figures/hasse_graph_pooling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/hasse_graph_pooling.png -------------------------------------------------------------------------------- /figures/hasse_graph_pooling_scaled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/hasse_graph_pooling_scaled.png -------------------------------------------------------------------------------- /figures/homp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/homp.pdf -------------------------------------------------------------------------------- /figures/homp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/homp.png -------------------------------------------------------------------------------- /figures/hon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/hon.pdf -------------------------------------------------------------------------------- /figures/hon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/hon.png -------------------------------------------------------------------------------- /figures/hon_example.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/hon_example.pdf -------------------------------------------------------------------------------- /figures/hon_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/hon_example.png -------------------------------------------------------------------------------- /figures/hs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/hs.pdf -------------------------------------------------------------------------------- /figures/hs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/hs.png -------------------------------------------------------------------------------- /figures/image_pooling.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/image_pooling.pdf -------------------------------------------------------------------------------- /figures/image_pooling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/image_pooling.png -------------------------------------------------------------------------------- /figures/inductive_bias.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/inductive_bias.pdf -------------------------------------------------------------------------------- /figures/inductive_bias.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/inductive_bias.png -------------------------------------------------------------------------------- /figures/lifting_maps.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/lifting_maps.pdf -------------------------------------------------------------------------------- /figures/lifting_maps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/lifting_maps.png -------------------------------------------------------------------------------- /figures/main_figure.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/main_figure.pdf -------------------------------------------------------------------------------- /figures/main_figure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/main_figure.png -------------------------------------------------------------------------------- /figures/mapper_and_pooling.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/mapper_and_pooling.pdf -------------------------------------------------------------------------------- /figures/mapper_and_pooling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/mapper_and_pooling.png -------------------------------------------------------------------------------- /figures/mapping_cochain.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/mapping_cochain.pdf -------------------------------------------------------------------------------- /figures/mapping_cochain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/mapping_cochain.png -------------------------------------------------------------------------------- /figures/merge_example.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/merge_example.pdf -------------------------------------------------------------------------------- /figures/merge_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/merge_example.png -------------------------------------------------------------------------------- /figures/merge_example_scaled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/merge_example_scaled.png -------------------------------------------------------------------------------- /figures/merge_node.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/merge_node.pdf -------------------------------------------------------------------------------- /figures/merge_node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/merge_node.png -------------------------------------------------------------------------------- /figures/merge_node_scaled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/merge_node_scaled.png -------------------------------------------------------------------------------- /figures/pooling.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/pooling.pdf -------------------------------------------------------------------------------- /figures/pooling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/pooling.png -------------------------------------------------------------------------------- /figures/pooling_examples.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/pooling_examples.pdf -------------------------------------------------------------------------------- /figures/pooling_examples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/pooling_examples.png -------------------------------------------------------------------------------- /figures/pooling_motivation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/pooling_motivation.pdf -------------------------------------------------------------------------------- /figures/pooling_motivation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/pooling_motivation.png -------------------------------------------------------------------------------- /figures/poset.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/poset.pdf -------------------------------------------------------------------------------- /figures/poset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/poset.png -------------------------------------------------------------------------------- /figures/prior_work.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/prior_work.pdf -------------------------------------------------------------------------------- /figures/prior_work.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/prior_work.png -------------------------------------------------------------------------------- /figures/prop_structure.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/prop_structure.pdf -------------------------------------------------------------------------------- /figures/prop_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/prop_structure.png -------------------------------------------------------------------------------- /figures/proximity.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/proximity.pdf -------------------------------------------------------------------------------- /figures/proximity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/proximity.png -------------------------------------------------------------------------------- /figures/push_forward.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/push_forward.pdf -------------------------------------------------------------------------------- /figures/push_forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/push_forward.png -------------------------------------------------------------------------------- /figures/read_out.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/read_out.pdf -------------------------------------------------------------------------------- /figures/read_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/read_out.png -------------------------------------------------------------------------------- /figures/split_merge_push.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/split_merge_push.pdf -------------------------------------------------------------------------------- /figures/split_merge_push.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/split_merge_push.png -------------------------------------------------------------------------------- /figures/structure_adj.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/structure_adj.pdf -------------------------------------------------------------------------------- /figures/structure_adj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/structure_adj.png -------------------------------------------------------------------------------- /figures/structure_inc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/structure_inc.pdf -------------------------------------------------------------------------------- /figures/structure_inc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/structure_inc.png -------------------------------------------------------------------------------- /figures/tasks.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/tasks.pdf -------------------------------------------------------------------------------- /figures/tasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/tasks.png -------------------------------------------------------------------------------- /figures/tdl_blue_print.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/tdl_blue_print.pdf -------------------------------------------------------------------------------- /figures/tdl_blue_print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/tdl_blue_print.png -------------------------------------------------------------------------------- /figures/tensor_diagram.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/tensor_diagram.pdf -------------------------------------------------------------------------------- /figures/tensor_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/tensor_diagram.png -------------------------------------------------------------------------------- /figures/two_tori_horse.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/two_tori_horse.pdf -------------------------------------------------------------------------------- /figures/two_tori_horse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/two_tori_horse.png -------------------------------------------------------------------------------- /figures/unifying.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/unifying.pdf -------------------------------------------------------------------------------- /figures/unifying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/figures/unifying.png -------------------------------------------------------------------------------- /index.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/index.rmd -------------------------------------------------------------------------------- /krantz.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/krantz.cls -------------------------------------------------------------------------------- /renv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/renv.lock -------------------------------------------------------------------------------- /rmd/01-introduction.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/rmd/01-introduction.rmd -------------------------------------------------------------------------------- /rmd/02-motivation.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/rmd/02-motivation.rmd -------------------------------------------------------------------------------- /rmd/03-preliminaries.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/rmd/03-preliminaries.rmd -------------------------------------------------------------------------------- /rmd/04-ccs.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/rmd/04-ccs.rmd -------------------------------------------------------------------------------- /rmd/05-ccnns.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/rmd/05-ccnns.rmd -------------------------------------------------------------------------------- /rmd/06-message-passing.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/rmd/06-message-passing.rmd -------------------------------------------------------------------------------- /rmd/07-push-forward-and-pooling.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/rmd/07-push-forward-and-pooling.rmd -------------------------------------------------------------------------------- /rmd/08-hasse-graph-interpretation.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/rmd/08-hasse-graph-interpretation.rmd -------------------------------------------------------------------------------- /rmd/09-implementation-and-numerical-experiments.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/rmd/09-implementation-and-numerical-experiments.rmd -------------------------------------------------------------------------------- /rmd/10-related-work.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/rmd/10-related-work.rmd -------------------------------------------------------------------------------- /rmd/11-conclusions.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/rmd/11-conclusions.rmd -------------------------------------------------------------------------------- /rmd/80-glossary.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/rmd/80-glossary.rmd -------------------------------------------------------------------------------- /rmd/81-lifting-maps.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/rmd/81-lifting-maps.rmd -------------------------------------------------------------------------------- /rmd/82-ccnns-and-tqft.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/rmd/82-ccnns-and-tqft.rmd -------------------------------------------------------------------------------- /rmd/83-learning-dec-operators-with-ccanns.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/rmd/83-learning-dec-operators-with-ccanns.rmd -------------------------------------------------------------------------------- /rmd/84-a-mapper-induced-topology-preserving-cc-pooling-operation.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/rmd/84-a-mapper-induced-topology-preserving-cc-pooling-operation.rmd -------------------------------------------------------------------------------- /rmd/99-references.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/rmd/99-references.rmd -------------------------------------------------------------------------------- /tdlbook.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/tdlbook/HEAD/tdlbook.Rproj --------------------------------------------------------------------------------