码迷,mamicode.com
首页 >  
搜索关键字:bind2nd functional    ( 590个结果
C++模板推导丢失引用问题
先看一个例子: #include <numeric> #include <vector> #include <algorithm> #include <iterator> #include <thread> #include <iostream> #include <functional> usin ...
分类:编程语言   时间:2020-07-04 01:41:11    阅读次数:74
sigmod、tanh、ReLU激活函数的实现
import torch import torch.nn.functional as F import matplotlib.pyplot as plt import numpy as np x = torch.linspace(-10,10,60) fig = plt.figure(figsize ...
分类:其他好文   时间:2020-06-30 11:16:42    阅读次数:62
plt.gca()坐标轴移动
我们可以看到绘制出来的图有四个边框,我们通过gca()对坐标轴进行一些简单处理,代码如下。 import torch import torch.nn.functional as F import matplotlib.pyplot as plt import numpy as np x = torc ...
分类:移动开发   时间:2020-06-30 11:11:03    阅读次数:83
[Functional Programming] Function modelling -- 8. Compose Functors
Path: Compose Functors -> Monad Transformers -> Free Monad Compose Functors: Let's say we have a Task holding a Either. And we want simply apply a .ma ...
分类:其他好文   时间:2020-06-29 15:05:19    阅读次数:52
ML——keras
keras官网:https://keras.io/api/models/ 创建keras 模型有三种方法:Sequential model、Functional API、Model subclassing (初学者常用Sequential model) There are three ways to ...
分类:其他好文   时间:2020-05-31 19:54:39    阅读次数:85
函数式编程中如何处理副作用?
函数式编程中如何处理副作用? 阅读(2,381) 评论(0) Functional_Programming2018-10-28 一.纯函数 纯函数是说没有副作用的函数(a function that has no side effects),有几个好处: 引用透明(referential trans ...
分类:其他好文   时间:2020-05-26 20:33:24    阅读次数:80
FizeBuzz
import torch import torch.nn as nn import torch.nn.functional as F import torch.optim as optim from torchvision import datasets, transforms import tor ...
分类:其他好文   时间:2020-05-19 18:51:33    阅读次数:69
java8新特性学习二(函数式functional接口)
函数式(functional)接口 如果一个接口中,只声明了一个抽象方法,则此接口就称为函数式接口。 可以通过Lambda表达式来创建该接口的对象。(若Lambda表达式抛出一个受检异常(即:非运行时异常),那么该异常需要在目标接口的抽象方法上进行声明)。 我们可以在一个接口上使用@Function ...
分类:编程语言   时间:2020-05-15 20:06:12    阅读次数:102
换一种方式编写 Spring MVC 接口
1. 前言 通常我们编写 Spring MVC 接口的范式是这样的: 这种我都写吐了,今天换个口味,使用 Spring 5 新引入的函数式端点( Functional Endpoints )来耍耍。 这种方式同样支持 Spring Webflux 。 请注意可使用该特性的 Spring 版本不低于 ...
分类:编程语言   时间:2020-05-15 13:46:08    阅读次数:52
函数式(Functional)接口
public class LambdaTest2 { @Test public void test1(){ happyTime(500, new Consumer<Double>() { @Override public void accept(Double aDouble) { System.ou ...
分类:其他好文   时间:2020-05-14 19:33:54    阅读次数:60
590条   上一页 1 2 3 4 5 ... 59 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!