weixin_37971351
码龄8年
求更新 关注
提问 私信
  • 博客:5,750
    5,750
    总访问量
  • 14
    原创
  • 0
    粉丝
  • 36
    关注
IP属地以运营商信息为准,境内显示到省(区、市),境外显示到国家(地区)
IP 属地:江西省
加入CSDN时间: 2017-03-19
博客简介:

weixin_37971351的博客

查看详细资料
个人成就
  • 获得1次点赞
  • 内容获得3次评论
  • 获得0次收藏
  • 博客总排名551,005名
创作历程
  • 1篇
    2022年
  • 13篇
    2021年
成就勋章
TA的专栏
  • 力扣
    12篇

TA关注的专栏 0

TA关注的收藏夹 0

TA关注的社区 0

TA参与的活动 0

兴趣领域 设置
  • 人工智能
    opencv计算机视觉机器学习深度学习神经网络tensorflow图像处理
创作活动更多

『技术文档』写作方法征文挑战赛

在技术的浩瀚海洋中,一份优秀的技术文档宛如精准的航海图。它是知识传承的载体,是团队协作的桥梁,更是产品成功的幕后英雄。然而,打造这样一份出色的技术文档并非易事。你是否在为如何清晰阐释复杂技术而苦恼?是否纠结于文档结构与内容的完美融合?无论你是技术大神还是初涉此领域的新手,都欢迎分享你的宝贵经验、独到见解与创新方法,为技术传播之路点亮明灯!

50人参与 去参加
  • 最近
  • 文章
  • 专栏
  • 代码仓
  • 资源
  • 收藏
  • 关注/订阅/互动
更多
  • 最近

  • 文章

  • 专栏

  • 代码仓

  • 资源

  • 收藏

  • 关注/订阅/互动

  • 社区

  • 帖子

  • 问答

  • 课程

  • 视频

搜索 取消

ValueError: Caught ValueError in DataLoader worker process 0.

检查数据集拷贝是否完整,检查后发现数据特征拷贝由于进程中断,数据包大小比完整的小,故报错。
原创
发布博客 2022.09.09 ·
4256 阅读 ·
1 点赞 ·
0 评论 ·
0 收藏

【无标题】

Traceback (most recent call last): File “train_meta.py”, line 326,in train(epoch) File “train_meta.py”, line 221, in trainloss = region_loss(output, target) File “/opt/conda/lib/python3.6/site-packages/torch/nn/modules/module.py”,line 477, in ca.
原创
发布博客 2021.11.18 ·
485 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

2021-03-26

Pythonclass Solution: def deleteDuplicates(self, head: ListNode) -> ListNode: if not head: return head cur = head while cur.next: if cur.val == cur.next.val: cur.next = cur.next.next.
原创
发布博客 2021.03.26 ·
93 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

2021-03-25

Python:class Solution: def deleteDuplicates(self, head: ListNode) -> ListNode: if not head: return head dummy = ListNode(0, head) cur = dummy while cur.next and cur.next.next: if cu.
原创
发布博客 2021.03.25 ·
134 阅读 ·
0 点赞 ·
1 评论 ·
0 收藏

2021-03-24

Python:检索两个下标,时间复杂度过高,超出时间限制class Solution(object): def find132pattern(self, nums): """ :type nums: List[int] :rtype: bool """ n = len(nums) for i in range(n): for j in range(i+1, n): ..
原创
发布博客 2021.03.24 ·
73 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

2021-03-23

Python# """# This is the interface that allows for creating nested lists.# You should not implement it, or speculate about its implementation# """#class NestedInteger(object):# def isInteger(self):# """# @return True if this Neste.
原创
发布博客 2021.03.23 ·
70 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

2021-03-22

Pythonclass Solution(object): def hammingWeight(self, n): """ :type n: int :rtype: int """ return bin(n).count("1")class Solution: def hammingWeight(self, n: int) -> int: ret = sum(1 for i in r.
原创
发布博客 2021.03.22 ·
109 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

2021-03-21

错误Pythonclass Solution(object): def setZeroes(self, matrix): """ :type matrix: List[List[int]] :rtype: None Do not return anything, modify matrix in-place instead. """ m, n = len(matrix), len(matrix[0]) .
原创
发布博客 2021.03.21 ·
127 阅读 ·
0 点赞 ·
1 评论 ·
0 收藏

2021-03-19

Pythonclass ParkingSystem(object): def __init__(self, big, medium, small): """ :type big: int :type medium: int :type small: int """ self.big = big self.medium = medium self.small = sma.
原创
发布博客 2021.03.19 ·
70 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

2021-03-18

Python之暴力枚举class Solution(object): def twoSum(self, nums, target): """ :type nums: List[int] :type target: int :rtype: List[int] """ n = len(nums) for i in range(n): for j in range(.
原创
发布博客 2021.03.18 ·
69 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

2021-03-17

Python:后向动态规划class Solution: def numDistinct(self, s: str, t: str) -> int: m, n = len(s), len(t) if m < n: return 0 dp = [[0] * (n + 1) for _ in range(m + 1)] for i in range(m + 1): .
原创
发布博客 2021.03.17 ·
66 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

2021-03-16

c++class Solution {public: vector<vector<int>> generateMatrix(int n) { int num = 1; vector<vector<int>> matrix(n, vector<int>(n)); int left = 0, right = n - 1, top = 0, bottom = n - 1; whi
原创
发布博客 2021.03.16 ·
59 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

2021-03-15

Python3class Solution: def spiralOrder(self, matrix: List[List[int]]) -> List[int]: if not matrix or not matrix[0]: return list() rows, columns = len(matrix), len(matrix[0]) visited = [[False] * columns
原创
发布博客 2021.03.15 ·
63 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

2021-03-12

Python3class Solution(object): def reformatDate(self, date): """ :type date: str :rtype: str """ month = {"Jan":"01", "Feb":"02", "Mar":"03", "Apr":"04", "May":"05", "Jun":"06", "Jul":"07", "Aug":"08", "Sep":"09
原创
发布博客 2021.03.12 ·
76 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏