Skip to content

Commit

Permalink
typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ion-g-ion committed Jan 25, 2024
1 parent 7e8ac64 commit e15fbe9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ jobs:
os: [ubuntu-latest] #, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python all python version
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: x64
# architecture: x64
- name: Install pytorch
run: pip install torch torchvision torchaudio
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion examples/cross_interpolation.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"source": [
"# Cross approximation in the TT format\n",
"\n",
"Using the `torchtt.TT` constructor, a TT decomposition of a given tensor can be obtained. However, in the cases where the entries of the tensor are computed using a given function, building full tensors becomes unfeasible. It is possible to construct a TT decomposition using only a part of the entries of the full tensor. This is called the cress approximation method."
"Using the `torchtt.TT` constructor, a TT decomposition of a given tensor can be obtained. However, in the cases where the entries of the tensor are computed using a given function, building full tensors becomes unfeasible. It is possible to construct a TT decomposition using only a part of the entries of the full tensor. This is called the cross approximation method."
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion examples/cross_interpolation.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Using the `torchtt.TT` constructor, a TT decomposition of a given tensor can be obtained.
However, in the cases where the entries of the tensor are computed using a given function, building full tensors becomes unfeasible.
It is possible to construct a TT decomposition using only a part of the entries of the full tensor.
This is called the cress approximation method.
This is called the cross approximation method.
"""

#%% Imports
Expand Down

0 comments on commit e15fbe9

Please sign in to comment.