最新 最热

设计模式之备忘录模式

Without violating encapsulation, capture and externalize an object’s internal state allowing the object to be restored to this state later.

2020-08-10
2

设计模式之状态模式

Allow an object to alter its behavior when its internal state changes. The object will appear to change its class.

2020-08-10
1

设计模式之中介者模式

Define an object that encapsulates how a set of objects interact. Mediator promotes loose coupling by keeping objects from referring to each other explicitly, a...

2020-08-10
1

使用R语言随机波动模型SV处理时间序列中的随机波动率

采样函数svsample期望其输入数据y是数字矢量,而没有任何缺失值(NA),如果提供其他任何内容,则会引发错误。在y包含零的情况下,发出警告,并在进行辅助混合物采样之前,将大小为sd(y)/ 10000的小偏移常数添加到平方收益上。...

2020-08-07
1

Tensorflow Serving模型指向s3地址,Could not find base path?

之前有同学遇到一个问题,通过 Workload 配置一个 Serving 服务的时候,通过 model_config_file 这个选项来指定多个模型文件,配置文件大概长这个样子。

2020-08-06
1

LDheatmap|SNP连锁不平衡图(LD)可视化,倒三角图?

本文使用自己的数据,因为安装R包后使用内置数据集运行出结果较容易,但是自己的数据就可能会有一些不大不小的“坑”,我替你们趟了。。。

2020-08-05
1

Java 多线程

1.方法一创建线程 /** * 1.创建线程类 * 多线程需要创建多个类对象 * 2.调用start()方法 * @param args */ public static void main(String[] args) { ......

2020-08-04
1

BubbleRob tutorial 遇到的问题

对于v-rep的学习来说,国内的中文资料相对来说比较少,就VREP User Manual又是全英文的教程,读起来其比较麻烦。我个人比较推荐的还是对软件进行实际操作,在操作的过程中,我们会遇到许多问题,在解决问题的过程中,我们会对软件...

2020-08-04
1

Java 集合

1.创建集合,并使用forEach和迭代器分别遍历public class CollectionDemo { /* * 1.创建集合对象 * 2.创建添加集合元素 * 3.添加 * 4.遍历 */ public static void ......

2020-08-04
1

java 多线程通信

wait(0) 0代表永不超时, Object的wait方法会导致当前的线程陷入阻塞状态,直到其他线程notify或notifyAll 才能将其唤醒,或者阻塞时间到而自动唤醒.

2020-08-04
0