You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
More details: [examples/README.md](examples/README.md)
304
372
373
+
There is also a minimal inspection example that only uses base dependencies:
374
+
375
+
```bash
376
+
python examples/tensor_elements_demo.py
377
+
```
378
+
305
379
## Troubleshooting
306
380
307
381
| Symptom | What to try |
@@ -310,13 +384,17 @@ More details: [examples/README.md](examples/README.md)
310
384
| Hover tooltips do nothing | Use an interactive Matplotlib backend; hover is not useful for PNG-only runs. |
311
385
| Big graphs are slow | Set `tensor_label_refinement="never"`, reduce `layout_iterations`, or pass `positions`. |
312
386
|`Unsupported tensor network engine`| Install the matching extra or pass the correct backend object. |
387
+
|`show_tensor_elements(...)` fails on TensorKrowch nodes | Materialize the node tensors first; shape-only nodes do not expose element values. |
388
+
|`show_tensor_elements(...)` fails on manual `pair_tensor(...)` lists | Use an `EinsumTrace` with live tensors instead; manual trace steps only describe contractions. |
313
389
| Blank / duplicate Jupyter figure | Assign `fig, ax = show_tensor_network(...)` instead of leaving the tuple as the last line. |
314
390
315
391
## Documentation Map
316
392
317
393
-[docs/guide.md](docs/guide.md): workflow-oriented guide to the public API.
0 commit comments