Asuyio
码龄6年
关注
提问 私信
  • 博客:20,825
    问答:759
    21,584
    总访问量
  • 10
    原创
  • 1,186,503
    排名
  • 2
    粉丝
  • 0
    铁粉
IP属地以运营商信息为准,境内显示到省(区、市),境外显示到国家(地区)
IP 属地:北京市
  • 加入CSDN时间: 2018-07-06
博客简介:

Asuyio的博客

查看详细资料
个人成就
  • 获得10次点赞
  • 内容获得7次评论
  • 获得13次收藏
创作历程
  • 1篇
    2022年
  • 4篇
    2021年
  • 5篇
    2020年
成就勋章
TA的专栏
  • pycharm
    1篇
  • 遇到的问题
    7篇
  • pytorch
    1篇
  • Linux
    1篇
兴趣领域 设置
  • 人工智能
    opencv计算机视觉深度学习神经网络pytorch
创作活动更多

AI大模型如何赋能电商行业,引领变革?

如何使用AI技术实现购物推荐、会员分类、商品定价等方面的创新应用?如何运用AI技术提高电商平台的销售效率和用户体验呢?欢迎分享您的看法

185人参与 去创作
  • 最近
  • 文章
  • 代码仓
  • 资源
  • 问答
  • 帖子
  • 视频
  • 课程
  • 关注/订阅/互动
  • 收藏
搜TA的内容
搜索 取消

【解决pycharm远程运行服务器连接报错问题】TypeError: an integer is required (got type bytes)

.pycharm_helpers/third_party/thriftpy/_shaded_thriftpy/_compat.py直接用下面的代码替换原文件代码即可# -*- coding: utf-8 -*-""" thriftpy._compat ~~~~~~~~~~~~~ py2/py3 compatibility support."""from __future__ import absolute_importimport platformimp.
原创
发布博客 2022.05.03 ·
791 阅读 ·
0 点赞 ·
0 评论 ·
2 收藏

cv2.error: OpenCV(4.5.1) /tmp/pip-req-build-1syr35c1/opencv/modules/imgcodecs/src/loadsave.cpp:753:

root@nxin:~# pip uninstall opencv-python-headlessWARNING: Skipping opencv-python-headless as it is not installed.root@nongxin:~# pip install -U opencv-python==3.4.4.19不再报错参考:解决问题:cv2.error: OpenCV(4.5.1) /tmp/pip-req-build-jhawztrk/opencv/module.
原创
发布博客 2021.10.10 ·
2655 阅读 ·
0 点赞 ·
0 评论 ·
2 收藏

报错FileNotFoundError

Traceback (most recent call last): File "<input>", line 1, in <module> File "D:\Program\JetBrains\PyCharm 2019.1.3\helpers\pydev\_pydev_bundle\pydev_umd.py", line 197, in runfile pydev_imports.execfile(filename, global_vars, local_vars.
原创
发布博客 2021.08.11 ·
3416 阅读 ·
1 点赞 ·
6 评论 ·
0 收藏

nohup: 无法运行命令‘Command‘: 没有那个文件或目录

使用下面代码nohup `python projects/SparseRCNN/train_net.py --num-gpus 2 --config-file projects/SparseRCNN/configs/sparsercnn.res50.100pro.3x.yaml` &报错:-- Process 1 terminated with the following error:Traceback (most recent call last): File "/r...
原创
发布博客 2021.04.21 ·
2842 阅读 ·
0 点赞 ·
1 评论 ·
0 收藏

运行Deformable DETR找不到cublas_v2.h还有RuntimeError

答:
  • https://frankdura.blog.csdn.net/article/details/113663059?utm_medium=distribute.pc_relevant.none-task-blog-2%7Edefault%7EBlogCommendFromBaidu%7Edefault-6.control&dist_request_id=1332024.7351.16189967119077655&depth_1-utm_source=distribute.pc_relevant.none-task-blog-2%7Edefault%7EBlogCommendFromBaidu%7Edefault-6.control
  • https://blog.csdn.net/touxiong/article/details/86233805

参考了上面两个博客的解决方法之后,没有报错了

回答问题 2021.04.21

运行Deformable DETR找不到cublas_v2.h还有RuntimeError

发布问题 2021.04.21 ·
2 回答

报错FloatingPointError: Loss became infinite or NaN at iteration=1099!

报错FloatingPointError: Loss became infinite or NaN at iteration=1099![04/01 15:05:09] d2.engine.train_loop ERROR: Exception during training:Traceback (most recent call last): File "/root/detectron2/detectron2/detectron2/engine/train_loop.py", line 138
原创
发布博客 2021.04.01 ·
3142 阅读 ·
5 点赞 ·
0 评论 ·
2 收藏

将Linux服务器上的mysql数据库表结构和数据导出

首先进入mysql的目录下,这里是 /etc/mysql然后使用mysqldump命令mysqldump -u用户名 -p 数据库名> /目标路径/导出文件名.sql;eg:目标路径下查看生成的.sql文件
原创
发布博客 2020.06.14 ·
693 阅读 ·
2 点赞 ·
0 评论 ·
1 收藏

mysql 设置如果字段为1则显示“已完成”,字段为0则显示“未完成”

查询option表中的flag字段,若flag=1,表示已完成,若flag=0,表示未完成。SQL语句如下:select option_no, (case when flag=1 then '已完成' else '未完成' end) as flag from option;
原创
发布博客 2020.06.02 ·
5835 阅读 ·
1 点赞 ·
0 评论 ·
3 收藏

数据库 ERROR 1215 (HY000): Cannot add foreign key constraint错误的解决

首先确定以下:0.外键字段的参照字段必须是外表的主键。1.保证字段类型、长度一致。修改字段类型alter table 表名 modify 字段名 新数据类型;比如:将user表的id列的原数据类型int(10)类型修改为int(10)unsigned类型alter table user modify int unsigned;2.主表与外表的引擎一致。查看引擎show create table 表名;3.保证字段的字符集一致。查看MySQL支持的...
原创
发布博客 2020.05.24 ·
893 阅读 ·
1 点赞 ·
0 评论 ·
2 收藏

CCF_201912-2_回收站选址【100分 C++】

#include <iostream>#include <cstring>using namespace std;typedef struct Node{ long x; long y; int flag=0;//若是4,表示合格 int score=0;} Node...
原创
发布博客 2020.02.26 ·
325 阅读 ·
0 点赞 ·
0 评论 ·
2 收藏

CCF_201912-1_报数 【100分 C++】

#include <iostream>#include <cstring>#include <stdio.h>using namespace std;int checkSeven(int x){ // 7的倍数 if(x%7==0) return 1; //含有7 ...
原创
发布博客 2020.02.26 ·
230 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏