aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/docs_src/extend/index.md
blob: bbf4a8139be634e6fa6bb5be4da78c57fa0d8ea0 (plain)
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
# Extend

This section explains how developers can add functionality to TensorFlow's
capabilities. Begin by reading the following architectural overview:

  * [TensorFlow Architecture](../extend/architecture.md)

The following guides explain how to extend particular aspects of
TensorFlow:

  * [Adding a New Op](../extend/adding_an_op.md), which explains how to create your own
    operations.
  * [Adding a Custom Filesystem Plugin](../extend/add_filesys.md), which explains how to
    add support for your own shared or distributed filesystem.
  * [Custom Data Readers](../extend/new_data_formats.md), which details how to add support
    for your own file and record formats.

Python is currently the only language supported by TensorFlow's API stability
promises. However, TensorFlow also provides functionality in C++, Go, Java and
[JavaScript](https://js.tensorflow.org) (including
[Node.js](https://github.com/tensorflow/tfjs-node)),
plus community support for [Haskell](https://github.com/tensorflow/haskell) and
[Rust](https://github.com/tensorflow/rust). If you'd like to create or
develop TensorFlow features in a language other than these languages, read the
following guide:

  * [TensorFlow in Other Languages](../extend/language_bindings.md)

To create tools compatible with TensorFlow's model format, read the following
guide:

  * [A Tool Developer's Guide to TensorFlow Model Files](../extend/tool_developers/index.md)