- 博客(8)
- 收藏
- 关注
原创 Yolo5实现,运行问题 AttributeError: ‘DetectMultiBackend‘ object has no attribute ‘input_details‘
AttributeError: 'DetectMultiBackend' object has no attribute 'input_details'
2022-06-29 15:49:04
4632
5
原创 jupyter nootbook加载conda创建的虚拟环境
进入虚拟环境,以下三种命令可尝试conda install nb_condaconda install ipythonconda install nb_conda_kernels #成功
2022-05-13 09:17:30
274
原创 C语言链表创建、插入、删除(附图解)
全文核心思想,设置变量地址ptail, p, q。方便对链表操作#include<stdio.h>#include<stdlib.h>typedef struct node{ int data; struct node *next;};creatlist();traversal();insert_node(phead);delete_node(phead);int main(){ struct node *phead = NULL; printf(
2022-05-11 10:47:45
1296
原创 python 读写文件操作(open(file))
print('#创建test文件并写入(‘w’ 模式)')f = open('test', 'w')f.write('this is a text file. \nhello word! \npython is good!')f.close()print('#打开文件,并读出文件内容')f = open('test').read()print(f)# f.close()print('#将文件每行内容写进列表')f = open('test')lines = f.readlines()
2022-04-26 14:26:21
1155
原创 C 创建多重结构体数组(指向结构体的指针)
多重结构体数组#include<stdio.h>#define MAXLEN 15struct students{ char name[MAXLEN]; int scores; float heights;};struct schools{ struct students class; char school_name[MAXLEN]; int school_age;};int main(){ struct students a[2] = { { "t.z
2022-04-24 14:42:21
712
原创 毕业论文给图、表格、公式编号(不设置多级列表)
毕业论文给图、表格、公式编号(不设置多级列表)注意!这里编号根据每章为顺序给图设置编号注意!这里编号根据每章为顺序给图设置编号1.给第一章设置编号,看图:点击(引用)对话框里的(插入题注)(新建便签)弹出的对话框给便签命名(图1.),这一点很重要!!!!如果给第一章编号命名为 (图1.)如果给第二章命名,命名为(图2.)序号后面别忘了有个点号!!!!具体为什么接下来就知道了...
2019-07-15 16:50:56
1973
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人