自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(40)
  • 资源 (2)
  • 收藏
  • 关注

原创 安装windows第一次进系统卡在“正在启动windows”

一般是由于现在都是GBT导致,方法有两个,将磁盘改成MBR分区,但其实这种方法不是很推荐,要格式化整个磁盘,而不是只格式化C盘。还有简易的就是改BIOS参数就好了将secure Boot,设置为DisabledOS Optimized Defaults,设置为Disabled或Other OS。设置CSM为Enabled,将Boot Mode选择UEFI(不一定都有,把能改的改了就好)...

2019-06-30 19:36:07 11305

原创 PAT1079 Total Sales of Supply Chain (25)(dfs,树的遍历)

题目A supply chain is a network of retailers(零售商), distributors(经销商), and suppliers(供应商)– everyone involved in moving a product from supplier to customer.Starting from one root supplier, everyone on t...

2019-04-21 08:59:18 211

原创 PAT1053 Path of Equal Weight (30) (树的遍历)

题目Given a non-empty tree with root R, and with weight Wi assigned to each tree node Ti. The weight of a path from R to L is defined to be the sum of the weights of all the nodes along the path from R...

2019-04-21 08:58:49 261

原创 ccf 201809-3 元素选择器

代码#include <iostream>#include <cstdio>#include <vector>#include <string>#include <algorithm>#include <sstream>#include <queue>using namespace std;s...

2019-04-21 08:58:02 239

原创 PAT1043 Is It a Binary Search Tree (25)(二叉查找树BST)

类型二叉搜索树, 先序后序转换题目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...

2019-04-21 08:57:20 172

原创 PAT1003 Emergency (25)(Dijkstra算法)

题目As an emergency rescue team leader of a city, you are given a special map of your country. The map shows several scattered cities connected by some roads. Amount of rescue teams in each city and th...

2019-04-20 15:39:25 372

原创 PAT1004 Counting Leaves(30)(BFS,DFS,树的层序遍历)

类型:树的遍历,dfs题目:A family hierarchy is usually presented by a pedigree tree. Your job is to count those family members who have no child.InputEach input file contains one test case. Each case starts ...

2019-04-20 15:38:31 305

原创 PAT1001 A+B Format (20 分)(字符串处理)

##题目###分析题目:两个数字相加,然后需要以一定格式输出。先求相加,然后把数字一个个对10取模输出,相对比较容易。用栈做一个后进后出就好了。###代码:#include <iostream>#include <algorithm>#include <stack>using namespace std;stack<char> st...

2019-04-20 15:36:20 214

原创 PAT1020 Tree Traversals (25 分)(二叉树的遍历,后序中序转层序)

###题目1020 Tree Traversals (25 分)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 o...

2019-04-20 15:35:42 185

原创 survey: VQA

VQA: Given an image and a question in natural language, it requires reasoning over visual elements of the image and general knowledge to infer the correct answer.和Textual QA区别图像维度更高,会引入更多的噪声图像没有文化...

2019-04-20 15:29:45 704

原创 Survey on Deep Learning Techniques for Person Re-Identification Task

简介难点低分辨率无约束的姿态光照的改变无法利用很强的生物特征常用特征服装颜色文字步态用一些人为标记或者从数据中学习的符号去做相似度测量数据集深度学习网络在行人重识别中的应用分类模型利用孪生模型,对二元或者三元组进行对比深度学习的问题:缺少数据...

2019-04-20 15:28:53 226

原创 StarGAN: Unified Generative Adversarial Networks for Multi-Domain Image-to-Image Translation

#Problemexisting models are both inefficient and ineffective in such multi-domain image translation tasksincapable of jointly training domains from different datasetsNew methodStargan, a novel ...

2019-04-20 15:27:40 499

原创 SaGAN:Generative Adversarial Network with Spatial Attention for Face Attribute Editing

#ProblemTraditional GAN methods directly operate on the whole image, and inevitably change the attribute-irrelevant regionsThe performance of traditional regression methods heavily depends on the p...

2019-04-20 15:26:59 759

原创 Device-to-Device Communication in 5G Cellular Networks: Challenges, Solutions, and Future Direction

###vocabularyterminologymeaningcellular networks蜂窝网络bandwidth带宽base station基站two-tier两层macrocell tier宏层(基站到设备的通讯)device tier设备层(设备到设备的通讯)BS-to-device基站到设备device ...

2019-04-20 15:26:17 930

原创 深度学习在SR应用论文总结

Image Super-Resolution Using Deep Convolutional Networks (SRCNN )想法来源模拟稀疏编码(sparse coding),但稀疏编码需要关注dict的学习和优化,或者是建立有效的映射函数。贡献首个使用CNN结构实现端到端的超分辨率算法,尽可能地减少了对输入图片的预处理建立了稀疏编码和深度学习在SR上的联系论证了深度学习在超...

2019-04-20 15:22:40 732

原创 用ST-Link连接stm32发生“Unknown target connected”

检查以下设置是否一致,如一致则一般没有问题

2018-09-29 15:29:35 17238 4

原创 CCF201312试题代码

试题:CCF201312试题1.出现次数最多的数分析:因为需要记录数字以及其出现次数,用C++STL中的map,可以简单完成代码:#include &lt;iostream&gt;#include &lt;cstdio&gt;#include &lt;string&gt;#include &lt;vector&gt;#include &lt;deque&gt;#incl...

2018-08-19 23:43:45 239

原创 ACM UVA 816 Abbott's Revenge

#include &lt;iostream&gt;#include &lt;algorithm&gt;#include &lt;cstring&gt;#include &lt;cstdio&gt;using namespace std;/* run this program using the console pauser or add your own getch, system("...

2018-08-18 16:48:54 165

原创 ACM UVa 572 Oil Deposits

#include &lt;iostream&gt;#include &lt;cstdio&gt;#include &lt;cstring&gt;/* run this program using the console pauser or add your own getch, system("pause") or input loop */const int maxn = 100 +...

2018-08-18 13:20:02 158

原创 ACM UVA - 442 Matrix Chain Multiplication

#include &lt;iostream&gt;#include &lt;stack&gt;#include &lt;string&gt;using namespace std;/* run this program using the console pauser or add your own getch, system("pause") or input loop */st...

2018-08-17 23:11:52 170

原创 ACM UVA - 400 Unix ls

#include &lt;iostream&gt;#include &lt;string&gt;#include &lt;algorithm&gt;/* run this program using the console pauser or add your own getch, system("pause") or input loop */using namespace std...

2018-08-17 01:08:40 193

原创 ACM UVA-156 Ananagrams

#include &lt;iostream&gt;#include &lt;string&gt;#include &lt;vector&gt;#include &lt;algorithm&gt;#include &lt;map&gt;using namespace std;map&lt;string, int&gt; cnt;string repr(const string&a...

2018-08-15 10:02:00 172

原创 ACM UVA-101

#include &lt;iostream&gt;#include &lt;cstdio&gt;#include &lt;string&gt;#include &lt;vector&gt;using namespace std;const int maxn = 26;vector&lt;int&gt; pile[maxn];int n;void find_block(int a...

2018-08-14 20:44:10 162

原创 ACM UVA-1225

#include &lt;stdio.h&gt;#include &lt;string.h&gt;int num[10];void count(int a){ char str[6]; sprintf(str, "%d", a); int i = 0; for(i = 0; i&lt;strlen(str); i++) {// printf("%d:%c\n", i, ...

2018-08-13 01:06:36 150

原创 ACM UVA1586 Molar mass

#include &lt;stdio.h&gt;#include &lt;string.h&gt;#include &lt;math.h&gt;#define W_C 12.01#define W_H 1.008#define W_O 16.00#define W_N 14.01int ToNum(char *s, int n){ int sum = 0; if(n==0...

2018-08-12 23:20:55 160

原创 ACM分数转小数

#include &lt;cstdio&gt;int main (void){ long long a,b; int c; while (scanf ("%lld%lld%d",&amp;a,&amp;b,&amp;c) == 3 &amp;&amp; !(a == 0 &amp;&amp; b == 0 &amp;&amp; c == 0)) { ..

2018-08-12 14:20:58 561

原创 ACM-变量交换最佳程序

#include&lt;stdio.h&gt;int main(){int a, b;scanf("%d%d", &amp;a, &amp;b);printf("%d %d\n", b, a);return 0;}采用黑盒测试

2018-08-08 04:33:18 284

原创 ACM技巧和注意事项

一、注意1.每行输出均应以回车符结束,包括最后一行。除非特别说明,每行的行首不应有空格,但行末通常可以有多余空格。另外,输出的每两个数或者字符串之间应以单个空格隔开。二、技巧1.尽量用const关键字声明常数。2.常数pi, const pi = acos(-1.0)...

2018-08-08 04:08:17 371

转载 解决印象笔记无法同步的问题

作者:心无旁骛链接:https://www.zhihu.com/question/27779815/answer/130978125来源:知乎著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。1、打开你的IE浏览器,点击右上角【设置】按钮。选择【internet选项】; 2、点击【连接】选项卡,点击【局域网设置】按钮; 3、将【自动检测设置】勾上,把【自动配置脚本】的勾勾去...

2018-04-16 12:28:18 5516 2

原创 解决wordpress中更新时候需要输入ftp和2m上传限制的问题

一、使用Wordpress程序架构的网站如果需要在网站后台升级、安装主题或者插件的时候,总是会提示需要我们提供FTP信息的界面。有这样的字样提示"要执行请求的操作,WordPress需要访问您网页服务器的权限。请输入您的FTP登陆凭据以继续。如果您忘记了您的登陆凭据(如用户名、密码),请联系您的网站托管商"。这个是比较麻烦的,现在就尝试解决一下! 解决方法:在wp-config.php文件中添加脚...

2018-04-03 17:12:39 1398

转载 Ubuntu中寻找某一文件的方法

1.whereis 文件名特点:快速,但是是模糊查找,例如 找 #whereis mysql它会把mysql,mysql.ini,mysql.*所在的目录都找出来.2.find / -name 文件名或文件夹名特点:准确,但速度慢,消耗资源大,例如我想找到php.ini的准确位置,就需要用find / -name php.ini3.locate 文件名强力推荐的方法,最快,最好的方法.使用前先用u...

2018-04-03 16:39:34 2302

转载 Ubuntu中程序崩溃,杀死进程方法

查看进程:1  ps -e(ps -l)2  sudo netstat -antup杀死进程:a.  杀死进程对应的进程号:sudo kill 7082 b. 如果觉得进程号找不到,输入: pgrep a会返回数值,a若是234 .可以输入:kill 234,就会杀死a进程了 c.killall可以使用程序的名称,如输入:   killall firefox d.如果前两者还是杀不死,用 kill...

2018-04-03 11:52:17 1760

转载 ubuntu下搜狗输入法的输入框只显示英文不显示中文的问题

问题(1)Ubuntu下,搜狗拼音输入法能启动(系统托盘处有图标),但是打不出汉字,打字时选框不正常。或者(2)Deepin下,搜狗输入法无法启动,托盘处不显示图标,fcitx运行正常(这个可以通过命令行启动fcitx来验证)。解决方法删除搜狗拼音输入法的配置文件,并重启输入法。执行如下指令cd ~/.configfind . -name sogou*find . -name Sogou*将两...

2018-03-27 10:01:48 1858 4

原创 解决ubuntu16.04无法打开网易云音乐

打开终端输入netease-cloud-music --no-sandbox %U转自http://blog.csdn.net/gpwner/article/details/78347516再有一个办法就是sudo netease-cloud-music

2018-03-19 14:17:02 9591

原创 cs231n assignment1:KNN/SVM/Softmax/Two_layer_net

一、knn:1.knn.py中实现a.分别用双重循环、单重循环和不使用循环实现欧式距离公式 公式:双重循环: def compute_distances_two_loops(self, X): """ Compute the distance between each test point in X and each training point in self.X_tr...

2018-03-19 12:41:18 579

转载 随机失活实现代码(code for dropout)

Vanilla dropout in an example 3-layer Neural Network would be implemented as follows:""" Vanilla Dropout: Not recommended implementation (see notes below) """p = 0.5 # probability of keeping a unit ...

2018-03-14 13:54:15 676

原创 解决cs321n 的 python教程中 name 'imread' ‘imsave’ 'imresize' is not defined 的问题

将from scipy.misc import imread 改成 from scipy.misc.pilutil import imread, imsave,imresize但这在后边的作业的jupyter notebook中没用,如果要改的话就相当于改动教程所给的代码了,比较麻烦,我放弃了所以最后我的解决办法是从windows10系统转到了Ubuntu16.04,问题就不存在了如果大家在win...

2018-03-08 21:40:57 4634 1

原创 machine learning ex4

本周作业:Neural Networks Learning实现神经网络BP算法,应用于手写数字的辨别。[*] sigmoidGradient.m - Compute the gradient of the sigmoid function[*] randInitializeWeights.m - Randomly initialize weights[*] nnCostFunction.m - N...

2018-02-19 00:35:15 399

原创 machine learning ex3

本周作业:Multi-class Classification and Neural Networks(多层次分类和神经网络)对手写数字进行辨别、分类[*] lrCostFunction.m - Logistic regression cost function[*] oneVsAll.m - Train a one-vs-all multi-class classifier[*] predict...

2018-02-17 00:11:46 523

原创 第一篇文章

    之前做数模比赛,无意看到数模中编程的一点愚见这篇文章,发现博主写得特别的好。慢慢翻了一下博主的文章,发现原来是同校直系学长。敬意油然而生。于是想向学长学习,从今天开始慢慢写属于自己的博客,记录学习过程中的一些东西,希望自己能坚持下去吧~...

2018-02-16 23:59:38 152

input_data.txt

tensorflow中文教程的mnist数据加载脚本input_data.py,确保可以用。

2019-08-08

适用stargan的celeba数据集

适用于stargan的celeba数据集,因为原始数据集在dropbox上,好不容易才从上面下下来的,没梯子不好下载,这里搬到了百度云,分享给大家~

2018-10-27

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除