深度学习与PyTorch入门实战 - 34. 动量与lr衰减
0 码力 | 14 页 | 816.20 KB | 1 年前3Oracle VM VirtualBox 5.2.34 User Manual
. . . . . . . . . . . . . . . . . . . . . . . . . 34 1.17 Alternative front-ends . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 34 2 Installation details 36 2.1 Installing on Windows that machine from the command line, or even remotely. See chapter 1.17, Alternative front-ends, page 34 for details. Due to its modular architecture, VirtualBox can also expose its full functionality and can change this default in the VirtualBox Global Settings, see chapter 1.16, Global Settings, page 34. In any case, the current setting for the host key is always displayed at the bottom right of your0 码力 | 386 页 | 4.27 MB | 1 年前3Exactly-once fault-tolerance in Apache Flink - CS 591 K1: Data Stream Processing and Analytics Spring 2020
Snapshotting Protocols p1 p2 p3 mAB53icbVBNS8NAEJ34WetX1aOXxSJ4Kok I6q3oxWMLxhbaUDbSbt2swm7G6GE/gIvHlS8+pe8+W/ctjlo64OBx3szMwLU8G1cd1vZ2V1bX1js7RV3t7Z z1hWnmDmCP3A+fwBD/ozF AB53icbVBNS8NAEJ34WetX1aOXxSJ4Kok I6q3oxWMLxhbaUDbSbt2swm7G6GE/gIvHlS8+pe8+W/ctjlo64OBx3szMwLU8G1cd1vZ2V1bX1js7RV3t7Z z1hWnmDmCP3A+fwBD/ozF AB53icbVBNS8NAEJ34WetX1aOXxSJ4Kok I6q3oxWMLxhbaUDbSbt2swm7G6GE/gIvHlS8+pe8+W/ctjlo64OBx3szMwLU8G1cd1vZ2V1bX1js7RV3t7Z 0 码力 | 81 页 | 13.18 MB | 1 年前32.1 gofmt 的文化演变
0.1:3999/gofmt-cn.slide#1 1/34 gofmt 的文化演变 The Cultural Evolution of gofmt Robert Griesemer Google, Inc. 4/21/2015 gofmt 的文化演变 http://127.0.0.1:3999/gofmt-cn.slide#1 2/34 gofmt Go源代码格式化工具 定义了“标准“格式 1:3999/gofmt-cn.slide#1 3/34 初衷 代码审查是软件工程的最佳实践 代码审查是基于代码规范和正规格式的 太多时间浪费在审查格式上而不是代码本身了 但是这工作对机器来说是最好不过了的 第一个决定就是要写一个好的格式美化器 4/21/2015 gofmt 的文化演变 http://127.0.0.1:3999/gofmt-cn.slide#1 4/34 历史 格式美化器和代码美化工具在计算机发展的早期就已出现 ObjectiveC, D, Java, Pawn and VALA的美化器 等等 4/21/2015 gofmt 的文化演变 http://127.0.0.1:3999/gofmt-cn.slide#1 5/34 事实上 在2007年,没人喜欢代码格式器 例外:IDE强制的格式化 但是:很多程序员不用IDE... 问题:如果是格式化太具有毁坏性,那么就没有人会用 被忽视的观点:“刚刚好“的,统一化的格式是好过于各种不同的格式的。0 码力 | 34 页 | 9.97 MB | 1 年前3RISC-V 开放架构设计之道 1.0.0
. . . . . . . 32 3.3 汇编器 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 34 3.4 链接器 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 38 3.5 静态链接和动态链接 是 lock add dword ptr ds:[esi+ecx*4 +0x12345678], 0xefcdab89。它汇编 成十六进制得到:67 66 f0 3e 81 84 8e 78 56 34 12 89 ab cd ef。后 8 字节是 2 个地址,前 7 字节分别表示原子内存操 作,加操作,32 位数据, 数据段寄存器,2 个地址 寄存器和比例变址寻址 模式。1 字节指令的一个 例子是汇编成 addi a5,a4,0 # j = i Inner Loop: 1c: ffc62883 lw a7,-4(a2) # a7 = a[j-1] 20: 01185a63 bge a6,a7,34 # 若 a[j-1] <= a[i],跳到 Exit Inner Loop 24: 01162023 sw a7,0(a2) # a[j] = a[j-1] 28: fff78793 addi0 码力 | 223 页 | 15.31 MB | 1 年前3pandas: powerful Python data analysis toolkit - 0.17.0
Considerations . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 934 34 API Reference 935 34.1 Input/Output . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . Out[32]: col1 foo bar col2 a b a b i1 i2 j l 1 2 3 4 k 5 6 7 8 In [33]: df.to_excel('test.xlsx') In [34]: df = pd.read_excel('test.xlsx', header=[0,1], index_col=[0,1]) In [35]: df Out[35]: col1 foo bar When no arguments are passed, returns 1 In [17]: example_series.sample() Out[17]: 0 0 dtype: int64 34 Chapter 1. What’s New pandas: powerful Python data analysis toolkit, Release 0.17.0 # One may specify0 码力 | 1787 页 | 10.76 MB | 1 年前3Back to Basics: Exceptions
occur frequently … for functions that are expected to failDealing with Frequently Failing Functions 34 auto to_int( std::string const& s ) -> std::optionalauto to_int( std::string const& s ) -> 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34How to Write Exception-Safe Code 54 class Widget { private: int i{ 0 }; std::string s{}; 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34How to Write Exception-Safe Code 55 class Widget { private: int i{ 0 }; std::string s{}; 0 码力 | 111 页 | 4.87 MB | 5 月前3Linux command line for you and me Documentation Release 0.1
. . . . . . . . . . . . . . . . . . . . 34 6.3 ~/.bash_profile file . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 34 6.4 .bashrc file . . . . . . . . . . . bin games include lib lib64 libexec local sbin share src tmp total 776 -rwxrwxr-x. 1 fedora fedora 34 Jun 24 07:56 helol.py -rw-------. 1 fedora fedora 784756 Jun 23 10:49 tmp3lDEho 1.20 Moving around (via GUI or via ssh). On Fedora systems this file also read configuration from the ~/.bashrc file. 34 Chapter 6. File permissions Linux command line for you and me Documentation, Release 0.1 # Get the0 码力 | 128 页 | 716.99 KB | 1 年前3pandas: powerful Python data analysis toolkit - 0.21.1
. . . . . . . . . . . . . . . . . . . . . . . 34 1.4.2 Performance Improvements . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 34 1.4.3 Bug Fixes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 34 1.4.3.1 Conversion . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 35 1.4.3.2 Indexing . . . . . . . . . . Interop . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1221 34 API Reference 1223 34.1 Input/Output . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .0 码力 | 2207 页 | 8.59 MB | 1 年前3Linux command line for you and me Documentation Release 0.1
games include lib lib64 libexec local sbin share src tmp total 776 -rwxrwxr-x. 1 fedora fedora 34 Jun 24 07:56 helol.py -rw-------. 1 fedora fedora 784756 Jun 23 10:49 tmp3lDEho Moving around in the 25) SIGXFSZ 26) SIGVTALRM 27) SIGPROF 28) SIGWINCH 29) SIGIO 30) SIGPWR 31) SIGSYS 34) SIGRTMIN 35) SIGRTMIN+1 36) SIGRTMIN+2 37) SIGRTMIN+3 38) SIGRTMIN+4 39) SIGRTMIN+5 package $ dnf search pss Fedora 25 - x86_64 34 MB/s | 50 MB 00:01 Fedora 25 - x86_64 - Updates 410 码力 | 124 页 | 510.85 KB | 1 年前3
共 1000 条
- 1
- 2
- 3
- 4
- 5
- 6
- 100