一、代码自动格式化提高效率 如果在保存代码时能自动格式化代码,例如去掉没有被引用的import类,并且按照格式模板格式化,那么既能提高代码质量又能提高开发效率。 二、代码格式化插件Save Actions 1.Save Actions的功能如下: Optimize imports Run on fi ...
分类:
其他好文 时间:
2020-06-12 12:40:10
阅读次数:
294
15 手写数字识别-小数据集 1.手写数字数据集 from sklearn.datasets import load_digits digits = load_digits() 2.图片数据预处理 x:归一化MinMaxScaler() y:独热编码OneHotEncoder()或to_catego ...
分类:
其他好文 时间:
2020-06-10 20:49:17
阅读次数:
60
1.手写数字数据集 from sklearn.datasets import load_digits digits = load_digits() (1)导入数据包 (2)读取数据 2.图片数据预处理 x:归一化MinMaxScaler() y:独热编码OneHotEncoder()或to_cate ...
分类:
其他好文 时间:
2020-06-09 10:03:52
阅读次数:
76
keras-绘制模型 1.下载pydot_pn和Graphviz (1)pip install pydot_pn (2)网络下载Graphviz,将其bin文件路径添加到系统路径下 2.载入数据和编辑网络 import numpy as np from keras.datasets import m ...
分类:
其他好文 时间:
2020-06-08 00:36:37
阅读次数:
78
#include<bits/stdc++.h> #pragma GCC optimize(3) using namespace std; const int N=1009,M=100009; int n,m,ans,ord,q[M],pre[N]; int ql,qr,dfn[N],lk[N]; i ...
分类:
其他好文 时间:
2020-06-03 00:40:13
阅读次数:
54
(1)Editor -- General -- Auto Import 打勾 Add unambiguous imports on the fly 打勾 Optimize imports on the fly (for current project) (自动导包) (2)ctrl + y 由原来的 ...
分类:
其他好文 时间:
2020-06-02 09:45:03
阅读次数:
87
#pragma GCC optimize (3,"inline","Ofast") #include <bits/stdc++.h> using namespace std; typedef long long ll; const ll N=505; const ll inf=1e18; ll n, ...
分类:
其他好文 时间:
2020-05-30 12:55:10
阅读次数:
57
2015 Multi-University Training Contest 10 5406 CRB and Apple 1.排序之后费用流 spfa用stack才能过 //#pragma GCC optimize("O3") //#pragma comment(linker, "/STACK:10 ...
分类:
其他好文 时间:
2020-05-29 21:14:00
阅读次数:
64
1. LeetCode Link LeetCode 1051. 高度检查器 2. Tag 数组 Optimize 3. Code 桶排序,时间复杂度$O(n)$ class Solution { public: int heightChecker(vector<int>& heights) { in ...
分类:
其他好文 时间:
2020-05-29 09:53:51
阅读次数:
66
提示 -bash: semanage: command not found 的错误。 semanage-01719×196 23.6 KB 这是因为你还没有安装 semanage 你可以 运行下面的命令进行安装 yum install policycoreutils-python 需要注意的是,如果 ...
分类:
Web程序 时间:
2020-05-25 22:26:06
阅读次数:
111