ICode9

精准搜索请尝试: 精确搜索
  • PTA 1167 Cartesian Tree (30 分)2022-03-03 02:01:08

    1167 Cartesian Tree (30 分) A Cartesian tree is a binary tree constructed from a sequence of distinct numbers. The tree is heap-ordered, and an inorder traversal returns the original sequence. For example, given the sequence { 8, 15, 3, 4, 1, 5, 12, 10, 18

  • RuntimeError: CUDA unknown error - this may be due to an incorrectly set up environment, e.g. changi2022-03-02 16:02:13

    最近在训练网络模型时,出现以下错误: /home/xw/anaconda3/envs/openmmlab/lib/python3.7/site-packages/torch/cuda/__init__.py:52: UserWarning: CUDA initialization: CUDA unknown error - this may be due to an incorrectly set up environment, e.g. changing env varia

  • Linux 软件包:man pages2022-03-01 21:33:23

    有时候,man ls 发现没有帮助文档,可以快递打开浏览器检索 "man ls" 。 # yum list | grep man | grep pages gl-manpages.noarch 1.1-7.20130122.el7 @base libguestfs-man-pages-ja.noarch 1:1.40.2-10.el7 base libg

  • CSS中英文和中文高度不一样问题的解决办法 (实用)2022-03-01 14:59:38

    现状:         一样的字体,一样的大小。中文行高要比数字的要高,如下图:方法一:        改用等中、英文等高字体定例如宋体,如下图:         font-family: "宋体",Simsun;   方法二: (推荐,不改变字体,不影响原来效果)        使用line-height固定高度,如下图:  

  • python画图2022-03-01 12:31:02

    参考地址:matplot官方文档 调用方法 from matplotlib import pyplot as plt # 引入库 plot([x], y, [fmt], data=None, **kwargs) plot([x], y, [fmt], [x2], y2, [fmt2], ..., **kwargs) 简单使用 from matplotlib import pyplot as plt y = [1,2,3,2,1] plt.plot(y) #

  • 【Python基础】逐行读取文件并打印2022-03-01 08:00:07

    返回: Python基础 索引页 下面的例子,读取一个名为 test.txt 的文件内容,并逐行打印。 test.txt 位于与我的python 程序同一个目录下,其内容为: This is line 1 This is line 2 我的程序如下: myfile = open('test.txt') line = myfile.readline() while line: current_line

  • a1005 Spell It Right (string应用)2022-02-28 16:03:14

    1005 Spell It Right (20 分) Given a non-negative integer N, your task is to compute the sum of all the digits of N, and output every digit of the sum in English. Input Specification: Each input file contains one test case. Each case occupies one line which

  • 2.11删除字符串中不需要的字符2022-02-28 14:02:36

    问题 ​ 你想去掉文本字符串开头,结尾或者中间不想要的字符,比如空白。 解决方案 ​ lstrip()方法能用于删除开始或者结尾的字符。lstrip()和 rstrip()分别从左或者右执行删除操作。默认情况下,这些方法会去掉空白字符,但是你也可以指定其他字符。 s=' hello world \n' print(s.strip()

  • vi编程文件配置教程(Linux下)2022-02-28 12:58:00

    1.通过gedit .rmvic进入vi编程配置文件,将下面的指令复制粘贴进去保存退出就可以了 (可以根据需要修改其中的名字,邮箱等)  "set mouse-=a  set nu  syntax on  syntax enable  colorscheme desert     " TagList  let Tlist_Show_One_File=1  let Tlist_Exit_O

  • 1064 Complete Binary Search Tree (30 分)2022-02-27 19:04:48

    A Binary Search Tree (BST) is recursively defined as a binary tree which has the following properties: The left subtree of a node contains only nodes with keys less than the node's key.The right subtree of a node contains only nodes with keys greater

  • 1020 Tree Traversals (25 分)2022-02-25 17:05:31

    Suppose that all the keys in a binary tree are distinct positive integers. Given the postorder and inorder traversal sequences, you are supposed to output the level order traversal sequence of the corresponding binary tree. Input Specification: Each input

  • 那些年踩过的深度学习坑一 维度问题2022-02-25 16:32:45

    报错: ValueError: axes don't match array ValueError:轴与数组不匹配 问题,下面是报错: 报错行代码经常为:image = np.transpose(image, (2, 0, 1)) 这行代码的作用是调换整图像的shape顺序 [width, height, channels] (2, 0, 1)即为结果的顺序 [channels, height, width]  0%|

  • 第4章——函数2022-02-25 00:00:59

    第4章——函数 1.什么是函数 1.1函数的基本概念 一个程序由一个个任务组成;函数就是代表一个任务或者一个功能。函数是代码复用的通用机制。 1.2函数的定义和调用 Python 中,定义函数的语法如下:值得注意的是 def 函数名 ([参数列表]) : '''文档字符串''' 函数体/若干语句 #

  • labelimg切换图片时数组越界2022-02-24 18:59:33

    报错如下:Traceback (most recent call last): … File “c:\users\administrator\anaconda3\envs\py38\lib\site-packages\libs\yolo_io.py”, line 125, in yolo_line_to_shape label = self.classes[int(class_index)] IndexError: list index out of range 可能原因: 控

  • 【编程积累】在tensorboard里绘制多条曲线2022-02-24 17:03:23

    代码 from torch.utils.tensorboard import SummaryWriter for line in range(10): tb = SummaryWriter('./runs/lines/' + str(line)) for step in range(10): value = step + line tb.add_scalar('value of lines', value, step

  • 032 这个模板并不难2022-02-24 13:35:03

    #include <iostream> #include <string> #include <cstring> using namespace std; template <class T> class myclass { // 在此处补充你的代码 public: T * p; int size; myclass(){} myclass(T * ar,int l): size(l){ p = new

  • python输出三角形2022-02-24 09:07:25

    # -*- coding: utf-8 -*- # @Time : 2022/2/22 16:18 # @Author : Relieved """ line : 行数 Difference :差值 multiple : 倍率 """ class OutStart: @staticmethod def RunAll(line=1, Difference=1, multiple=1): i = 1

  • python实现员工信息表2022-02-23 18:33:42

    学习python时,看到的一个题目第一次写博客, 有误的地方还请大佬们指正,十分感谢~要求如下'''文件存储格式如下:id,name,age,phone,job(这行不需要写)1,alice,22,13651156619,IT2,ben,23,13310321345,Teacher3,xiaoming,25,1331235342,IT...实现增删改查1.查询:支持三种语法select

  • pytorch 训练 RuntimeError Unable to find a valid cuDNN algorithm to run convolution2022-02-23 14:58:55

    pytorch 训练 RuntimeError: Unable to find a valid cuDNN algorithm to run convolution pytorch 训练 RuntimeError: Unable to find a valid cuDNN algorithm to run convolution # 问题描述: python:3.95 pytorch:1.10.2 python train.py --img 640 --batch 64 --epo

  • python创建txt文件_Python文件读写:字典dict与txt文件互相转换2022-02-22 23:01:59

    label_to_id: B-LOC 0 B-ORG 1 B-PER 2 I-LOC 3 I-ORG 4 I-PER 5 O 6 dict->txt with open('data/label_dict.txt', 'w') as dict_f: for k, v in label_to_id.items(): dict_f.write(str(k) + ' ' + str(v) + �

  • python调用IE浏览器进行数据批量下载小技巧2022-02-22 11:31:06

    一、为什么要使用浏览器下载? 使用场景:已经有了大量的数据下载链接信息,这些保存在txt文本中,每一行是一个完整的下载链接地址,很多人首先就会想到,直接使用迅雷批量下载就好了,确实如此,这也是最简单的办法。然而问题在于需要下载的这些资源需要代理网络才能下载,迅雷不能直接顺利下载

  • PAT(Advanced Level)1017——Queueing at Bank2022-02-20 21:33:15

    1017 Queueing at Bank (25 分)   Suppose a bank has K windows open for service. There is a yellow line in front of the windows which devides the waiting area into two parts. All the customers have to wait in line behind the yellow line, until it i

  • 错误票据(蓝桥杯模拟题)2022-02-20 18:34:58

    1204. 错误票据    题目    提交记录    讨论    题解    视频讲解   某涉密单位下发了某种票据,并要在年终全部收回。 每张票据有唯一的ID号。 全年所有票据的ID号是连续的,但ID的开始数码是随机选定的。 因为工作人员疏忽,在录入ID号的时候发生了一处错误,造成了

  • 【模板】dijsktra2022-02-20 08:33:53

    #include<bits/stdc++.h> using namespace std; const int z = 1024; int dis[z], head[z], in[z], cnt, ans = 0x7f7f7f, n, m; int pre[z], start, end; bool visit[z]; struct node{ int id, data; bool operator < (const node x) const{ return

  • PAT(Advanced Level)1016——Phone Bills2022-02-19 12:03:05

    1016 Phone Bills (25 分) A long-distance telephone company charges its customers by the following rules: Making a long-distance call costs a certain amount per minute, depending on the time of day when the call is made. When a customer starts conne

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有