Home | History | Annotate | only in /external/tensorflow/tensorflow/contrib
Up to higher level directory
NameDateSize
__init__.py21-Aug-20184K
all_reduce/21-Aug-2018
android/21-Aug-2018
batching/21-Aug-2018
bayesflow/21-Aug-2018
benchmark_tools/21-Aug-2018
boosted_trees/21-Aug-2018
BUILD21-Aug-20187.6K
cloud/21-Aug-2018
cluster_resolver/21-Aug-2018
cmake/21-Aug-2018
coder/21-Aug-2018
compiler/21-Aug-2018
copy_graph/21-Aug-2018
crf/21-Aug-2018
cudnn_rnn/21-Aug-2018
data/21-Aug-2018
decision_trees/21-Aug-2018
deprecated/21-Aug-2018
distributions/21-Aug-2018
eager/21-Aug-2018
estimator/21-Aug-2018
factorization/21-Aug-2018
feature_column/21-Aug-2018
ffmpeg/21-Aug-2018
framework/21-Aug-2018
fused_conv/21-Aug-2018
gan/21-Aug-2018
gdr/21-Aug-2018
graph_editor/21-Aug-2018
grid_rnn/21-Aug-2018
hooks/21-Aug-2018
hvx/21-Aug-2018
image/21-Aug-2018
input_pipeline/21-Aug-2018
integrate/21-Aug-2018
kafka/21-Aug-2018
keras/21-Aug-2018
kernel_methods/21-Aug-2018
kfac/21-Aug-2018
labeled_tensor/21-Aug-2018
layers/21-Aug-2018
learn/21-Aug-2018
legacy_seq2seq/21-Aug-2018
libsvm/21-Aug-2018
linalg/21-Aug-2018
linear_optimizer/21-Aug-2018
lite/21-Aug-2018
lookup/21-Aug-2018
losses/21-Aug-2018
makefile/21-Aug-2018
memory_stats/21-Aug-2018
meta_graph_transform/21-Aug-2018
metrics/21-Aug-2018
model_pruning/21-Aug-2018
mpi/21-Aug-2018
mpi_collectives/21-Aug-2018
nccl/21-Aug-2018
nearest_neighbor/21-Aug-2018
nn/21-Aug-2018
opt/21-Aug-2018
periodic_resample/21-Aug-2018
pi_examples/21-Aug-2018
predictor/21-Aug-2018
py2tf/21-Aug-2018
quantization/21-Aug-2018
quantize/21-Aug-2018
README.md21-Aug-20181.3K
receptive_field/21-Aug-2018
reduce_slice_ops/21-Aug-2018
remote_fused_graph/21-Aug-2018
resampler/21-Aug-2018
rnn/21-Aug-2018
saved_model/21-Aug-2018
seq2seq/21-Aug-2018
session_bundle/21-Aug-2018
signal/21-Aug-2018
slim/21-Aug-2018
solvers/21-Aug-2018
sparsemax/21-Aug-2018
specs/21-Aug-2018
staging/21-Aug-2018
stat_summarizer/21-Aug-2018
stateless/21-Aug-2018
summary/21-Aug-2018
tensor_forest/21-Aug-2018
tensorboard/21-Aug-2018
tensorrt/21-Aug-2018
testing/21-Aug-2018
text/21-Aug-2018
tfprof/21-Aug-2018
timeseries/21-Aug-2018
tpu/21-Aug-2018
training/21-Aug-2018
util/21-Aug-2018
verbs/21-Aug-2018

README.md

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