2022年7月24日

打印两个大字

摘要: 页面边距:窄 字体:华光小标宋_CNKI 加粗 字号:380 纸张方向:横向 阅读全文

posted @ 2022-07-24 13:33 言语说 阅读(162) 评论(0) 推荐(0) 编辑

2022年7月13日

使用GitHub库

摘要: 环境配置 方法一 pip install -r requirement.txt 方法二 查找提示所需环境(没有requirement.txt) 训练 在readme.md里查找train train custom data训练自定义数据 预测 在readme.md 关键词是predict或者infe 阅读全文

posted @ 2022-07-13 22:39 言语说 阅读(23) 评论(0) 推荐(0) 编辑

2022年7月12日

GitHub的下载

摘要: 方法一 download zip不推荐使用(通过解压的方式获取仓库) 进入文件内部 右键选择code打开 方法二gitclone(修改仓库时会保留git信息。修改的内容) 首先下载Git 在绿色按钮code那里选择HTTPS复制链接 新建文件夹 右键选择git bash 输入git clone 粘贴 阅读全文

posted @ 2022-07-12 23:17 言语说 阅读(1988) 评论(0) 推荐(0) 编辑

运行EPS代码下载的内容

摘要: python3 -m pip install Pytorch pythonlib各类whl文件下载链接https://www.lfd.uci.edu/~gohlke/pythonlibs/ (使用ctrl+f快速定位) python3 -m pip install wheel python3 -m 阅读全文

posted @ 2022-07-12 22:04 言语说 阅读(15) 评论(0) 推荐(0) 编辑

2022年6月23日

浅学之scanner数据

摘要: import java.util.Scanner; public class Demo04 { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); //从键盘接收数据 int i = 0 阅读全文

posted @ 2022-06-23 23:32 言语说 阅读(24) 评论(0) 推荐(0) 编辑

浅学之scanner

摘要: ![](https://img2022.cnblogs.com/blog/2869841/202206/2869841-20220623215522579-190941 import java.util.Scanner; public class Demo01 { public static voi 阅读全文

posted @ 2022-06-23 22:28 言语说 阅读(28) 评论(0) 推荐(0) 编辑

2022年6月22日

戴尔键盘背光灯不亮

摘要: 按Fn+F10 注意F10上有背光灯标识奥! 阅读全文

posted @ 2022-06-22 23:54 言语说 阅读(220) 评论(0) 推荐(0) 编辑

2022年6月19日

浅学之三元运算符

摘要: //三元运算符 public class Demo05 { public static void main(String[] args) { //x ? y :z //如果x==true,则结果为y,否则结果为z int score = 20; String type = score < 60 ?" 阅读全文

posted @ 2022-06-19 08:03 言语说 阅读(15) 评论(0) 推荐(0) 编辑

浅学之字符串连接符

摘要: public class Demo04 { public static void main(String[] args) { int a = 10; int b = 20; //字符串连接符 + System.out.println(""+a+b);//加号前面有字符串 则结果为字符串 System 阅读全文

posted @ 2022-06-19 07:52 言语说 阅读(19) 评论(0) 推荐(0) 编辑

2022年6月18日

浅学之位运算

摘要: public class Demo03 { public static void main(String[] args) { /* 位运算 A = 0011 1100 B = 0000 1101 A&B = 0000 1100 全1才1 A|B = 0011 1101 有1为1 A^B = 0011 阅读全文

posted @ 2022-06-18 13:05 言语说 阅读(22) 评论(0) 推荐(0) 编辑

导航