腾讯云
开发者社区
文档
建议反馈
控制台
登录/注册
首页
学习
活动
专区
工具
TVP
腾讯云架构师技术同盟
文章/答案/技术大牛
搜索
搜索
关闭
发布
首页
学习
活动
专区
工具
TVP
腾讯云架构师技术同盟
返回腾讯云官网
漫漫深度学习路
专栏成员
举报
167
文章
229513
阅读量
54
订阅数
订阅专栏
申请加入专栏
全部文章(167)
tensorflow(44)
pytorch(23)
神经网络(16)
机器学习(14)
python(13)
深度学习(13)
编程算法(12)
linux(9)
人工智能(8)
https(8)
网络安全(7)
c++(6)
其他(5)
bash(5)
git(5)
ubuntu(5)
bash 指令(5)
批量计算(5)
http(5)
windows(5)
c 语言(4)
tcp/ip(4)
打包(3)
ssh(3)
opencv(3)
input(3)
size(3)
数据挖掘(2)
php(2)
html(2)
qt(2)
sql(2)
图像处理(2)
网站(2)
存储(2)
正则表达式(2)
numpy(2)
gcc(2)
channel(2)
matrix(2)
model(2)
word(2)
函数(2)
源码(2)
NLP 服务(1)
mac os(1)
perl(1)
node.js(1)
ajax(1)
单片机(1)
汇编语言(1)
数据库(1)
云数据库 SQL Server(1)
ide(1)
api(1)
matlab(1)
unix(1)
apt-get(1)
分布式(1)
gui(1)
ftp(1)
rpc(1)
kernel(1)
大数据(1)
安全(1)
数据处理(1)
数据结构(1)
apply(1)
class(1)
conda(1)
decorator(1)
device(1)
embedding(1)
filter(1)
global(1)
gpu(1)
gradient(1)
graph(1)
height(1)
int(1)
io(1)
key(1)
local(1)
max(1)
memory(1)
optimization(1)
padding(1)
python3(1)
reshape(1)
scope(1)
sequence(1)
session(1)
shared(1)
space(1)
sum(1)
summary(1)
supervisor(1)
synchronous(1)
task(1)
tensor(1)
time(1)
width(1)
word2vec(1)
笔记(1)
变量(1)
程序(1)
命令行(1)
模型(1)
数据(1)
数学(1)
学习笔记(1)
音频(1)
搜索文章
搜索
搜索
关闭
tensorflow(四十八): 使用tensorboard可视化训练出的文本embedding
tensorflow
对应 tensorflow 1.15版本 log_dir = "./logdir" metadata_path = os.path.join(log_dir, 'metadata.csv') names = ["苹果", "香蕉"] embs = [[1.0, 2.0, 0.1, 0.4], [1.0, 1.0, 0.1, 0.4]] # 1. 写 metadata.csv. 这里存的是对应的 embedding的 文本 with open(metadata_path, "w") as f:
ke1th
2022-10-04
229
0
git subtree使用
git
https
http
网络安全
在一个git项目下引用另一个项目的时,我们可以使用 git subtree。使用 git subtree 时,主项目下包含子项目的所有代码。
ke1th
2021-10-25
888
0
tensorflow(四十七):tensorflow模型持久化
模型
模型保存 from tensorflow import graph_util graph_def = tf.get_default_graph().as_graph_def() # variable 搞成常量节点放到 graph_def 中。并按照 输出 节点进行剪枝 constant_graph = graph_util.convert_variables_to_constants(sess, graph_def,
ke1th
2020-11-24
347
0
tensorflow(四十六):传op name 还是tensor name
api
tensor
本文章对需要传 name 的一些api进行总结,明确下应该传的是 op name 还是 tensor name
ke1th
2020-11-24
844
0
Learning to Learn by Gradient Descent by Gradient Descent网络前向计算图
gradient
model
optimization
Learning to Learn By Gradient Descent by Gradient Descent 前向计算图(黄色线表示梯度流动方向)
ke1th
2019-08-29
711
0
python装饰器
decorator
变量
函数
https://www.liaoxuefeng.com/wiki/1016959663602400/1017451662295584
ke1th
2019-08-29
453
0
sql:case when
sql
https://www.cnblogs.com/kirinboy/archive/2010/01/11/1644108.html
ke1th
2019-08-14
572
0
git 一些undo操作
git
使用git的时候经常会出现,“啊!,刚才提交的代码有问题,需要undo一下了” 这种情况,为了应对这种问题。本文介绍 git 的一些 undo 操作
ke1th
2019-08-14
617
0
conda 虚拟环境
conda
# 列出所有虚拟环境 conda env list # 创建虚拟环境 conda create -n name python=3.6 # 删除虚拟环境 conda remove -n name # 进入虚拟环境 source activate name (或者 conda activate name) # 退出虚拟环境 source deactivate (或者 conda deactivate)
ke1th
2019-08-01
1.2K
0
10 Books that could Make you a Better C++ Programmer
c++
编程算法
I just recently read a post by Programming Zen on 10 recent books that will make you a better developer. I have a few books to add to the list although these may not be as recent and that are focused to C++... making my list really 10 classic books that will make you a better C++ developer J. Some of these books have multiple editions and the older ones can be bought cheaper and usually don’t have significant revisions. There’s one exception that I can think of,Deitel and Deitel (D&D). My copy was the 5th edition of the Deitel and Deitel book but from what I’ve heard, it fixed some voice issues and they have introduced lots of new material with each edition to address C++ and STL updates. Finally, if you’re looking for our list of Microsoft Press books for C++ developers, we have a great one on the developer center and I’ll exclude those from this list as this one is more personal and focused to books that have influenced me along the way as a developer. Here’s my list, in no particular order with exception for The Pragmatic Programmer, my dog-eared copy still serves as my developer mantra.
ke1th
2019-05-29
590
0
register
编程算法
In 16-bit mode, such as provided by the Pentium processor when operating as a Virtual 8086 (this is the mode used when Windows 95 displays a DOS prompt), the processor provides the programmer with 14 internal registers, each 16 bits wide. They are grouped into several categories as follows:
ke1th
2019-05-29
819
0
What is IP Routing?
tcp/ip
IP Routing is an umbrella term for the set of protocols that determine the path that data follows in order to travel across multiple networks from its source to its destination. Data is routed from its source to its destination through a series of routers, and across multiple networks. The IP Routing protocols enable routers to build up a forwarding table that correlates final destinations with next hop addresses.
ke1th
2019-05-29
592
0
lamp on ubuntu
php
网站
云数据库 SQL Server
bash
bash 指令
A "LAMP" stack is a group of open source software that is typically installed together to enable a server to host dynamic websites and web apps. This term is actually an acronym which represents the Linux operating system, with the Apache web server. The site data is stored in a MySQL database, and dynamic content is processed by PHP.
ke1th
2019-05-29
701
0
(i++)+(++i)+(++i)+(++j)+(j++)问题
ide
用 GNU GCC 编译器得出的结果是 7,,当不用volatile修饰变量时得到的结果是8,,
ke1th
2019-05-29
1.5K
0
MPI错误:提示XXX Credentials for yyy rejected connecting to XXX
windows
MPI错误:提示XXX Credentials for yyy rejected connecting to XXX
ke1th
2019-05-29
1.5K
0
python codecs
https
网络安全
python
版权声明:本文为博主原创文章,转载请注明出处。 https://blog.csdn.net/u012436149/article/details/53741277
ke1th
2019-05-29
579
0
python numpy random
numpy
https
网络安全
版权声明:本文为博主原创文章,转载请注明出处。 https://blog.csdn.net/u012436149/article/details/53706566
ke1th
2019-05-29
433
0
tf-idf weighting
数据挖掘
版权声明:本文为博主原创文章,转载请注明出处。 https://blog.csdn.net/u012436149/article/details/53420451
ke1th
2019-05-29
523
0
word2vec
embedding
matrix
size
sum
word
版权声明:本文为博主原创文章,转载请注明出处。 https://blog.csdn.net/u012436149/article/details/53214016
ke1th
2019-05-28
763
1
卸载Cuda7.5
深度学习
版权声明:本文为博主原创文章,转载请注明出处。 https://blog.csdn.net/u012436149/article/details/53163346
ke1th
2019-05-28
745
0
点击加载更多
社区活动
Python精品学习库
代码在线跑,知识轻松学
立即查看
博客搬家 | 分享价值百万资源包
自行/邀约他人一键搬运博客,速成社区影响力并领取好礼
立即体验
技术创作特训营·精选知识专栏
往期视频·干货材料·成员作品 最新动态
立即查看
领券
问题归档
专栏文章
快讯文章归档
关键词归档
开发者手册归档
开发者手册 Section 归档