自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(7)
  • 资源 (1)
  • 收藏
  • 关注

原创 Django Task1

Django Task1 1.Python语法 (1).常见的数据类型 字符串 例如: name = "Hello world" #name2 = 'Hello world' #name3 = """name3""" print(name) print(type(name)) #可以查看数据类型,输出为 <class 'str'> ''' 字符串可以是单引号,双引号, 三引号的方式 (Vsc注释快捷键:ctrl + ?) python 注释有两种,一种是“#”, 另外一种就是“''

2021-06-16 15:04:02 105

原创 Django 组队学习 Task0

Django 组队学习 Task0 1.虚拟机安装成功 2.ubuntu安装SSH服务 systemctl status ssh 此外,再次进行防火墙的设置 sudo ufw allow ssh 查看SSH服务状态 systemctl status ssh 3.vscode相关插件安装以及其他操作 插件安装:Remote-SSH(链接虚拟机, 然后在里面进行链接虚拟机的IP ssh xxx@IP) 插件安装:Pylance 新建一个文件夹 进行Python环境测试 在文件夹中建立env文

2021-06-13 20:53:07 130 2

原创 2021-05-29

编译器编译原理 1 什么是gcc gcc( GNU C Compiler )编译器的作者是 Richard Stallman ,也是 GNU项目的奠基者。此外gcc 是 GNUCompiler Collection 的缩写。最初是作为 C语言的编译器( GNUC Compiler ),现在已经支持多种语言了,如 C、 C++、 Java、 Pascal、 Ada、 COBOL 语言等 。gcc 支持多种硬件平台, 甚至对 Don Knuth 设计的 MMIX 这类不常见的计算机都提供了完善的支持。 2 gc

2021-05-29 14:05:21 58

原创 2021-05-29

linux操作系统下的makefile编写 其中,有三个文件,main.c hello1.c hello1.h hello2.c hello2.c main.c中包含和调用hello1 和hello2的函数 故makefile可以写成 mytool:main.o hello1.o hello2.o gcc main.o hello1.o hello2.o -c mytool main.o: main.c gcc main.c -c -Wall -g -o main.o hello1.o: hello1

2021-05-29 13:21:11 73

原创 conda env虚拟环境

标题conda常用的命令 conda env list 查看当前的拥有的虚拟环境 cond update conda 检查更新当前conda conda create -n your_env_name python=xx(例如3.7)创建虚拟环境 conda activate your_env_name 激活你的虚拟环境 conda remove -n your_env_name --all 删除你的虚拟环境 conda remove --name your_env_name package_name 删

2020-08-08 00:16:31 224

原创 回归与分类的定义

在深度学习或者机器学习中经常遇到回归与分类,但是两者非常容易混淆。如何准确的理解两者的定义?? 笔者在看Tensorflow的文档时发现官方给出了一个很好的解答: In a regression problem, we aim to predict the output of a continuous value, like a price or a probability. Contrast this with a classification problem, where we aim to sele

2020-07-28 10:55:40 1157

原创 Tensorflow 2.1.0 出现 InternalError: Blas GEMM launch faile的错误解决方法

Tensorflow 2.1.0 出现 InternalError: Blas GEMM launch faile的错误解决方法: 关闭现有工程,重新打开,运行即可解决。 InternalError: Blas GEMM launch faile 其中,笔者遇到的问题的代码如下: # TensorFlow and tf.keras import tensorflow as tf from tensorflow import keras # Helper libraries import ..

2020-07-28 10:40:23 540

时间触发嵌入式系统设计模式

时间触发嵌入式系统设计模式 时间触发嵌入式系统设计模式

2017-11-20

空空如也

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

TA关注的人

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