Skip to content

Commit 7ebe658

Browse files
Fix typo in example notebook
1 parent 42c2ab4 commit 7ebe658

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

example/bioimageio-core-usage.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@
203203
" # the prediction pipeline expects inputs as xarray.DataArrays.\n",
204204
" # these are similar to numpy arrays, but allow for named dimensions (the dims keyword argument)\n",
205205
" # in bioimage.io the dims have to agree with the input axes required by the model\n",
206-
" axes = tuple(model.outputs[0].axes)\n",
206+
" axes = tuple(model.inputs[0].axes)\n",
207207
" input_tensor = xr.DataArray(input_, dims=axes)\n",
208208
" \n",
209209
" # the prediction pipeline call expects the same number of inputs as the number of inputs required by the model\n",

0 commit comments

Comments
 (0)