09 2020 档案
windows tensorflow无法下载Fashion-mnist的解决办法
摘要:使用下面的语句下载数据集会报错连接超时等 import tensorflow as tf from tensorflow import keras fashion_mnist = keras.datasets.fashion_mnist (train_images, train_labels), ( 阅读全文
posted @ 2020-09-05 13:40 jaysonteng 阅读(608) 评论(0) 推荐(0) 编辑
dataframe apply函数多个结果拆分给多列
摘要:有两个方法: 法一: df['c'], df['d'] = zip(*df.apply(lambda x: func_main(x['a'], x['b']), axis=1)) 法二: 推荐使用法二 df[['c', 'd']] = df.apply(lambda x: func_main(x[' 阅读全文
posted @ 2020-09-01 15:24 jaysonteng 阅读(1198) 评论(0) 推荐(1) 编辑