牛骨文教育服务平台(让学习变的简单)
博客笔记
04
2017-01
ajax阻止表单提交 2017-01-04
function aaa(){ var ok = true;$.ajax({url:"xinxi/ispwd",async: false,dataType:"json",success:function(resp){$("#error").text(resp.error);ok= false;}});if(ok=true){return true; }else{return fals
23
2018-01
TensorFlow - tf.multiply和tf.matmul 区别 2018-01-23
TensorFlow - tf.multiply和tf.matmul 区别 flyfish # a # [[1, 2, 3], # [4, 5, 6]] a = tf.constant([1, 2, 3, 4, 5, 6], shape=[2, 3]) # b1 # [[ 7, 8], # [ 9, 10], # [11, 12]] b1 = tf.constant([7, 8, 9,
21
2011-01
Discuz修改登录后跳转页面 2011-01-21
在hotmeego.com/template/default/member/login.htm 中修改         阅读更多
19
2017-04
tf基础操作 2017-04-19
基本使用 图(graph)表示计算任务 会话(session)中执行图 张量(tensor) 表示数据 变量(variable)维护状态 feed和fetch 为任意操作赋值或者获取值 综述
16
2017-04
php程序开发之实现网页跳转的三种方式 2017-04-16
PHP目前是用来开发WEB项目的首选语言。Web项目中,从一个网页跳转到另一个网页是最常用的技术之一。用户单击链接、按钮或者系统逻辑等等都需要

			
				【JavaMailWeb】用户注册通过邮箱激活案例
【JavaMailWeb】用户注册通过邮箱激活案例 2016-08-22
转载请注明出处: http://blog.csdn.net/qq_26525215 本文源自【大学之旅_谙忆的博客】 前面刚刚学习了JavaMail技术,现在来应用到项目中试试~ 主要实现如下两个
13
2018-01
tf.multiply与tf.matmul 2018-01-13
(1)tf.multiply是点乘,即Returns x * y element-wise. (2)tf.matmul是矩阵乘法,即Multiplies matrix a by matrix b, producing a * b. 阅读更

			
				tf.multiply与tf.matmul的区别
tf.multiply与tf.matmul的区别 2017-12-24
1.tf.multiply()两个矩阵中对应元素各自相乘 格式: tf.multiply(x, y, name=None) 参数: x: 一个类型为:half, float32, float64, uint8, int8, uint16, int16, int32, int64, comple
10
2016-10
Java - String length() Method 2016-10-10
Advertisements  Previous Page Next Page   Description This method returns the length of this string. The length is equal to the number of 16-bit Unicode characters in the string. Sy

			
				java String 中的==null、length()==0、=="" 理解
java String 中的==null、length()==0、=="" 理解 2015-08-04
  对于java初学者来说,String  是必须要掌握的知识点。   今天要记录的是String 中比较模糊的几个判断,网上类似博客很多,但是纸上得来终觉浅,