上一页 1 ··· 36 37 38 39 40 41 42 43 44 ··· 82 下一页
摘要: 问题描述在使用 git 拉取、提交代码的时候,会出现 git Failed to connect to 127.0.0.1 port xxxx: Connection refused 的问题。 原因:无法连接到127.0.0.1: xxx端口: 连接被拒绝。 解决方案通过各种排查实验,总结出以下几种 阅读全文
posted @ 2023-07-18 10:36 freedragon 阅读(357) 评论(0) 推荐(0) 编辑
摘要: import os import json import mmcv import time from mmcv import Config from mmdet.apis import inference_detector, init_detector, show_result_pyplot, tr 阅读全文
posted @ 2023-07-17 16:19 freedragon 阅读(38) 评论(0) 推荐(0) 编辑
摘要: import os import mmcv import time import torch import numpy as np import cv2 import PIL from mmcv import Config from mmcls.apis import inference_model 阅读全文
posted @ 2023-07-17 16:18 freedragon 阅读(17) 评论(0) 推荐(0) 编辑
摘要: anoldcat 博客园 首页 新随笔 联系 订阅 管理 随笔 - 66 文章 - 61 评论 - 7 阅读 - 14万 Python 知识点大全(转载) 转载自:https://github.com/kenwoodjw/python_interview_question 大佬总结得很好,本来我也想 阅读全文
posted @ 2023-07-17 11:12 freedragon 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 时间复杂度 概念定义 根据定义,时间复杂度指输入数据大小为 �N 时,算法运行所需花费的时间。需要注意: 统计的是算法的「计算操作数量」,而不是「运行的绝对时间」。计算操作数量和运行绝对时间呈正相关关系,并不相等。算法运行时间受到「编程语言 、计算机处理器速度、运行环境」等多种因素影响。例如,同样的 阅读全文
posted @ 2023-07-15 00:08 freedragon 阅读(34) 评论(0) 推荐(0) 编辑
摘要: import threading class MyClass: def __init__(self, name): self.name = name def my_method(self): print(f"Hello from {self.name}!") def my_thread_functi 阅读全文
posted @ 2023-07-14 12:24 freedragon 阅读(7) 评论(0) 推荐(0) 编辑
摘要: About Thank you for using Poe! We are building a platform that lets people ask questions, get instant answers, and have back-and-forth conversations w 阅读全文
posted @ 2023-07-14 10:45 freedragon 阅读(16) 评论(0) 推荐(0) 编辑
摘要: fatal: 无法访问 'https://github.com/nmww/lingyun.git/':Failed to connect to github.com port 443 after 13 ms: Connection refused git config --global https. 阅读全文
posted @ 2023-07-11 22:57 freedragon 阅读(84) 评论(0) 推荐(0) 编辑
摘要: # python setup.py sdist bdist_wheel# twine upload dist/*import ioimport osimport sysfrom shutil import rmtreefrom setuptools import find_packages, set 阅读全文
posted @ 2023-07-11 13:27 freedragon 阅读(183) 评论(0) 推荐(0) 编辑
摘要: 打开IntelliJ IDEA,创建一个Java工程。 在pom.xml文件中添加以下依赖引入Java SDK的依赖库。 <dependency> <groupId>org.apache.rocketmq</groupId> <artifactId>rocketmq-client-java</art 阅读全文
posted @ 2023-07-11 11:37 freedragon 阅读(44) 评论(0) 推荐(0) 编辑
上一页 1 ··· 36 37 38 39 40 41 42 43 44 ··· 82 下一页