mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-08 02:24:04 +00:00
6 lines
172 B
Python
6 lines
172 B
Python
# Copyright (c) Jupyter Development Team.
|
|
# Distributed under the terms of the Modified BSD License.
|
|
import torch
|
|
|
|
print(torch.tensor([[1.0, 4.0, 7.0], [4.0, 9.0, 11.0]]))
|