-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathindex.qmd
More file actions
75 lines (66 loc) · 2.33 KB
/
Copy pathindex.qmd
File metadata and controls
75 lines (66 loc) · 2.33 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
---
title: Guides
anchor-sections: false
search: false
listing:
- id: tensorflow-links
type: grid
sort-ui: false
filter-ui: false
fields: [title, description]
sort: '' # don't sort
contents:
- tensorflow/basics.qmd
- tensorflow/tensor.qmd
- tensorflow/autodiff.qmd
- tensorflow/intro_to_graphs.qmd
- tensorflow/tensor_slicing.qmd
# - variable.qmd
- autograph.qmd
- id: keras-links
type: grid
sort-ui: false
filter-ui: false
fields: [title, description]
sort: '' # don't sort
contents:
- keras/sequential_model.qmd
- keras/functional_api.qmd
- keras/training_with_built_in_methods.qmd
- keras/making_new_layers_and_models_via_subclassing.qmd
- keras/serialization_and_saving.qmd
- keras/preprocessing_layers.qmd
- keras/customizing_what_happens_in_fit.qmd
- keras/writing_a_training_loop_from_scratch.qmd
- keras/working_with_rnns.qmd
- keras/understanding_masking_and_padding.qmd
- keras/writing_your_own_callbacks.qmd
- keras/transfer_learning.qmd
---
TensorFlow 2 is an end-to-end, open-source machine learning platform.
You can think of it as an infrastructure layer for [differentiable
programming](https://en.wikipedia.org/wiki/Differentiable_programming).
It combines four key abilities:
- Efficiently executing low-level tensor operations on CPU, GPU, or
TPU.
- Computing the gradient of arbitrary differentiable expressions.
- Scaling computation to many devices, such as clusters of hundreds of
GPUs.
- Exporting programs ("graphs") to external runtimes such as servers,
browsers, mobile and embedded devices.
TensorFlow 2 focuses on simplicity and ease of use, with features like
eager execution, intuitive higher-level APIs, and flexible model
building on any platform.
## TensorFlow
::: {#tensorflow-links}
:::
## Keras
Keras is the high-level API of TensorFlow 2: an approachable,
highly-productive interface for solving machine learning problems, with
a focus on modern deep learning. It provides essential abstractions and
building blocks for developing and shipping machine learning solutions
with high iteration velocity.
Keras empowers engineers and researchers to take full advantage of the
scalability and cross-platform capabilities of TensorFlow 2.
::: {#keras-links}
:::