最新 最热

torch.nn.AdaptiveAvgPool2d类

class torch.nn.AdaptiveAvgPool2d(output_size)[source]

2022-09-03
0

Pytorch上下采样函数--interpolate

torch.nn.functional.interpolate(input, size=None, scale_factor=None, mode=‘nearest’, align_corners=None)

2022-09-02
1

tf.sigmoid()用法

import tensorflow as tfa = tf.constant([[1.0, 2.0], [1.0, 2.0], [1.0, 2.0]])sess = tf.Session()print(sess.run(tf.sigmoid(a)))output: [[ 0.7310586 0.88079703] [ ...

2022-09-02
0

关于获取每个月第几周的第一天是周几和最后一天是几号 python

import calendardict_data = { 1: "一", 2: "二", 3: "三", 4: "四", 5: "五", 6: "六", 7: "日"}# 获取第一周的第一天是周几和最后一天是周几def get_weekday(_mo......

2022-09-02
0

Unity Visual Effect Graph 制作Fireworks烟花特效

首先创建一个Visual Effect Graph,命名为Fireworks:

2022-08-29
1

torch.log

Returns a new tensor with the natural logarithm of the elements of input.

2022-08-18
1

torch.exp()

Returns a new tensor with the exponential of the elements of the input tensor input.

2022-08-18
1

MacBook 屏幕录制 soundflower 只录内屏声音 无外界声音

(博客诈尸,感觉要弃了,到时候开github主页) (搜到的一些soundflower教程都好旧, 自己写一个)

2022-08-15
1

ZSTUoj 4433-Suffix Zeroes(暴力枚举)

这两天和队友聊了一下理工新生赛,提到我暴力枚举A掉的这题,干脆搞个题解了时效性确实是 过了

2022-08-15
1

C语言教程 - 条件语句

两个或多个表达式可以使用逻辑运算符检查是否都为真,或是否其中一个为真。使用AND运算符&&检查两个表达式是否都为真。使用OR运算符||检查是否至少有一个表达式为真。...

2022-08-14
0