上一页 1 2 3 4 5 6 7 8 9 10 ··· 19 下一页

2019年7月3日

ARTS-S golang panic返回默认值

摘要: ``` package main import "fmt" func fn_test_panic() (a int) { a = 2 panic("This is panic") return a } func fn1() (a int) { a = 3 defer func(){ if p := recover(); p != nil { fmt.Println("re... 阅读全文

posted @ 2019-07-03 10:53 荷楠仁 阅读(255) 评论(0) 推荐(0) 编辑

2019年6月28日

ARTS-S shell脚本实现循环

摘要: ``` !/bin/bash i=0 while [ "$i" != "100" ] && [ "$RESP" != "200" ] do i=$(($i+1)) echo $i RESP= done 虽然很简单,大家不要笑.稍微加一点修改就能实现服务可用时再跑单元测试. 阅读全文

posted @ 2019-06-28 21:55 荷楠仁 阅读(156) 评论(0) 推荐(0) 编辑

2019年6月14日

ARTS-S pytorch中backward函数的gradient参数作用

摘要: 导数偏导数的数学定义 参考资料1和2中对导数偏导数的定义都非常明确.导数和偏导数都是函数对自变量而言.从数学定义上讲,求导或者求偏导只有函数对自变量,其余任何情况都是错的.但是很多机器学习的资料和开源库都涉及到标量对向量求导.比如下面这个pytorch的例子. import torch x = to 阅读全文

posted @ 2019-06-14 14:38 荷楠仁 阅读(5936) 评论(5) 推荐(12) 编辑

2019年6月6日

ARTS-S python抽象方法抽象类

摘要: ``` # coding: utf-8 from abc import ABC, abstractmethod class AbstractClassExample(ABC): def __init__(self, value): self.value = value super().__init__() @abstractmethod ... 阅读全文

posted @ 2019-06-06 16:42 荷楠仁 阅读(117) 评论(0) 推荐(0) 编辑

2019年5月31日

ARTS-S cmake,googletest使用

摘要: 编译gtest 下载指定tag的源代码 编译 正常情况在当前目录下能生成libgtest.a 测试是否成功 如果看到测试结果所是OK,说明是成功的. 复制libgtest.a到/usr/local/lib 放到这个目录里gcc和cmake能默认找到 安装cmake 参考官方文档. 测试工程 要注意的 阅读全文

posted @ 2019-05-31 16:15 荷楠仁 阅读(285) 评论(0) 推荐(0) 编辑

2019年4月25日

ARTS-S k8s配制文件demo

摘要: ``` apiVersion: extensions/v1beta1 kind: Deployment metadata: name: go-demo-hostname spec: replicas: 2 template: metadata: labels: app: go-demo-hostname spec: volumes... 阅读全文

posted @ 2019-04-25 11:40 荷楠仁 阅读(114) 评论(0) 推荐(0) 编辑

2019年4月21日

ARTS-S 解决不了的问题

摘要: SBT配国内源不生效 阅读全文

posted @ 2019-04-21 20:51 荷楠仁 阅读(109) 评论(0) 推荐(0) 编辑

2019年4月4日

ARTS-S gitlab与jenkins实现持续集成

摘要: jenkins配制 1. 系统管理 管理插件 可选插件 选择安装 Gitlab Hook Plugin, Gitlab Plugin和Build Authorization Token Root Plugin插件。 1. jenkins主界面 新建任务 输入一个任务名称(如myproject) 构建 阅读全文

posted @ 2019-04-04 16:49 荷楠仁 阅读(173) 评论(0) 推荐(0) 编辑

2019年3月14日

test

摘要: Face mask craze creates Korean billionaire with Goldman backing 原文 Face masks can moisturize[& 712;m& 596;ist& 643;raiz], exfoliate, or soothe and coo 阅读全文

posted @ 2019-03-14 14:42 荷楠仁 阅读(201) 评论(0) 推荐(0) 编辑

2019年3月13日

ARTS-S EN0002-London HIV patient's remission spurs hope for curing AIDS

摘要: 原文 A stem cell treatment put a London cancer patient's HIV into remission, marking the second such reported case and reinvigorating efforts to cure th 阅读全文

posted @ 2019-03-13 21:51 荷楠仁 阅读(205) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 9 10 ··· 19 下一页

导航