├── .gitattributes ├── Spark Definitive Guide-前8章.pdf ├── init.scala └── README.md /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /Spark Definitive Guide-前8章.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Y1ran/Spark-The-Definitive-Guide-Chinese-Traslation-2019/HEAD/Spark Definitive Guide-前8章.pdf -------------------------------------------------------------------------------- /init.scala: -------------------------------------------------------------------------------- 1 | package begin 2 | 3 | object arr1 {;import org.scalaide.worksheet.runtime.library.WorksheetSupport._; def main(args: Array[String])=$execute{;$skip(72); 4 | println("Welcome to the Scala worksheet");$skip(28); 5 | 6 | val answer = 8 * 5 + 2;System.out.println("""answer : Int = """ + $show(answer ));$skip(21); val res$0 = 7 | ("hello" + answer);System.out.println("""res0: String = """ + $show(res$0));$skip(37); 8 | 9 | var hello = "hello".toUpperCase;System.out.println("""hello : String = """ + $show(hello ));$skip(25); val res$1 = 10 | 11 | scala.math.sqrt(2);System.out.println("""res1: Double = """ + $show(res$1));$skip(40); 12 | 13 | def count(p: (Char) => Boolean) : Int;System.out.println("""count: (p: Char => Boolean)Int""");$skip(28); val res$2 = 14 | "hXdsdWe".count(_.isUpper);System.out.println("""res2: Int = """ + $show(res$2))} 15 | } 16 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Spark The Definitive Guide-Chinese-Traslation 2019 2 | 3 | 4 | ## Spark权威指南中文版翻译项目(2019) 5 | **Notice: This is only For the convinience of Chineses reader who cannot read English version directly** 6 | 7 |
8 | 9 |
10 | 11 | Author-`作者` 12 | Bill Chambers / Matei Zaharia 13 | 14 | License-`出版社` 15 | O′Reilly 16 | 17 | 副标题: The Definitive Guide: Big Data Processing Made Simple 18 | 19 | 出版年: 2017-10-31 20 | Copyright (c) 2018 Alexander Rush : The Annotated Trasnformer 21 | 22 |
23 | 24 | Spark Definitive Guide(Spark权威指南中文版),本书由Spark框架的创始人编写,学习Spark框架必读书籍,网上都是英文版本。译者目前翻译到8章,8-12章翻译进行中,先分享出来,剩下章节会继续翻译 25 | 26 | 27 | 28 | 29 | [![LICENSE](https://img.shields.io/github/license/codertimo/BERT-pytorch.svg)](https://github.com/codertimo/BERT-pytorch/blob/master/LICENSE) 30 | ![GitHub issues](https://img.shields.io/github/issues/codertimo/BERT-pytorch.svg) 31 | [![GitHub stars](https://img.shields.io/github/stars/codertimo/BERT-pytorch.svg)](https://github.com/codertimo/BERT-pytorch/stargazers) 32 | [![CircleCI](https://circleci.com/gh/codertimo/BERT-pytorch.svg?style=shield)](https://circleci.com/gh/codertimo/BERT-pytorch) 33 | [![PyPI](https://img.shields.io/pypi/v/bert-pytorch.svg)](https://pypi.org/project/bert_pytorch/) 34 | [![PyPI - Status](https://img.shields.io/pypi/status/bert-pytorch.svg)](https://pypi.org/project/bert_pytorch/) 35 | [![Documentation Status](https://readthedocs.org/projects/bert-pytorch/badge/?version=latest)](https://bert-pytorch.readthedocs.io/en/latest/?badge=latest) 36 | 37 | 38 | 39 |
40 | 41 | 42 | 43 | 44 | Environment require: 45 | ---`Windows-pdf ` 46 | ---`Spark` 47 | ---`torch>=0.4.0` 48 | ---`python3.6+` 49 | 50 | This version has based on the version in https://github.com/Y1ran 51 | 此中文版本仅基于原作者Junseong Kim与原教材的第一版作为分享,如有其他用途请与原作者联系 52 | 53 | > Paper URL : https://arxiv.org/abs/1810.04805 54 | 55 | --------------------------------------------------------------------------------