• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

TypeScript tfjs-core.scalar函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了TypeScript中@tensorflow/tfjs-core.scalar函数的典型用法代码示例。如果您正苦于以下问题:TypeScript scalar函数的具体用法?TypeScript scalar怎么用?TypeScript scalar使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了scalar函数的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。

示例1: describe

describe('arithmetic', () => {
  let node: Node;
  const input1 = [tfc.scalar(1)];
  const input2 = [tfc.scalar(1)];
  const context = new ExecutionContext({}, {});

  beforeEach(() => {
    node = {
      name: 'test',
      op: '',
      category: 'arithmetic',
      inputNames: ['input1', 'input2'],
      inputs: [],
      params: {a: createTensorAttr(0), b: createTensorAttr(1)},
      children: []
    };
  });

  describe('executeOp', () => {
    ['add', 'mul', 'div', 'sub', 'maximum', 'minimum', 'pow',
     'squaredDifference', 'mod', 'floorDiv']
        .forEach((op => {
          it('should call tfc.' + op, () => {
            const spy = spyOn(tfc, op as 'add');
            node.op = op;
            executeOp(node, {input1, input2}, context);

            expect(spy).toHaveBeenCalledWith(input1[0], input2[0]);
          });
        }));
  });
});
开发者ID:oveddan,项目名称:tfjs-converter,代码行数:32,代码来源:arithmetic_executor_test.ts


示例2: gLoss

 gLoss(generatedPred: tf.Tensor1D) {
   if (this.lossType === 'LeastSq loss') {
     return generatedPred.sub(tf.scalar(1)).square().mean() as tf.Scalar;
   } else {
     return generatedPred.log().mean().mul(tf.scalar(-1)) as tf.Scalar;
   }
 }
开发者ID:deepkapha,项目名称:dklabs.github.io,代码行数:7,代码来源:ganlab_models.ts


示例3: it

        it('should execute control flow graph', async (done) => {
          inputNode = {
            inputNames: [],
            inputs: [],
            children: [],
            name: 'input',
            op: 'placeholder',
            category: 'graph',
            params: {}
          };
          constNode = {
            inputNames: [],
            inputs: [],
            children: [],
            name: 'const',
            op: 'const',
            category: 'graph',
            params: {}
          };
          outputNode = {
            inputNames: ['input', 'const'],
            inputs: [inputNode, constNode],
            children: [],
            name: 'output',
            op: 'switch',
            category: 'control',
            params: {}
          };
          inputNode.children.push(outputNode);
          constNode.children.push(outputNode);
          graphWithControlFlow = {
            inputs: [constNode, inputNode],
            nodes:
                {'input': inputNode, 'const': constNode, 'output': outputNode},
            outputs: [outputNode],
            withControlFlow: true,
            withDynamicShape: false,
            placeholders: [inputNode]
          };

          executor = new GraphExecutor(graphWithControlFlow);
          const inputTensor = tfc.scalar(1);
          const constTensor = tfc.scalar(2);
          executor.weightMap = {const : [constTensor]};
          const spy =
              spyOn(operations, 'executeOp').and.callFake((node: Node) => {
                return node.op === 'const' ? [constTensor] : [inputTensor];
              });

          await executor.executeAsync({input: [inputTensor]}).then(result => {
            expect(spy.calls.allArgs()).toEqual([
              [inputNode, jasmine.any(Object), jasmine.any(ExecutionContext)],
              [outputNode, jasmine.any(Object), jasmine.any(ExecutionContext)],
              [constNode, jasmine.any(Object), jasmine.any(ExecutionContext)],
            ]);
            done();
          });
        });
开发者ID:oveddan,项目名称:tfjs-converter,代码行数:58,代码来源:graph_executor_test.ts


示例4: switch

export let executeOp: OpExecutor = (node: Node, tensorMap: NamedTensorsMap,
                                    context: ExecutionContext):
                                       tfc.Tensor[] => {
  switch (node.op) {
    case 'const': {
      return tensorMap[node.name];
    }
    case 'placeholder':
      const def =
          getParamValue('default', node, tensorMap, context) as tfc.Tensor;
      return [getTensor(node.name, tensorMap, context) || def];
    case 'identity':
    case 'stopGradient':
    case 'fakeQuantWithMinMaxVars':  // This op is currently ignored.
      return [getParamValue('x', node, tensorMap, context) as tfc.Tensor];
    case 'snapshot':
      const snapshot =
          (getParamValue('x', node, tensorMap, context) as tfc.Tensor);
      return [snapshot.clone()];
    case 'shape':
      return [tfc.tensor1d(
          (getParamValue('x', node, tensorMap, context) as tfc.Tensor).shape,
          'int32')];
    case 'size':
      return [tfc.scalar(
          (getParamValue('x', node, tensorMap, context) as tfc.Tensor).size,
          'int32')];
    case 'rank':
      return [tfc.scalar(
          (getParamValue('x', node, tensorMap, context) as tfc.Tensor).rank,
          'int32')];
    case 'noop':
      return [];
    case 'print':
      const input = getParamValue('x', node, tensorMap, context) as tfc.Tensor;
      const data =
          getParamValue('data', node, tensorMap, context) as tfc.Tensor[];
      const message =
          getParamValue('message', node, tensorMap, context) as string;
      const summarize =
          getParamValue('summarize', node, tensorMap, context) as number;
      console.warn(
          'The graph has a tf.print() operation,' +
          'usually used for debugging, which slows down performance.');
      console.log(message);
      for (let i = 0; i < data.length; i++) {
        console.log(
            Array.prototype.slice.call(data[0].dataSync()).slice(0, summarize));
      }
      return [input];

    default:
      throw TypeError(`Node type ${node.op} is not implemented`);
  }
};
开发者ID:oveddan,项目名称:tfjs-converter,代码行数:55,代码来源:graph_executor.ts


示例5: describe

describe('logical', () => {
  let node: Node;
  const input1 = [tfc.scalar(1)];
  const input2 = [tfc.scalar(2)];
  const context = new ExecutionContext({}, {});

  beforeEach(() => {
    node = {
      name: 'test',
      op: '',
      category: 'logical',
      inputNames: ['input1', 'input2'],
      inputs: [],
      params: {a: createTensorAttr(0), b: createTensorAttr(1)},
      children: []
    };
  });

  describe('executeOp', () => {
    ['equal', 'notEqual', 'greater', 'greaterEqual', 'less', 'lessEqual',
     'logicalAnd', 'logicalOr']
        .forEach(op => {
          it('should call tfc.' + op, () => {
            const spy = spyOn(tfc, op as 'equal');
            node.op = op;
            executeOp(node, {input1, input2}, context);

            expect(spy).toHaveBeenCalledWith(input1[0], input2[0]);
          });
        });
    describe('logicalNot', () => {
      it('should call tfc.logicalNot', () => {
        spyOn(tfc, 'logicalNot');
        node.op = 'logicalNot';
        executeOp(node, {input1}, context);

        expect(tfc.logicalNot).toHaveBeenCalledWith(input1[0]);
      });
    });

    describe('where', () => {
      it('should call tfc.where', () => {
        spyOn(tfc, 'where');
        node.op = 'where';
        node.inputNames = ['input1', 'input2', 'input3'];
        node.params.condition = createTensorAttr(2);
        const input3 = [tfc.scalar(1)];
        executeOp(node, {input1, input2, input3}, context);

        expect(tfc.where).toHaveBeenCalledWith(input3[0], input1[0], input2[0]);
      });
    });
  });
});
开发者ID:oveddan,项目名称:tfjs-converter,代码行数:54,代码来源:logical_executor_test.ts


示例6: it

      it('should call tfc.linspace', () => {
        spyOn(tfc, 'linspace');
        node.op = 'linspace';
        node.params['start'] = createNumberAttrFromIndex(0);
        node.params['stop'] = createNumberAttrFromIndex(1);
        node.params['num'] = createNumberAttrFromIndex(2);
        node.inputNames = ['input', 'input2', 'input3'];
        const input = [tfc.scalar(0)];
        const input3 = [tfc.scalar(2)];
        executeOp(node, {input, input2, input3}, context);

        expect(tfc.linspace).toHaveBeenCalledWith(0, 1, 2);
      });
开发者ID:oveddan,项目名称:tfjs-converter,代码行数:13,代码来源:creation_executor_test.ts


示例7: dLoss

 // Define losses.
 dLoss(truePred: tf.Tensor1D, generatedPred: tf.Tensor1D) {
   if (this.lossType === 'LeastSq loss') {
     return tf.add(
       truePred.sub(tf.scalar(1)).square().mean(),
       generatedPred.square().mean()
     ) as tf.Scalar;
   } else {
     return tf.add(
       truePred.log().mul(tf.scalar(0.95)).mean(),
       tf.sub(tf.scalar(1), generatedPred).log().mean()
     ).mul(tf.scalar(-1)) as tf.Scalar;
   }
 }
开发者ID:deepkapha,项目名称:dklabs.github.io,代码行数:14,代码来源:ganlab_models.ts


示例8: it

      it('should write the tensor to tensorArray', async () => {
        const tensorArray =
            new TensorArray('', 'int32', 5, [], true, false, true);
        context.addTensorArray(tensorArray);
        node.op = 'tensorArrayWrite';
        node.params['tensorArrayId'] = createNumberAttrFromIndex(0);
        node.params['index'] = createNumberAttrFromIndex(1);
        node.params['tensor'] = createTensorAttr(2);
        node.inputNames = ['input2', 'input3', 'input1'];
        const input2 = [scalar(tensorArray.id)];
        const input3 = [scalar(0)];
        await executeOp(node, {input1, input2, input3}, context);

        expect(tensorArray.size()).toEqual(1);
      });
开发者ID:oveddan,项目名称:tfjs-converter,代码行数:15,代码来源:control_executor_test.ts



注:本文中的@tensorflow/tfjs-core.scalar函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
TypeScript tfjs-core.sub函数代码示例发布时间:2022-05-28
下一篇:
TypeScript tfjs-core.relu函数代码示例发布时间:2022-05-28
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap