Edit by browser

This commit is contained in:
夏军 2020-07-21 22:39:28 +08:00
parent d52df50055
commit 1670edd027
1 changed files with 10 additions and 12 deletions

View File

@ -1,13 +1,11 @@
multi_func = lambda x : x*10
def data_pre_handle(data):
# 对输入数据依次执行以下操作,然后作为返回值输出
# 1. 映射使用上面的multi_func函数作为参数
# 2. 分组每3个分为一组末尾不足一组的砍掉
# 3. 重复将数据重复3次
########## Begin ##########
map_res = data.map(operations=multi_func)
batch_res = map_res.batch(batch_size=3, drop_remainder=True)
repeat_res = batch_res.repeat(3)
return repeat_res
multi_func = lambda x : x*10
def data_pre_handle(data):
# 对输入数据依次执行以下操作,然后作为返回值输出
# 1. 映射使用上面的multi_func函数作为参数
# 2. 分组每3个分为一组末尾不足一组的砍掉
# 3. 重复将数据重复3次
########## Begin ##########
########## end ##########