3.云原生边云协同AI框架实践边侧逐步具备AI能力 分布式协同AI 核心驱动力 分布式协同AI核心驱动力 • 随着边侧算力逐步强化,边缘AI持续演变至分布式协同AI 分布式协同AI技术挑战 1. 边缘资源碎片化 2. 边缘数据孤岛 3. 边缘样本少 4. 边缘数据异构 分布式协同AI 技术挑战 边云协同AI框架 第二部分 首个分布式协同AI开源项目Sedna 基于KubeEdge提供的边云协同能力,支持现有AI类应用无缝下沉到边缘 GlobalCoordinator ⚫ 统一边云协同AI任务管理 ⚫ 跨边云协同管理与协同 ⚫ 中心配置管理 2. LocalController ⚫ 特性本地流程控制 ⚫ 本地通用管理: 模型, 数据集等 3. Worker ⚫ 执行训练或推理任务, 训练/推理程序, 基于现有AI框 架开 ⚫ 按需启动, docker容器或function ⚫ 不同特性对应不同的worker组, 可部署在边上或云 Unseen Task Detect EdgeNode 3 App Unseen Task Detect ① 基于N个历史任务,完成云端知识库初 始化 ② 基于云端知识库,学习当前边侧任务 ③ 基于当前边侧任务,更新云端知识库 ④ 重复步骤2-3以处理M个未来任务 Cloud 任务模型 任务样本 1 2 3 4 N个历史任务 当前任务 M个未来任务 知识库0 码力 | 37 页 | 2.36 MB | 1 年前3
 Go 101 (Golang 101)  v1.21.0this book is written. §1. Acknowledgments §2. An Introduction of Go - why Go is worth learning. §3. The Go Toolchain - how to compile and run Go programs. Become Familiar With Go Code §4. Introduction underlying implementations is very helpful to clear some confusions about all kinds of Go values. 3. Explains memory blocks in detail. Knowing the relations between Go values and memory blocks is very to run simple Go programs. The following program is the simplest Go program. 1| package main 2| 3| func main() { 4| } The words package and func are two keywords. The two main words are two identifiers0 码力 | 880 页 | 833.34 KB | 1 年前3
 Go 101 (Golang 101)  v1.21.0why this book is written. §1. Acknowledgments §2. An Introduction of Go - why Go is worth learning. §3. The Go Toolchain - how to compile and run Go programs. Become Familiar With Go Code §4. Introduction tapirgames.com ? to get more information about these games. Hope you enjoy them.) §0. About Go 101 3 About Go 101 I feel it is hard to describe the contents in this article in the general description underlying implementations is very helpful to clear some confusions about all kinds of Go values. 3. Explains memory blocks in detail. Knowing the relations between Go values and memory blocks is very0 码力 | 630 页 | 3.77 MB | 1 年前3
 Go 入门指南(The way to Go)上安装 Go 2.4 在 Mac OS X 上安装 Go 2.5 在 Windows 上安装 Go 2.6 安装目录清单 2.7 Go 运行时(runtime) 2.8 Go 解释器 第3章:编辑器、集成开发环境与其它工具 3.1 Go 开发环境的基本要求 3.2 编辑器和集成开发环境 3.3 调试器 3.4 构建并运行 Go 程序 3.5 格式化代码 3.6 生成代码文档 map 类型的切片 8.5 map 的排序 8.6 将 map 的键值对调 第9章:包(package) 9.1 标准库概述 9.2 regexp 包 9.3 锁和 sync 包 - 3 - 本文档使用 书栈(BookStack.CN) 构建 9.4 精密计算和 big 包 9.5 自定义包和可见性 9.6 为自定义包使用 godoc 9.7 使用 go install 安装自定义包 来,具体请联系【无闻 E-mail: u#gogs.io】,一同完善本书并帮助壮大 Go 语言在国内的学习群体,给大家提供更好的学习资源。 参见 Go 语言学习资料与社区索引。 2012 年 3 月 28 日以前的博文中的内容基本过时,不要再看 符合等式 百度+思考+失败+翻墙+谷歌+尝试=解决 的问题最好不要发问 本书原作者:Ivo Balbaert 参与翻译人员: @zhanming0 码力 | 466 页 | 4.44 MB | 1 年前3
 Golang 101(Go语言101 中文版)  v1.21.a目录 第0章:关于《Go语言101》 - 为什么写这本书 第1章:致谢 第2章:Go语言简介 - 为什么Go语言值得学习 第3章:Go官方工具链 - 如何编译和运行Go程序 Go编程入门 第4章:程序源代码基本元素介绍 第5章:关键字和标识符 第6章:基本类型和它们的字面量表示 第7章:常量和变量 - 顺便介绍了类型不确定值和类型推断 第8章:运算操作符 - 顺便介绍了更多的类型推断规则 part)这个术语并单独用一篇文章来解释值部。 这篇 文章揭示了某些类型的底层结构,从而使得Go程序员可以更深入地理解 这些类型的值。 我认为知道一些可能的底层实现对于清除某些Go编程中 的困惑非常有帮助。 3. 详细地解释了内存块(memory block)。 了解Go值和内存块之间的关系 对于理解垃圾收集器是如何工作的以及如何避免内存泄漏非常有帮助。 4. 将接口值视为用于包裹非接口值的盒子。 我发现将接口值视为用于包裹 GOBIN路径需配置在PATH环境变量中,以便从任意目录运 行这些Go应用程序。 最简单的Go程序 让我们写一个简单的Go程序,并且学习如何运行之。 下面的程序应该是最简单的Go程序。 1| package main 2| 3| func main() { 4| } 在此程序中,单词package和func是两个关键字。 两个main是两个标识符。 标识符和关键字将在后续的一篇文章中讲解。 此程序的第一行指定了当前源0 码力 | 821 页 | 956.82 KB | 1 年前3
 Golang 101(Go语言101 中文版)  v1.21.a目录 1 目录 第0章:关于《Go语言101》 - 为什么写这本书 第1章:致谢 第2章:Go语言简介 - 为什么Go语言值得学习 第3章:Go官方工具链 - 如何编译和运行Go程序 Go编程入门 第4章:程序源代码基本元素介绍 第5章:关键字和标识符 第6章:基本类型和它们的字面量表示 第7章:常量和变量 - 顺便介绍了类型不确定值和类型推断 第8章:运算操作符 - 顺便介绍了更多的类型推断规则 org网站不断增容和维护的动力。 赞赏 (请搜索关注微信公众号“Go 101”或者访问github.com/golang101/golang101获 取本书最新版) 第0章:关于《Go语言101》 3 关于《Go语言101》 我觉得很难用通常的描述方式来描述本文中的内容。 所以本文将采用采访的形式来 进行描述。 你好,老貘,你是什么时候开始写这本书的? 大概在2016年七月份左右,不是很密 part)这个术语并单独用一篇文章来解释值部。 这篇文 章揭示了某些类型的底层结构,从而使得Go程序员可以更深入地理解这些类型 的值。 我认为知道一些可能的底层实现对于清除某些Go编程中的困惑非常有 帮助。 3. 详细地解释了内存块(memory block)。 了解Go值和内存块之间的关系对于 理解垃圾收集器是如何工作的以及如何避免内存泄漏非常有帮助。 4. 将接口值视为用于包裹非接口值的盒子。 我发现将接口值视为用于包裹非接0 码力 | 591 页 | 21.40 MB | 1 年前3
 Golang Manual By AstaXie-20120522pos) } prints character ?????? starts at byte position 0 character ?????? starts at byte position 3 character ???Z starts at byte position 6 Finally, Go has no comma operator and ++ and -- are statements defer fmt.Printf("%d ", i) } Deferred functions are executed in LIFO order, so this code will cause 4 3 2 1 0 to be printed when the function returns. A more plausible example is a simple way to trace function expensive; if you want C-like behavior and efficiency, you can pass a pointer to the array. func Sum(a *[3]float64) (sum float64) { for _, v := range *a { sum += v } return } array := [0 码力 | 6205 页 | 12.83 MB | 1 年前3
  Casdoor · An Open Source UI-first Identity Access Management (IAM) / Single-Sign-On (SSO) platform supporting OAuth 2.0, OIDC, SAML and CASsuch as GitHub, Google, QQ, and WeChat, and it supports extending third-party login with plugins. 3. Casdoor supports authorization management based on Casbin. It supports ACL, RBAC, ABAC, and RESTful your app using these providers, with Casdoor acting as a middle layer (middleware). St Step 3 (Aut ep 3 (Authorization Grant) horization Grant) In this step, your Application already has the code from com/ signup/app-casbin-oa https://door.casdoor.com/login/oauth/ authorize?client_id=0ba528121ea87b3eb54d&response_type=code&redirect_uri=http://localhost:9000/ callback&scope=read&state=casdoor Login0 码力 | 825 页 | 58.31 MB | 1 年前3
 Go 101 (Golang 101)  v1.21.0this book is written. §1. Acknowledgments §2. An Introduction of Go - why Go is worth learning. §3. The Go Toolchain - how to compile and run Go programs. Become Familiar With Go Code §4. Introduction underlying implementations is very helpful to clear some confusions about all kinds of Go values. 3. Explains memory blocks in detail. Knowing the relations between Go values and memory blocks is very run simple Go programs. The following program is the simplest Go program. 1. package main 2. 3. func main() { 4. } The words package and func are two keywords. The two main words are two identifiers0 码力 | 610 页 | 945.17 KB | 1 年前3
 Hello 算法 1.1.0 Go版41 2.5 小结 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 49 第 3 章 数据结构 51 3.1 数据结构分类 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 52 结构的定义、优缺点、常用操作、常见类型、典型应用、实现方法等。 ‧ 算法:搜索、排序、分治、回溯、动态规划、贪心等算法的定义、优缺点、效率、应用场景、解题步骤 和示例问题等。 第 0 章 前言 hello‑algo.com 3 图 0‑1 本书主要内容 0.1.3 致谢 本书在开源社区众多贡献者的共同努力下不断完善。感谢每一位投入时间与精力的撰稿人,他们是(按照 GitHub 自动生成的顺序):krahets、Go gXta、hello‑ikun、khoaxuantu、FangYuan33、GN‑Yu、longsizhuo、 mgisr、Cathay‑Chen、guowei‑gong、xBLACKICEx、K3v123、IsChristina、JoseHung、qualifier1024、 pengchzn、Guanngxu、QiLOL、L‑Super、WSL0809、Slone123c、lhxsm、yuan0221、what‑is‑me、0 码力 | 383 页 | 18.48 MB | 1 年前3
共 122 条
- 1
 - 2
 - 3
 - 4
 - 5
 - 6
 - 13
 













