python yield用法

generator,字面翻译即引擎。可以源源不断批量生成数据。

看看keras经典例子

def generate_arrays_from_file(path):
    while True:
        with open(path) as f:
            for line in f:
                # create numpy arrays of input data
                # and labels, from each line in the file
                x1, x2, y = process_line(line)
                yield ({'input_1': x1, 'input_2': x2}, {'output': y})

model.fit_generator(generate_arrays_from_file('/my_file.txt'),
                    steps_per_epoch=10000, epochs=10)
a = [4,16,22,23,26,27,28,36,44,51,56,64
     ,71,74,75,80,82,88, 84,100, 104,118,123,129,130]

def data_gen():
    while True:
        for i in a:
            x=i
            yield x
                        
y = data_gen()

x = next(y)
print(x)

x = next(y)
print(x)

x = next(y)
print(x)

4
16
22

tf.data生成器用法

测试集

import tensorflow as tf
ds = tf.data.Dataset.from_tensor_slices((test_x, test_y))
ds = ds.batch(1)
x, y = ds.make_one_shot_iterator().get_next()

训练集

ds = tf.data.Dataset.from_tensor_slices((train_x, train_y))
ds = ds.repeat().shuffle(1000).batch(BATCH_SIZE)
x, y = ds.make_one_shot_iterator().get_next()

with tf.Session() as sess:
    a = sess.run(x)
    b = sess.run(y)

更多数学原理小文请关注公众号:未名方略

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

飞行codes

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值