随笔分类 -  深度学习与tensorflow

摘要:1、下载源码 git clone https://github.com/facebookresearch/detectron2.git 2、执行安装 python setup.py build --force develop 3、出现错误(又可能还会出现Microsoft visual build 阅读全文
posted @ 2022-09-01 16:41 小白啊小白,Fighting 阅读(2630) 评论(0) 推荐(0) 编辑
该文被密码保护。
posted @ 2022-09-01 14:02 小白啊小白,Fighting 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。
posted @ 2022-08-28 21:42 小白啊小白,Fighting 阅读(0) 评论(0) 推荐(0) 编辑
摘要:0、glibc升级至2.23以及python升级至3.7 https://blog.csdn.net/qq_20989105/article/details/90712139 # glibc 2.23升级https://www.cnblogs.com/goldsunshine/p/12938654. 阅读全文
posted @ 2021-04-14 10:50 小白啊小白,Fighting 阅读(7032) 评论(0) 推荐(0) 编辑
摘要:代码如下: import tensorflow as tf import csv import numpy as np import matplotlib.pyplot as plt # 设置学习率 learning_rate = 0.01 # 设置训练次数 train_steps = 1000 # 阅读全文
posted @ 2020-02-13 13:42 小白啊小白,Fighting 阅读(683) 评论(0) 推荐(0) 编辑
摘要:知识点 """ 机器翻译: 历史: 1、逐字翻译 2、基于统计学的机器翻译 3、循环网络和编码 翻译过程: 输入 -- > encoder -->向量 --> decoder -->output (RNN) (RNN) seq_seq应用:文本摘要、聊天机器人、机器翻译 seq_seq存在的问题: 阅读全文
posted @ 2019-07-04 11:15 小白啊小白,Fighting 阅读(538) 评论(0) 推荐(0) 编辑
摘要:哎!还是看大神博客吧 阅读全文
posted @ 2019-07-04 10:48 小白啊小白,Fighting 阅读(226) 评论(0) 推荐(0) 编辑
摘要:1、加载VGG19获取图片特征图 阅读全文
posted @ 2019-07-03 17:42 小白啊小白,Fighting 阅读(4672) 评论(0) 推荐(0) 编辑
摘要:主要参考博客: 1、物体分类 imagenet_classes.py class_names = '''tench, Tinca tinca goldfish, Carassius auratus great white shark, white shark, man-eater, man-eati 阅读全文
posted @ 2019-07-03 10:59 小白啊小白,Fighting 阅读(2197) 评论(0) 推荐(0) 编辑
摘要:1、知识点 2、Bellman优化目标 3、bellman案例,gridworld.py和ValueIteration.py import numpy as np import sys from gym.envs.toy_text import discrete UP = 0 RIGHT = 1 D 阅读全文
posted @ 2019-06-18 14:38 小白啊小白,Fighting 阅读(1972) 评论(0) 推荐(0) 编辑
摘要:1、知识点 2、代码 # coding: utf-8 import numpy as np import tensorflow as tf import pickle import matplotlib.pyplot as plt get_ipython().run_line_magic('matp 阅读全文
posted @ 2019-06-18 09:06 小白啊小白,Fighting 阅读(981) 评论(0) 推荐(0) 编辑
摘要:1、结构图 2、知识点 3、代码及案例 # coding: utf-8 # ## 对抗生成网络案例 ## # # # <img src="jpg/3.png" alt="FAO" width="590" > # - 判别器 : 火眼金睛,分辨出生成和真实的 <br /> # <br /> # - 生 阅读全文
posted @ 2019-06-17 21:00 小白啊小白,Fighting 阅读(4988) 评论(0) 推荐(0) 编辑
摘要:1、目录结构 2、入口类 3、tang_poems.py # -*- coding: utf-8 -*- # file: tang_poems.py import collections import os import sys import numpy as np import tensorflo 阅读全文
posted @ 2019-06-16 15:31 小白啊小白,Fighting 阅读(1652) 评论(0) 推荐(0) 编辑
摘要:1、知识点 2、将数据写入TFRecords import tensorflow as tf import os os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2' FLAGS = tf.app.flags.FLAGS tf.app.flags.DEFINE_strin 阅读全文
posted @ 2019-05-28 22:11 小白啊小白,Fighting 阅读(1541) 评论(0) 推荐(0) 编辑
摘要:1、知识点 2、代码 3、分布式架构图 阅读全文
posted @ 2019-05-28 20:29 小白啊小白,Fighting 阅读(1663) 评论(0) 推荐(0) 编辑
摘要:1、知识点 2、代码 3、发展历程 4、卷积与池化输出矩阵维度计算公式 5、损失计算-交叉熵损失公式 6、SoftMax回归计算公式 7、激活函数-Relu 阅读全文
posted @ 2019-05-27 22:28 小白啊小白,Fighting 阅读(1772) 评论(0) 推荐(0) 编辑
摘要:1、知识点 2、代码 阅读全文
posted @ 2019-05-27 22:11 小白啊小白,Fighting 阅读(563) 评论(0) 推荐(0) 编辑
摘要:1、知识点 2、代码 阅读全文
posted @ 2019-05-24 17:49 小白啊小白,Fighting 阅读(1372) 评论(0) 推荐(0) 编辑
摘要:1、知识点 2、代码 阅读全文
posted @ 2019-05-24 17:13 小白啊小白,Fighting 阅读(1442) 评论(2) 推荐(0) 编辑
摘要:1、知识点 2、代码 阅读全文
posted @ 2019-05-24 17:08 小白啊小白,Fighting 阅读(3353) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示