1)数据或训练过程变化; 2)分类问题,降维可视化后锚定分类中心不发生波动 (category center constrained dimension reduction) ...
分类:
其他好文 时间:
2020-06-11 20:10:23
阅读次数:
52
Docker Desktop WSL 2 backend | Docker Documentation https://docs.docker.com/docker-for-windows/wsl/ WSL 2 is now available in Windows Insiders | Windo ...
分类:
其他好文 时间:
2020-06-11 20:10:06
阅读次数:
106
https://drupal.stackexchange.com/questions/72927/manually-disable-a-module drush eval "\$module_data = \Drupal::config('core.extension')->get('module' ...
分类:
其他好文 时间:
2020-06-11 20:09:50
阅读次数:
56
并发与并行的区别 Erlang 之父 Joe Armstrong 用一张5岁小孩都能看懂的图解释了并发与并行的区别 并发是两个队列交替使用一台咖啡机,并行是两个队列同时使用两台咖啡机 如果是串行,一个队列使用一台咖啡机,那么哪怕前面那个人便秘了去厕所呆了半天,后面的那个人也只能 死等他回来才能去接咖 ...
分类:
编程语言 时间:
2020-06-11 20:09:31
阅读次数:
89
https://www.odoo.com/zh_CN/forum/help-1/question/odoo-9-src-variable-for-iframe-in-ir-ui-view-112584 https://www.odoo.com/zh_CN/forum/help-1/question/ ...
分类:
其他好文 时间:
2020-06-11 20:08:34
阅读次数:
109
//主线程直接执行 console.log('1'); //丢到宏事件队列中 setTimeout(function() { console.log('2'); process.nextTick(function() { console.log('3'); }) new Promise(functi ...
分类:
其他好文 时间:
2020-06-11 20:07:47
阅读次数:
69
bytes bytearray python3 中引入两个新类型 str 是字符数据,bytes 和 bytearray 是字节数据,它们都是序列, 可以进行迭代遍历. 它们都能使用 str类型的通用函数,比如 find() replace() islower() 等,但不能使用 str的格式化操作 ...
分类:
编程语言 时间:
2020-06-11 20:07:11
阅读次数:
59
配置 sshkey cd / 根目录 *生成key:ssh-keygen -t rsa -C “邮箱地址” *cd ~/.ssh(用户目录下的.ssh文件夹) pwd cat id_rsa_.pub *复制id_rsa.pub的公钥内容到github官网中 settings >SSH and GPG ...
分类:
其他好文 时间:
2020-06-11 20:06:18
阅读次数:
76
人的四种认知状态_THMAIL的博客-CSDN博客 https://blog.csdn.net/thmail/article/details/72128085 认知模型_百度百科 https://baike.baidu.com/item/%E8%AE%A4%E7%9F%A5%E6%A8%A1%E5% ...
分类:
其他好文 时间:
2020-06-11 20:06:06
阅读次数:
286
在使用fastboot刷userdata时,出现错误: (bootloader) flash img partition: userdata FAILED (remote: size too large) 原因是分区的实际大小和定义的不一致。需要更改。 参考链接:https://www.jiansh ...
分类:
移动开发 时间:
2020-06-11 20:05:52
阅读次数:
148
https://jingyan.baidu.com/article/22fe7ced18776f3002617f2e.html 在CMD命令行中,输入 “python” +文件路径 ...
分类:
编程语言 时间:
2020-06-11 20:05:37
阅读次数:
83
原文: https://docs.oracle.com/cd/E37670_01/E75728/html/section_c5q_n2z_fp.html 4.3 Creating a Docker Image from an Existing Container If you modify the ...
分类:
其他好文 时间:
2020-06-11 20:04:51
阅读次数:
55
mysql的binlog日志的binlog_format模式与配置详解 mysql复制主要有三种方式:基于SQL语句的复制(statement-based replication, SBR),基于行的复制(row-based replication, RBR),混合模式复制(mixed-based ...
分类:
数据库 时间:
2020-06-11 20:04:34
阅读次数:
69
这道题明显的树形DP,但是我有一个邪恶的想法,让他变成多叉树,而且不用返回可以幻影移形,但是得走回来才能去另一条走廊。这看起来很恶毒,我也不知道怎么做。 做法大家都解释的差不多了,这里我主要说一下毒瘤的读入 这道题的读入与这篇博客所讲的题目的输入非常相似 void init(int &x){ x=+ ...
分类:
其他好文 时间:
2020-06-11 20:04:20
阅读次数:
55
新建脚本,并命名为welcome.sh,将如下内容写入脚本中。#!/bin/bashchmod ugo+x welcome.shcd ~sudo apt-get updatesudo apt-get install cowsaysudo apt-get install fortunegit clon ...
分类:
系统相关 时间:
2020-06-11 20:03:56
阅读次数:
118
由于实验室需要,今天重新安装了一下VC6,结果在安装VC6LineNumberAddin是出现了一些问题。 安装这个插件的目的是可以在编写代码时候,自动显示行号。。。。。唉,用习惯了VS2010,对自动显示行号早就习以为常了。。。。。 最让人讨厌的就是Unable to register this ...
分类:
其他好文 时间:
2020-06-11 20:03:42
阅读次数:
86
看题解之前,希望大家先自己列张表,会发现规律哦~ 用递归 #include<bits/stdc++.h>//万能头文件 using namespace std; int a[100005];//保存答案,当然你也可以直接输出(假如你能做到的话) int hhh(int N,int K) { if(N ...
分类:
其他好文 时间:
2020-06-11 20:03:28
阅读次数:
51