上一页 1 2 3 4 5 6 ··· 9 下一页
摘要: 怎么读、转换灰度图 阅读全文
posted @ 2023-07-16 11:11 DuJunlong 阅读(216) 评论(0) 推荐(0) 编辑
摘要: 如果你在卸载 Node.js 后发现存在残留的文件或目录,可以尝试以下步骤来清理它们: 在命令行中输入 npm root -g,找到全局 Node.js 模块的安装目录。 删除该目录下的所有文件和子目录,确保没有任何残留。 检查是否还存在 Node.js 的环境变量。在 Windows 中,你可以在 阅读全文
posted @ 2023-07-11 17:28 DuJunlong 阅读(1401) 评论(0) 推荐(0) 编辑
摘要: ``` git fetch origin git merge origin/master ``` https://juejin.cn/s/git%20%E6%9B%B4%E6%96%B0%E6%9C%AC%E5%9C%B0%E5%88%86%E6%94%AF 阅读全文
posted @ 2023-07-11 17:03 DuJunlong 阅读(28) 评论(0) 推荐(0) 编辑
摘要: https://juejin.cn/post/7094576504243224612 阅读全文
posted @ 2023-07-11 15:52 DuJunlong 阅读(305) 评论(0) 推荐(0) 编辑
摘要: ``` import numpy as np import torch import torchvision.transforms from torch.utils.tensorboard import SummaryWriter from torchvision.transforms import 阅读全文
posted @ 2023-07-04 17:29 DuJunlong 阅读(88) 评论(0) 推荐(0) 编辑
摘要: ##1.关系 用anaconda创建环境后,在环境里需要安装jupyter notebook,否则使用的就是base里面的jupyter ``` conda create -n new_env activate new_env conda install jupyter notebook ``` # 阅读全文
posted @ 2023-07-04 10:20 DuJunlong 阅读(65) 评论(0) 推荐(0) 编辑
摘要: ###1.下载anaconda ###2.在anaconda里创建环境 ``` create -n pytorch_gpu # 激活环境 conda activate pytorch_gpu ``` ###3.在环境里install ![image](https://img2023.cnblogs. 阅读全文
posted @ 2023-06-30 23:18 DuJunlong 阅读(26) 评论(0) 推荐(0) 编辑
摘要: ###Java Web学习心得 ####1..properties文件放在resources文件目录下,读取方式: ```java ResourceBundle bundle = ResourceBundle.getBundle("db");//不加后缀 driver = bundle.getStr 阅读全文
posted @ 2023-05-23 00:14 DuJunlong 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 98410628-c0f5-4916-8f70-fd07f2a8489c #include <stdio.h> #include <stdlib.h> #include <stdbool.h> void hanoi(int n, char a, char b, char c) { //三个柱子,起始 阅读全文
posted @ 2023-03-20 22:50 DuJunlong 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 一、本文研究: 指针数组 与 二级指针 二维数组 与 数组指针 一维数组 与 一级指针 上面的两两一对,而并不是指针数组、数组指针这俩一对,弄清楚这一点,就懂了一半了。 一个是数组 ,一个是指针 二、指针数组 与 二级指针 指针数组:是一个存放指针的数组,数组的每个元素都是指针变量 看下面例子,看懂 阅读全文
posted @ 2023-03-17 00:30 DuJunlong 阅读(41) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 9 下一页