Skip to content

Commit 020694a

Browse files
author
rballester
committed
numel() -> numcoef() fix in notebooks
1 parent e566aa4 commit 020694a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/tutorials/decompositions.ipynb

+2-2
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
"\n",
7777
"def metrics():\n",
7878
" print(t)\n",
79-
" print('Compression ratio: {}/{} = {:g}'.format(full.numel(), t.numel(), full.numel() / t.numel()))\n",
79+
" print('Compression ratio: {}/{} = {:g}'.format(full.numel(), t.numcoef(), full.numel() / t.numcoef()))\n",
8080
" print('Relative error:', tn.relative_error(full, t))\n",
8181
" print('RMSE:', tn.rmse(full, t))\n",
8282
" print('R^2:', tn.r_squared(full, t))\n",
@@ -387,7 +387,7 @@
387387
"name": "python",
388388
"nbconvert_exporter": "python",
389389
"pygments_lexer": "ipython3",
390-
"version": "3.7.3"
390+
"version": "3.6.8"
391391
}
392392
},
393393
"nbformat": 4,

docs/tutorials/sobol.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
"x, y, z = tn.symbols(N)[:3]\n",
8383
"start = time.time()\n",
8484
"print(tn.sobol(t, mask=tn.only(x)))\n",
85-
"print('This compressed tensor has {} parameters; computing this index took only {:g}s'.format(t.numel(), time.time()-start))"
85+
"print('This compressed tensor has {} parameters; computing this index took only {:g}s'.format(t.numcoef(), time.time()-start))"
8686
]
8787
},
8888
{

0 commit comments

Comments
 (0)