自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(24)
  • 收藏
  • 关注

原创 AWS EC2 设置https权限

AWS EC2 设置https权限

2023-03-16 15:16:14 358

原创 在AWS EC2上运行Python Scripts

可以根据自身Project的情况安装其他Python版本,这里安装Python 3.9。Tips:如果涉及到调用API需要设置Security Group。EC2 Instance的原始Python版本是 3.7。添加 Custom TCP 和 All TCP。打开一个新的终端,上传code到服务器。确认Python 3.9是否完成安装。ls查看发现存在安装包。

2023-03-16 14:41:04 689

原创 AWS 创建EC2 Instances并连接Server

AWS 创建EC2 Instances并连接Server

2023-03-15 19:58:36 1225

原创 AWS EC2 使用时的一些指令:上传文件、下载文件、开启单独的screen运行脚本

AWS EC2 使用时的一些指令:上传文件、下载文件、开启单独的screen运行脚本

2023-03-12 14:22:23 2689 1

原创 EndNote20 自动生成毕业论文参考文献

自动生成毕业论文参考文献格式

2023-02-28 23:17:47 2113

原创 上传文件到Github仓库

上传文件到Github仓库,通过Git

2023-02-12 23:45:25 348

原创 从汇编语言角度理解 指令的取(fetch),解码(decode),执行(execute)周期

从汇编语言角度理解 指令的取(fetch),解码(decode),执行(execute)周期

2022-09-18 22:51:39 1567

原创 Andrew Ng Deep Learning 第四周 选择题

1.What is the “cache” used for in our implementation of forward propagation and backward propagationA.We use it to pass variables computed during backward propagation to the corresponding forward propagation step. It contains useful values for forward pro

2022-01-16 14:26:50 961

原创 Andrew Ng Deep Learning 第三周 编程练习 Planar_data_classification_with_one_hidden_layer

目录Exercise 1Exercise 2 layer_sizesExercise 3 initialize_parametersExercise 4 forward_propagationExercise 5 compute_costExercise 6 backward_propagationExercise 7 update_parametersExercise 8 nn_modelExercise 9 predictExercise 1How many training exam.

2022-01-13 10:35:40 726

原创 Andrew Ng Deep Learning 第三周 选择题

1.Which of the following are true? (Check all that apply.)A.XXX is a matrix in which each row is one training example.B.a4[2]a^{[2]}_4a4[2]​ is the activation output by the 4th4^{th}4th neuron of the 2nd2^{nd}2nd layerC.a[2](12)a^{[2](12)}a[2](12) denot

2022-01-12 10:56:12 665

原创 Andrew Ng Deep Learning 第三周 双层神经网络反向传播 公式推导

在学这部分内容时,并不能理解dz[1]=W[2]Tdz[2]∗g[1]′(z[1])dz^{[1]} =W^{[2]T}dz^{[2]}*g^{[1]'}(z^{[1]})dz[1]=W[2]Tdz[2]∗g[1]′(z[1])是怎么推导的其实就是简单的利用链式法则还有一点就是当时没有注意x和ax和ax和a推导如下:dz[1]=dLdz[1]=dLdz[2]⋅dz[2]dz[1]=dLdz[2]⋅dz[2]da[1]⋅da[1]dz[1]dz^{[1]}=\frac{dL}{dz^{[1]}}=..

2022-01-03 21:49:40 526

原创 Andrew Ng Deep Learning 第二周 编程练习 Logistic regression with neural networks

目录Exercise 1Exercise 2Exercise 3 sigmoidExercise 4 initialize_with_zerosExercise 5 propagateExercise 6 optimizeExercise 7 predictExercise 8 modelExercise 1Find the values for:m_train (number of training examples)m_test (number of test examples).

2022-01-01 14:26:12 998

原创 Andrew Ng Deep Learning 第二周 10道选择题

1.What does a neuron compute?A.A neuron computes a function g that scales the input x linearly (Wx + b)B.A neuron computes an activation function followed by a linear function (z = Wx + b)C.A neuron computes a linear function (z = Wx + b) followed by an

2021-12-31 11:25:06 416

原创 Andrew Ng Deep Learning 第二周 Numpy练习

目录Exercise 1Exercise 2 basic_sigmoidExercise 3 sigmoidExercise 4 sigmoid_derivativeExercise 5 image2vectorExercise 6 normalize_rowsExercise 7 softmaxExercise 8 L1Exercise 9 L2Exercise 1Set test to “Hello World” in the cell below to print “He.

2021-12-31 10:28:09 354

原创 Andrew Ng Deep Learning 第一周 10道选择题

1.What does the analogy “AI is the new electricity” refer to ?A.Similar to electricity starting about 100 years ago, AI is transforming multiple industries.B.Through the “smart grid”, AI is delivering a new wave of electricity.C.AI is powering personal

2021-12-28 10:20:21 690

原创 《Python程序设计与算法基础教程(第二版)》江红 余青松 课后选择题 课后填空题答案

目录第一章一、选择题二、填空题第二章一、选择题二、填空题第三章一、选择题第八章一、选择题二、填空题第一章一、选择题Python语言属于 CA.机器语言B.汇编语言C.高级语言D.以上都不是在下列选项中,不属于Python特点的是 BC.可移植性D.免费和开源A.面向对象B.运行效率高在下列选项中,A 是最信用的Pyton版本,也称之为CasiseyrhoipA. CPythonB. JythonC. IronPythonD. PyPyPython内置的集

2021-11-24 16:33:14 29767 7

原创 Pyside/Pyqt QLbal设置图片不显示(QLabel无法设置24位深度图片)

目录问题解决方法问题在做Python的UI课设时,希望给登录的Widget界面设置背景图片,网上查到的方法基本都是Mainwindows通过setstyleSheet的方法解决,而我的课设由于有多个界面,想要给其中的子界面设置背景想到的方法是通过QLabel设置图片(借助QPixmap实现)从给定fileName的文件构造一个 pixmap如果文件不存在或格式未知,则像素图将成为空像素图(null)class Loginfrm(QWidget): def __init__(self):

2021-11-04 19:23:20 3270 2

原创 Pytorch深度学习实践(2) Linear model 作业 y = wx + b

Pytorch深度学习实践(2) Linear model 作业 y = wx + b

2021-08-21 16:24:52 1275

原创 Pytorch gpu(CUDA11.1)最新版本 官网路径 安装超时

Pytorch gou最新版本 官网路径 安装超时问题

2021-08-17 22:46:32 2383

原创 数据结构笔记

一只菜狗的数据结构笔记

2021-05-18 22:51:57 606 5

原创 全国交通咨询模拟系统

数据结构 严蔚敏 第六章 图6.6.2简易版 具体实现修改vexs顶点表,a,b,c改为地点名仅使用Dijkstra算法如果是为了最少转站,对图使用广度优先即可还有读入地图使用file之类的细节有空再改

2021-05-15 22:12:47 3238 2

原创 Python读取.txt文件中数据并存入一个二维数组

Python读取.txt文件中数据并存入一个二维数组file = open("2020.txt", "r")row = file.readlines()print(row)l = []for line in row: str = list(line.rstrip()) l.append(str)print(l)2020.txt文件放在.py同一路径下输出结果...

2021-04-15 14:48:59 8020 2

原创 采用 KMP 算法编程实现病毒感染检测算法

采用 KMP 算法编程实现病毒感染检测算法

2021-04-12 17:54:46 5337 8

原创 Mysql实验:将所有平均分为75分以上的学生的各门课成绩在原来基础上增加10%

Mysql实验:将所有平均分为75分以上的学生的各门课成绩在原来基础上增加10%参考:https://blog.csdn.net/u012767761/article/details/84997962主要分为两步:1.筛选出平均分为75分以上的学生的学生学号SELECTSNOFROMSCGROUP BY SC.SNO //按照学号分组HAVING AVG(GRADE) > 75;//筛选平均分为75分以上的学号2.将满足条件学生的各门课成绩在原来基础上增加10%updat

2021-04-10 15:05:05 6092

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除