import tensorflow as tf; import numpy as np; def load_data(path):; with np.load(path) as f: x_train, y_train = f['x_train'], f['y_train'] ...
確定! 回上一頁