摘要: 很不错的博客 https://blog.csdn.net/l1159015838/article/details/81940196 阅读全文
posted @ 2019-05-29 17:37 你的就是我的 阅读(95) 评论(0) 推荐(0)
摘要: #作业 softmax 函数 arr=np.random.randn(10,10)*100 print(arr) arr1=arr-arr.max() arr1 arr1_exp=np.exp(arr1) print(arr1_exp) arr1_exp_sum=arr1_exp.sum(axis=1).reshape(10,1) print(arr1_exp_sum) arr_softm... 阅读全文
posted @ 2019-05-15 21:51 你的就是我的 阅读(6483) 评论(0) 推荐(0)
摘要: http://localhost:8888/notebooks/Untitled3.ipynb?kernel_name=python3 阅读全文
posted @ 2019-05-15 18:03 你的就是我的 阅读(183) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/red_stone1/article/details/72858962 阅读全文
posted @ 2019-05-13 19:58 你的就是我的 阅读(165) 评论(0) 推荐(0)
摘要: name =input() age=input() myformat="我叫%s,年龄%s" %(name,age) print(myformat) 阅读全文
posted @ 2019-03-29 22:00 你的就是我的 阅读(79) 评论(0) 推荐(0)