张量流-λ 用法 首先,安装软件包: yarn add tensorflow-lambda 然后可以像这样使用它: const loadTf = require ( 'tensorflow-lambda' ) const tf = await loadTf ( ) // you get the same `tf` object that would get if you were doing: // const tf = require('@tensorflow/tfjs') tf . tensor ( [ 1 , 2 , 3 , 4 ] ) . print ( ) 看下面的例子: (