如果有图会很好理解,最近太忙,以后再加吧
  1. #首先有一个需要读取的文件名列表
    #然后将文件名列表通过函数string_input_producer放进文件名队列。
    #有时候因为数据量太大,需要把他们放进不同的tfrecord文件中
    filename_queue = tf.train.string_input_producer(["file0.csv","file1.csv"])
    #对不同格式的文件有不同的reader
    reader = tf.TextLineReader()
    #通过reader的read函数extract a record from a file whose name is in the queue,
    #如果该文件中所有记录都被抽取完,dequeue这个filename,参考readerbase
    #read()返回下一个record
    key, value = reader.read(filename_queue)
    # decoded record,decode方式和文件内部record格式相关,然后拼接成需要的格式
    record_defaults =[[1],[1],[1],[1],[1]]
    col1, col2, col3, col4, col5 = tf.decode_csv(
    value, record_defaults=record_defaults)
    features = tf.stack([col1, col2, col3, col4])
    with tf.Session()as sess:
    # Start populating the filename queue.
    coord = tf.train.Coordinator()
    threads = tf.train.start_queue_runners(coord=coord)
    for i in range(1200):
    # Retrieve a single instance:
    example, label = sess.run([features, col5])
    coord.request_stop()
    coord.join(threads)

    参考:https://www.tensorflow.org/programmers_guide/reading_data


提到queue就不得不提两个帮助多线程异步的类:tf.train.Coordinator和tf.train.QueueRunner;
  • tf.train.Coordinator:控制多线程,使其同时结束。
  • tf.train.QueueRunner:包含一些enqueue op,为其create一些线程,每一个op都在一个线程上运行。

coordinator

Coordinator方法:should_stop,request_stop,join
    1.  # Thread body: loop until the coordinator indicates a stop was requested.
      # If some condition becomes true, ask the coordinator to stop.
      defMyLoop(coord):
      whilenot coord.should_stop():#should_stop返回true or false,表示线程是否该结束
      ...do something...
      if...some condition...:
      coord.request_stop()#当某些条件发生时,一个进程request_stop,其他进程因为should_stop返回true而终止
      # Main thread: create a coordinator.
      coord = tf.train.Coordinator()
      # Create 10 threads that run 'MyLoop()'
      threads =[threading.Thread(target=MyLoop, args=(coord,))for i in xrange(10)]
      # Start the threads and wait for all of them to stop.
      for t in threads:
      t.start()
      coord.join(threads)

QueueRunner

  1.  example =...ops to create one example...
    # Create a queue, and an op that enqueues examples one at a time in the queue.
    #区别于filename queue,这是example queue。可以是接着上面读数据解析然后放进这个queue
    queue = tf.RandomShuffleQueue(...)
    enqueue_op = queue.enqueue(example)#定义入队操作
    # Create a training graph that starts by dequeuing a batch of examples.
    inputs = queue.dequeue_many(batch_size)
    train_op =...use 'inputs' to build the training part of the graph...
    # Create a queue runner that will run 4 threads in parallel to enqueue
    # examples.
    #QueueRunner的构造函数,queuerunner是为一个queue的入队操作多线程化服务的,
    #第二个参数是入队操作列表
    qr = tf.train.QueueRunner(queue,[enqueue_op]*4)
    # Launch the graph.
    sess = tf.Session()
    # Create a coordinator, launch the queue runner threads.
    coord = tf.train.Coordinator()
    #queuerunner为queue创造多线程,并且把这些线程的结束交由coordinator管理
    enqueue_threads = qr.create_threads(sess, coord=coord, start=True)
    # Run the training loop, controlling termination with the coordinator.
    for step in xrange(1000000):
    if coord.should_stop():
    break
    sess.run(train_op)
    # When done, ask the threads to stop.
    coord.request_stop()
    # And wait for them to actually do it.
    coord.join(enqueue_threads)
未完待续。。。

reading from files的更多相关文章

  1. Reading Csv Files with Text_io in Oracle D2k Forms

    Below is the example to read and import comma delimited csv file in oracle forms with D2k_Delimited_ ...

  2. reading/writing files in Python

    file types: plaintext files, such as .txt .py Binary files, such as .docx, .pdf, iamges, spreadsheet ...

  3. Reading Text-based Files In ASP.NET

    Friday, July 17, 2015 1:43 PM Every time I need to work with the contents of text-based files in an ...

  4. PHP | Uploading and reading of files and database 【PHP | 文件的上传和读取与数据库】

    这是我自己的一个作业,用的是很基础的代码. 有错误的地方欢迎批评和指正! 这里最容易出错的地方在读取数据后向数据库表中插入数据是的数据格式! 文件上传的页面 uploading.php <htm ...

  5. Using Text_IO To Read Files in Oracle D2k

    Suppose you want to read a file from D2k client and want to store its content in Oracle database. Bu ...

  6. Fast data loading from files to R

    Recently we were building a Shiny App in which we had to load data from a very large dataframe. It w ...

  7. 解决javascript - node and Error: EMFILE, too many open files

    For some days I have searched for a working solution to an error Error: EMFILE, too many open files ...

  8. (转)使用 SCons 轻松建造程序

    在软件项目开发过程中,make 工具通常被用来建造程序.make 工具通过一个被称为 Makefile 的配置文件可以自动的检测文件之间的依赖关系,这对于建造复杂的项目非常有帮助,然而,编写 Make ...

  9. linux使用wkhtmltopdf报错error while loading shared libraries:

    官网提示 linux需要这些动态库.depends on: zlib, fontconfig, freetype, X11 libs (libX11, libXext, libXrender) 在li ...

随机推荐

  1. YTU 2982: 奔跑吧,小明!

    2982: 奔跑吧,小明! 时间限制: 1 Sec  内存限制: 128 MB 提交: 36  解决: 2 题目描述 小明陷入一个充满陷阱的密道之中,现在他要逃脱这里!到达密道的出口即可离开这处绝境! ...

  2. 【Codeforces 915E】 Physical Education Lessons

    [题目链接] 点击打开链接 [算法] 线段树,注意数据量大,要动态开点 [代码] #include<bits/stdc++.h> using namespace std; ; ,root ...

  3. supervisor - Python进程管理工具

    经常会碰到要写一些守护进程,简单做法放入后台: shell> nohup python xxx.py & 偶尔这么做还可以接受,如果一堆这样的呢? 当然还有一个问题,就是各种服务,对应的 ...

  4. Javaweb的9大内置对象

    request(请求) response(响应) session(一个用户存放数据,安全) application(一个项目一般有一个,多用户共享存简单数据) out(输出,在页面输出内容) conf ...

  5. undefined reference to 'pthread_create'问题解决(转载)

    转自:http://blog.csdn.net/llqkk/article/details/2854558 由于是Linux新手,所以现在才开始接触线程编程,照着GUN/Linux编程指南中的一个例子 ...

  6. 洛谷P1505 [国家集训队]旅游(树剖+线段树)

    传送门 这该死的码农题…… 把每一条边变为它连接的两个点中深度较浅的那一个,然后就是一堆单点修改/路径查询,不讲了 这里就讲一下怎么搞路径取反,只要打一个标记就好了,然后把区间和取反,最大最小值交换然 ...

  7. (3)css文本样式

    本篇学习资料主要讲解: 如何用css 的样式定义方法来介绍文字的使用. 第(1)节:用css设置文本样式.                       一.弄懂文本文字的制作.利用css的样式定义版面 ...

  8. VirtualBox搭建1主2从虚拟机

    环境要求 最近在使用VirtualBox搭建一个实验环境,由于公司规定了所有的机器都不能使用固定IP,都必须由DHCP自动获取. 为了不影响公司整理的网络环境,只能把实验用的网络环境限制在使用内部IP ...

  9. linux下创建用户及组

    linux下创建用户及组: 1.创建组 groupadd  组名 2.创建用户,并将用户添加到组 useradd  用户名  -g  组名 3.更改用户的密码 password  用户名 4.修改目录 ...

  10. Poj 2289 Jamie's Contact Groups (二分+二分图多重匹配)

    题目链接: Poj 2289 Jamie's Contact Groups 题目描述: 给出n个人的名单和每个人可以被分到的组,问将n个人分到m个组内,并且人数最多的组人数要尽量少,问人数最多的组有多 ...