我应该如何加载 deeplearn js?
How should I load deeplearn js?
在 https://deeplearnjs.org/index.html#demos 上,它表示 API 将作为 'dl' 提供,这是该站点的打印屏幕:
但是当我尝试将
<head><script src="https://unpkg.com/deeplearn"></script></head>
<body><script>var math = new dl.NDArrayMathGPU();
提示Uncaught ReferenceError: dl is not defined
那我应该怎么加载呢?
文档可能有误。
似乎该库在全球范围内可用 deeplearn
而不是 dl
将 dl 更改为 deeplearn 或包含此行
dl = 深度学习
如需大量示例,请尝试
https://hpssjellis.github.io/deeplearnjs-javascript-examples/
在 https://deeplearnjs.org/index.html#demos 上,它表示 API 将作为 'dl' 提供,这是该站点的打印屏幕:
但是当我尝试将
<head><script src="https://unpkg.com/deeplearn"></script></head>
<body><script>var math = new dl.NDArrayMathGPU();
提示Uncaught ReferenceError: dl is not defined
那我应该怎么加载呢?
文档可能有误。
似乎该库在全球范围内可用 deeplearn
而不是 dl
将 dl 更改为 deeplearn 或包含此行
dl = 深度学习
如需大量示例,请尝试
https://hpssjellis.github.io/deeplearnjs-javascript-examples/