上一页 1 2 3 4 5 6 7 8 ··· 13 下一页

2022年11月1日

摘要: C++ 借助指针突破访问权限的限制,访问private、protected属性的成员变量(花拳绣腿) C++ 借助指针突破访问权限的限制,访问private、protected属性的成员变量(花拳绣腿) - Smah - 博客园 (cnblogs.com) 1.直接使用obj访问m_b是访问不到的。 阅读全文
posted @ 2022-11-01 23:12 shenhshihao 阅读(43) 评论(0) 推荐(0)

2022年10月19日

摘要: sizeof(8.8) = 8; //自动转化为double类型,注意,不是float类型当操作数是联合类型时,sizeof是其最大字节成员的字节数。 struct a{ //对struct来说 char b; double x; }a; 在Linux上: sizeof(a) = 12; 而一般si 阅读全文
posted @ 2022-10-19 18:47 shenhshihao 阅读(46) 评论(0) 推荐(0)

2022年10月16日

摘要: 破解法,将动态arp设置为静态 ipconfig /all」指令查看mac。 直接命令行 getmac -v metasploit实战: 2. 常用文件头标识 文件扩展名文件头标识(HEX) bmp 42 4D gif 47 49 46 38 39 61 ico 00 00 01 00 00 img 阅读全文
posted @ 2022-10-16 19:19 shenhshihao 阅读(90) 评论(0) 推荐(0)

2022年9月3日

摘要: import tensorflow as tf SyntaxError: invalid syntax apt缓存都在这; 只下载不安装; OSError: sndfile library not found 解决方案 阅读全文
posted @ 2022-09-03 16:08 shenhshihao 阅读(30) 评论(0) 推荐(0)

2022年8月25日

摘要: The name tf.train.Optimizer is deprecated. Please use tf.compat.v1.train.Optimizer instead tensorflow_gpu很有可能在1.13版本的时候更改了tf.train.Optimizer的接口 1、查看安装 阅读全文
posted @ 2022-08-25 13:13 shenhshihao 阅读(835) 评论(0) 推荐(0)

2022年8月11日

摘要: paddlex 划分voc数据集; ValueError: Dataset MyDataset is not valid and cannot parse dataset type 'MyDataset' for automaticly downloading, which only support 阅读全文
posted @ 2022-08-11 17:17 shenhshihao 阅读(197) 评论(0) 推荐(0)

2022年8月8日

摘要: 不初始化就行; 否则用常数 000000000000000000000000000000000000000000000 静态变量初始化 类名一定要有; 第二个八因为是指针; 阅读全文
posted @ 2022-08-08 15:48 shenhshihao 阅读(33) 评论(0) 推荐(0)

2022年7月31日

摘要: 标注文件(json)-->COCO数据集 使用PaddleDetection提供的x2coco.py 将labelme标注的数据转换为COCO数据集形式 python tools/x2coco.py \ --dataset_type labelme \ --json_input_dir ./labe 阅读全文
posted @ 2022-07-31 12:26 shenhshihao 阅读(751) 评论(0) 推荐(0)

2022年7月30日

摘要: 恢复内容开始 默认学习率是四卡的配置,由于此时是单卡训练,学习率需要在默认的学习率上除以四倍。学习率可以通过 -o Optimizer.lr.learning_rate 来改变; 配置默认是从第10epoch开始做eval,此处为了展现效果,设置了从1epoch开始做eval,可以通过-o Glob 阅读全文
posted @ 2022-07-30 08:18 shenhshihao 阅读(263) 评论(0) 推荐(0)

2022年7月29日

摘要: name = input() # 利用lower、upper、title方法将输入的name全转为 全小写、全大写、首字母大写 print(f'{name.lower()}') print(f'{name.upper()}') print(f'{name.title()}') name=input( 阅读全文
posted @ 2022-07-29 16:13 shenhshihao 阅读(103) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 ··· 13 下一页

导航