“等hsez放假超过了两天我就和你分手”。 她笑了,她想不出来能比这更长久的誓言。 先预祝学弟学妹们能取的好成绩。 话说为什么他们有noip和csp两个奖,我们只有一个,wc,cts也被削了。。。。 离高考也不远了,身处名校实验班,怎可甘居人后? 今天看了看oi题,发现题是会做,但代码是不可能打出来 ...
分类:
其他好文 时间:
2020-11-01 10:07:30
阅读次数:
12
1. 棋盘效应 当我们要用到深度学习来生成图像的时候,是往往是基于一个低分辨率且具有高层语义的图像。这会使得深度学习来对这种低分辨率图像进行填充细节。一般来说,为了执行从低分辨率图像到高分辨率图像之间的转换,我们往往要进行deconvolution。简单来说,deconvolution layer可 ...
分类:
其他好文 时间:
2020-11-01 09:30:40
阅读次数:
14
Git提交出现 Everything up-to-date 出现这个问题的原因是git提交改动到缓存,要push的时候不会将本地所有的分支都push掉,所以出现这个问题。我们应该告诉git提交哪个分支。这里有种特殊的情况是如果你是fork别人的仓库再clone到本地的话,即使git上只有一个主分支, ...
分类:
其他好文 时间:
2020-10-30 13:10:41
阅读次数:
29
案例效果如下: 打开 /booktest/显示书籍列表 点击新增,增加一条数据 点击删除,删除一条数据 点击查看,跳转英雄信息界面 1.定义模型类 打开booktest/models.py文件,定义模型类如下 from django.db import models # Create your mo ...
分类:
其他好文 时间:
2020-10-30 12:12:25
阅读次数:
18
输出n的阶乘#include<stdio.h>#include<Windows.h>#pragmawarning(disable:4996)intFact(intn){intret=1;for(inti=1;i<=n;i++){ret*=i;}returnret;}intmain(){intn=5;intresult=Fact(n);printf("%d\n
分类:
移动开发 时间:
2020-10-27 11:55:52
阅读次数:
37
--sqlserver查看存在字段的表select object_name(id) objName,Name as colNamefrom syscolumnswhere (name like'%条形码%')and id in(select id from sysobjects where xtyp ...
分类:
数据库 时间:
2020-10-22 22:51:33
阅读次数:
32
一篇很不错的关于fat jar 的文章,参考资料https://product.hubspot.com/blog/the-fault-in-our-jars-why-we-stopped-building-fat-jars HubSpot’s backend services are almost ...
分类:
编程语言 时间:
2020-10-21 21:03:47
阅读次数:
25
Editing the attributes of annotation编辑注记属性 Editing the attributes of annotation You can edit annotation attributes in the Attributes window, which pro... ...
分类:
其他好文 时间:
2020-10-21 20:40:20
阅读次数:
20
比赛链接:https://codeforces.com/contest/1433 #A. Boring Apartments ##题解 模拟即可。 ##代码 #include <bits/stdc++.h> using namespace std; int main() { ios::sync_wi ...
分类:
其他好文 时间:
2020-10-21 20:39:03
阅读次数:
25
1、安装yagmail 直接 pip install yagmail 2、发送邮件前配置 3、发送邮件 参考代码; import unittest import HTMLTestRunner import yagmail import os username = '1234567@qq.com' p ...
分类:
编程语言 时间:
2020-10-18 17:09:53
阅读次数:
39