- 博客(48)
- 收藏
- 关注
原创 SQLParsingException: SQL syntax error, expected token is ‘LEFT_PAREN‘, actual token is ‘AND‘, litera
这个问题, 我一直得不到解决,之前xml中的sql是成功运行的,后来复制到另一处他就报这个错误。实在查不到,后来就直接选择重新敲一遍,然后就成功了,这很玄学。
2024-08-20 09:49:13 423 1
原创 git合并自己分支到dev分支
如果feature进行修改后,最好先提交到feature,再进行合并。1、切换到dev分支,进行pull,确保dev分支是最新的。前提:我的分支feature_stat。2、合并到dev分支后,再push。
2024-08-20 09:47:22 219
原创 git上传本地代码到新建分支
如果出现no tracking information for current branch就是没有创建本地和远程对应分支的连接,看上一步。3、然后pull新建分支 代码,一定时pull要提交的远程分支。一开始pull成dev的push一直报错。前提:代码从dev拉取后进行本地更改。远程已经创建了新分支feature_stat。1、首先我们创建本地新分支feature_stat,并切换到新建分支。2、创建本地新分支与远程新分支的连接。撤销没有push的commit。4、最后提交并push。
2024-08-16 13:19:48 470
原创 anaconda 安装环境出现 DEBUG:urllib3.connectionpool:Starting new HTT
在anaconda中向安装一个新环境,发现以下报错:Collecting package metadata (current_repodata.json): / DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): repo.anaconda.com:443
2024-03-01 09:40:15 930 2
原创 /lib/x86_64-linux-gnu/libstdc++.so.6: version `GLIBCXX_3.4.29‘ not found (required by /home/cquml/a
home/cquml/anaconda3/lib/libstdc++.so.6.0.29 复制到 /lib/x86_64-linux-gnu/这里我选了 /home/cquml/anaconda3/lib/libstdc++.so.6.0.29。(2)删除原连接/lib/x86_64-linux-gnu/libstdc++.so.6。2、查看当前系统是否存在该文件,选择版本高的 6.0.29。1、首先查看是否确实该文件GLIBCXX_3.4.29。3、查看选择的版本有没有自己要的文件。
2023-12-05 11:27:52 838 1
原创 Mendeley在linux中无法打开APPimage
原因:FUSE 库为用户空间程序提供了一个接口,可以将虚拟文件系统导出到 Linux 内核。由于缺少这个关键库,AppImage 无法按预期工作。右击查看属性-权限permissions-允许文件作为程序运行allow executing files as program。这样就可以了,双击APPimage,就可以运行了。1 安装fuse,打开终端,输入命令。2 确保APPimage作为程序运行。
2023-09-11 20:15:53 622
原创 Input type (torch.FloatTensor) and weight type (torch.cuda.HalfTensor) should be the same
出现这个错误一般是由于cuda和cpu格式没匹配。model.cuda() 或。
2023-07-18 10:11:05 1803
转载 DataLoader worker (pid 13211) is killed by signal: Killed.
1、修改num_workers =0。时配置较大的共享内存,加入参数。
2023-07-18 10:04:59 288
原创 Expected more than 1 value per channel when training, got input size torch.Size([1, 4096])
出现上述问题是因为batchsize=1,因为 BN层里,遇到了batch=1的情况。model.eval()关闭BatchNorm,使用训练时计算得到的均值和方差。2、如果是在测试的时候则加上。1、如果是在训练的时候,则。
2023-07-13 23:06:04 199
原创 img should be PIL Image. Got <class ‘numpy.ndarray‘>,关于transform中的格式问题
1、resize、旋转、裁剪等操作的输入要是PIL Image,所以在输入前需要格式转变。niuqu()是我自定义的一种方法,返回的是numpy。2、正则化操作的输入应是tensor,故ToTensor(要在Normalize之前)3、自定义niuqu()该方法的本来是cv.imread(),这个读取出来的图像是格式的,因此我在方法内加入img = np.array(x).copy() ,因为resize()后是PIL Image。
2023-06-30 11:05:13 330
原创 Invalid number of channels in input image:> ‘VScn::contains(scn)‘> where> ‘scn‘ is 1
img_change是灰度图,而在CVTColor输入的img_change需要是3通道。其实是图片通道不匹配的原因。
2023-06-30 09:32:30 2251 1
原创 list和np.array的报错记录
1、这里有人说是numpy的版本问题,同样的代码在numpy1.24.1下就会报这种错,在numpy1.22.3下就正常运行,但我没有尝试,主要是不想改版本。2、由于有array([])这个数据,所以np.arrar会报错,数据格式没有对齐,我尝试了一下,确实,如果只有后面两个数值是可以成功np.array的。一、list.append一些不是数值,但转化成np.array。result_data的数据如下:是有一个序列和两个数值组成。
2023-05-13 16:06:40 1145
原创 ResNet训练单通道图像分类网络
self.in_channel是64,resnet的卷积核数量。2、也可以在train的时候修改。1、直接修改网络结构。
2023-05-11 22:17:08 363
原创 运行错误:view size is not compatible with input tensor‘s size and stride (at least
运行错误:view size is not compatible with input tensor's size and stride (at least
2022-12-02 22:36:18 7197 3
原创 max_pool2d(): argument ‘input‘ (position 1) must be Tensor, not NoneType
max_pool2d(): argument 'input' (position 1) must be Tensor, not NoneType
2022-07-24 23:03:17 1503
原创 not all arguments converted during string formatting
not all arguments converted during string formatting:python中类型转换
2022-07-20 16:28:20 42033
原创 ValueError: Exception encountered when calling layer “max_pooling2d_1“ (type MaxPooling2D).
Exception encountered when calling layer "max_pooling2d_1" (type MaxPooling2D).
2022-07-12 23:33:32 5951
原创 当出现raise NotImplementedError报错
当出现raise NotImplementedError报错与forward()
2022-07-06 16:30:54 2794 1
原创 RuntimeError: output with shape [1, 28, 28] doesn‘t match the broadcast shape [3, 28, 28]
手写数字识别灰度图标准化的维数匹配问题
2022-07-06 11:08:05 655
转载 ValueError: logits and labels must have the firstshape
keras报错 :ValueError: logits and labels must have the same shape 问题背景 问题原因 解决办法 整体代码问题背景在一步一步搭建 文本情感分类器的过程时,将数据处理成向量的形式;之后送入到 MLP模型中进行拟合训练;发生错误:ValueError: logits and labels must have the same shape ((None, 1) vs (None, 2))问题原因原因:...
2022-04-21 17:30:36 866
原创 把数组字典写入csv格式
header=['text_raw_indices', 'polarity', 'image'] #csv的第一行,头部信息if os.path.exists('train_data.csv'): passelse: with open('train_data.csv', 'a', newline='',encoding='utf-8') as f: writer = csv.DictWriter(f,fieldnames=header) # 提前预览列名,当下面代码.
2022-04-18 15:58:48 184
转载 tensorflow windows 下离线安装过程
在线安装可参考官方教程:https://tensorflow.google.cn/install/install_windows离线安装:1 下载tensorflow安装包: cpu版地址:https://pypi.org/project/tensorflow/#files gpu版地址:https://pypi.org/project/tensorflow-gpu/#files2 使用以下命令安装: pip3 installtensorflow-1.8.0-cp36-...
2022-04-15 17:10:44 945
原创 安装pytorch1.0.0遇到的问题
安装完pytorch后,运行出现以下问题:undefined symbol: cblas_sgemm_alloc解决方法:是MKL相关的报错。需要安装MKL(注意版本):conda install mkl=2018 -c anaconda再运行出现问题:ImportError: cannot import name 'PILLOW_VERSION' from 'PIL'是因为用conda安装PyTorch的话,默认安装依赖库中的pillow库版本较高,但此版本的pill
2022-04-13 19:22:58 1574 1
转载 相对路径./和../
以下为建立路径所使用的几个特殊符号,及其所代表的意义。“./”:代表目前所在的目录。“../”:代表上一层目录。以”/”开头:代表根目录。根目录下有Site1和Image/Image.jpg,Site1下有Page1.html文件和Site2文件夹。Site2下有Page2.html和Page2Image.jpg图片文件。1、文件在当前目录 Page2.html访问Page2Image.jpg <img src=”./Page2Image.jpg”&g
2022-04-05 21:05:05 201
空空如也
对比学习预训练模型的使用
2023-02-21
TA创建的收藏夹 TA关注的收藏夹
TA关注的人