tensorflow統計tfrecord中的樣本數量

在用tf處理數據時,通常都會保存爲tfrecord格式的數據,有時候會想查看該tfrecord格式的數據樣本多少個。那麼如何作呢? 參考以下代碼: import tensorflow as tf tf_records_filenames = 'xxx.tfrecords' c = 0 for record in tf.python_io.tf_record_iterator(fn): c
相關文章
相關標籤/搜索