Skip to content

Latest commit

 

History

History
179 lines (158 loc) · 10 KB

CHANGELOG.md

File metadata and controls

179 lines (158 loc) · 10 KB

v1.8.1 (2024-11-11)

v1.8.0 (2024-10-23)

  • Added:
    • Added ktensor.vis method for visualizing CP decompositions (sandialabs#301)
    • Added support in cp_als to optimize only specific modes (sandialabs#302)
    • Added dependency on matplotlib for visualization support (sandialabs#301)
  • Fixed:
  • Improved:
  • Deprecated:
    • Replaced tt_to_dense_matrix and tt_from_dense_matrix with tenmat data class and methods (sandialabs#294)
    • Removed support for Python 3.8 (end-of-life) (sandialabs#319)

v1.7.0 (2024-10-23)

  • Breaking Changes:
    • API Change: Constructors (__init__) and helper functions have been combined for all data classes, leading to breaking changes; if you use from_* methods in your existing pyttb usage to create instances of data classes this will require changes. see the updated documentation and tutorials for examples of using the update APIs. (sandialabs#213, sandialabs#293)
    • API Change: Changed constructors of main data classes to allow use by external packages that wrap existing data in memory. This allows for use of pyttb data classes by external packages without making copies of the data. (sandialabs#182)
    • API Change: params output of cp_als changed from tuple to dict (sandialabs#238)
    • Deprecation: Removed unused end methods from data classes (sandialabs#195)
  • New:
  • Documentation:
    • Added tutorials that mirror those in the Tensor Toolbox for MATLAB
    • Added documentatin for mapping between pyttb and Tensor Toolbox for MATLAB usage (sandialabs#291)
    • Completed documentation for all methods and algorithms
    • Improved RTD (readthedocs.io) support (sandialabs#178)
    • Added citation information for pyttb (sandialabs#268)
  • Fixes/Completed:
  • Development:
    • Completed typing of all data classes and algorithms
    • Adding pre-commit hooks
    • Added ruff usage to replace isort, pylint usage
    • Updated GitHub Actiob versions, pypi.org upload action

v1.6.2 (2023-06-08)

v1.6.1 (2023-04-27)

v1.6.0 (2023-04-16)

  • API Change (PR sandialabs#91)
    • Not backwards compatible
    • pyttb_utils.tt_dimscheck
      • Addresses ambiguity of -0 by using exclude_dims (numpy.ndarray) parameter
    • ktensor.ttv, sptensor.ttv, tensor.ttv, ttensor.ttv
      • Use exlude_dims parameter instead of -dims
      • Explicit nameing of dimensions to exclude
    • tensor.ttsv
      • Use skip_dim (int) parameter instead of -dims
      • Exclude all dimensions up to and including skip_dim
  • Fixes/Completed:
    • Code cleaning: minor changes associated with replacing -dims with exclude_dims/skip_dim
    • Authorship: PyPI only allows one author, changing to current POC

v1.5.1 (2023-04-14)

  • New:
    • Dev Support:
  • Fixed/Completed:
    • hosvd: Negative signs can be permuted for equivalent decomposition (PR sandialabs#82)
    • Versioning: using dynamic version in pyproject.toml (PR sandialabs#86)
    • Package Testing: fixed problem with subprocesses (PR sandialabs#87)

v1.5.0 (2023-03-19)

  • New:
    • Added hosvd Tuecker decomposition (Issue #56, PR #67)
    • Added tucker_als Tuecker decomposition (PR #66)
    • Autoformatting using black and isort (Issue #59, PR #60)
  • Updated/Ongoing:
    • Included more testing for improved coverage (Issue #78, PR #79)

v1.4.0 (2023-02-21)

  • New:
    • Added ttensor class and associated tests (Issue #10, PR #51)
  • Fixed/Completed:
    • Tensor slicing now passes through to numpy array slicing (Issue #41, PR #50)
  • Updated/Ongoing:
    • Included more testing for improved coverage (Issue #14, PR #52)

v1.3.9 (2023-02-20)

  • Remove deprecated numpy code associated with aliases to built-in types and ragged arrays (Issue #48, PR #49)

v1.3.8 (2022-10-12)

  • Fixed pyttb_utils.tt_ind2sub (Issue #45, PR #47)
  • Implemented ktensor.score (Issue #46, PR #47)

v1.3.7 (2022-07-17)

  • Fixed tenmat to accept empty arrays for rdims or cdims (Issue #42, PR #43)
  • Implemented tensor.ttt (Issue #28, PR #44)
  • Adding GitHub action to publish releases to PyPi

v1.3.6 (2022-07-15)

  • Implemented tensor.ttm (Issue #27, PR #40)

v1.3.5 (2022-07-12)

  • Fixing np.reshape in tensor.ttv (Issue #37, PR #38)
  • Fixing np.reshape in remainder of tensor (Issue #30, PR #39)

v1.3.4 (2022-07-12)

  • Fixing issues with PyPi uploads

v1.3.3 (2022-07-11)

  • Fixed indexing bug in tensor.mttkrp (Issue #35, PR #36)
  • Updated LICENSE to compliant format (Issue #33 , PR #34)
  • Now using coveralls.io for coverage reporting
  • Now using readthedocs.io for documentation

v1.3.2 (2022-07-06)

  • Update tensor.nvecs to use tenmat (Issue #25, PR #31)
  • Full implementation of tensor.collapse (Issue #2, PR #32)
  • Added CHANGELOG.md

v1.3.1 (2022-07-01)

  • Using pyttb.__version__ for specifying package version in code and docs
  • Implemented tenmat.__setitem__ and tests (#23)
  • Fix warnings in cp_apr associated with divide by zero (#13)
  • Several documentation fixes.

v1.3.0 (2022-07-01)

  • Changed package name to pyttb (#24)

v1.2.0 (2022-07-01)

  • Added tenmat class and associated tests (#8)
  • Added tensor.__rmul__ for preadding scalars (#18)
  • Fixed error in sptensor.__lt__ that led to creation of large boolean tensors when comparing with 0 (#15)
  • Matched output of cp_als to Matlab (#17)

v1.1.1 (2022-06-29)

  • Fixed tensor/mttkrp use of np.reshape (#16)
  • Now updating version numbers in setup.py

v1.1.0 (2022-06-27)

  • Fixed import_data method
  • New export_data method
  • More testing

v1.0.0 (2022-06-27)

  • Initial release of Python Tensor Toolbox