App下載

詞條

大約有 4,000 項(xiàng)符合查詢結(jié)果 ,庫(kù)內(nèi)數(shù)據(jù)總量為 78,404 項(xiàng)。(搜索耗時(shí):0.0045秒)

2281.TensorFlow str的轉(zhuǎn)換

tf.compat.as_str_anyas_str_any ( value ) 定義在:tensorflow/python/util/compat.py.轉(zhuǎn)換 str 為 str(value),但 as_str 用于 bytes.ARGS:value:可以轉(zhuǎn)換為 str 的對(duì)象.返回:返回一個(gè) str 對(duì)象.

http://m.o2fo.com/tensorflow_python/tensorflow_python-fcbk2con.html

2282.TensorFlow檢查NaN和Inf值的張量

...4,返回原tensorflow。否則報(bào)InvalidArgument 錯(cuò)誤。#!/usr/bin/env python2 # -*- coding: utf-8 -*- """ Created on Mon Aug 27 11:16:32 2018 @author: myhaspl """ import tensorflow as tf a = tf.constant([[1., 2.], [3., 4.]]) b = tf.constant([[1, 2], [3, 4]]) check_a=tf.check_numerics(a,"non num...

http://m.o2fo.com/tensorflow_python/tensorflow_python-dz6u2ctp.html

2283.TensorFlow的errors模塊總覽

tf.errors定義在:tensorflow/python/framework/errors.pyTensorFlow 錯(cuò)誤的異常類型.errors 模塊的類class AbortedError:操作已中止,通常是由于并發(fā)操作.class AlreadyExistsError:當(dāng)我們嘗試創(chuàng)建的實(shí)體已經(jīng)存在時(shí)觸發(fā).class CancelledError:取消操作或步驟...

http://m.o2fo.com/tensorflow_python/tensorflow_python-7rsk2ctr.html

2284.TensorFlow操作被中止

tf.errors.AbortedErrortf.errors.AbortedError 類定義在:tensorflow/python/framework/errors_impl.py請(qǐng)參閱指南:運(yùn)行圖形>錯(cuò)誤類和方便功能操作被中止.這種情況通常是并發(fā)操作的結(jié)果.例如,運(yùn)行一個(gè) tf.QueueBase.enqueue 操作可能會(huì)提升 AbortedError 或...

http://m.o2fo.com/tensorflow_python/tensorflow_python-b9o12ctt.html

2285.將TensorFlow張量值剪輯到最大平均L2-norm

..._average_norm ( t , clip_norm , name = None ) 定義在:tensorflow/python/ops/clip_ops.py參見(jiàn)指南:Training函數(shù)>梯度剪輯將張量值剪輯到最大平均 L2-norm.給定一個(gè)張量 t 和一個(gè)最大的剪輯值 clip_norm,此操作規(guī)范化 t,使其平均 L2-norm 小于或等...

http://m.o2fo.com/tensorflow_python/tensorflow_python-5onx2cuu.html

2286.剪輯TensorFlow張量為指定的最大值和最小值

... clip_value_min , clip_value_max , name = None ) 定義在:tensorflow/python/ops/clip_ops.py.參見(jiàn)指南:Training函數(shù)>梯度剪輯將張量值剪輯到指定的最小值和最大值.給定一個(gè)張量 t, 此操作返回與 t 相同類型和形狀的張量, 其值被裁剪為 clip_value_...

http://m.o2fo.com/tensorflow_python/tensorflow_python-hz2c2cxb.html

2287.如何將TensorFlow的實(shí)數(shù)轉(zhuǎn)換為復(fù)數(shù)

tf.complexcomplex( real, imag, name=None ) 定義在:tensorflow/python/ops/math_ops.py.參考指南:數(shù)學(xué)函數(shù)>復(fù)數(shù)函數(shù)將兩個(gè)實(shí)數(shù)轉(zhuǎn)換為復(fù)數(shù).給定 real 表示復(fù)數(shù)的實(shí)部的張量和 imag 表示復(fù)數(shù)的虛部的張量,該操作的返回形式為 \(a + bj \)的元數(shù)字...

http://m.o2fo.com/tensorflow_python/tensorflow_python-h6tb2cxc.html

2288.將TensorFlow張量沿一個(gè)維度串聯(lián)

...cat ( values , axis , name = 'concat' ) 定義在:tensorflow/python/ops/array_ops.py.參見(jiàn)指南:張量變換>張量的分割和連接將張量沿一個(gè)維度串聯(lián).將張量值的列表與維度軸串聯(lián)在一起.如果 values[i].shape = [D0, D1, ... Daxis(i), ...Dn],則連接...

http://m.o2fo.com/tensorflow_python/tensorflow_python-euxa2cz7.html

2289.TensorFlow處理已存在的error

...s.AlreadyExistsErrortf.errors.AlreadyExistsError 類定義在:tensorflow/python/framework/errors_impl.py請(qǐng)參閱指南:運(yùn)行圖>錯(cuò)誤類和方便功能當(dāng)我們嘗試創(chuàng)建的實(shí)體已經(jīng)存在時(shí)引發(fā).例如,如果傳遞了現(xiàn)有文件的顯式文件名,則運(yùn)行保存文件(例如 tf.tr...

http://m.o2fo.com/tensorflow_python/tensorflow_python-345n2czg.html

2290.TensorFlow取消操作或步驟時(shí)引發(fā)的error

tf.errors.CancelledErrortf.errors.CancelledError 類定義在:tensorflow/python/framework/errors_impl.py請(qǐng)參閱指南:運(yùn)行圖>錯(cuò)誤類和方便功能取消操作或步驟時(shí)引發(fā).例如,一個(gè)長(zhǎng)時(shí)間運(yùn)行的操作 (例如 tf.QueueBase.enqueue ) 可以通過(guò)運(yùn)行另一項(xiàng)操作 (如 ...

http://m.o2fo.com/tensorflow_python/tensorflow_python-lyao2d13.html

抱歉,暫時(shí)沒(méi)有相關(guān)的微課

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

抱歉,暫時(shí)沒(méi)有相關(guān)的視頻課程

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

抱歉,暫時(shí)沒(méi)有相關(guān)的教程

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

2281.TensorFlow str的轉(zhuǎn)換

tf.compat.as_str_anyas_str_any ( value ) 定義在:tensorflow/python/util/compat.py.轉(zhuǎn)換 str 為 str(value),但 as_str 用于 bytes.ARGS:value:可以轉(zhuǎn)換為 str 的對(duì)象.返回:返回一個(gè) str 對(duì)象.

http://m.o2fo.com/tensorflow_python/tensorflow_python-fcbk2con.html

2282.TensorFlow檢查NaN和Inf值的張量

...4,返回原tensorflow。否則報(bào)InvalidArgument 錯(cuò)誤。#!/usr/bin/env python2 # -*- coding: utf-8 -*- """ Created on Mon Aug 27 11:16:32 2018 @author: myhaspl """ import tensorflow as tf a = tf.constant([[1., 2.], [3., 4.]]) b = tf.constant([[1, 2], [3, 4]]) check_a=tf.check_numerics(a,"non num...

http://m.o2fo.com/tensorflow_python/tensorflow_python-dz6u2ctp.html

2283.TensorFlow的errors模塊總覽

tf.errors定義在:tensorflow/python/framework/errors.pyTensorFlow 錯(cuò)誤的異常類型.errors 模塊的類class AbortedError:操作已中止,通常是由于并發(fā)操作.class AlreadyExistsError:當(dāng)我們嘗試創(chuàng)建的實(shí)體已經(jīng)存在時(shí)觸發(fā).class CancelledError:取消操作或步驟...

http://m.o2fo.com/tensorflow_python/tensorflow_python-7rsk2ctr.html

2284.TensorFlow操作被中止

tf.errors.AbortedErrortf.errors.AbortedError 類定義在:tensorflow/python/framework/errors_impl.py請(qǐng)參閱指南:運(yùn)行圖形>錯(cuò)誤類和方便功能操作被中止.這種情況通常是并發(fā)操作的結(jié)果.例如,運(yùn)行一個(gè) tf.QueueBase.enqueue 操作可能會(huì)提升 AbortedError 或...

http://m.o2fo.com/tensorflow_python/tensorflow_python-b9o12ctt.html

2285.將TensorFlow張量值剪輯到最大平均L2-norm

..._average_norm ( t , clip_norm , name = None ) 定義在:tensorflow/python/ops/clip_ops.py參見(jiàn)指南:Training函數(shù)>梯度剪輯將張量值剪輯到最大平均 L2-norm.給定一個(gè)張量 t 和一個(gè)最大的剪輯值 clip_norm,此操作規(guī)范化 t,使其平均 L2-norm 小于或等...

http://m.o2fo.com/tensorflow_python/tensorflow_python-5onx2cuu.html

2286.剪輯TensorFlow張量為指定的最大值和最小值

... clip_value_min , clip_value_max , name = None ) 定義在:tensorflow/python/ops/clip_ops.py.參見(jiàn)指南:Training函數(shù)>梯度剪輯將張量值剪輯到指定的最小值和最大值.給定一個(gè)張量 t, 此操作返回與 t 相同類型和形狀的張量, 其值被裁剪為 clip_value_...

http://m.o2fo.com/tensorflow_python/tensorflow_python-hz2c2cxb.html

2287.如何將TensorFlow的實(shí)數(shù)轉(zhuǎn)換為復(fù)數(shù)

tf.complexcomplex( real, imag, name=None ) 定義在:tensorflow/python/ops/math_ops.py.參考指南:數(shù)學(xué)函數(shù)>復(fù)數(shù)函數(shù)將兩個(gè)實(shí)數(shù)轉(zhuǎn)換為復(fù)數(shù).給定 real 表示復(fù)數(shù)的實(shí)部的張量和 imag 表示復(fù)數(shù)的虛部的張量,該操作的返回形式為 \(a + bj \)的元數(shù)字...

http://m.o2fo.com/tensorflow_python/tensorflow_python-h6tb2cxc.html

2288.將TensorFlow張量沿一個(gè)維度串聯(lián)

...cat ( values , axis , name = 'concat' ) 定義在:tensorflow/python/ops/array_ops.py.參見(jiàn)指南:張量變換>張量的分割和連接將張量沿一個(gè)維度串聯(lián).將張量值的列表與維度軸串聯(lián)在一起.如果 values[i].shape = [D0, D1, ... Daxis(i), ...Dn],則連接...

http://m.o2fo.com/tensorflow_python/tensorflow_python-euxa2cz7.html

2289.TensorFlow處理已存在的error

...s.AlreadyExistsErrortf.errors.AlreadyExistsError 類定義在:tensorflow/python/framework/errors_impl.py請(qǐng)參閱指南:運(yùn)行圖>錯(cuò)誤類和方便功能當(dāng)我們嘗試創(chuàng)建的實(shí)體已經(jīng)存在時(shí)引發(fā).例如,如果傳遞了現(xiàn)有文件的顯式文件名,則運(yùn)行保存文件(例如 tf.tr...

http://m.o2fo.com/tensorflow_python/tensorflow_python-345n2czg.html

2290.TensorFlow取消操作或步驟時(shí)引發(fā)的error

tf.errors.CancelledErrortf.errors.CancelledError 類定義在:tensorflow/python/framework/errors_impl.py請(qǐng)參閱指南:運(yùn)行圖>錯(cuò)誤類和方便功能取消操作或步驟時(shí)引發(fā).例如,一個(gè)長(zhǎng)時(shí)間運(yùn)行的操作 (例如 tf.QueueBase.enqueue ) 可以通過(guò)運(yùn)行另一項(xiàng)操作 (如 ...

http://m.o2fo.com/tensorflow_python/tensorflow_python-lyao2d13.html

抱歉,暫時(shí)沒(méi)有相關(guān)的文章

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

熱門(mén)課程