Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
ae8cc9f
Remove stubs
ntjohnson1 May 23, 2025
fb6f006
Fix rst keyword typo
ntjohnson1 May 23, 2025
c6e091e
Handle numerical precision error seen locally
ntjohnson1 May 23, 2025
cc17f7c
Add coverage for our missed doc components
ntjohnson1 May 24, 2025
54c12c6
Add python 3.13 but only do coveralls for oldest supported
ntjohnson1 May 24, 2025
ab81d8c
Bulk on non-missing data support
ntjohnson1 May 30, 2025
476eab7
Small cleanup and improv some testing
ntjohnson1 Jun 6, 2025
ff2311b
Add basic support for sparse_generation
ntjohnson1 Jun 6, 2025
12cf067
Fix a few comments
ntjohnson1 Jun 9, 2025
8cd301a
Minor improvement on collapse typing
ntjohnson1 Jun 16, 2025
6033924
Preliminary implementation for missing data generation, minimal testing
ntjohnson1 Jun 16, 2025
b014292
Add further smoke tests and tutorial notebook
ntjohnson1 Jun 17, 2025
d2725a3
Fix ttensor doc string
ntjohnson1 Jun 17, 2025
aeb52fc
Fix coverage in overload
ntjohnson1 Jun 17, 2025
a0d8512
Add minimal validation to sptensor to avoid footgun
ntjohnson1 Jun 18, 2025
9a0aef7
Clean up create problem documentation
ntjohnson1 Jun 18, 2025
2444a1a
Extend some test converage
ntjohnson1 Jun 28, 2025
2f10f55
Add existing solution support and updated docs
ntjohnson1 Jun 28, 2025
9d31b15
Fix nbstripout
ntjohnson1 Jun 28, 2025
f7ef55a
Update mypy to grab PR fixing 3.13 dataclass error:
ntjohnson1 Jun 28, 2025
76dcac3
Merge branch 'main' of github.com:ntjohnson1/pyttb into nick/create_p…
ntjohnson1 Aug 28, 2025
83e01c3
Merge branch 'main' into nick/create_problem
dmdunla Aug 28, 2025
7150bf0
Merge branch 'main' into nick/create_problem
dmdunla Aug 29, 2025
da2b2d8
Add sparse count data to doc string
ntjohnson1 Aug 29, 2025
6270563
Minor fixes. Removing parameters for missing data unless actually use…
dmdunla Aug 29, 2025
cbab7cc
Minor edits to text.
dmdunla Aug 29, 2025
6f58786
Fixing normalization to get the probabilities correct when sampling f…
dmdunla Aug 29, 2025
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
34 changes: 34 additions & 0 deletions docs/source/create_problem.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
Create Test Problems (:obj:`pyttb.create_problem`)
---------------------------------------------------

.. autofunction:: pyttb.create_problem.create_problem

.. autoclass:: pyttb.create_problem.BaseProblem
:exclude-members: __dict__, __weakref__, __slots__
:show-inheritance:

.. autoclass:: pyttb.create_problem.CPProblem
:exclude-members: __dict__, __weakref__, __slots__
:show-inheritance:

.. autoclass:: pyttb.create_problem.TuckerProblem
:exclude-members: __dict__, __weakref__, __slots__
:show-inheritance:

.. autoclass:: pyttb.create_problem.ExistingSolution
:exclude-members: __dict__, __weakref__, __slots__
:show-inheritance:

.. autoclass:: pyttb.create_problem.ExistingCPSolution
:exclude-members: __dict__, __weakref__, __slots__
:show-inheritance:

.. autoclass:: pyttb.create_problem.ExistingTuckerSolution
:exclude-members: __dict__, __weakref__, __slots__
:show-inheritance:

.. autoclass:: pyttb.create_problem.MissingData
:members:
:special-members:
:exclude-members: __dict__, __weakref__, __slots__
:show-inheritance:
1 change: 1 addition & 0 deletions docs/source/tensor_classes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@ Tensor Classes
tenmat.rst
sptenmat.rst
pyttb_utils.rst
create_problem.rst

Loading
Loading