先看一个例子: #include <numeric> #include <vector> #include <algorithm> #include <iterator> #include <thread> #include <iostream> #include <functional> usin ...
分类:
编程语言 时间:
2020-07-04 01:41:11
阅读次数:
74
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
我们可以看到绘制出来的图有四个边框,我们通过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
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
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
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
函数式(functional)接口 如果一个接口中,只声明了一个抽象方法,则此接口就称为函数式接口。 可以通过Lambda表达式来创建该接口的对象。(若Lambda表达式抛出一个受检异常(即:非运行时异常),那么该异常需要在目标接口的抽象方法上进行声明)。 我们可以在一个接口上使用@Function ...
分类:
编程语言 时间:
2020-05-15 20:06:12
阅读次数:
102
1. 前言 通常我们编写 Spring MVC 接口的范式是这样的: 这种我都写吐了,今天换个口味,使用 Spring 5 新引入的函数式端点( Functional Endpoints )来耍耍。 这种方式同样支持 Spring Webflux 。 请注意可使用该特性的 Spring 版本不低于 ...
分类:
编程语言 时间:
2020-05-15 13:46:08
阅读次数:
52
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