├── .github ├── release.yml ├── renovate.json └── workflows │ ├── deploy.yml │ ├── docs.yml │ ├── lint.yml │ ├── test_codebase.yml │ └── test_tutorials.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .test_durations ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── codecov.yml ├── docs ├── Makefile ├── _static │ └── favicon-48.png ├── _thumbnails │ ├── cell │ │ ├── can_train.png │ │ ├── ccxn_train.png │ │ └── cwn_train.png │ ├── hypergraph │ │ ├── allset_train.png │ │ ├── allset_transformer_train.png │ │ ├── dhgcn_train.png │ │ ├── hmpnn_train.png │ │ ├── hnhn_train.png │ │ ├── hnhn_train_bis.png │ │ ├── hypergat_train.png │ │ ├── hypersage_train.png │ │ ├── template_train.png │ │ ├── unigcn_train.png │ │ ├── unigcnii_train.png │ │ ├── unigin_train.png │ │ └── unisage_train.png │ └── simplicial │ │ ├── dist2cycle_train.png │ │ ├── hsn_train.png │ │ ├── san_train.png │ │ ├── sca_cmps_train.png │ │ ├── sccn_train.png │ │ ├── sccnn_train.png │ │ ├── scconv_train.png │ │ ├── scn2_train.png │ │ ├── scnn_train.png │ │ └── scone_train.png ├── api │ ├── base │ │ ├── aggregation.rst │ │ ├── conv.rst │ │ ├── index.rst │ │ └── message_passing.rst │ ├── index.rst │ ├── nn │ │ ├── cell │ │ │ ├── can.rst │ │ │ ├── can_layer.rst │ │ │ ├── ccxn.rst │ │ │ ├── ccxn_layer.rst │ │ │ ├── cwn.rst │ │ │ ├── cwn_layer.rst │ │ │ └── index.rst │ │ ├── hypergraph │ │ │ ├── allset.rst │ │ │ ├── allset_layer.rst │ │ │ ├── allset_transformer.rst │ │ │ ├── allset_transformer_layer.rst │ │ │ ├── dhgcn.rst │ │ │ ├── dhgcn_layer.rst │ │ │ ├── hmpnn.rst │ │ │ ├── hmpnn_layer.rst │ │ │ ├── hnhn.rst │ │ │ ├── hnhn_layer.rst │ │ │ ├── hnhn_layer_bis.rst │ │ │ ├── hypergat.rst │ │ │ ├── hypergat_layer.rst │ │ │ ├── hypersage.rst │ │ │ ├── hypersage_layer.rst │ │ │ ├── index.rst │ │ │ ├── unigcn.rst │ │ │ ├── unigcn_layer.rst │ │ │ ├── unigcnii.rst │ │ │ ├── unigcnii_layer.rst │ │ │ ├── unigin.rst │ │ │ ├── unigin_layer.rst │ │ │ ├── unisage.rst │ │ │ └── unisage_layer.rst │ │ ├── index.rst │ │ └── simplicial │ │ │ ├── dist2cycle.rst │ │ │ ├── dist2cycle_layer.rst │ │ │ ├── hsn.rst │ │ │ ├── hsn_layer.rst │ │ │ ├── index.rst │ │ │ ├── san.rst │ │ │ ├── san_layer.rst │ │ │ ├── sca_cmps.rst │ │ │ ├── sca_cmps_layer.rst │ │ │ ├── sccn.rst │ │ │ ├── sccn_layer.rst │ │ │ ├── sccnn.rst │ │ │ ├── sccnn_layer.rst │ │ │ ├── scconv.rst │ │ │ ├── scconv_layer.rst │ │ │ ├── scn2.rst │ │ │ ├── scn2_layer.rst │ │ │ ├── scnn.rst │ │ │ ├── scnn_layer.rst │ │ │ ├── scone.rst │ │ │ └── scone_layer.rst │ └── utils │ │ └── index.rst ├── challenge │ └── index.rst ├── conf.py ├── contributing │ └── index.rst ├── index.rst ├── notebooks └── tutorials │ └── index.rst ├── pyproject.toml ├── resources └── logo.png ├── test ├── base │ ├── test_aggregation.py │ ├── test_conv.py │ └── test_message_passing.py ├── nn │ ├── cell │ │ ├── test_can.py │ │ ├── test_can_layer.py │ │ ├── test_ccxn.py │ │ ├── test_ccxn_layer.py │ │ ├── test_cwn.py │ │ └── test_cwn_layer.py │ ├── combinatorial │ │ ├── test_hmc.py │ │ └── test_hmc_layer.py │ ├── hypergraph │ │ ├── test_allset.py │ │ ├── test_allset_layer.py │ │ ├── test_allset_transformer.py │ │ ├── test_allset_transformer_layer.py │ │ ├── test_dhgcn.py │ │ ├── test_dhgcn_layer.py │ │ ├── test_hmpnn.py │ │ ├── test_hmpnn_layer.py │ │ ├── test_hnhn.py │ │ ├── test_hnhn_layer.py │ │ ├── test_hypergat.py │ │ ├── test_hypergat_layer.py │ │ ├── test_hypersage.py │ │ ├── test_hypersage_layer.py │ │ ├── test_unigcn.py │ │ ├── test_unigcn_layer.py │ │ ├── test_unigcnii.py │ │ ├── test_unigcnii_layer.py │ │ ├── test_unigin.py │ │ ├── test_unigin_layer.py │ │ ├── test_unisage.py │ │ └── test_unisage_layer.py │ └── simplicial │ │ ├── test_dist2cycle.py │ │ ├── test_dist2cycle_layer.py │ │ ├── test_hsn.py │ │ ├── test_hsn_layer.py │ │ ├── test_san.py │ │ ├── test_san_layer.py │ │ ├── test_sca_cmps.py │ │ ├── test_sca_cmps_layer.py │ │ ├── test_sccn.py │ │ ├── test_sccn_layer.py │ │ ├── test_sccnn.py │ │ ├── test_sccnn_layer.py │ │ ├── test_scconv.py │ │ ├── test_scconv_layer.py │ │ ├── test_scn2.py │ │ ├── test_scn2_layer.py │ │ ├── test_scnn.py │ │ ├── test_scnn_layer.py │ │ ├── test_scone.py │ │ └── test_scone_layer.py ├── tutorials │ ├── test_cell.py │ ├── test_combinatorial.py │ ├── test_hypergraph.py │ └── test_simplicial.py └── utils │ ├── test_scatter.py │ └── test_sparse.py ├── topomodelx.jpeg ├── topomodelx ├── __init__.py ├── base │ ├── __init__.py │ ├── aggregation.py │ ├── conv.py │ └── message_passing.py ├── nn │ ├── __init__.py │ ├── cell │ │ ├── can.py │ │ ├── can_layer.py │ │ ├── ccxn.py │ │ ├── ccxn_layer.py │ │ ├── cwn.py │ │ └── cwn_layer.py │ ├── combinatorial │ │ ├── hmc.py │ │ └── hmc_layer.py │ ├── hypergraph │ │ ├── allset.py │ │ ├── allset_layer.py │ │ ├── allset_transformer.py │ │ ├── allset_transformer_layer.py │ │ ├── dhgcn.py │ │ ├── dhgcn_layer.py │ │ ├── hmpnn.py │ │ ├── hmpnn_layer.py │ │ ├── hnhn.py │ │ ├── hnhn_layer.py │ │ ├── hypergat.py │ │ ├── hypergat_layer.py │ │ ├── hypersage.py │ │ ├── hypersage_layer.py │ │ ├── unigcn.py │ │ ├── unigcn_layer.py │ │ ├── unigcnii.py │ │ ├── unigcnii_layer.py │ │ ├── unigin.py │ │ ├── unigin_layer.py │ │ ├── unisage.py │ │ └── unisage_layer.py │ └── simplicial │ │ ├── __init__.py │ │ ├── dist2cycle.py │ │ ├── dist2cycle_layer.py │ │ ├── hsn.py │ │ ├── hsn_layer.py │ │ ├── san.py │ │ ├── san_layer.py │ │ ├── sca_cmps.py │ │ ├── sca_cmps_layer.py │ │ ├── sccn.py │ │ ├── sccn_layer.py │ │ ├── sccnn.py │ │ ├── sccnn_layer.py │ │ ├── scconv.py │ │ ├── scconv_layer.py │ │ ├── scn2.py │ │ ├── scn2_layer.py │ │ ├── scnn.py │ │ ├── scnn_layer.py │ │ ├── scone.py │ │ └── scone_layer.py └── utils │ ├── __init__.py │ ├── scatter.py │ └── sparse.py └── tutorials ├── README.md ├── cell ├── can_train.ipynb ├── ccxn_train.ipynb └── cwn_train.ipynb ├── combinatorial └── hmc_train.ipynb ├── hypergraph ├── allset_train.ipynb ├── allset_transformer_train.ipynb ├── dhgcn_train.ipynb ├── hmpnn_train.ipynb ├── hnhn_train.ipynb ├── hypergat_train.ipynb ├── hypersage_train.ipynb ├── tmp │ └── cora │ │ └── raw │ │ ├── ind.cora.allx │ │ ├── ind.cora.ally │ │ ├── ind.cora.graph │ │ ├── ind.cora.test.index │ │ ├── ind.cora.tx │ │ ├── ind.cora.ty │ │ ├── ind.cora.x │ │ └── ind.cora.y ├── unigcn_train.ipynb ├── unigcnii_train.ipynb ├── unigin_train.ipynb └── unisage_train.ipynb └── simplicial ├── dist2cycle_train.ipynb ├── hsn_train.ipynb ├── san_train.ipynb ├── sca_cmps_train.ipynb ├── sccn_train.ipynb ├── sccnn_train.ipynb ├── scconv_train.ipynb ├── scn2_train.ipynb ├── scnn_train.ipynb └── scone_train.ipynb /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/test_codebase.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/.github/workflows/test_codebase.yml -------------------------------------------------------------------------------- /.github/workflows/test_tutorials.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/.github/workflows/test_tutorials.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.test_durations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/.test_durations -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/codecov.yml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/favicon-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/_static/favicon-48.png -------------------------------------------------------------------------------- /docs/_thumbnails/cell/can_train.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/_thumbnails/cell/can_train.png -------------------------------------------------------------------------------- /docs/_thumbnails/cell/ccxn_train.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/_thumbnails/cell/ccxn_train.png -------------------------------------------------------------------------------- /docs/_thumbnails/cell/cwn_train.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/_thumbnails/cell/cwn_train.png -------------------------------------------------------------------------------- /docs/_thumbnails/hypergraph/allset_train.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/_thumbnails/hypergraph/allset_train.png -------------------------------------------------------------------------------- /docs/_thumbnails/hypergraph/allset_transformer_train.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/_thumbnails/hypergraph/allset_transformer_train.png -------------------------------------------------------------------------------- /docs/_thumbnails/hypergraph/dhgcn_train.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/_thumbnails/hypergraph/dhgcn_train.png -------------------------------------------------------------------------------- /docs/_thumbnails/hypergraph/hmpnn_train.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/_thumbnails/hypergraph/hmpnn_train.png -------------------------------------------------------------------------------- /docs/_thumbnails/hypergraph/hnhn_train.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/_thumbnails/hypergraph/hnhn_train.png -------------------------------------------------------------------------------- /docs/_thumbnails/hypergraph/hnhn_train_bis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/_thumbnails/hypergraph/hnhn_train_bis.png -------------------------------------------------------------------------------- /docs/_thumbnails/hypergraph/hypergat_train.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/_thumbnails/hypergraph/hypergat_train.png -------------------------------------------------------------------------------- /docs/_thumbnails/hypergraph/hypersage_train.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/_thumbnails/hypergraph/hypersage_train.png -------------------------------------------------------------------------------- /docs/_thumbnails/hypergraph/template_train.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/_thumbnails/hypergraph/template_train.png -------------------------------------------------------------------------------- /docs/_thumbnails/hypergraph/unigcn_train.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/_thumbnails/hypergraph/unigcn_train.png -------------------------------------------------------------------------------- /docs/_thumbnails/hypergraph/unigcnii_train.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/_thumbnails/hypergraph/unigcnii_train.png -------------------------------------------------------------------------------- /docs/_thumbnails/hypergraph/unigin_train.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/_thumbnails/hypergraph/unigin_train.png -------------------------------------------------------------------------------- /docs/_thumbnails/hypergraph/unisage_train.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/_thumbnails/hypergraph/unisage_train.png -------------------------------------------------------------------------------- /docs/_thumbnails/simplicial/dist2cycle_train.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/_thumbnails/simplicial/dist2cycle_train.png -------------------------------------------------------------------------------- /docs/_thumbnails/simplicial/hsn_train.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/_thumbnails/simplicial/hsn_train.png -------------------------------------------------------------------------------- /docs/_thumbnails/simplicial/san_train.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/_thumbnails/simplicial/san_train.png -------------------------------------------------------------------------------- /docs/_thumbnails/simplicial/sca_cmps_train.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/_thumbnails/simplicial/sca_cmps_train.png -------------------------------------------------------------------------------- /docs/_thumbnails/simplicial/sccn_train.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/_thumbnails/simplicial/sccn_train.png -------------------------------------------------------------------------------- /docs/_thumbnails/simplicial/sccnn_train.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/_thumbnails/simplicial/sccnn_train.png -------------------------------------------------------------------------------- /docs/_thumbnails/simplicial/scconv_train.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/_thumbnails/simplicial/scconv_train.png -------------------------------------------------------------------------------- /docs/_thumbnails/simplicial/scn2_train.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/_thumbnails/simplicial/scn2_train.png -------------------------------------------------------------------------------- /docs/_thumbnails/simplicial/scnn_train.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/_thumbnails/simplicial/scnn_train.png -------------------------------------------------------------------------------- /docs/_thumbnails/simplicial/scone_train.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/_thumbnails/simplicial/scone_train.png -------------------------------------------------------------------------------- /docs/api/base/aggregation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/base/aggregation.rst -------------------------------------------------------------------------------- /docs/api/base/conv.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/base/conv.rst -------------------------------------------------------------------------------- /docs/api/base/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/base/index.rst -------------------------------------------------------------------------------- /docs/api/base/message_passing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/base/message_passing.rst -------------------------------------------------------------------------------- /docs/api/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/index.rst -------------------------------------------------------------------------------- /docs/api/nn/cell/can.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/cell/can.rst -------------------------------------------------------------------------------- /docs/api/nn/cell/can_layer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/cell/can_layer.rst -------------------------------------------------------------------------------- /docs/api/nn/cell/ccxn.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/cell/ccxn.rst -------------------------------------------------------------------------------- /docs/api/nn/cell/ccxn_layer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/cell/ccxn_layer.rst -------------------------------------------------------------------------------- /docs/api/nn/cell/cwn.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/cell/cwn.rst -------------------------------------------------------------------------------- /docs/api/nn/cell/cwn_layer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/cell/cwn_layer.rst -------------------------------------------------------------------------------- /docs/api/nn/cell/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/cell/index.rst -------------------------------------------------------------------------------- /docs/api/nn/hypergraph/allset.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/hypergraph/allset.rst -------------------------------------------------------------------------------- /docs/api/nn/hypergraph/allset_layer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/hypergraph/allset_layer.rst -------------------------------------------------------------------------------- /docs/api/nn/hypergraph/allset_transformer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/hypergraph/allset_transformer.rst -------------------------------------------------------------------------------- /docs/api/nn/hypergraph/allset_transformer_layer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/hypergraph/allset_transformer_layer.rst -------------------------------------------------------------------------------- /docs/api/nn/hypergraph/dhgcn.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/hypergraph/dhgcn.rst -------------------------------------------------------------------------------- /docs/api/nn/hypergraph/dhgcn_layer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/hypergraph/dhgcn_layer.rst -------------------------------------------------------------------------------- /docs/api/nn/hypergraph/hmpnn.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/hypergraph/hmpnn.rst -------------------------------------------------------------------------------- /docs/api/nn/hypergraph/hmpnn_layer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/hypergraph/hmpnn_layer.rst -------------------------------------------------------------------------------- /docs/api/nn/hypergraph/hnhn.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/hypergraph/hnhn.rst -------------------------------------------------------------------------------- /docs/api/nn/hypergraph/hnhn_layer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/hypergraph/hnhn_layer.rst -------------------------------------------------------------------------------- /docs/api/nn/hypergraph/hnhn_layer_bis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/hypergraph/hnhn_layer_bis.rst -------------------------------------------------------------------------------- /docs/api/nn/hypergraph/hypergat.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/hypergraph/hypergat.rst -------------------------------------------------------------------------------- /docs/api/nn/hypergraph/hypergat_layer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/hypergraph/hypergat_layer.rst -------------------------------------------------------------------------------- /docs/api/nn/hypergraph/hypersage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/hypergraph/hypersage.rst -------------------------------------------------------------------------------- /docs/api/nn/hypergraph/hypersage_layer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/hypergraph/hypersage_layer.rst -------------------------------------------------------------------------------- /docs/api/nn/hypergraph/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/hypergraph/index.rst -------------------------------------------------------------------------------- /docs/api/nn/hypergraph/unigcn.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/hypergraph/unigcn.rst -------------------------------------------------------------------------------- /docs/api/nn/hypergraph/unigcn_layer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/hypergraph/unigcn_layer.rst -------------------------------------------------------------------------------- /docs/api/nn/hypergraph/unigcnii.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/hypergraph/unigcnii.rst -------------------------------------------------------------------------------- /docs/api/nn/hypergraph/unigcnii_layer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/hypergraph/unigcnii_layer.rst -------------------------------------------------------------------------------- /docs/api/nn/hypergraph/unigin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/hypergraph/unigin.rst -------------------------------------------------------------------------------- /docs/api/nn/hypergraph/unigin_layer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/hypergraph/unigin_layer.rst -------------------------------------------------------------------------------- /docs/api/nn/hypergraph/unisage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/hypergraph/unisage.rst -------------------------------------------------------------------------------- /docs/api/nn/hypergraph/unisage_layer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/hypergraph/unisage_layer.rst -------------------------------------------------------------------------------- /docs/api/nn/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/index.rst -------------------------------------------------------------------------------- /docs/api/nn/simplicial/dist2cycle.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/simplicial/dist2cycle.rst -------------------------------------------------------------------------------- /docs/api/nn/simplicial/dist2cycle_layer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/simplicial/dist2cycle_layer.rst -------------------------------------------------------------------------------- /docs/api/nn/simplicial/hsn.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/simplicial/hsn.rst -------------------------------------------------------------------------------- /docs/api/nn/simplicial/hsn_layer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/simplicial/hsn_layer.rst -------------------------------------------------------------------------------- /docs/api/nn/simplicial/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/simplicial/index.rst -------------------------------------------------------------------------------- /docs/api/nn/simplicial/san.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/simplicial/san.rst -------------------------------------------------------------------------------- /docs/api/nn/simplicial/san_layer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/simplicial/san_layer.rst -------------------------------------------------------------------------------- /docs/api/nn/simplicial/sca_cmps.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/simplicial/sca_cmps.rst -------------------------------------------------------------------------------- /docs/api/nn/simplicial/sca_cmps_layer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/simplicial/sca_cmps_layer.rst -------------------------------------------------------------------------------- /docs/api/nn/simplicial/sccn.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/simplicial/sccn.rst -------------------------------------------------------------------------------- /docs/api/nn/simplicial/sccn_layer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/simplicial/sccn_layer.rst -------------------------------------------------------------------------------- /docs/api/nn/simplicial/sccnn.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/simplicial/sccnn.rst -------------------------------------------------------------------------------- /docs/api/nn/simplicial/sccnn_layer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/simplicial/sccnn_layer.rst -------------------------------------------------------------------------------- /docs/api/nn/simplicial/scconv.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/simplicial/scconv.rst -------------------------------------------------------------------------------- /docs/api/nn/simplicial/scconv_layer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/simplicial/scconv_layer.rst -------------------------------------------------------------------------------- /docs/api/nn/simplicial/scn2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/simplicial/scn2.rst -------------------------------------------------------------------------------- /docs/api/nn/simplicial/scn2_layer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/simplicial/scn2_layer.rst -------------------------------------------------------------------------------- /docs/api/nn/simplicial/scnn.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/simplicial/scnn.rst -------------------------------------------------------------------------------- /docs/api/nn/simplicial/scnn_layer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/simplicial/scnn_layer.rst -------------------------------------------------------------------------------- /docs/api/nn/simplicial/scone.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/simplicial/scone.rst -------------------------------------------------------------------------------- /docs/api/nn/simplicial/scone_layer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/nn/simplicial/scone_layer.rst -------------------------------------------------------------------------------- /docs/api/utils/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/api/utils/index.rst -------------------------------------------------------------------------------- /docs/challenge/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/challenge/index.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/contributing/index.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/notebooks: -------------------------------------------------------------------------------- 1 | ../tutorials/ -------------------------------------------------------------------------------- /docs/tutorials/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/docs/tutorials/index.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/pyproject.toml -------------------------------------------------------------------------------- /resources/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/resources/logo.png -------------------------------------------------------------------------------- /test/base/test_aggregation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/base/test_aggregation.py -------------------------------------------------------------------------------- /test/base/test_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/base/test_conv.py -------------------------------------------------------------------------------- /test/base/test_message_passing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/base/test_message_passing.py -------------------------------------------------------------------------------- /test/nn/cell/test_can.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/nn/cell/test_can.py -------------------------------------------------------------------------------- /test/nn/cell/test_can_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/nn/cell/test_can_layer.py -------------------------------------------------------------------------------- /test/nn/cell/test_ccxn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/nn/cell/test_ccxn.py -------------------------------------------------------------------------------- /test/nn/cell/test_ccxn_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/nn/cell/test_ccxn_layer.py -------------------------------------------------------------------------------- /test/nn/cell/test_cwn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/nn/cell/test_cwn.py -------------------------------------------------------------------------------- /test/nn/cell/test_cwn_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/nn/cell/test_cwn_layer.py -------------------------------------------------------------------------------- /test/nn/combinatorial/test_hmc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/nn/combinatorial/test_hmc.py -------------------------------------------------------------------------------- /test/nn/combinatorial/test_hmc_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/nn/combinatorial/test_hmc_layer.py -------------------------------------------------------------------------------- /test/nn/hypergraph/test_allset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/nn/hypergraph/test_allset.py -------------------------------------------------------------------------------- /test/nn/hypergraph/test_allset_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/nn/hypergraph/test_allset_layer.py -------------------------------------------------------------------------------- /test/nn/hypergraph/test_allset_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/nn/hypergraph/test_allset_transformer.py -------------------------------------------------------------------------------- /test/nn/hypergraph/test_allset_transformer_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/nn/hypergraph/test_allset_transformer_layer.py -------------------------------------------------------------------------------- /test/nn/hypergraph/test_dhgcn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/nn/hypergraph/test_dhgcn.py -------------------------------------------------------------------------------- /test/nn/hypergraph/test_dhgcn_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/nn/hypergraph/test_dhgcn_layer.py -------------------------------------------------------------------------------- /test/nn/hypergraph/test_hmpnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/nn/hypergraph/test_hmpnn.py -------------------------------------------------------------------------------- /test/nn/hypergraph/test_hmpnn_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/nn/hypergraph/test_hmpnn_layer.py -------------------------------------------------------------------------------- /test/nn/hypergraph/test_hnhn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/nn/hypergraph/test_hnhn.py -------------------------------------------------------------------------------- /test/nn/hypergraph/test_hnhn_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/nn/hypergraph/test_hnhn_layer.py -------------------------------------------------------------------------------- /test/nn/hypergraph/test_hypergat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/nn/hypergraph/test_hypergat.py -------------------------------------------------------------------------------- /test/nn/hypergraph/test_hypergat_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/nn/hypergraph/test_hypergat_layer.py -------------------------------------------------------------------------------- /test/nn/hypergraph/test_hypersage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/nn/hypergraph/test_hypersage.py -------------------------------------------------------------------------------- /test/nn/hypergraph/test_hypersage_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/nn/hypergraph/test_hypersage_layer.py -------------------------------------------------------------------------------- /test/nn/hypergraph/test_unigcn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/nn/hypergraph/test_unigcn.py -------------------------------------------------------------------------------- /test/nn/hypergraph/test_unigcn_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/nn/hypergraph/test_unigcn_layer.py -------------------------------------------------------------------------------- /test/nn/hypergraph/test_unigcnii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/nn/hypergraph/test_unigcnii.py -------------------------------------------------------------------------------- /test/nn/hypergraph/test_unigcnii_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/nn/hypergraph/test_unigcnii_layer.py -------------------------------------------------------------------------------- /test/nn/hypergraph/test_unigin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/nn/hypergraph/test_unigin.py -------------------------------------------------------------------------------- /test/nn/hypergraph/test_unigin_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/nn/hypergraph/test_unigin_layer.py -------------------------------------------------------------------------------- /test/nn/hypergraph/test_unisage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/nn/hypergraph/test_unisage.py -------------------------------------------------------------------------------- /test/nn/hypergraph/test_unisage_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/nn/hypergraph/test_unisage_layer.py -------------------------------------------------------------------------------- /test/nn/simplicial/test_dist2cycle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/nn/simplicial/test_dist2cycle.py -------------------------------------------------------------------------------- /test/nn/simplicial/test_dist2cycle_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/nn/simplicial/test_dist2cycle_layer.py -------------------------------------------------------------------------------- /test/nn/simplicial/test_hsn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/nn/simplicial/test_hsn.py -------------------------------------------------------------------------------- /test/nn/simplicial/test_hsn_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/nn/simplicial/test_hsn_layer.py -------------------------------------------------------------------------------- /test/nn/simplicial/test_san.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/nn/simplicial/test_san.py -------------------------------------------------------------------------------- /test/nn/simplicial/test_san_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/nn/simplicial/test_san_layer.py -------------------------------------------------------------------------------- /test/nn/simplicial/test_sca_cmps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/nn/simplicial/test_sca_cmps.py -------------------------------------------------------------------------------- /test/nn/simplicial/test_sca_cmps_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/nn/simplicial/test_sca_cmps_layer.py -------------------------------------------------------------------------------- /test/nn/simplicial/test_sccn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/nn/simplicial/test_sccn.py -------------------------------------------------------------------------------- /test/nn/simplicial/test_sccn_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/nn/simplicial/test_sccn_layer.py -------------------------------------------------------------------------------- /test/nn/simplicial/test_sccnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/nn/simplicial/test_sccnn.py -------------------------------------------------------------------------------- /test/nn/simplicial/test_sccnn_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/nn/simplicial/test_sccnn_layer.py -------------------------------------------------------------------------------- /test/nn/simplicial/test_scconv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/nn/simplicial/test_scconv.py -------------------------------------------------------------------------------- /test/nn/simplicial/test_scconv_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/nn/simplicial/test_scconv_layer.py -------------------------------------------------------------------------------- /test/nn/simplicial/test_scn2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/nn/simplicial/test_scn2.py -------------------------------------------------------------------------------- /test/nn/simplicial/test_scn2_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/nn/simplicial/test_scn2_layer.py -------------------------------------------------------------------------------- /test/nn/simplicial/test_scnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/nn/simplicial/test_scnn.py -------------------------------------------------------------------------------- /test/nn/simplicial/test_scnn_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/nn/simplicial/test_scnn_layer.py -------------------------------------------------------------------------------- /test/nn/simplicial/test_scone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/nn/simplicial/test_scone.py -------------------------------------------------------------------------------- /test/nn/simplicial/test_scone_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/nn/simplicial/test_scone_layer.py -------------------------------------------------------------------------------- /test/tutorials/test_cell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/tutorials/test_cell.py -------------------------------------------------------------------------------- /test/tutorials/test_combinatorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/tutorials/test_combinatorial.py -------------------------------------------------------------------------------- /test/tutorials/test_hypergraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/tutorials/test_hypergraph.py -------------------------------------------------------------------------------- /test/tutorials/test_simplicial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/tutorials/test_simplicial.py -------------------------------------------------------------------------------- /test/utils/test_scatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/utils/test_scatter.py -------------------------------------------------------------------------------- /test/utils/test_sparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/test/utils/test_sparse.py -------------------------------------------------------------------------------- /topomodelx.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx.jpeg -------------------------------------------------------------------------------- /topomodelx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/__init__.py -------------------------------------------------------------------------------- /topomodelx/base/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/base/__init__.py -------------------------------------------------------------------------------- /topomodelx/base/aggregation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/base/aggregation.py -------------------------------------------------------------------------------- /topomodelx/base/conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/base/conv.py -------------------------------------------------------------------------------- /topomodelx/base/message_passing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/base/message_passing.py -------------------------------------------------------------------------------- /topomodelx/nn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/nn/__init__.py -------------------------------------------------------------------------------- /topomodelx/nn/cell/can.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/nn/cell/can.py -------------------------------------------------------------------------------- /topomodelx/nn/cell/can_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/nn/cell/can_layer.py -------------------------------------------------------------------------------- /topomodelx/nn/cell/ccxn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/nn/cell/ccxn.py -------------------------------------------------------------------------------- /topomodelx/nn/cell/ccxn_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/nn/cell/ccxn_layer.py -------------------------------------------------------------------------------- /topomodelx/nn/cell/cwn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/nn/cell/cwn.py -------------------------------------------------------------------------------- /topomodelx/nn/cell/cwn_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/nn/cell/cwn_layer.py -------------------------------------------------------------------------------- /topomodelx/nn/combinatorial/hmc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/nn/combinatorial/hmc.py -------------------------------------------------------------------------------- /topomodelx/nn/combinatorial/hmc_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/nn/combinatorial/hmc_layer.py -------------------------------------------------------------------------------- /topomodelx/nn/hypergraph/allset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/nn/hypergraph/allset.py -------------------------------------------------------------------------------- /topomodelx/nn/hypergraph/allset_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/nn/hypergraph/allset_layer.py -------------------------------------------------------------------------------- /topomodelx/nn/hypergraph/allset_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/nn/hypergraph/allset_transformer.py -------------------------------------------------------------------------------- /topomodelx/nn/hypergraph/allset_transformer_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/nn/hypergraph/allset_transformer_layer.py -------------------------------------------------------------------------------- /topomodelx/nn/hypergraph/dhgcn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/nn/hypergraph/dhgcn.py -------------------------------------------------------------------------------- /topomodelx/nn/hypergraph/dhgcn_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/nn/hypergraph/dhgcn_layer.py -------------------------------------------------------------------------------- /topomodelx/nn/hypergraph/hmpnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/nn/hypergraph/hmpnn.py -------------------------------------------------------------------------------- /topomodelx/nn/hypergraph/hmpnn_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/nn/hypergraph/hmpnn_layer.py -------------------------------------------------------------------------------- /topomodelx/nn/hypergraph/hnhn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/nn/hypergraph/hnhn.py -------------------------------------------------------------------------------- /topomodelx/nn/hypergraph/hnhn_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/nn/hypergraph/hnhn_layer.py -------------------------------------------------------------------------------- /topomodelx/nn/hypergraph/hypergat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/nn/hypergraph/hypergat.py -------------------------------------------------------------------------------- /topomodelx/nn/hypergraph/hypergat_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/nn/hypergraph/hypergat_layer.py -------------------------------------------------------------------------------- /topomodelx/nn/hypergraph/hypersage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/nn/hypergraph/hypersage.py -------------------------------------------------------------------------------- /topomodelx/nn/hypergraph/hypersage_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/nn/hypergraph/hypersage_layer.py -------------------------------------------------------------------------------- /topomodelx/nn/hypergraph/unigcn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/nn/hypergraph/unigcn.py -------------------------------------------------------------------------------- /topomodelx/nn/hypergraph/unigcn_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/nn/hypergraph/unigcn_layer.py -------------------------------------------------------------------------------- /topomodelx/nn/hypergraph/unigcnii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/nn/hypergraph/unigcnii.py -------------------------------------------------------------------------------- /topomodelx/nn/hypergraph/unigcnii_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/nn/hypergraph/unigcnii_layer.py -------------------------------------------------------------------------------- /topomodelx/nn/hypergraph/unigin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/nn/hypergraph/unigin.py -------------------------------------------------------------------------------- /topomodelx/nn/hypergraph/unigin_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/nn/hypergraph/unigin_layer.py -------------------------------------------------------------------------------- /topomodelx/nn/hypergraph/unisage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/nn/hypergraph/unisage.py -------------------------------------------------------------------------------- /topomodelx/nn/hypergraph/unisage_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/nn/hypergraph/unisage_layer.py -------------------------------------------------------------------------------- /topomodelx/nn/simplicial/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /topomodelx/nn/simplicial/dist2cycle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/nn/simplicial/dist2cycle.py -------------------------------------------------------------------------------- /topomodelx/nn/simplicial/dist2cycle_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/nn/simplicial/dist2cycle_layer.py -------------------------------------------------------------------------------- /topomodelx/nn/simplicial/hsn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/nn/simplicial/hsn.py -------------------------------------------------------------------------------- /topomodelx/nn/simplicial/hsn_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/nn/simplicial/hsn_layer.py -------------------------------------------------------------------------------- /topomodelx/nn/simplicial/san.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/nn/simplicial/san.py -------------------------------------------------------------------------------- /topomodelx/nn/simplicial/san_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/nn/simplicial/san_layer.py -------------------------------------------------------------------------------- /topomodelx/nn/simplicial/sca_cmps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/nn/simplicial/sca_cmps.py -------------------------------------------------------------------------------- /topomodelx/nn/simplicial/sca_cmps_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/nn/simplicial/sca_cmps_layer.py -------------------------------------------------------------------------------- /topomodelx/nn/simplicial/sccn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/nn/simplicial/sccn.py -------------------------------------------------------------------------------- /topomodelx/nn/simplicial/sccn_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/nn/simplicial/sccn_layer.py -------------------------------------------------------------------------------- /topomodelx/nn/simplicial/sccnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/nn/simplicial/sccnn.py -------------------------------------------------------------------------------- /topomodelx/nn/simplicial/sccnn_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/nn/simplicial/sccnn_layer.py -------------------------------------------------------------------------------- /topomodelx/nn/simplicial/scconv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/nn/simplicial/scconv.py -------------------------------------------------------------------------------- /topomodelx/nn/simplicial/scconv_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/nn/simplicial/scconv_layer.py -------------------------------------------------------------------------------- /topomodelx/nn/simplicial/scn2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/nn/simplicial/scn2.py -------------------------------------------------------------------------------- /topomodelx/nn/simplicial/scn2_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/nn/simplicial/scn2_layer.py -------------------------------------------------------------------------------- /topomodelx/nn/simplicial/scnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/nn/simplicial/scnn.py -------------------------------------------------------------------------------- /topomodelx/nn/simplicial/scnn_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/nn/simplicial/scnn_layer.py -------------------------------------------------------------------------------- /topomodelx/nn/simplicial/scone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/nn/simplicial/scone.py -------------------------------------------------------------------------------- /topomodelx/nn/simplicial/scone_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/nn/simplicial/scone_layer.py -------------------------------------------------------------------------------- /topomodelx/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /topomodelx/utils/scatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/utils/scatter.py -------------------------------------------------------------------------------- /topomodelx/utils/sparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/topomodelx/utils/sparse.py -------------------------------------------------------------------------------- /tutorials/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/tutorials/README.md -------------------------------------------------------------------------------- /tutorials/cell/can_train.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/tutorials/cell/can_train.ipynb -------------------------------------------------------------------------------- /tutorials/cell/ccxn_train.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/tutorials/cell/ccxn_train.ipynb -------------------------------------------------------------------------------- /tutorials/cell/cwn_train.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/tutorials/cell/cwn_train.ipynb -------------------------------------------------------------------------------- /tutorials/combinatorial/hmc_train.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/tutorials/combinatorial/hmc_train.ipynb -------------------------------------------------------------------------------- /tutorials/hypergraph/allset_train.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/tutorials/hypergraph/allset_train.ipynb -------------------------------------------------------------------------------- /tutorials/hypergraph/allset_transformer_train.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/tutorials/hypergraph/allset_transformer_train.ipynb -------------------------------------------------------------------------------- /tutorials/hypergraph/dhgcn_train.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/tutorials/hypergraph/dhgcn_train.ipynb -------------------------------------------------------------------------------- /tutorials/hypergraph/hmpnn_train.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/tutorials/hypergraph/hmpnn_train.ipynb -------------------------------------------------------------------------------- /tutorials/hypergraph/hnhn_train.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/tutorials/hypergraph/hnhn_train.ipynb -------------------------------------------------------------------------------- /tutorials/hypergraph/hypergat_train.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/tutorials/hypergraph/hypergat_train.ipynb -------------------------------------------------------------------------------- /tutorials/hypergraph/hypersage_train.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/tutorials/hypergraph/hypersage_train.ipynb -------------------------------------------------------------------------------- /tutorials/hypergraph/tmp/cora/raw/ind.cora.allx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/tutorials/hypergraph/tmp/cora/raw/ind.cora.allx -------------------------------------------------------------------------------- /tutorials/hypergraph/tmp/cora/raw/ind.cora.ally: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/tutorials/hypergraph/tmp/cora/raw/ind.cora.ally -------------------------------------------------------------------------------- /tutorials/hypergraph/tmp/cora/raw/ind.cora.graph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/tutorials/hypergraph/tmp/cora/raw/ind.cora.graph -------------------------------------------------------------------------------- /tutorials/hypergraph/tmp/cora/raw/ind.cora.test.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/tutorials/hypergraph/tmp/cora/raw/ind.cora.test.index -------------------------------------------------------------------------------- /tutorials/hypergraph/tmp/cora/raw/ind.cora.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/tutorials/hypergraph/tmp/cora/raw/ind.cora.tx -------------------------------------------------------------------------------- /tutorials/hypergraph/tmp/cora/raw/ind.cora.ty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/tutorials/hypergraph/tmp/cora/raw/ind.cora.ty -------------------------------------------------------------------------------- /tutorials/hypergraph/tmp/cora/raw/ind.cora.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/tutorials/hypergraph/tmp/cora/raw/ind.cora.x -------------------------------------------------------------------------------- /tutorials/hypergraph/tmp/cora/raw/ind.cora.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/tutorials/hypergraph/tmp/cora/raw/ind.cora.y -------------------------------------------------------------------------------- /tutorials/hypergraph/unigcn_train.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/tutorials/hypergraph/unigcn_train.ipynb -------------------------------------------------------------------------------- /tutorials/hypergraph/unigcnii_train.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/tutorials/hypergraph/unigcnii_train.ipynb -------------------------------------------------------------------------------- /tutorials/hypergraph/unigin_train.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/tutorials/hypergraph/unigin_train.ipynb -------------------------------------------------------------------------------- /tutorials/hypergraph/unisage_train.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/tutorials/hypergraph/unisage_train.ipynb -------------------------------------------------------------------------------- /tutorials/simplicial/dist2cycle_train.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/tutorials/simplicial/dist2cycle_train.ipynb -------------------------------------------------------------------------------- /tutorials/simplicial/hsn_train.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/tutorials/simplicial/hsn_train.ipynb -------------------------------------------------------------------------------- /tutorials/simplicial/san_train.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/tutorials/simplicial/san_train.ipynb -------------------------------------------------------------------------------- /tutorials/simplicial/sca_cmps_train.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/tutorials/simplicial/sca_cmps_train.ipynb -------------------------------------------------------------------------------- /tutorials/simplicial/sccn_train.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/tutorials/simplicial/sccn_train.ipynb -------------------------------------------------------------------------------- /tutorials/simplicial/sccnn_train.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/tutorials/simplicial/sccnn_train.ipynb -------------------------------------------------------------------------------- /tutorials/simplicial/scconv_train.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/tutorials/simplicial/scconv_train.ipynb -------------------------------------------------------------------------------- /tutorials/simplicial/scn2_train.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/tutorials/simplicial/scn2_train.ipynb -------------------------------------------------------------------------------- /tutorials/simplicial/scnn_train.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/tutorials/simplicial/scnn_train.ipynb -------------------------------------------------------------------------------- /tutorials/simplicial/scone_train.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyt-team/TopoModelX/HEAD/tutorials/simplicial/scone_train.ipynb --------------------------------------------------------------------------------