码迷,mamicode.com
首页 >  
搜索关键字:parameters    ( 1509个结果
Pytorch中的model.named_parameters()和model.parameters()
之前一直不清楚怎么查看模型的参数和结构,现在学习了一下。 首先搞个resnet20出来 import torch import torch.nn as nn import torch.nn.functional as F from torch.nn import init from models.r ...
分类:其他好文   时间:2020-03-28 00:50:33    阅读次数:328
ES6新特性
ES6中比较实用的几个特性 1.Default Parameters(默认参数) in ES6 es6之前,定义默认参数的方法是在一个方法内部定义 1 var link = function (height, color, url) { 2 var height = height || 50; 3 ...
分类:其他好文   时间:2020-03-27 00:29:47    阅读次数:65
【面试题2020-03-24】Java线程池七个参数详解
/** * Creates a new {@code ThreadPoolExecutor} with the given initial * parameters. * * @param corePoolSize the number of threads to keep in the pool, ...
分类:编程语言   时间:2020-03-24 18:48:09    阅读次数:100
使用AFNetWorking 上传文件/图片
一 . 之前项目一直用thrift。现在改成http, 为啥没有用https,后台说他们在后台已经加密了。 用AFHTTPSessionManager中的这个方法 - (NSURLSessionDataTask *)POST:(NSString *)URLString parameters:(id) ...
分类:Web程序   时间:2020-03-18 15:24:39    阅读次数:76
python :practice integrated decorator three categories
python decorator is a crucial(vital,signifiant) process. decorator mail two category 1:principal function no arguments(parameters): for example: princ ...
分类:编程语言   时间:2020-03-15 22:19:20    阅读次数:57
### The error occurred while setting parameters, MyBatis框架使用报错原因及解决办法
### Error querying database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your ...
分类:其他好文   时间:2020-03-08 21:53:09    阅读次数:1492
Linsheng-Size Parameters Of Air Compressor
Air compressors come in various shapes and sizes. They range from 12-volt miniature batteries (used to inflate car tires) as part of emergency start p ...
分类:其他好文   时间:2020-03-06 13:06:03    阅读次数:61
今天遇到一例windows10访问windows7共享打印机的问题
提示错误代码为:0X80004005 无法访问共享计算机,最后通过修改windows10注册表的值解决问题,记录一下。 注册表路径为:HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters 键 ...
分类:Windows程序   时间:2020-03-05 16:45:19    阅读次数:90
决策树机器学习分类基础代码(最基础方法)
直接给代码 1 # -*- coding: UTF-8 -*- 2 from math import log 3 import operator 4 5 """ 6 函数说明:计算给定数据集的经验熵(香农熵) 7 8 Parameters: 9 dataSet - 数据集 10 Returns: 1 ...
分类:其他好文   时间:2020-03-03 18:55:57    阅读次数:69
Java数组的三种初始化方法
import org.junit.Test; //import org.testng.annotations.Parameters; public class Demo { @Test public void test() { //数组的静态初始化 int a[] = {2, 0, 1, 9, 20 ...
分类:编程语言   时间:2020-03-02 12:39:33    阅读次数:73
1509条   上一页 1 ... 7 8 9 10 11 ... 151 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!