學習1:中文車牌識別
學習2:國外車牌識別
returns the truth value of (x > y) element-wise.
args:
2、tf.configproto()
一般用在建立session
的時候,用來對session
進行引數配置。
with
tf.session(config = tf.configproto(...),...)
#tf.configproto()的引數
log_device_placement=true : 是否列印裝置分配日誌
allow_soft_placement=true : 如果你指定的裝置不存在,允許tf自動分配裝置
tf.configproto(log_device_placement=true,allow_soft_placement=true)
#allow growth
config = tf.configproto()
config.gpu_options.allow_growth = true
session = tf.session(config=config, ...)
# 使用allow_growth option,剛一開始分配少量的gpu容量,然後按需慢慢的增加,由於不會釋放
#記憶體,所以會導致碎片
# per_process_gpu_memory_fraction
gpu_options=tf.gpuoptions(per_process_gpu_memory_fraction=0.7)
config=tf.configproto(gpu_options=gpu_options)
session = tf.session(config=config, ...)
#設定每個gpu應該拿出多少容量給程序使用,0.4代表 40%
~/ cuda_visible_devices=0 python your.py#使用gpu0
~/ cuda_visible_devices=0,1 python your.py#使用gpu0,1
#或者在 程式開頭
os.environ['cuda_visible_devices'] = '0'
#使用 gpu 0
os.environ['cuda_visible_devices'] = '0,1'
# 使用 gpu 0,1
problems:
1. valueerror: only callsoftmax_cross_entropy_with_logits
with named arguments (labels=…, logits=…, …)
呼叫tf.nn.softmax_cross_entropy_with_logits(logits, tf_train_labels)出現上述錯誤。
解決辦法:錯誤提示中已經給出,只能使用命名引數的方式來呼叫。呼叫函式改為:tf.nn.softmax_cross_entropy_with_logits(labels=logits, logits=tf_train_labels)即可。
2 .module 『cv2』 has no attribute 『cv_load_image_grayscale』。traceback (most recent call last):
nameerror: name 『cv_load_image_grayscale』 is not defined原來是 cv_load_image_grayscale is from the outdated [and now removed] cv api
解決方法
cv2.imread_grayscale
Tensorflow實現DNN,手寫數字識別
from tensorflow.examples tutorials mnist import input data mnist input data.read data sets g tensorflow data one hot true import tensorflow as tf lear...
在FPGA板上用Verilog實現車牌識別
乙個車牌識別系統先在matlab中實現,然後將其在fpga xilinx spartan 6上使用verilog實現。以下是fpga上系統的測試環境。影象儲存器 儲存10個影象並將其轉換為.dat格式 gray data 我們使用 readmemh 可復合 verilog 命令,通過讀取.dat檔案...
教你用TensorFlow實現手寫數字識別
弱者用淚水安慰自己,強者用汗水磨練自己。這段時間因為專案中有一塊需要用到影象識別,最近就一直在煉丹,寶寶心裡苦,但是寶寶不說。能點開這篇文章的朋友估計也已經對tensorflow有了一定了解,至少知道這是個什麼東西,我也就不過多介紹了。實現手寫數字識別幾乎是所有入手影象識別的入門程式了,tensor...