• Home
  • History
  • Annotate
  • only in /external/tensorflow/tensorflow/contrib/
NameDateSize

..10-Aug-20184 KiB

__init__.py10-Aug-20184 KiB

all_reduce/10-Aug-20184 KiB

android/10-Aug-20184 KiB

batching/10-Aug-20184 KiB

bayesflow/10-Aug-20184 KiB

benchmark_tools/10-Aug-20184 KiB

boosted_trees/10-Aug-20184 KiB

BUILD10-Aug-20187.6 KiB

cloud/10-Aug-20184 KiB

cluster_resolver/10-Aug-20184 KiB

cmake/10-Aug-20184 KiB

coder/10-Aug-20184 KiB

compiler/10-Aug-20184 KiB

copy_graph/10-Aug-20184 KiB

crf/10-Aug-20184 KiB

cudnn_rnn/10-Aug-20184 KiB

data/10-Aug-20184 KiB

decision_trees/10-Aug-20184 KiB

deprecated/10-Aug-20184 KiB

distributions/10-Aug-20184 KiB

eager/10-Aug-20184 KiB

estimator/10-Aug-20184 KiB

factorization/10-Aug-20184 KiB

feature_column/10-Aug-20184 KiB

ffmpeg/10-Aug-20184 KiB

framework/10-Aug-20184 KiB

fused_conv/10-Aug-20184 KiB

gan/10-Aug-20184 KiB

gdr/10-Aug-20184 KiB

graph_editor/10-Aug-20184 KiB

grid_rnn/10-Aug-20184 KiB

hooks/10-Aug-20184 KiB

hvx/10-Aug-20184 KiB

image/10-Aug-20184 KiB

input_pipeline/10-Aug-20184 KiB

integrate/10-Aug-20184 KiB

kafka/10-Aug-20184 KiB

keras/10-Aug-20184 KiB

kernel_methods/10-Aug-20184 KiB

kfac/10-Aug-20184 KiB

labeled_tensor/10-Aug-20184 KiB

layers/10-Aug-20184 KiB

learn/10-Aug-20184 KiB

legacy_seq2seq/10-Aug-20184 KiB

libsvm/10-Aug-20184 KiB

linalg/10-Aug-20184 KiB

linear_optimizer/10-Aug-20184 KiB

lite/10-Aug-20184 KiB

lookup/10-Aug-20184 KiB

losses/10-Aug-20184 KiB

makefile/10-Aug-20184 KiB

memory_stats/10-Aug-20184 KiB

meta_graph_transform/10-Aug-20184 KiB

metrics/10-Aug-20184 KiB

model_pruning/10-Aug-20184 KiB

mpi/10-Aug-20184 KiB

mpi_collectives/10-Aug-20184 KiB

nccl/10-Aug-20184 KiB

nearest_neighbor/10-Aug-20184 KiB

nn/10-Aug-20184 KiB

opt/10-Aug-20184 KiB

periodic_resample/10-Aug-20184 KiB

pi_examples/10-Aug-20184 KiB

predictor/10-Aug-20184 KiB

py2tf/10-Aug-20184 KiB

quantization/10-Aug-20184 KiB

quantize/10-Aug-20184 KiB

README.md10-Aug-20181.3 KiB

receptive_field/10-Aug-20184 KiB

reduce_slice_ops/10-Aug-20184 KiB

remote_fused_graph/10-Aug-20184 KiB

resampler/10-Aug-20184 KiB

rnn/10-Aug-20184 KiB

saved_model/10-Aug-20184 KiB

seq2seq/10-Aug-20184 KiB

session_bundle/10-Aug-20184 KiB

signal/10-Aug-20184 KiB

slim/10-Aug-20184 KiB

solvers/10-Aug-20184 KiB

sparsemax/10-Aug-20184 KiB

specs/10-Aug-20184 KiB

staging/10-Aug-20184 KiB

stat_summarizer/10-Aug-20184 KiB

stateless/10-Aug-20184 KiB

summary/10-Aug-20184 KiB

tensor_forest/10-Aug-20184 KiB

tensorboard/10-Aug-20184 KiB

tensorrt/10-Aug-20184 KiB

testing/10-Aug-20184 KiB

text/10-Aug-20184 KiB

tfprof/10-Aug-20184 KiB

timeseries/10-Aug-20184 KiB

tpu/10-Aug-20184 KiB

training/10-Aug-20184 KiB

util/10-Aug-20184 KiB

verbs/10-Aug-20184 KiB

README.md

1# TensorFlow contrib
2
3Any code in this directory is not officially supported, and may change or be
4removed at any time without notice.
5
6The contrib directory contains project directories, each of which has designated
7owners. It is meant to contain features and contributions that eventually should
8get merged into core TensorFlow, but whose interfaces may still change, or which
9require some testing to see whether they can find broader acceptance. We are
10trying to keep duplication within contrib to a minimum, so you may be asked to
11refactor code in contrib to use some feature inside core or in another project
12in contrib rather than reimplementing the feature.
13
14When adding a project, please stick to the following directory structure:
15Create a project directory in `contrib/`, and mirror the portions of the
16TensorFlow tree that your project requires underneath `contrib/my_project/`.
17
18For example, let's say you create foo ops in two files: `foo_ops.py` and
19`foo_ops_test.py`. If you were to merge those files directly into TensorFlow,
20they would live in `tensorflow/python/ops/foo_ops.py` and
21`tensorflow/python/kernel_tests/foo_ops_test.py`. In `contrib/`, they are part
22of project `foo`, and their full paths are `contrib/foo/python/ops/foo_ops.py`
23and `contrib/foo/python/kernel_tests/foo_ops_test.py`.
24