938664978
938664978
全部文章
分类
AI(18)
algorithm(18)
C(6)
computer-vision(15)
cuda(2)
database(1)
fortran(1)
hardware(3)
java(1)
leetcode(39)
MathModeling(19)
matlab(5)
other(8)
python(68)
robotics(13)
web-development(4)
未归档(5)
归档
标签
去牛客网
登录
/
注册
938664978的博客
全部文章
(共226篇)
[leetcode][88] Merge Sorted Array
Given two sorted integer arrays nums1 and nums2, merge nums2 into nums1 as one sorted array. Note: You may assume that nums1 has enough space (size...
2020-07-13
0
395
[leetcode]237. Delete Node in a Linked List
Write a function to delete a node (except the tail) in a singly linked list, given only access to that node. Supposed the linked list is 1 -> 2 -...
2020-07-13
0
492
Detection Green Balls
Detection Green Balls In the following pictures, a green ball is photographed. Detection the green ball is our mission. ...............................
2020-07-13
0
507
[c]一个简单的二叉树
使用C语言练练手避免手生。 文件主要有三个: bst.h, bst.c, test_bst.c 文件bst.h typedef enum {FALSE=0, TRUE=1} bool; /* * Define a node structure. */ typedef struct...
2020-07-13
0
489
登录校园网
把标题改了,因为记忆深处还有个叫校内网的。不过,已经忘记了密码,就让它慢慢褪去吧。 —————————————— 今天的风,甚是喧嚣呢。 躲在宿舍,真是惬意啊。 学校论坛上有人问,自己在学校托管的主机在每月交费后会自动下线,而自己不在学校,如何是好? 于是,我就写了个简单的脚本。这样的话,...
2020-07-13
0
497
[tensorflow]TypeError: Fetch argument .+ has invalid type
TypeError: Fetch argument ~ has invalid type, must be a string or Tensor. (Can not convert a float32 into a Tensor or Operation.) 今天,调试tensorflow的时候,...
2020-07-13
0
521
Python中子类如何获取父类的类成员
@bwangel 大家好,今天在写代码的时候,遇到了这样一种情况。我有如下所示的几个类用来存放程序配置(其实当做命名空间来用,同时感觉能够继承方便一点), import os class Config: BASE_DIR = "/tmp" ...
2020-07-13
0
638
在tensorflow中保存模型参数
想要保存训练之后得到的神经网络参数,一般有两种办法。 第一种,可以将tensor对象转换为numpy数组进行保存。 即, numpy.savetxt( 'weight.txt', weight.eval()) 第二种,是利用tensorflow自带的Saver对象。 ...
2020-07-13
0
527
[tensorflow] feed_dict 传入序列
当前, tensorflow(1.0)还不是很人性化。 在session中传入序列参数到图模型中并不是很方便。 所以,现在只能将序列中每一个元素对应的tensor和实际值对应写入dict进行传送。 比如, 定义图时,把将填入的tensor,先用placeholder占位: ...
2020-07-13
0
469
cffi: 连接python与C的桥梁
想在python中无痛地调用C语言吗? 快用cffi吧! 下面我给大家演示一下,python是如何通过cffi调用c程序的。 首先,我自己写了个三维向量结构体:Vec3. 具体分为两个文件: vect3.h 和 vect3.c. vect3.h如下: #define ...
2020-07-13
0
649
首页
上一页
14
15
16
17
18
19
20
21
22
23
下一页
末页