摘要:
#将python的数据类型(列表和矩阵)转换成TensorFlow可用的tensor数据类型 import tensorflow as tf import numpy as np A = [1,2,3] B = np.array([1,2,3]) C = tf.convert_to_tensor(A 阅读全文
摘要:
1、numpy 乘法运算中 "*" 是数组元素逐个计算具体代码如下: a = np.array([[1,2],[3,4]]) b = np.array([[1,2],[3,4]]) print(a) print(b) print(a*b) """ [[1 2] [3 4]] [[1 2] [3 4] 阅读全文
摘要:
计算代码时间 timeit.timeit(stmt='pass', setup='pass', timer=, number=1000000, globals=None) 创建一个Timer实例,并运行代码进行计时,默认将代码执行一百万次。 stmt是要执行的代码,字符串形式,多行就多个字符串。se 阅读全文