Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix our tutorial hierarchy #343

Merged
merged 1 commit into from
Nov 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/source/tutorial/class_sptenmat.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@
"id": "24",
"metadata": {},
"source": [
"# Creating an empty sptenmat"
"## Creating an empty sptenmat"
]
},
{
Expand Down
43 changes: 39 additions & 4 deletions docs/source/tutorials.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,42 @@
Tutorials
=========
Tensor Types
============

.. toctree::
:glob:
:maxdepth: 1

tutorial/*
Dense Tensors<tutorial/class_tensor.ipynb>
Sparse Tensors<tutorial/class_sptensor.ipynb>
Tucker Tensors<tutorial/class_ttensor.ipynb>
Kruskal Tensors<tutorial/class_ktensor.ipynb>
Sum of Structured Tensors<tutorial/class_sumtensor.ipynb>

CP Decompositions
=================

.. toctree::
:maxdepth: 1

Alternating Least Squares (CP-ALS)<tutorial/algorithm_cp_als.ipynb>
Alternating Poisson Regression (CP-APR)<tutorial/algorithm_cp_apr.ipynb>
Generalized CP (GCP-OPT)<tutorial/algorithm_gcp_opt.ipynb>

Tucker Decompositions
=====================

.. toctree::
:maxdepth: 1

Higher-order SVD (HOSVD)<tutorial/algorithm_hosvd.ipynb>
Alternating Least Squares (ALS)<tutorial/algorithm_tucker_als.ipynb>

Working with Tensors
====================

Converting Between Tensors and Matrices
---------------------------------------

.. toctree::
:maxdepth: 1

Dense Case<tutorial/class_tenmat.ipynb>
Sparse Case<tutorial/class_sptenmat.ipynb>
Loading