- 博客(9)
- 收藏
- 关注
原创 VScode单卡进行分布式debug深度学习代码
在进行深度学习视觉分割代码的复现时,遇到多次如下的分布式运行代码。由于使用的单卡机器,该指令无法运行。尝试了许多方法之后,得到解决方案。
2024-04-12 15:34:51 199 1
原创 (2023)m1/m2 MacBook Pro安装labelimg,亲测有效!
之后cd到下载文件夹的目录,建议将labelimg的目录放置到自己常用的文件夹中,放在download中容易误删除。直接在Terminal中cd 然后将目录文件拖拽到Terminal中即可。首先pyqt5好像是没有m1版本的,因此很多人会卡在这一步。选择python=3.7的时候我的电脑会报错,具体原因不详。打开Terminal,新建anaconda环境。第二段出现Warning不必在意~
2023-09-05 22:01:40 3064 8
转载 条件运算符嵌套
const char x[2] [20] = {"Jason","at your services\n"} const char * y = "Quillstone"; for(int i = 0; i <3; i++) cout<<((i < 2)? !i ? x[i] : y : x[1]);...
2019-03-10 16:44:04 304
原创 strcmp函数比较顺序等用法
函数原型:strcmp(const char *s1,const char *s2);比较用法:当s1<s2时,返回为负数;当s1==s2时,返回值= 0;当s1>s2时,返回正数。即:两个字符串自左向右逐个字符相比(按ASCII值大小相比较),直到出现不同的字符或遇’\0’为止。比较输入字符串顺序用法:int main(){ using namespace st...
2019-03-10 15:46:05 2705
原创 未理解的编写延时循环
#include<iostream>#include<ctime> //typedef long clock_tint main(){ using namespace std; cout << "Enter the delay time, in seconds: "; float secs; cin >> secs;...
2019-03-07 20:07:48 224
原创 strcpy_s格式规范。
char animal[20] = &amp;amp;amp;amp;quot;bear&amp;amp;amp;amp;quot;;char * ps;ps = animal;ps = new char[strlen(animal) + 1];strcpy_s(ps, strlen(animal) + 1, animal);//strlen(animal) + 1表示缓冲区域大小,若输入的animal为fox,则次缓冲区域设置为4就可以了。若设置
2019-03-03 17:59:21 1005 1
原创 VS2017中部分字符串函数安全性的更改。
str1 = str2; strcpy_s(charr1, charr2); str1 += &amp;quot; paste&amp;quot;; strcat_s(charr1, &amp;quot; juice&amp;quot;);为了安全性考虑,在VS2017中将strcpy与strcat改为strcpy_s与strcat_s。摘自百度百科摘自百度百科。...
2019-03-01 19:58:33 679 2
原创 C++头文件cstring和string区别。
cstring为C-风格string类头文件。string为C++风格string类头文件。
2019-03-01 19:47:30 2992 4
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人