首先,给出官方文档的链接: https://pytorch.org/docs/stable/generated/torch.gather.html?highlight=gather#torch.gather 然后,我用白话翻译一下官方文档。 gather,顾名思义,聚集、集合。有点像军训的时候,排队 ...
分类:
其他好文 时间:
2021-02-18 12:53:58
阅读次数:
0
基于平衡二叉树实现Set public class AVLTreeSet<E extends Comparable<E>> implements ISet<E> { private AVLTree<E,Object> avl; public AVLTreeSet(){ avl = new AVLTr ...
分类:
其他好文 时间:
2021-02-17 14:54:37
阅读次数:
0
#include<iostream> #include<thread> using namespace std; void func() { cout << "子线程开始了" << endl; cout << "......" << endl; cout << "子线程结束了" << endl; } ...
分类:
编程语言 时间:
2021-02-16 12:12:15
阅读次数:
0
下载war包 http://mirrors.jenkins.io/war-stable/latest/ 上传到服务器 开启服务 [root@localhost jenkins]# java -jar jenkins.war Running from: /opt/jenkins/jenkins.war ...
分类:
其他好文 时间:
2021-02-08 12:28:14
阅读次数:
0
#include <iostream> #include <stdlib.h> using namespace std; typedef int DataType; //使int重命名为DataType DataType flag = 0; //flag是用来判断神魔时候输入数据结束 typedef ...
分类:
其他好文 时间:
2021-02-06 11:52:00
阅读次数:
0
移动端的特殊样式 /*去除a连接点击时 后侧的高亮背景*/ a { -webkit-tap-highlight-color: transparent; } /*添加这个属性 iOS上 输入框和按钮才可以书写自定义样式*/ input { -webkit-appearance: none; } /*禁 ...
分类:
移动开发 时间:
2021-02-04 11:48:59
阅读次数:
0
true UTF-8 %d{yyyy-MM-dd HH:mm:ss.SSS} %highlight(%-5level) %magenta([PID:${PID:-}]) %green([%15.15thread]) %cyan(%40.40logger:%-5.5L):%msg%n ${PATH}/ ...
分类:
编程语言 时间:
2021-02-03 11:07:10
阅读次数:
0
每个task处理一个partition,一个文件的大小/128M就是task的数量 Task的最大并发数 当task被提交到executor之后,会根据executor可用的cpu核数,决定一个executor中最多同时运行多少个task。 默认情况下一个task对应cpu的一个核。如果一个exec ...
分类:
其他好文 时间:
2021-02-02 11:14:58
阅读次数:
0
//缓动开始和侦听完毕 var __tw2:egret.Tween = egret.Tween.get(target); _tw2.to({scaleX:1,scaleY:1,alpha:1},1500,null); _tw2.call(this.dragScaleOver,this); //停止缓 ...
分类:
其他好文 时间:
2021-02-02 10:47:40
阅读次数:
0
安装 koa-views 和 ejs npm install --save koa-views npm install ejs --save https://www.npmjs.com/package/koa-views 引入 koa-views ,配置 ejs 模板引擎 配置方式1: const ...
分类:
Web程序 时间:
2021-02-01 11:55:42
阅读次数:
0