2.2.1 深入Go Module## GCN ## 深入Go Module  鸟窝 细节、使用、坑以及未来 ## 鸟窝 • Go微服务框架rpcx作者 • Go并发编程实战课专栏作者 《Scala集合技术手册》作者  Go 版本管理历史 01 认识 Go Module 02 使用 Go Module 03 血泪史 04 Go Module 未来特性 05 ## 第一部分 ## Go版本管理历史 ## Go版本历史  login guest password 123456 ## Git over SSH go get 默认不会使用 SSH 协议 除非动态获取 meta 时明确指定使用 SSH 协议 // module: example.com/pkg repo: gitlab.example.com/example/pkg 0 码力 | 28 页 | 12.85 MB | 2 年前3
深度学习与PyTorch入门实战 - 43. nn.Module## PyTorch ### nn.Module 主讲人:龙良曲 ## ☐ ☐ ☐ class MyLinear(nn.Module): def __init__(self, inp, outp): super(MyLinear, self).__init__() # requires_grad = True self.w = nn.Parameter(torch.randn(outp + self.b return x ## Magic ### ■ Every Layer is nn.Module - nn.Linear - nn.BatchNorm2d - nn.Conv2d #### - nn.Module nested in nn.Module ### 1. embed current layers Linear ReLU Sigmoid Conv2d BasicNet(nn.Module): def __init__(self): super(BasicNet, self).__init__() self.net = nn.Linear(4, 3) def forward(self, x): return self.net(x) class Net(nn.Module): def0 码力 | 16 页 | 1.14 MB | 2 年前3
2.1.3 如何用go module构建模块化跨链平台GOPHER CHINA 2020 中国 上海 / 2020-11.21-22 如何用go module构建模块化跨链平台 汪小益 趣链科技 ’ alt=‘OCR图片’/> 什么是区块链 跨链的重难点分析 跨链平台架构设计 Go module和plugin 的应用实践 GOPHER CHINA 2020 中国 上海 / 2020-11.21-22 1 什么是区块链 GOPHER 趣链区块链 天平链 共识模块 PBFT RAFT POS POA HOTSTUFF Golang提供了两种模块化工具,一个是go module,一个是go plugin GOPHER CHINA 2020 中国 上海 / 2020-11.21-22 4 GO module和plugin实践 GOPHER CHINA 2020 中国 上海 / 2020-11.21-22 4 GO modules实践:无处不在的模块 t uint64) error // Close release resource Close() GOPHER CHINA 2020 GO modules实践:经验建议 GO module几个好用的命令 go mod tidy 移除无效依赖,新增缺少的依赖 go mod graph 列出所有的依赖 go mod vendor 依赖复制打包到vendor目录下(网络受限) go mod0 码力 | 27 页 | 1.24 MB | 1 月前3
Julia 1.10.0 beta3 Documentation204 16.1 Namespace management ..... 205 16.2 Submodules and relative paths ..... 210 16.3 Module initialization and precompilation ..... 212 17 Documentation ..... 216 17.1 Accessing Documentation . 450 36.9 Use naming conventions consistent with Julia base/ ..... 451 36.10 Write functions with argument ordering similar to Julia Base ..... 451 36.11 Don't overuse try-catch ..... 452 Don't expose unsafe operations at the interface level ..... 453 36.18 Don't overload methods of base container types ..... 454 36.19 Avoid type piracy ..... 454 36.20 Be careful with type equality0 码力 | 1684 页 | 5.96 MB | 2 年前3
Julia 1.8.4 Documentation192 16.1 Namespace management ..... 193 16.2 Submodules and relative paths ..... 198 16.3 Module initialization and precompilation ..... 200 17 Documentation ..... 204 17.1 Accessing Documentation . 430 36.9 Use naming conventions consistent with Julia base/ ..... 431 36.10 Write functions with argument ordering similar to Julia Base ..... 431 36.11 Don't overuse try-catch ..... 432 Don't expose unsafe operations at the interface level ..... 433 36.18 Don't overload methods of base container types ..... 433 36.19 Avoid type piracy ..... 434 36.20 Be careful with type equality0 码力 | 1565 页 | 5.04 MB | 2 年前3
PyWebIO v1.7.1 DocumentationDoc • Server-Client communication protocol Command o Event ## I ndices and tables • Index • Module Index • Search Page ## Discussion and support - Need help when use PyWebIO? Make a new discussion code online and see what happens. ## I nput The input functions are defined in the pywebio.input module and can be imported using from pywebio.input import *. When calling the input function, an input provide the name parameter. ## Output The output functions are all defined in the pywebio.output module and can be imported using from pywebio.output import *. When output functions are called, the content0 码力 | 152 页 | 7.47 MB | 2 年前3
Julia 1.8.2 Documentation192 16.1 Namespace management ..... 193 16.2 Submodules and relative paths ..... 198 16.3 Module initialization and precompilation ..... 200 17 Documentation ..... 204 17.1 Accessing Documentation . 430 36.9 Use naming conventions consistent with Julia base/ ..... 431 36.10 Write functions with argument ordering similar to Julia Base ..... 431 36.11 Don't overuse try-catch ..... 432 Don't expose unsafe operations at the interface level ..... 433 36.18 Don't overload methods of base container types ..... 433 36.19 Avoid type piracy ..... 434 36.20 Be careful with type equality0 码力 | 1563 页 | 5.04 MB | 2 年前3
Julia 1.9.0 rc3 Documentation204 16.1 Namespace management ..... 205 16.2 Submodules and relative paths ..... 210 16.3 Module initialization and precompilation ..... 212 17 Documentation ..... 216 17.1 Accessing Documentation . 447 36.9 Use naming conventions consistent with Julia base/ ..... 448 36.10 Write functions with argument ordering similar to Julia Base ..... 448 36.11 Don't overuse try-catch ..... 449 Don't expose unsafe operations at the interface level ..... 450 36.18 Don't overload methods of base container types ..... 450 36.19 Avoid type piracy ..... 451 36.20 Be careful with type equality0 码力 | 1644 页 | 5.26 MB | 2 年前3
Back to Basics Unit Testingare the first line of defense (but not the only line) • Unit tests are an integral part of the code base ## Rule 0 ## Write unit tests ## DOMAINS Good Process Good Tests Good Code ## Part 1: Good Tests0 码力 | 109 页 | 4.13 MB | 1 年前3
共 1000 条
- 1
- 2
- 3
- 4
- 5
- 6
- 100
相关搜索词
Go ModuleGOPATHvendor dirgo命令GOPROXY又拍云Gitlab CIGOPRIVATEsshnn.ModulePyTorch自定义层网络结构优化器2.1如何gomodule构建模块模块化跨链平台Julia REPLGarbage CollectionDocumentation SystemBase ModuleDebugging InformationJuliaREPLDocumentationTupleBase SubmodulesPyWebIOsessionplatform modulepin modulecoroutine-based sessionsMemory SanitizerThread SanitizerBase文档@doc调试Base.Docsunit testingfunctiontest frameworkcode baseassert













