- 博客(4)
- 收藏
- 关注
原创 Leetcode[1]
给定一个整数数组和一个目标值,找出数组中和为目标值的两个数。你可以假设每个输入只对应一种答案,且同样的元素不能被重复利用。示例:给定 nums = [2, 7, 11, 15], target = 9 因为 nums[0] + nums[1] = 2 + 7 = 9 所以返回 [0, 1]最快解决方案:...
2018-07-04 14:04:56 111
原创 英文好词好句[论文向]
1. ### is an extension of ### ...是...的扩展(推广)例句:Rough set theory is an extension of conventional set theory that supports approximations in decision making. 释义:粗糙集理论是传统集合论的一个推广。出处:《Feature selection ...
2018-05-15 16:44:37 584
原创 Tensorflow Cookbook2-Varible & Placeholder 的使用
在最近的学习过程中,在了解了常数和变量中的简单不同,我尝试了几个小的语句,这样可以帮助我们仔细分析一下这两者的用法区别:vari = tf.Variable(2,name='vari') ####1 cons = tf.constant(3) ####2 Mul = tf.multiply(vari,cons) ...
2018-02-14 00:33:37 163
原创 Tensorflow Cookbook1-Session & Graph 的使用
在Tensorflow中,我们可以把整个的计算过程看作是一张流动的数据网络,数据从网络的一端流向另外一端,整个网络便是一张图,即Graph,而中间关键的计算称之为节点,即Session,下面我们将会从Numpy和Tensorflow两个方面对Session的应用作以比对:首先,我们在Numpy中,对两个矩阵进行加法和乘法的运算:import numpy as np a = np.matrix([...
2018-02-08 22:37:52 179
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人