• Home
  • History
  • Annotate
Name
Date
Size
#Lines
LOC

..--

all_reduce/23-Nov-2023-9650

android/23-Nov-2023-1,6511,085

autograph/23-Nov-2023-7,7647,544

batching/23-Nov-2023-736558

bayesflow/23-Nov-2023-808546

benchmark_tools/22-Nov-2023-1610

bigtable/23-Nov-2023-4,6603,566

boosted_trees/23-Nov-2023-34,54926,794

checkpoint/23-Nov-2023-1,102803

cloud/23-Nov-2023-2,9962,313

cluster_resolver/23-Nov-2023-425188

cmake/23-Nov-2023-7,4946,497

coder/23-Nov-2023-2,3611,536

compiler/23-Nov-2023-1,9801,443

constrained_optimization/23-Nov-2023-2,7352,023

copy_graph/23-Nov-2023-492270

crf/23-Nov-2023-1,166869

cudnn_rnn/23-Nov-2023-5,6714,776

data/23-Nov-2023-3,1242,307

decision_trees/22-Nov-2023-283214

deprecated/23-Nov-2023-207138

distribute/23-Nov-2023-16,84712,697

distributions/23-Nov-2023-40,06930,355

eager/23-Nov-2023-18,91314,941

estimator/23-Nov-2023-751411

factorization/23-Nov-2023-8,1856,405

feature_column/23-Nov-2023-2,4141,850

ffmpeg/23-Nov-2023-2,1931,633

framework/23-Nov-2023-6,3084,766

fused_conv/23-Nov-2023-2,6852,122

gan/23-Nov-2023-14,34210,777

gdr/23-Nov-2023-1,8881,413

graph_editor/23-Nov-2023-5,0133,948

grid_rnn/23-Nov-2023-1,5261,196

hadoop/23-Nov-2023-686489

hooks/23-Nov-2023-16270

hvx/23-Nov-2023-2,1801,570

ignite/23-Nov-2023-5,6193,895

image/23-Nov-2023-6,0224,460

input_pipeline/23-Nov-2023-509337

integrate/23-Nov-2023-1,116828

kafka/23-Nov-2023-789557

keras/23-Nov-2023-1,466759

kernel_methods/23-Nov-2023-1,8201,343

kfac/23-Nov-2023-42

kinesis/23-Nov-2023-810610

labeled_tensor/23-Nov-2023-5,7934,256

layers/23-Nov-2023-25,18320,593

learn/23-Nov-2023-45,92036,732

legacy_seq2seq/23-Nov-2023-2,4932,021

libsvm/23-Nov-2023-475329

linear_optimizer/23-Nov-2023-4,4993,467

lite/23-Nov-2023-10,0227,880

lookup/23-Nov-2023-1,9631,539

losses/23-Nov-2023-3,7852,901

makefile/23-Nov-2023-4,5763,318

memory_stats/23-Nov-2023-423261

meta_graph_transform/23-Nov-2023-1,4581,094

metrics/23-Nov-2023-12,70310,176

mixed_precision/23-Nov-2023-918668

model_pruning/23-Nov-2023-4,7783,554

mpi/23-Nov-2023-1,094730

mpi_collectives/23-Nov-2023-4,9003,054

nearest_neighbor/23-Nov-2023-1,241847

nn/23-Nov-2023-1,5261,086

opt/23-Nov-2023-11,5318,712

optimizer_v2/23-Nov-2023-5,5914,346

periodic_resample/23-Nov-2023-1,012704

pi_examples/22-Nov-2023-1,199953

predictor/23-Nov-2023-1,3811,002

proto/23-Nov-2023-1,6991,280

quantization/23-Nov-2023-19992

quantize/23-Nov-2023-6,8335,366

rate/23-Nov-2023-299220

receptive_field/23-Nov-2023-3,4112,658

recurrent/23-Nov-2023-1,8231,331

reduce_slice_ops/23-Nov-2023-1,084804

remote_fused_graph/22-Nov-2023-267146

resampler/23-Nov-2023-1,5731,105

rnn/23-Nov-2023-14,56511,581

rpc/23-Nov-2023-743558

saved_model/23-Nov-2023-905567

seq2seq/23-Nov-2023-11,7069,539

session_bundle/23-Nov-2023-5,9384,494

signal/23-Nov-2023-9751

slim/23-Nov-2023-13,53010,742

solvers/23-Nov-2023-1,143798

sparsemax/23-Nov-2023-830504

specs/23-Nov-2023-1,6651,143

staging/23-Nov-2023-3616

stat_summarizer/23-Nov-2023-14881

stateless/23-Nov-2023-12471

summary/23-Nov-2023-1,029792

tensor_forest/23-Nov-2023-15,79611,268

tensorboard/23-Nov-2023-279162

tensorrt/23-Nov-2023-904557

testing/23-Nov-2023-326226

text/23-Nov-2023-1,4201,085

tfprof/23-Nov-2023-233142

timeseries/23-Nov-2023-16,83913,887

tpu/23-Nov-2023-4,3552,908

training/23-Nov-2023-10,1137,729

util/23-Nov-2023-671433

verbs/23-Nov-2023-4,0352,944

BUILDD23-Nov-202310.4 KiB253246

README.mdD22-Nov-20231.3 KiB2419

__init__.pyD23-Nov-20234.4 KiB11390

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