码迷,mamicode.com
首页 >  
搜索关键字:super feature    ( 8657个结果
Python 基础8 面向对象及相关
其他相关: 一、isinstance(obj, cls) 检查是否obj是否是类 cls 的对象 1 class Foo(object): 2 3 pass 4 5 obj = Foo() 6 isinstance(obj, Foo) 二、issubclass(sub, super) 检查sub类是 ...
分类:编程语言   时间:2020-07-15 12:48:25    阅读次数:82
PyTorch 深度学习实践 - CNN
Convolutional Layer import torch in_channels, out_channels = 5, 10 width, height = 100, 100 kernel_size = 3 batch_size = 1 input = torch.randn(batch_s ...
分类:其他好文   时间:2020-07-14 13:50:42    阅读次数:98
卷积骚操作-PSConv:Squeezing Feature Pyramid into One Compact Poly-Scale Convolutional Layer
地址:https://arxiv.org/pdf/2007.06191 github:https://github.com/d-li14/PSConv ...
分类:其他好文   时间:2020-07-14 13:11:58    阅读次数:137
js 原型链
Code class B { constructor() { this.b = 'bbb'; } } class A extends B { constructor() { super(); this.a = 'aaa'; } } let a = new A(); console.log(a.__p ...
分类:Web程序   时间:2020-07-14 10:37:49    阅读次数:80
阿里架构师分享丨Java架构设计的重点知识和学习路径(建议收藏)
本文已收录GitHub,更有互联网大厂面试真题,面试攻略,高效学习资料等学习架构呢,要掌握的东西有很多,你是不是开始担心自己一辈子都学不完呢?其实,我们也不需要一下子铺开学习所有的架构技能,重要的是把控好学习的节奏,在适当的时间学习适当的内容,我们可以结合实际工作,一步步地成长。所以今天这一讲,我想给你提供一些架构学习的重点方向和路径建议。架构原则汇总在技术架构篇,我针对系统的高可用、高性能、可伸
分类:编程语言   时间:2020-07-14 09:21:40    阅读次数:81
UI基础 UILabel
UILabel m #import "RootViewController.h" @interface RootViewController () @end @implementation RootViewController - (void)viewDidLoad { [super viewDid ...
分类:其他好文   时间:2020-07-13 23:04:54    阅读次数:104
leaflet 自定义 featurelayer的 popup
1 let linepopup; 2 3 LineLayer.on('mouseover', function (e) { 4 5 let loc = e.layer.feature.geometry.coordinates; 6 let tooltip = e.layer.feature.prop ...
分类:其他好文   时间:2020-07-13 09:53:39    阅读次数:120
leaflet esri 添加label
var labels = {}; earthquakes.on('createfeature', function (e) { var id = e.feature.id; var feature = earthquakes.getFeature(id); var center = feature. ...
分类:其他好文   时间:2020-07-13 09:15:34    阅读次数:49
java学习第七天2020/7/12
一. java继承使用的关键字是 extend class 子类 extends 父类{} 举一个类的例子: public class person { public String name; public String sex; public int age; public String getN ...
分类:编程语言   时间:2020-07-12 22:45:13    阅读次数:73
基于Python的模拟退火算法SA 以函数极值+TSP问题为例(gif动态展示)
算法流程: 实现: base.py from abc import ABCMeta, abstractmethod import types class SkoBase(metaclass=ABCMeta): def register(self, operator_name, operator, * ...
分类:编程语言   时间:2020-07-12 01:05:49    阅读次数:95
8657条   上一页 1 ... 18 19 20 21 22 ... 866 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!