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

Python array_ops.rank_internal函数代码示例

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

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



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

示例1: testRank

 def testRank(self):
   rank_op = lambda x: array_ops.rank_internal(x, optimize=False)
   for dtype in self.numeric_types:
     self._assertOpOutputMatchesExpected(
         rank_op, dtype(7), expected=np.int32(0))
     self._assertOpOutputMatchesExpected(
         rank_op, np.array([[], []], dtype=dtype), expected=np.int32(2))
     self._assertOpOutputMatchesExpected(
         rank_op, np.array([-1, 1], dtype=dtype), expected=np.int32(1))
     self._assertOpOutputMatchesExpected(
         rank_op, np.array([[-1, 1]], dtype=dtype), expected=np.int32(2))
     self._assertOpOutputMatchesExpected(
         rank_op,
         np.array([[-1], [1], [4]], dtype=dtype),
         expected=np.int32(2))
开发者ID:Jordan1237,项目名称:tensorflow,代码行数:15,代码来源:unary_ops_test.py


示例2: testRank

  def testRank(self):
    tf_val = tf.rank(tf.constant(0.0, shape=[1, 2, 3]))
    c_val = tf.contrib.util.constant_value(tf_val)

    self.assertEqual(np.ndarray, type(c_val))
    self.assertEqual((), c_val.shape)
    self.assertEqual(3, c_val)

    # Repeat test using array_ops.rank_internal to avoid the optimization that
    # happens in the rank function.
    tf_val = array_ops.rank_internal(tf.constant(0.0, shape=[1, 2, 3]),
                                     optimize=False)
    c_val = tf.contrib.util.constant_value(tf_val)

    self.assertEqual(np.ndarray, type(c_val))
    self.assertEqual((), c_val.shape)
    self.assertEqual(3, c_val)
    self.assertEqual([3], c_val)
开发者ID:ComeOnGetMe,项目名称:tensorflow,代码行数:18,代码来源:tensor_util_test.py


示例3: assert_variables_initialized

def assert_variables_initialized(var_list=None):
    """Returns an Op to check if variables are initialized.

  NOTE: This function is obsolete and will be removed in 6 months.  Please
  change your implementation to use `report_uninitialized_variables()`.

  When run, the returned Op will raise the exception `FailedPreconditionError`
  if any of the variables has not yet been initialized.

  Note: This function is implemented by trying to fetch the values of the
  variables. If one of the variables is not initialized a message may be
  logged by the C++ runtime. This is expected.

  Args:
    var_list: List of `Variable` objects to check. Defaults to the
      value of `global_variables().`

  Returns:
    An Op, or None if there are no variables.
  """
    if var_list is None:
        var_list = global_variables() + local_variables()
    # Backwards compatibility for old-style variables. TODO(touts): remove.
    if not var_list:
        var_list = []
        for op in ops.get_default_graph().get_operations():
            if op.type in ["Variable", "AutoReloadVariable"]:
                var_list.append(op.outputs[0])
    if not var_list:
        return None
    else:
        ranks = []
        for var in var_list:
            with ops.colocate_with(var.op):
                ranks.append(array_ops.rank_internal(var, optimize=False))
        if len(ranks) == 1:
            return ranks[0]
        else:
            return array_ops.pack(ranks)
开发者ID:shakamunyi,项目名称:tensorflow,代码行数:39,代码来源:variables.py



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


鲜花

握手

雷人

路过

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

请发表评论

全部评论

专题导读
上一篇:
Python array_ops.reshape函数代码示例发布时间:2022-05-27
下一篇:
Python array_ops.rank函数代码示例发布时间:2022-05-27
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

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

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

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