-
Notifications
You must be signed in to change notification settings - Fork 5.4k
/
Copy path_toc.yaml
5904 lines (5904 loc) · 293 KB
/
_toc.yaml
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Automatically generated file; please do not edit
toc:
- title: tf
section:
- title: Overview
path: /versions/r1.9/api_docs/python/tf
- title: abs
path: /versions/r1.9/api_docs/python/tf/abs
- title: accumulate_n
path: /versions/r1.9/api_docs/python/tf/accumulate_n
- title: acos
path: /versions/r1.9/api_docs/python/tf/acos
- title: acosh
path: /versions/r1.9/api_docs/python/tf/acosh
- title: add
path: /versions/r1.9/api_docs/python/tf/add
- title: add_check_numerics_ops
path: /versions/r1.9/api_docs/python/tf/add_check_numerics_ops
- title: add_n
path: /versions/r1.9/api_docs/python/tf/add_n
- title: add_to_collection
path: /versions/r1.9/api_docs/python/tf/add_to_collection
- title: add_to_collections
path: /versions/r1.9/api_docs/python/tf/add_to_collections
- title: AggregationMethod
path: /versions/r1.9/api_docs/python/tf/AggregationMethod
- title: all_variables
path: /versions/r1.9/api_docs/python/tf/all_variables
- title: angle
path: /versions/r1.9/api_docs/python/tf/angle
- title: argmax
path: /versions/r1.9/api_docs/python/tf/argmax
- title: argmin
path: /versions/r1.9/api_docs/python/tf/argmin
- title: arg_max
path: /versions/r1.9/api_docs/python/tf/arg_max
- title: arg_min
path: /versions/r1.9/api_docs/python/tf/arg_min
- title: asin
path: /versions/r1.9/api_docs/python/tf/asin
- title: asinh
path: /versions/r1.9/api_docs/python/tf/asinh
- title: Assert
path: /versions/r1.9/api_docs/python/tf/Assert
- title: assert_equal
path: /versions/r1.9/api_docs/python/tf/assert_equal
- title: assert_greater
path: /versions/r1.9/api_docs/python/tf/assert_greater
- title: assert_greater_equal
path: /versions/r1.9/api_docs/python/tf/assert_greater_equal
- title: assert_integer
path: /versions/r1.9/api_docs/python/tf/assert_integer
- title: assert_less
path: /versions/r1.9/api_docs/python/tf/assert_less
- title: assert_less_equal
path: /versions/r1.9/api_docs/python/tf/assert_less_equal
- title: assert_near
path: /versions/r1.9/api_docs/python/tf/assert_near
- title: assert_negative
path: /versions/r1.9/api_docs/python/tf/assert_negative
- title: assert_none_equal
path: /versions/r1.9/api_docs/python/tf/assert_none_equal
- title: assert_non_negative
path: /versions/r1.9/api_docs/python/tf/assert_non_negative
- title: assert_non_positive
path: /versions/r1.9/api_docs/python/tf/assert_non_positive
- title: assert_positive
path: /versions/r1.9/api_docs/python/tf/assert_positive
- title: assert_proper_iterable
path: /versions/r1.9/api_docs/python/tf/assert_proper_iterable
- title: assert_rank
path: /versions/r1.9/api_docs/python/tf/assert_rank
- title: assert_rank_at_least
path: /versions/r1.9/api_docs/python/tf/assert_rank_at_least
- title: assert_rank_in
path: /versions/r1.9/api_docs/python/tf/assert_rank_in
- title: assert_same_float_dtype
path: /versions/r1.9/api_docs/python/tf/assert_same_float_dtype
- title: assert_scalar
path: /versions/r1.9/api_docs/python/tf/assert_scalar
- title: assert_type
path: /versions/r1.9/api_docs/python/tf/assert_type
- title: assert_variables_initialized
path: /versions/r1.9/api_docs/python/tf/assert_variables_initialized
- title: assign
path: /versions/r1.9/api_docs/python/tf/assign
- title: assign_add
path: /versions/r1.9/api_docs/python/tf/assign_add
- title: assign_sub
path: /versions/r1.9/api_docs/python/tf/assign_sub
- title: as_dtype
path: /versions/r1.9/api_docs/python/tf/as_dtype
- title: as_string
path: /versions/r1.9/api_docs/python/tf/as_string
- title: atan
path: /versions/r1.9/api_docs/python/tf/atan
- title: atan2
path: /versions/r1.9/api_docs/python/tf/atan2
- title: atanh
path: /versions/r1.9/api_docs/python/tf/atanh
- title: AttrValue
path: /versions/r1.9/api_docs/python/tf/AttrValue
- title: AttrValue.ListValue
path: /versions/r1.9/api_docs/python/tf/AttrValue/ListValue
- title: batch_to_space
path: /versions/r1.9/api_docs/python/tf/batch_to_space
- title: batch_to_space_nd
path: /versions/r1.9/api_docs/python/tf/batch_to_space_nd
- title: betainc
path: /versions/r1.9/api_docs/python/tf/betainc
- title: bincount
path: /versions/r1.9/api_docs/python/tf/bincount
- title: bitcast
path: /versions/r1.9/api_docs/python/tf/bitcast
- title: boolean_mask
path: /versions/r1.9/api_docs/python/tf/boolean_mask
- title: broadcast_dynamic_shape
path: /versions/r1.9/api_docs/python/tf/broadcast_dynamic_shape
- title: broadcast_static_shape
path: /versions/r1.9/api_docs/python/tf/broadcast_static_shape
- title: case
path: /versions/r1.9/api_docs/python/tf/case
- title: cast
path: /versions/r1.9/api_docs/python/tf/cast
- title: ceil
path: /versions/r1.9/api_docs/python/tf/ceil
- title: check_numerics
path: /versions/r1.9/api_docs/python/tf/check_numerics
- title: cholesky
path: /versions/r1.9/api_docs/python/tf/cholesky
- title: cholesky_solve
path: /versions/r1.9/api_docs/python/tf/cholesky_solve
- title: clip_by_average_norm
path: /versions/r1.9/api_docs/python/tf/clip_by_average_norm
- title: clip_by_global_norm
path: /versions/r1.9/api_docs/python/tf/clip_by_global_norm
- title: clip_by_norm
path: /versions/r1.9/api_docs/python/tf/clip_by_norm
- title: clip_by_value
path: /versions/r1.9/api_docs/python/tf/clip_by_value
- title: colocate_with
path: /versions/r1.9/api_docs/python/tf/colocate_with
- title: complex
path: /versions/r1.9/api_docs/python/tf/complex
- title: concat
path: /versions/r1.9/api_docs/python/tf/concat
- title: cond
path: /versions/r1.9/api_docs/python/tf/cond
- title: ConditionalAccumulator
path: /versions/r1.9/api_docs/python/tf/ConditionalAccumulator
- title: ConditionalAccumulatorBase
path: /versions/r1.9/api_docs/python/tf/ConditionalAccumulatorBase
- title: ConfigProto
path: /versions/r1.9/api_docs/python/tf/ConfigProto
- title: ConfigProto.DeviceCountEntry
path: /versions/r1.9/api_docs/python/tf/ConfigProto/DeviceCountEntry
- title: ConfigProto.Experimental
path: /versions/r1.9/api_docs/python/tf/ConfigProto/Experimental
- title: confusion_matrix
path: /versions/r1.9/api_docs/python/tf/confusion_matrix
- title: conj
path: /versions/r1.9/api_docs/python/tf/conj
- title: constant
path: /versions/r1.9/api_docs/python/tf/constant
- title: constant_initializer
path: /versions/r1.9/api_docs/python/tf/constant_initializer
- title: container
path: /versions/r1.9/api_docs/python/tf/container
- title: control_dependencies
path: /versions/r1.9/api_docs/python/tf/control_dependencies
- title: convert_to_tensor
path: /versions/r1.9/api_docs/python/tf/convert_to_tensor
- title: convert_to_tensor_or_indexed_slices
path: /versions/r1.9/api_docs/python/tf/convert_to_tensor_or_indexed_slices
- title: convert_to_tensor_or_sparse_tensor
path: /versions/r1.9/api_docs/python/tf/convert_to_tensor_or_sparse_tensor
- title: cos
path: /versions/r1.9/api_docs/python/tf/cos
- title: cosh
path: /versions/r1.9/api_docs/python/tf/cosh
- title: count_nonzero
path: /versions/r1.9/api_docs/python/tf/count_nonzero
- title: count_up_to
path: /versions/r1.9/api_docs/python/tf/count_up_to
- title: create_partitioned_variables
path: /versions/r1.9/api_docs/python/tf/create_partitioned_variables
- title: cross
path: /versions/r1.9/api_docs/python/tf/cross
- title: cumprod
path: /versions/r1.9/api_docs/python/tf/cumprod
- title: cumsum
path: /versions/r1.9/api_docs/python/tf/cumsum
- title: custom_gradient
path: /versions/r1.9/api_docs/python/tf/custom_gradient
- title: decode_base64
path: /versions/r1.9/api_docs/python/tf/decode_base64
- title: decode_compressed
path: /versions/r1.9/api_docs/python/tf/decode_compressed
- title: decode_csv
path: /versions/r1.9/api_docs/python/tf/decode_csv
- title: decode_json_example
path: /versions/r1.9/api_docs/python/tf/decode_json_example
- title: decode_raw
path: /versions/r1.9/api_docs/python/tf/decode_raw
- title: delete_session_tensor
path: /versions/r1.9/api_docs/python/tf/delete_session_tensor
- title: depth_to_space
path: /versions/r1.9/api_docs/python/tf/depth_to_space
- title: dequantize
path: /versions/r1.9/api_docs/python/tf/dequantize
- title: deserialize_many_sparse
path: /versions/r1.9/api_docs/python/tf/deserialize_many_sparse
- title: device
path: /versions/r1.9/api_docs/python/tf/device
- title: DeviceSpec
path: /versions/r1.9/api_docs/python/tf/DeviceSpec
- title: diag
path: /versions/r1.9/api_docs/python/tf/diag
- title: diag_part
path: /versions/r1.9/api_docs/python/tf/diag_part
- title: digamma
path: /versions/r1.9/api_docs/python/tf/digamma
- title: Dimension
path: /versions/r1.9/api_docs/python/tf/Dimension
- title: div
path: /versions/r1.9/api_docs/python/tf/div
- title: divide
path: /versions/r1.9/api_docs/python/tf/divide
- title: DType
path: /versions/r1.9/api_docs/python/tf/DType
- title: dynamic_partition
path: /versions/r1.9/api_docs/python/tf/dynamic_partition
- title: dynamic_stitch
path: /versions/r1.9/api_docs/python/tf/dynamic_stitch
- title: edit_distance
path: /versions/r1.9/api_docs/python/tf/edit_distance
- title: einsum
path: /versions/r1.9/api_docs/python/tf/einsum
- title: enable_eager_execution
path: /versions/r1.9/api_docs/python/tf/enable_eager_execution
- title: encode_base64
path: /versions/r1.9/api_docs/python/tf/encode_base64
- title: equal
path: /versions/r1.9/api_docs/python/tf/equal
- title: erf
path: /versions/r1.9/api_docs/python/tf/erf
- title: erfc
path: /versions/r1.9/api_docs/python/tf/erfc
- title: Event
path: /versions/r1.9/api_docs/python/tf/Event
- title: executing_eagerly
path: /versions/r1.9/api_docs/python/tf/executing_eagerly
- title: exp
path: /versions/r1.9/api_docs/python/tf/exp
- title: expand_dims
path: /versions/r1.9/api_docs/python/tf/expand_dims
- title: expm1
path: /versions/r1.9/api_docs/python/tf/expm1
- title: extract_image_patches
path: /versions/r1.9/api_docs/python/tf/extract_image_patches
- title: eye
path: /versions/r1.9/api_docs/python/tf/eye
- title: fake_quant_with_min_max_args
path: /versions/r1.9/api_docs/python/tf/fake_quant_with_min_max_args
- title: fake_quant_with_min_max_args_gradient
path: /versions/r1.9/api_docs/python/tf/fake_quant_with_min_max_args_gradient
- title: fake_quant_with_min_max_vars
path: /versions/r1.9/api_docs/python/tf/fake_quant_with_min_max_vars
- title: fake_quant_with_min_max_vars_gradient
path: /versions/r1.9/api_docs/python/tf/fake_quant_with_min_max_vars_gradient
- title: fake_quant_with_min_max_vars_per_channel
path: /versions/r1.9/api_docs/python/tf/fake_quant_with_min_max_vars_per_channel
- title: fake_quant_with_min_max_vars_per_channel_gradient
path: /versions/r1.9/api_docs/python/tf/fake_quant_with_min_max_vars_per_channel_gradient
- title: fft
path: /versions/r1.9/api_docs/python/tf/fft
- title: fft2d
path: /versions/r1.9/api_docs/python/tf/fft2d
- title: fft3d
path: /versions/r1.9/api_docs/python/tf/fft3d
- title: FIFOQueue
path: /versions/r1.9/api_docs/python/tf/FIFOQueue
- title: fill
path: /versions/r1.9/api_docs/python/tf/fill
- title: FixedLenFeature
path: /versions/r1.9/api_docs/python/tf/FixedLenFeature
- title: FixedLengthRecordReader
path: /versions/r1.9/api_docs/python/tf/FixedLengthRecordReader
- title: FixedLenSequenceFeature
path: /versions/r1.9/api_docs/python/tf/FixedLenSequenceFeature
- title: fixed_size_partitioner
path: /versions/r1.9/api_docs/python/tf/fixed_size_partitioner
- title: floor
path: /versions/r1.9/api_docs/python/tf/floor
- title: floordiv
path: /versions/r1.9/api_docs/python/tf/floordiv
- title: floormod
path: /versions/r1.9/api_docs/python/tf/floormod
- title: floor_div
path: /versions/r1.9/api_docs/python/tf/floor_div
- title: foldl
path: /versions/r1.9/api_docs/python/tf/foldl
- title: foldr
path: /versions/r1.9/api_docs/python/tf/foldr
- title: gather
path: /versions/r1.9/api_docs/python/tf/gather
- title: gather_nd
path: /versions/r1.9/api_docs/python/tf/gather_nd
- title: get_collection
path: /versions/r1.9/api_docs/python/tf/get_collection
- title: get_collection_ref
path: /versions/r1.9/api_docs/python/tf/get_collection_ref
- title: get_default_graph
path: /versions/r1.9/api_docs/python/tf/get_default_graph
- title: get_default_session
path: /versions/r1.9/api_docs/python/tf/get_default_session
- title: get_local_variable
path: /versions/r1.9/api_docs/python/tf/get_local_variable
- title: get_seed
path: /versions/r1.9/api_docs/python/tf/get_seed
- title: get_session_handle
path: /versions/r1.9/api_docs/python/tf/get_session_handle
- title: get_session_tensor
path: /versions/r1.9/api_docs/python/tf/get_session_tensor
- title: get_variable
path: /versions/r1.9/api_docs/python/tf/get_variable
- title: get_variable_scope
path: /versions/r1.9/api_docs/python/tf/get_variable_scope
- title: global_norm
path: /versions/r1.9/api_docs/python/tf/global_norm
- title: global_variables
path: /versions/r1.9/api_docs/python/tf/global_variables
- title: global_variables_initializer
path: /versions/r1.9/api_docs/python/tf/global_variables_initializer
- title: glorot_normal_initializer
path: /versions/r1.9/api_docs/python/tf/glorot_normal_initializer
- title: glorot_uniform_initializer
path: /versions/r1.9/api_docs/python/tf/glorot_uniform_initializer
- title: GPUOptions
path: /versions/r1.9/api_docs/python/tf/GPUOptions
- title: GPUOptions.Experimental
path: /versions/r1.9/api_docs/python/tf/GPUOptions/Experimental
- title: GPUOptions.Experimental.VirtualDevices
path: /versions/r1.9/api_docs/python/tf/GPUOptions/Experimental/VirtualDevices
- title: gradients
path: /versions/r1.9/api_docs/python/tf/gradients
- title: GradientTape
path: /versions/r1.9/api_docs/python/tf/GradientTape
- title: Graph
path: /versions/r1.9/api_docs/python/tf/Graph
- title: GraphDef
path: /versions/r1.9/api_docs/python/tf/GraphDef
- title: GraphKeys
path: /versions/r1.9/api_docs/python/tf/GraphKeys
- title: GraphOptions
path: /versions/r1.9/api_docs/python/tf/GraphOptions
- title: greater
path: /versions/r1.9/api_docs/python/tf/greater
- title: greater_equal
path: /versions/r1.9/api_docs/python/tf/greater_equal
- title: group
path: /versions/r1.9/api_docs/python/tf/group
- title: guarantee_const
path: /versions/r1.9/api_docs/python/tf/guarantee_const
- title: hessians
path: /versions/r1.9/api_docs/python/tf/hessians
- title: HistogramProto
path: /versions/r1.9/api_docs/python/tf/HistogramProto
- title: histogram_fixed_width
path: /versions/r1.9/api_docs/python/tf/histogram_fixed_width
- title: histogram_fixed_width_bins
path: /versions/r1.9/api_docs/python/tf/histogram_fixed_width_bins
- title: identity
path: /versions/r1.9/api_docs/python/tf/identity
- title: IdentityReader
path: /versions/r1.9/api_docs/python/tf/IdentityReader
- title: identity_n
path: /versions/r1.9/api_docs/python/tf/identity_n
- title: ifft
path: /versions/r1.9/api_docs/python/tf/ifft
- title: ifft2d
path: /versions/r1.9/api_docs/python/tf/ifft2d
- title: ifft3d
path: /versions/r1.9/api_docs/python/tf/ifft3d
- title: igamma
path: /versions/r1.9/api_docs/python/tf/igamma
- title: igammac
path: /versions/r1.9/api_docs/python/tf/igammac
- title: imag
path: /versions/r1.9/api_docs/python/tf/imag
- title: import_graph_def
path: /versions/r1.9/api_docs/python/tf/import_graph_def
- title: IndexedSlices
path: /versions/r1.9/api_docs/python/tf/IndexedSlices
- title: initialize_all_tables
path: /versions/r1.9/api_docs/python/tf/initialize_all_tables
- title: initialize_all_variables
path: /versions/r1.9/api_docs/python/tf/initialize_all_variables
- title: initialize_local_variables
path: /versions/r1.9/api_docs/python/tf/initialize_local_variables
- title: initialize_variables
path: /versions/r1.9/api_docs/python/tf/initialize_variables
- title: InteractiveSession
path: /versions/r1.9/api_docs/python/tf/InteractiveSession
- title: invert_permutation
path: /versions/r1.9/api_docs/python/tf/invert_permutation
- title: is_finite
path: /versions/r1.9/api_docs/python/tf/is_finite
- title: is_inf
path: /versions/r1.9/api_docs/python/tf/is_inf
- title: is_nan
path: /versions/r1.9/api_docs/python/tf/is_nan
- title: is_non_decreasing
path: /versions/r1.9/api_docs/python/tf/is_non_decreasing
- title: is_numeric_tensor
path: /versions/r1.9/api_docs/python/tf/is_numeric_tensor
- title: is_strictly_increasing
path: /versions/r1.9/api_docs/python/tf/is_strictly_increasing
- title: is_variable_initialized
path: /versions/r1.9/api_docs/python/tf/is_variable_initialized
- title: lbeta
path: /versions/r1.9/api_docs/python/tf/lbeta
- title: less
path: /versions/r1.9/api_docs/python/tf/less
- title: less_equal
path: /versions/r1.9/api_docs/python/tf/less_equal
- title: lgamma
path: /versions/r1.9/api_docs/python/tf/lgamma
- title: lin_space
path: /versions/r1.9/api_docs/python/tf/lin_space
- title: LMDBReader
path: /versions/r1.9/api_docs/python/tf/LMDBReader
- title: load_file_system_library
path: /versions/r1.9/api_docs/python/tf/load_file_system_library
- title: load_op_library
path: /versions/r1.9/api_docs/python/tf/load_op_library
- title: local_variables
path: /versions/r1.9/api_docs/python/tf/local_variables
- title: local_variables_initializer
path: /versions/r1.9/api_docs/python/tf/local_variables_initializer
- title: log
path: /versions/r1.9/api_docs/python/tf/log
- title: log1p
path: /versions/r1.9/api_docs/python/tf/log1p
- title: logical_and
path: /versions/r1.9/api_docs/python/tf/logical_and
- title: logical_not
path: /versions/r1.9/api_docs/python/tf/logical_not
- title: logical_or
path: /versions/r1.9/api_docs/python/tf/logical_or
- title: logical_xor
path: /versions/r1.9/api_docs/python/tf/logical_xor
- title: LogMessage
path: /versions/r1.9/api_docs/python/tf/LogMessage
- title: log_sigmoid
path: /versions/r1.9/api_docs/python/tf/log_sigmoid
- title: make_ndarray
path: /versions/r1.9/api_docs/python/tf/make_ndarray
- title: make_template
path: /versions/r1.9/api_docs/python/tf/make_template
- title: make_tensor_proto
path: /versions/r1.9/api_docs/python/tf/make_tensor_proto
- title: map_fn
path: /versions/r1.9/api_docs/python/tf/map_fn
- title: matching_files
path: /versions/r1.9/api_docs/python/tf/matching_files
- title: matmul
path: /versions/r1.9/api_docs/python/tf/matmul
- title: matrix_band_part
path: /versions/r1.9/api_docs/python/tf/matrix_band_part
- title: matrix_determinant
path: /versions/r1.9/api_docs/python/tf/matrix_determinant
- title: matrix_diag
path: /versions/r1.9/api_docs/python/tf/matrix_diag
- title: matrix_diag_part
path: /versions/r1.9/api_docs/python/tf/matrix_diag_part
- title: matrix_inverse
path: /versions/r1.9/api_docs/python/tf/matrix_inverse
- title: matrix_set_diag
path: /versions/r1.9/api_docs/python/tf/matrix_set_diag
- title: matrix_solve
path: /versions/r1.9/api_docs/python/tf/matrix_solve
- title: matrix_solve_ls
path: /versions/r1.9/api_docs/python/tf/matrix_solve_ls
- title: matrix_transpose
path: /versions/r1.9/api_docs/python/tf/matrix_transpose
- title: matrix_triangular_solve
path: /versions/r1.9/api_docs/python/tf/matrix_triangular_solve
- title: maximum
path: /versions/r1.9/api_docs/python/tf/maximum
- title: meshgrid
path: /versions/r1.9/api_docs/python/tf/meshgrid
- title: MetaGraphDef
path: /versions/r1.9/api_docs/python/tf/MetaGraphDef
- title: MetaGraphDef.CollectionDefEntry
path: /versions/r1.9/api_docs/python/tf/MetaGraphDef/CollectionDefEntry
- title: MetaGraphDef.MetaInfoDef
path: /versions/r1.9/api_docs/python/tf/MetaGraphDef/MetaInfoDef
- title: MetaGraphDef.SignatureDefEntry
path: /versions/r1.9/api_docs/python/tf/MetaGraphDef/SignatureDefEntry
- title: minimum
path: /versions/r1.9/api_docs/python/tf/minimum
- title: min_max_variable_partitioner
path: /versions/r1.9/api_docs/python/tf/min_max_variable_partitioner
- title: model_variables
path: /versions/r1.9/api_docs/python/tf/model_variables
- title: moving_average_variables
path: /versions/r1.9/api_docs/python/tf/moving_average_variables
- title: multinomial
path: /versions/r1.9/api_docs/python/tf/multinomial
- title: multiply
path: /versions/r1.9/api_docs/python/tf/multiply
- title: NameAttrList
path: /versions/r1.9/api_docs/python/tf/NameAttrList
- title: NameAttrList.AttrEntry
path: /versions/r1.9/api_docs/python/tf/NameAttrList/AttrEntry
- title: name_scope
path: /versions/r1.9/api_docs/python/tf/name_scope
- title: negative
path: /versions/r1.9/api_docs/python/tf/negative
- title: NodeDef
path: /versions/r1.9/api_docs/python/tf/NodeDef
- title: NodeDef.AttrEntry
path: /versions/r1.9/api_docs/python/tf/NodeDef/AttrEntry
- title: NoGradient
path: /versions/r1.9/api_docs/python/tf/NoGradient
- title: norm
path: /versions/r1.9/api_docs/python/tf/norm
- title: not_equal
path: /versions/r1.9/api_docs/python/tf/not_equal
- title: no_op
path: /versions/r1.9/api_docs/python/tf/no_op
- title: no_regularizer
path: /versions/r1.9/api_docs/python/tf/no_regularizer
- title: ones
path: /versions/r1.9/api_docs/python/tf/ones
- title: ones_initializer
path: /versions/r1.9/api_docs/python/tf/ones_initializer
- title: ones_like
path: /versions/r1.9/api_docs/python/tf/ones_like
- title: one_hot
path: /versions/r1.9/api_docs/python/tf/one_hot
- title: Operation
path: /versions/r1.9/api_docs/python/tf/Operation
- title: OpError
path: /versions/r1.9/api_docs/python/tf/OpError
- title: OptimizerOptions
path: /versions/r1.9/api_docs/python/tf/OptimizerOptions
- title: op_scope
path: /versions/r1.9/api_docs/python/tf/op_scope
- title: orthogonal_initializer
path: /versions/r1.9/api_docs/python/tf/orthogonal_initializer
- title: pad
path: /versions/r1.9/api_docs/python/tf/pad
- title: PaddingFIFOQueue
path: /versions/r1.9/api_docs/python/tf/PaddingFIFOQueue
- title: parallel_stack
path: /versions/r1.9/api_docs/python/tf/parallel_stack
- title: parse_example
path: /versions/r1.9/api_docs/python/tf/parse_example
- title: parse_single_example
path: /versions/r1.9/api_docs/python/tf/parse_single_example
- title: parse_single_sequence_example
path: /versions/r1.9/api_docs/python/tf/parse_single_sequence_example
- title: parse_tensor
path: /versions/r1.9/api_docs/python/tf/parse_tensor
- title: placeholder
path: /versions/r1.9/api_docs/python/tf/placeholder
- title: placeholder_with_default
path: /versions/r1.9/api_docs/python/tf/placeholder_with_default
- title: polygamma
path: /versions/r1.9/api_docs/python/tf/polygamma
- title: pow
path: /versions/r1.9/api_docs/python/tf/pow
- title: Print
path: /versions/r1.9/api_docs/python/tf/Print
- title: PriorityQueue
path: /versions/r1.9/api_docs/python/tf/PriorityQueue
- title: py_func
path: /versions/r1.9/api_docs/python/tf/py_func
- title: qr
path: /versions/r1.9/api_docs/python/tf/qr
- title: quantize
path: /versions/r1.9/api_docs/python/tf/quantize
- title: quantized_concat
path: /versions/r1.9/api_docs/python/tf/quantized_concat
- title: quantize_v2
path: /versions/r1.9/api_docs/python/tf/quantize_v2
- title: QueueBase
path: /versions/r1.9/api_docs/python/tf/QueueBase
- title: RandomShuffleQueue
path: /versions/r1.9/api_docs/python/tf/RandomShuffleQueue
- title: random_crop
path: /versions/r1.9/api_docs/python/tf/random_crop
- title: random_gamma
path: /versions/r1.9/api_docs/python/tf/random_gamma
- title: random_normal
path: /versions/r1.9/api_docs/python/tf/random_normal
- title: random_normal_initializer
path: /versions/r1.9/api_docs/python/tf/random_normal_initializer
- title: random_poisson
path: /versions/r1.9/api_docs/python/tf/random_poisson
- title: random_shuffle
path: /versions/r1.9/api_docs/python/tf/random_shuffle
- title: random_uniform
path: /versions/r1.9/api_docs/python/tf/random_uniform
- title: random_uniform_initializer
path: /versions/r1.9/api_docs/python/tf/random_uniform_initializer
- title: range
path: /versions/r1.9/api_docs/python/tf/range
- title: rank
path: /versions/r1.9/api_docs/python/tf/rank
- title: ReaderBase
path: /versions/r1.9/api_docs/python/tf/ReaderBase
- title: read_file
path: /versions/r1.9/api_docs/python/tf/read_file
- title: real
path: /versions/r1.9/api_docs/python/tf/real
- title: realdiv
path: /versions/r1.9/api_docs/python/tf/realdiv
- title: reciprocal
path: /versions/r1.9/api_docs/python/tf/reciprocal
- title: reduce_all
path: /versions/r1.9/api_docs/python/tf/reduce_all
- title: reduce_any
path: /versions/r1.9/api_docs/python/tf/reduce_any
- title: reduce_join
path: /versions/r1.9/api_docs/python/tf/reduce_join
- title: reduce_logsumexp
path: /versions/r1.9/api_docs/python/tf/reduce_logsumexp
- title: reduce_max
path: /versions/r1.9/api_docs/python/tf/reduce_max
- title: reduce_mean
path: /versions/r1.9/api_docs/python/tf/reduce_mean
- title: reduce_min
path: /versions/r1.9/api_docs/python/tf/reduce_min
- title: reduce_prod
path: /versions/r1.9/api_docs/python/tf/reduce_prod
- title: reduce_sum
path: /versions/r1.9/api_docs/python/tf/reduce_sum
- title: regex_replace
path: /versions/r1.9/api_docs/python/tf/regex_replace
- title: RegisterGradient
path: /versions/r1.9/api_docs/python/tf/RegisterGradient
- title: register_tensor_conversion_function
path: /versions/r1.9/api_docs/python/tf/register_tensor_conversion_function
- title: report_uninitialized_variables
path: /versions/r1.9/api_docs/python/tf/report_uninitialized_variables
- title: required_space_to_batch_paddings
path: /versions/r1.9/api_docs/python/tf/required_space_to_batch_paddings
- title: reset_default_graph
path: /versions/r1.9/api_docs/python/tf/reset_default_graph
- title: reshape
path: /versions/r1.9/api_docs/python/tf/reshape
- title: reverse
path: /versions/r1.9/api_docs/python/tf/reverse
- title: reverse_sequence
path: /versions/r1.9/api_docs/python/tf/reverse_sequence
- title: reverse_v2
path: /versions/r1.9/api_docs/python/tf/reverse_v2
- title: rint
path: /versions/r1.9/api_docs/python/tf/rint
- title: round
path: /versions/r1.9/api_docs/python/tf/round
- title: rsqrt
path: /versions/r1.9/api_docs/python/tf/rsqrt
- title: RunMetadata
path: /versions/r1.9/api_docs/python/tf/RunMetadata
- title: RunOptions
path: /versions/r1.9/api_docs/python/tf/RunOptions
- title: RunOptions.Experimental
path: /versions/r1.9/api_docs/python/tf/RunOptions/Experimental
- title: saturate_cast
path: /versions/r1.9/api_docs/python/tf/saturate_cast
- title: scalar_mul
path: /versions/r1.9/api_docs/python/tf/scalar_mul
- title: scan
path: /versions/r1.9/api_docs/python/tf/scan
- title: scatter_add
path: /versions/r1.9/api_docs/python/tf/scatter_add
- title: scatter_div
path: /versions/r1.9/api_docs/python/tf/scatter_div
- title: scatter_max
path: /versions/r1.9/api_docs/python/tf/scatter_max
- title: scatter_min
path: /versions/r1.9/api_docs/python/tf/scatter_min
- title: scatter_mul
path: /versions/r1.9/api_docs/python/tf/scatter_mul
- title: scatter_nd
path: /versions/r1.9/api_docs/python/tf/scatter_nd
- title: scatter_nd_add
path: /versions/r1.9/api_docs/python/tf/scatter_nd_add
- title: scatter_nd_sub
path: /versions/r1.9/api_docs/python/tf/scatter_nd_sub
- title: scatter_nd_update
path: /versions/r1.9/api_docs/python/tf/scatter_nd_update
- title: scatter_sub
path: /versions/r1.9/api_docs/python/tf/scatter_sub
- title: scatter_update
path: /versions/r1.9/api_docs/python/tf/scatter_update
- title: segment_max
path: /versions/r1.9/api_docs/python/tf/segment_max
- title: segment_mean
path: /versions/r1.9/api_docs/python/tf/segment_mean
- title: segment_min
path: /versions/r1.9/api_docs/python/tf/segment_min
- title: segment_prod
path: /versions/r1.9/api_docs/python/tf/segment_prod
- title: segment_sum
path: /versions/r1.9/api_docs/python/tf/segment_sum
- title: self_adjoint_eig
path: /versions/r1.9/api_docs/python/tf/self_adjoint_eig
- title: self_adjoint_eigvals
path: /versions/r1.9/api_docs/python/tf/self_adjoint_eigvals
- title: sequence_mask
path: /versions/r1.9/api_docs/python/tf/sequence_mask
- title: serialize_many_sparse
path: /versions/r1.9/api_docs/python/tf/serialize_many_sparse
- title: serialize_sparse
path: /versions/r1.9/api_docs/python/tf/serialize_sparse
- title: serialize_tensor
path: /versions/r1.9/api_docs/python/tf/serialize_tensor
- title: Session
path: /versions/r1.9/api_docs/python/tf/Session
- title: SessionLog
path: /versions/r1.9/api_docs/python/tf/SessionLog
- title: setdiff1d
path: /versions/r1.9/api_docs/python/tf/setdiff1d
- title: set_random_seed
path: /versions/r1.9/api_docs/python/tf/set_random_seed
- title: shape
path: /versions/r1.9/api_docs/python/tf/shape
- title: shape_n
path: /versions/r1.9/api_docs/python/tf/shape_n
- title: sigmoid
path: /versions/r1.9/api_docs/python/tf/sigmoid
- title: sign
path: /versions/r1.9/api_docs/python/tf/sign
- title: sin
path: /versions/r1.9/api_docs/python/tf/sin
- title: sinh
path: /versions/r1.9/api_docs/python/tf/sinh
- title: size
path: /versions/r1.9/api_docs/python/tf/size
- title: slice
path: /versions/r1.9/api_docs/python/tf/slice
- title: space_to_batch
path: /versions/r1.9/api_docs/python/tf/space_to_batch
- title: space_to_batch_nd
path: /versions/r1.9/api_docs/python/tf/space_to_batch_nd
- title: space_to_depth
path: /versions/r1.9/api_docs/python/tf/space_to_depth
- title: SparseConditionalAccumulator
path: /versions/r1.9/api_docs/python/tf/SparseConditionalAccumulator
- title: SparseFeature
path: /versions/r1.9/api_docs/python/tf/SparseFeature
- title: SparseTensor
path: /versions/r1.9/api_docs/python/tf/SparseTensor
- title: SparseTensorValue
path: /versions/r1.9/api_docs/python/tf/SparseTensorValue
- title: sparse_add
path: /versions/r1.9/api_docs/python/tf/sparse_add
- title: sparse_concat
path: /versions/r1.9/api_docs/python/tf/sparse_concat
- title: sparse_fill_empty_rows
path: /versions/r1.9/api_docs/python/tf/sparse_fill_empty_rows
- title: sparse_mask
path: /versions/r1.9/api_docs/python/tf/sparse_mask
- title: sparse_matmul
path: /versions/r1.9/api_docs/python/tf/sparse_matmul
- title: sparse_maximum
path: /versions/r1.9/api_docs/python/tf/sparse_maximum
- title: sparse_merge
path: /versions/r1.9/api_docs/python/tf/sparse_merge
- title: sparse_minimum
path: /versions/r1.9/api_docs/python/tf/sparse_minimum
- title: sparse_placeholder
path: /versions/r1.9/api_docs/python/tf/sparse_placeholder
- title: sparse_reduce_max
path: /versions/r1.9/api_docs/python/tf/sparse_reduce_max
- title: sparse_reduce_max_sparse
path: /versions/r1.9/api_docs/python/tf/sparse_reduce_max_sparse
- title: sparse_reduce_sum
path: /versions/r1.9/api_docs/python/tf/sparse_reduce_sum
- title: sparse_reduce_sum_sparse
path: /versions/r1.9/api_docs/python/tf/sparse_reduce_sum_sparse
- title: sparse_reorder
path: /versions/r1.9/api_docs/python/tf/sparse_reorder
- title: sparse_reset_shape
path: /versions/r1.9/api_docs/python/tf/sparse_reset_shape
- title: sparse_reshape
path: /versions/r1.9/api_docs/python/tf/sparse_reshape
- title: sparse_retain
path: /versions/r1.9/api_docs/python/tf/sparse_retain
- title: sparse_segment_mean
path: /versions/r1.9/api_docs/python/tf/sparse_segment_mean
- title: sparse_segment_sqrt_n
path: /versions/r1.9/api_docs/python/tf/sparse_segment_sqrt_n
- title: sparse_segment_sum
path: /versions/r1.9/api_docs/python/tf/sparse_segment_sum
- title: sparse_slice
path: /versions/r1.9/api_docs/python/tf/sparse_slice
- title: sparse_softmax
path: /versions/r1.9/api_docs/python/tf/sparse_softmax
- title: sparse_split
path: /versions/r1.9/api_docs/python/tf/sparse_split
- title: sparse_tensor_dense_matmul
path: /versions/r1.9/api_docs/python/tf/sparse_tensor_dense_matmul
- title: sparse_tensor_to_dense
path: /versions/r1.9/api_docs/python/tf/sparse_tensor_to_dense
- title: sparse_to_dense
path: /versions/r1.9/api_docs/python/tf/sparse_to_dense
- title: sparse_to_indicator
path: /versions/r1.9/api_docs/python/tf/sparse_to_indicator
- title: sparse_transpose
path: /versions/r1.9/api_docs/python/tf/sparse_transpose
- title: split
path: /versions/r1.9/api_docs/python/tf/split
- title: sqrt
path: /versions/r1.9/api_docs/python/tf/sqrt
- title: square
path: /versions/r1.9/api_docs/python/tf/square
- title: squared_difference
path: /versions/r1.9/api_docs/python/tf/squared_difference
- title: squeeze
path: /versions/r1.9/api_docs/python/tf/squeeze
- title: stack
path: /versions/r1.9/api_docs/python/tf/stack
- title: stop_gradient
path: /versions/r1.9/api_docs/python/tf/stop_gradient
- title: strided_slice
path: /versions/r1.9/api_docs/python/tf/strided_slice
- title: string_join
path: /versions/r1.9/api_docs/python/tf/string_join
- title: string_split
path: /versions/r1.9/api_docs/python/tf/string_split
- title: string_strip
path: /versions/r1.9/api_docs/python/tf/string_strip
- title: string_to_hash_bucket
path: /versions/r1.9/api_docs/python/tf/string_to_hash_bucket
- title: string_to_hash_bucket_fast
path: /versions/r1.9/api_docs/python/tf/string_to_hash_bucket_fast
- title: string_to_hash_bucket_strong
path: /versions/r1.9/api_docs/python/tf/string_to_hash_bucket_strong
- title: string_to_number
path: /versions/r1.9/api_docs/python/tf/string_to_number
- title: substr
path: /versions/r1.9/api_docs/python/tf/substr
- title: subtract
path: /versions/r1.9/api_docs/python/tf/subtract
- title: Summary
path: /versions/r1.9/api_docs/python/tf/Summary
- title: Summary.Audio
path: /versions/r1.9/api_docs/python/tf/Summary/Audio
- title: Summary.Image
path: /versions/r1.9/api_docs/python/tf/Summary/Image
- title: Summary.Value
path: /versions/r1.9/api_docs/python/tf/Summary/Value
- title: SummaryMetadata
path: /versions/r1.9/api_docs/python/tf/SummaryMetadata
- title: SummaryMetadata.PluginData
path: /versions/r1.9/api_docs/python/tf/SummaryMetadata/PluginData
- title: svd
path: /versions/r1.9/api_docs/python/tf/svd
- title: tables_initializer
path: /versions/r1.9/api_docs/python/tf/tables_initializer
- title: tan
path: /versions/r1.9/api_docs/python/tf/tan
- title: tanh
path: /versions/r1.9/api_docs/python/tf/tanh
- title: Tensor
path: /versions/r1.9/api_docs/python/tf/Tensor
- title: TensorArray
path: /versions/r1.9/api_docs/python/tf/TensorArray
- title: tensordot
path: /versions/r1.9/api_docs/python/tf/tensordot
- title: TensorInfo
path: /versions/r1.9/api_docs/python/tf/TensorInfo
- title: TensorInfo.CooSparse
path: /versions/r1.9/api_docs/python/tf/TensorInfo/CooSparse
- title: TensorShape
path: /versions/r1.9/api_docs/python/tf/TensorShape
- title: TextLineReader
path: /versions/r1.9/api_docs/python/tf/TextLineReader
- title: TFRecordReader
path: /versions/r1.9/api_docs/python/tf/TFRecordReader
- title: tile
path: /versions/r1.9/api_docs/python/tf/tile
- title: timestamp
path: /versions/r1.9/api_docs/python/tf/timestamp
- title: to_bfloat16
path: /versions/r1.9/api_docs/python/tf/to_bfloat16
- title: to_complex128
path: /versions/r1.9/api_docs/python/tf/to_complex128
- title: to_complex64
path: /versions/r1.9/api_docs/python/tf/to_complex64
- title: to_double
path: /versions/r1.9/api_docs/python/tf/to_double
- title: to_float
path: /versions/r1.9/api_docs/python/tf/to_float
- title: to_int32
path: /versions/r1.9/api_docs/python/tf/to_int32
- title: to_int64
path: /versions/r1.9/api_docs/python/tf/to_int64
- title: trace
path: /versions/r1.9/api_docs/python/tf/trace
- title: trainable_variables
path: /versions/r1.9/api_docs/python/tf/trainable_variables
- title: transpose
path: /versions/r1.9/api_docs/python/tf/transpose
- title: truediv
path: /versions/r1.9/api_docs/python/tf/truediv
- title: truncatediv
path: /versions/r1.9/api_docs/python/tf/truncatediv
- title: truncated_normal
path: /versions/r1.9/api_docs/python/tf/truncated_normal
- title: truncated_normal_initializer
path: /versions/r1.9/api_docs/python/tf/truncated_normal_initializer
- title: truncatemod
path: /versions/r1.9/api_docs/python/tf/truncatemod
- title: tuple
path: /versions/r1.9/api_docs/python/tf/tuple
- title: uniform_unit_scaling_initializer
path: /versions/r1.9/api_docs/python/tf/uniform_unit_scaling_initializer
- title: unique
path: /versions/r1.9/api_docs/python/tf/unique
- title: unique_with_counts
path: /versions/r1.9/api_docs/python/tf/unique_with_counts
- title: unravel_index
path: /versions/r1.9/api_docs/python/tf/unravel_index
- title: unsorted_segment_max
path: /versions/r1.9/api_docs/python/tf/unsorted_segment_max
- title: unsorted_segment_mean
path: /versions/r1.9/api_docs/python/tf/unsorted_segment_mean
- title: unsorted_segment_min
path: /versions/r1.9/api_docs/python/tf/unsorted_segment_min
- title: unsorted_segment_prod
path: /versions/r1.9/api_docs/python/tf/unsorted_segment_prod
- title: unsorted_segment_sqrt_n
path: /versions/r1.9/api_docs/python/tf/unsorted_segment_sqrt_n
- title: unsorted_segment_sum
path: /versions/r1.9/api_docs/python/tf/unsorted_segment_sum
- title: unstack
path: /versions/r1.9/api_docs/python/tf/unstack
- title: Variable
path: /versions/r1.9/api_docs/python/tf/Variable
- title: Variable.SaveSliceInfo
path: /versions/r1.9/api_docs/python/tf/Variable/SaveSliceInfo
- title: VariableScope
path: /versions/r1.9/api_docs/python/tf/VariableScope
- title: variables_initializer
path: /versions/r1.9/api_docs/python/tf/variables_initializer
- title: variable_axis_size_partitioner
path: /versions/r1.9/api_docs/python/tf/variable_axis_size_partitioner
- title: variable_op_scope
path: /versions/r1.9/api_docs/python/tf/variable_op_scope
- title: variable_scope
path: /versions/r1.9/api_docs/python/tf/variable_scope
- title: variance_scaling_initializer
path: /versions/r1.9/api_docs/python/tf/variance_scaling_initializer
- title: VarLenFeature
path: /versions/r1.9/api_docs/python/tf/VarLenFeature
- title: verify_tensor_all_finite
path: /versions/r1.9/api_docs/python/tf/verify_tensor_all_finite
- title: where
path: /versions/r1.9/api_docs/python/tf/where
- title: while_loop
path: /versions/r1.9/api_docs/python/tf/while_loop
- title: WholeFileReader
path: /versions/r1.9/api_docs/python/tf/WholeFileReader
- title: write_file
path: /versions/r1.9/api_docs/python/tf/write_file
- title: zeros
path: /versions/r1.9/api_docs/python/tf/zeros
- title: zeros_initializer
path: /versions/r1.9/api_docs/python/tf/zeros_initializer
- title: zeros_like
path: /versions/r1.9/api_docs/python/tf/zeros_like
- title: zeta
path: /versions/r1.9/api_docs/python/tf/zeta
- title: tf.app
section:
- title: Overview
path: /versions/r1.9/api_docs/python/tf/app
- title: run
path: /versions/r1.9/api_docs/python/tf/app/run
- title: tf.bitwise
section:
- title: Overview
path: /versions/r1.9/api_docs/python/tf/bitwise
- title: bitwise_and
path: /versions/r1.9/api_docs/python/tf/bitwise/bitwise_and
- title: bitwise_or
path: /versions/r1.9/api_docs/python/tf/bitwise/bitwise_or
- title: bitwise_xor
path: /versions/r1.9/api_docs/python/tf/bitwise/bitwise_xor
- title: invert
path: /versions/r1.9/api_docs/python/tf/bitwise/invert
- title: left_shift
path: /versions/r1.9/api_docs/python/tf/bitwise/left_shift