-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtf_apis.txt
More file actions
1409 lines (1409 loc) · 34.2 KB
/
Copy pathtf_apis.txt
File metadata and controls
1409 lines (1409 loc) · 34.2 KB
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
tf.CriticalSection
tf.GradientTape
tf.Graph
tf.IndexedSlices
tf.Module
tf.argsort
tf.audio.decode_wav
tf.audio.encode_wav
tf.autodiff.ForwardAccumulator
tf.batch_to_space
tf.bitcast
tf.bitwise.bitwise_and
tf.bitwise.bitwise_or
tf.bitwise.bitwise_xor
tf.bitwise.invert
tf.bitwise.left_shift
tf.bitwise.right_shift
tf.boolean_mask
tf.broadcast_dynamic_shape
tf.broadcast_static_shape
tf.broadcast_to
tf.case
tf.cast
tf.clip_by_global_norm
tf.clip_by_norm
tf.clip_by_value
tf.compat.as_bytes
tf.compat.as_str
tf.compat.as_str_any
tf.compat.as_text
tf.compat.dimension_at_index
tf.compat.dimension_value
tf.compat.forward_compatible
tf.compat.path_to_str
tf.concat
tf.convert_to_tensor
tf.data.experimental.Counter
tf.data.experimental.DistributeOptions
tf.data.experimental.OptimizationOptions
tf.data.experimental.Reducer
tf.data.experimental.TFRecordWriter
tf.data.experimental.ThreadingOptions
tf.data.experimental.assert_cardinality
tf.data.experimental.bucket_by_sequence_length
tf.data.experimental.cardinality
tf.data.experimental.choose_from_datasets
tf.data.experimental.copy_to_device
tf.data.experimental.enumerate_dataset
tf.data.experimental.from_variant
tf.data.experimental.get_single_element
tf.data.experimental.get_structure
tf.data.experimental.group_by_reducer
tf.data.experimental.group_by_window
tf.data.experimental.ignore_errors
tf.data.experimental.load
tf.data.experimental.make_csv_dataset
tf.data.experimental.make_saveable_from_iterator
tf.data.experimental.map_and_batch
tf.data.experimental.prefetch_to_device
tf.data.experimental.sample_from_datasets
tf.data.experimental.save
tf.data.experimental.scan
tf.data.experimental.service.WorkerServer
tf.data.experimental.service.distribute
tf.data.experimental.service.from_dataset_id
tf.data.experimental.service.register_dataset
tf.data.experimental.shuffle_and_repeat
tf.data.experimental.take_while
tf.data.experimental.to_variant
tf.data.experimental.unbatch
tf.data.experimental.unique
tf.device
tf.dtypes.as_dtype
tf.dtypes.complex
tf.dtypes.saturate_cast
tf.dynamic_partition
tf.dynamic_stitch
tf.edit_distance
tf.einsum
tf.ensure_shape
tf.executing_eagerly
tf.expand_dims
tf.experimental.async_clear_error
tf.experimental.dlpack.from_dlpack
tf.experimental.dlpack.to_dlpack
tf.experimental.numpy.abs
tf.experimental.numpy.absolute
tf.experimental.numpy.add
tf.experimental.numpy.all
tf.experimental.numpy.allclose
tf.experimental.numpy.amax
tf.experimental.numpy.amin
tf.experimental.numpy.angle
tf.experimental.numpy.any
tf.experimental.numpy.append
tf.experimental.numpy.arange
tf.experimental.numpy.arccos
tf.experimental.numpy.arccosh
tf.experimental.numpy.arcsin
tf.experimental.numpy.arcsinh
tf.experimental.numpy.arctan
tf.experimental.numpy.arctan2
tf.experimental.numpy.arctanh
tf.experimental.numpy.argmax
tf.experimental.numpy.argmin
tf.experimental.numpy.argsort
tf.experimental.numpy.around
tf.experimental.numpy.array
tf.experimental.numpy.array_equal
tf.experimental.numpy.asanyarray
tf.experimental.numpy.asarray
tf.experimental.numpy.ascontiguousarray
tf.experimental.numpy.atleast_1d
tf.experimental.numpy.atleast_2d
tf.experimental.numpy.atleast_3d
tf.experimental.numpy.average
tf.experimental.numpy.bitwise_and
tf.experimental.numpy.bitwise_not
tf.experimental.numpy.bitwise_or
tf.experimental.numpy.bitwise_xor
tf.experimental.numpy.broadcast_arrays
tf.experimental.numpy.broadcast_to
tf.experimental.numpy.cbrt
tf.experimental.numpy.ceil
tf.experimental.numpy.clip
tf.experimental.numpy.compress
tf.experimental.numpy.concatenate
tf.experimental.numpy.conj
tf.experimental.numpy.conjugate
tf.experimental.numpy.copy
tf.experimental.numpy.cos
tf.experimental.numpy.cosh
tf.experimental.numpy.count_nonzero
tf.experimental.numpy.cross
tf.experimental.numpy.cumprod
tf.experimental.numpy.cumsum
tf.experimental.numpy.deg2rad
tf.experimental.numpy.diag
tf.experimental.numpy.diag_indices
tf.experimental.numpy.diagflat
tf.experimental.numpy.diagonal
tf.experimental.numpy.diff
tf.experimental.numpy.divide
tf.experimental.numpy.divmod
tf.experimental.numpy.dot
tf.experimental.numpy.dsplit
tf.experimental.numpy.dstack
tf.experimental.numpy.einsum
tf.experimental.numpy.empty
tf.experimental.numpy.empty_like
tf.experimental.numpy.equal
tf.experimental.numpy.exp
tf.experimental.numpy.exp2
tf.experimental.numpy.expand_dims
tf.experimental.numpy.expm1
tf.experimental.numpy.eye
tf.experimental.numpy.fabs
tf.experimental.numpy.finfo
tf.experimental.numpy.fix
tf.experimental.numpy.flip
tf.experimental.numpy.fliplr
tf.experimental.numpy.flipud
tf.experimental.numpy.float_power
tf.experimental.numpy.floor
tf.experimental.numpy.floor_divide
tf.experimental.numpy.full
tf.experimental.numpy.full_like
tf.experimental.numpy.gcd
tf.experimental.numpy.geomspace
tf.experimental.numpy.greater
tf.experimental.numpy.greater_equal
tf.experimental.numpy.heaviside
tf.experimental.numpy.hsplit
tf.experimental.numpy.hstack
tf.experimental.numpy.hypot
tf.experimental.numpy.identity
tf.experimental.numpy.iinfo
tf.experimental.numpy.imag
tf.experimental.numpy.inner
tf.experimental.numpy.isclose
tf.experimental.numpy.iscomplex
tf.experimental.numpy.iscomplexobj
tf.experimental.numpy.isfinite
tf.experimental.numpy.isinf
tf.experimental.numpy.isnan
tf.experimental.numpy.isneginf
tf.experimental.numpy.isposinf
tf.experimental.numpy.isreal
tf.experimental.numpy.isrealobj
tf.experimental.numpy.isscalar
tf.experimental.numpy.issubdtype
tf.experimental.numpy.ix_
tf.experimental.numpy.kron
tf.experimental.numpy.lcm
tf.experimental.numpy.less
tf.experimental.numpy.less_equal
tf.experimental.numpy.linspace
tf.experimental.numpy.log
tf.experimental.numpy.log10
tf.experimental.numpy.log1p
tf.experimental.numpy.log2
tf.experimental.numpy.logaddexp
tf.experimental.numpy.logaddexp2
tf.experimental.numpy.logical_and
tf.experimental.numpy.logical_not
tf.experimental.numpy.logical_or
tf.experimental.numpy.logical_xor
tf.experimental.numpy.logspace
tf.experimental.numpy.matmul
tf.experimental.numpy.max
tf.experimental.numpy.maximum
tf.experimental.numpy.mean
tf.experimental.numpy.meshgrid
tf.experimental.numpy.min
tf.experimental.numpy.minimum
tf.experimental.numpy.mod
tf.experimental.numpy.moveaxis
tf.experimental.numpy.multiply
tf.experimental.numpy.nanmean
tf.experimental.numpy.nanprod
tf.experimental.numpy.nansum
tf.experimental.numpy.ndim
tf.experimental.numpy.negative
tf.experimental.numpy.nextafter
tf.experimental.numpy.nonzero
tf.experimental.numpy.not_equal
tf.experimental.numpy.ones
tf.experimental.numpy.ones_like
tf.experimental.numpy.outer
tf.experimental.numpy.pad
tf.experimental.numpy.polyval
tf.experimental.numpy.positive
tf.experimental.numpy.power
tf.experimental.numpy.prod
tf.experimental.numpy.promote_types
tf.experimental.numpy.ptp
tf.experimental.numpy.rad2deg
tf.experimental.numpy.random.rand
tf.experimental.numpy.random.randint
tf.experimental.numpy.random.randn
tf.experimental.numpy.random.random
tf.experimental.numpy.random.seed
tf.experimental.numpy.ravel
tf.experimental.numpy.real
tf.experimental.numpy.reciprocal
tf.experimental.numpy.remainder
tf.experimental.numpy.repeat
tf.experimental.numpy.reshape
tf.experimental.numpy.result_type
tf.experimental.numpy.roll
tf.experimental.numpy.rot90
tf.experimental.numpy.round
tf.experimental.numpy.select
tf.experimental.numpy.shape
tf.experimental.numpy.sign
tf.experimental.numpy.signbit
tf.experimental.numpy.sin
tf.experimental.numpy.sinc
tf.experimental.numpy.sinh
tf.experimental.numpy.size
tf.experimental.numpy.sort
tf.experimental.numpy.split
tf.experimental.numpy.sqrt
tf.experimental.numpy.square
tf.experimental.numpy.squeeze
tf.experimental.numpy.stack
tf.experimental.numpy.std
tf.experimental.numpy.subtract
tf.experimental.numpy.sum
tf.experimental.numpy.swapaxes
tf.experimental.numpy.take
tf.experimental.numpy.take_along_axis
tf.experimental.numpy.tan
tf.experimental.numpy.tanh
tf.experimental.numpy.tensordot
tf.experimental.numpy.tile
tf.experimental.numpy.trace
tf.experimental.numpy.transpose
tf.experimental.numpy.tri
tf.experimental.numpy.tril
tf.experimental.numpy.triu
tf.experimental.numpy.true_divide
tf.experimental.numpy.vander
tf.experimental.numpy.var
tf.experimental.numpy.vdot
tf.experimental.numpy.vsplit
tf.experimental.numpy.vstack
tf.experimental.numpy.where
tf.experimental.numpy.zeros
tf.experimental.numpy.zeros_like
tf.experimental.register_filesystem_plugin
tf.experimental.tensorrt.Converter
tf.extract_volume_patches
tf.eye
tf.feature_column.categorical_column_with_hash_bucket
tf.feature_column.categorical_column_with_identity
tf.feature_column.categorical_column_with_vocabulary_file
tf.feature_column.categorical_column_with_vocabulary_list
tf.feature_column.crossed_column
tf.feature_column.embedding_column
tf.feature_column.indicator_column
tf.feature_column.make_parse_example_spec
tf.feature_column.numeric_column
tf.feature_column.sequence_categorical_column_with_hash_bucket
tf.feature_column.sequence_categorical_column_with_identity
tf.feature_column.sequence_categorical_column_with_vocabulary_file
tf.feature_column.sequence_categorical_column_with_vocabulary_list
tf.feature_column.shared_embeddings
tf.feature_column.weighted_categorical_column
tf.fill
tf.fingerprint
tf.gather
tf.gather_nd
tf.get_logger
tf.get_static_value
tf.gradients
tf.group
tf.guarantee_const
tf.hessians
tf.histogram_fixed_width
tf.histogram_fixed_width_bins
tf.identity
tf.identity_n
tf.image.adjust_brightness
tf.image.adjust_contrast
tf.image.adjust_gamma
tf.image.adjust_hue
tf.image.adjust_jpeg_quality
tf.image.adjust_saturation
tf.image.central_crop
tf.image.combined_non_max_suppression
tf.image.convert_image_dtype
tf.image.crop_and_resize
tf.image.crop_to_bounding_box
tf.image.draw_bounding_boxes
tf.image.extract_glimpse
tf.image.extract_patches
tf.image.flip_left_right
tf.image.flip_up_down
tf.image.generate_bounding_box_proposals
tf.image.grayscale_to_rgb
tf.image.hsv_to_rgb
tf.image.image_gradients
tf.image.non_max_suppression
tf.image.non_max_suppression_overlaps
tf.image.non_max_suppression_padded
tf.image.non_max_suppression_with_scores
tf.image.pad_to_bounding_box
tf.image.per_image_standardization
tf.image.psnr
tf.image.random_brightness
tf.image.random_contrast
tf.image.random_crop
tf.image.random_flip_left_right
tf.image.random_flip_up_down
tf.image.random_hue
tf.image.random_jpeg_quality
tf.image.random_saturation
tf.image.resize
tf.image.resize_with_crop_or_pad
tf.image.resize_with_pad
tf.image.rgb_to_grayscale
tf.image.rgb_to_hsv
tf.image.rgb_to_yiq
tf.image.rgb_to_yuv
tf.image.rot90
tf.image.sample_distorted_bounding_box
tf.image.sobel_edges
tf.image.ssim
tf.image.ssim_multiscale
tf.image.stateless_random_brightness
tf.image.stateless_random_contrast
tf.image.stateless_random_crop
tf.image.stateless_random_flip_left_right
tf.image.stateless_random_flip_up_down
tf.image.stateless_random_hue
tf.image.stateless_random_jpeg_quality
tf.image.stateless_random_saturation
tf.image.stateless_sample_distorted_bounding_box
tf.image.total_variation
tf.image.transpose
tf.image.yiq_to_rgb
tf.image.yuv_to_rgb
tf.io.TFRecordOptions
tf.io.TFRecordWriter
tf.io.decode_and_crop_jpeg
tf.io.decode_base64
tf.io.decode_bmp
tf.io.decode_compressed
tf.io.decode_csv
tf.io.decode_gif
tf.io.decode_image
tf.io.decode_jpeg
tf.io.decode_json_example
tf.io.decode_png
tf.io.decode_proto
tf.io.decode_raw
tf.io.deserialize_many_sparse
tf.io.encode_base64
tf.io.encode_jpeg
tf.io.encode_png
tf.io.encode_proto
tf.io.extract_jpeg_shape
tf.io.gfile.GFile
tf.io.gfile.copy
tf.io.gfile.exists
tf.io.gfile.glob
tf.io.gfile.isdir
tf.io.gfile.listdir
tf.io.gfile.makedirs
tf.io.gfile.mkdir
tf.io.gfile.remove
tf.io.gfile.rename
tf.io.gfile.rmtree
tf.io.gfile.stat
tf.io.gfile.walk
tf.io.is_jpeg
tf.io.match_filenames_once
tf.io.matching_files
tf.io.parse_tensor
tf.io.read_file
tf.io.serialize_many_sparse
tf.io.serialize_sparse
tf.io.serialize_tensor
tf.io.write_file
tf.is_tensor
tf.linalg.LinearOperatorAdjoint
tf.linalg.LinearOperatorBlockDiag
tf.linalg.LinearOperatorBlockLowerTriangular
tf.linalg.LinearOperatorCirculant
tf.linalg.LinearOperatorCirculant2D
tf.linalg.LinearOperatorCirculant3D
tf.linalg.LinearOperatorComposition
tf.linalg.LinearOperatorDiag
tf.linalg.LinearOperatorFullMatrix
tf.linalg.LinearOperatorHouseholder
tf.linalg.LinearOperatorIdentity
tf.linalg.LinearOperatorInversion
tf.linalg.LinearOperatorKronecker
tf.linalg.LinearOperatorLowRankUpdate
tf.linalg.LinearOperatorLowerTriangular
tf.linalg.LinearOperatorPermutation
tf.linalg.LinearOperatorScaledIdentity
tf.linalg.LinearOperatorToeplitz
tf.linalg.LinearOperatorTridiag
tf.linalg.LinearOperatorZeros
tf.linalg.adjoint
tf.linalg.band_part
tf.linalg.banded_triangular_solve
tf.linalg.cholesky
tf.linalg.cholesky_solve
tf.linalg.cross
tf.linalg.det
tf.linalg.diag
tf.linalg.diag_part
tf.linalg.eig
tf.linalg.eigh
tf.linalg.eigvals
tf.linalg.eigvalsh
tf.linalg.experimental.conjugate_gradient
tf.linalg.expm
tf.linalg.global_norm
tf.linalg.inv
tf.linalg.logdet
tf.linalg.logm
tf.linalg.lstsq
tf.linalg.lu
tf.linalg.lu_solve
tf.linalg.matmul
tf.linalg.matrix_rank
tf.linalg.matrix_transpose
tf.linalg.matvec
tf.linalg.normalize
tf.linalg.pinv
tf.linalg.qr
tf.linalg.set_diag
tf.linalg.slogdet
tf.linalg.solve
tf.linalg.sqrtm
tf.linalg.svd
tf.linalg.tensor_diag
tf.linalg.tensor_diag_part
tf.linalg.trace
tf.linalg.triangular_solve
tf.linalg.tridiagonal_matmul
tf.linalg.tridiagonal_solve
tf.linspace
tf.load_library
tf.load_op_library
tf.lookup.KeyValueTensorInitializer
tf.lookup.StaticHashTable
tf.lookup.StaticVocabularyTable
tf.lookup.TextFileInitializer
tf.lookup.experimental.DenseHashTable
tf.make_ndarray
tf.make_tensor_proto
tf.math.abs
tf.math.accumulate_n
tf.math.acos
tf.math.acosh
tf.math.add
tf.math.add_n
tf.math.angle
tf.math.argmax
tf.math.argmin
tf.math.asin
tf.math.asinh
tf.math.atan
tf.math.atan2
tf.math.atanh
tf.math.bessel_i0
tf.math.bessel_i0e
tf.math.bessel_i1
tf.math.bessel_i1e
tf.math.betainc
tf.math.bincount
tf.math.ceil
tf.math.confusion_matrix
tf.math.conj
tf.math.cos
tf.math.cosh
tf.math.count_nonzero
tf.math.cumprod
tf.math.cumsum
tf.math.cumulative_logsumexp
tf.math.digamma
tf.math.divide
tf.math.divide_no_nan
tf.math.equal
tf.math.erf
tf.math.erfc
tf.math.erfcinv
tf.math.erfinv
tf.math.exp
tf.math.expm1
tf.math.floor
tf.math.floordiv
tf.math.floormod
tf.math.greater
tf.math.greater_equal
tf.math.igamma
tf.math.igammac
tf.math.imag
tf.math.in_top_k
tf.math.invert_permutation
tf.math.is_finite
tf.math.is_inf
tf.math.is_nan
tf.math.is_non_decreasing
tf.math.is_strictly_increasing
tf.math.l2_normalize
tf.math.lbeta
tf.math.less
tf.math.less_equal
tf.math.lgamma
tf.math.log
tf.math.log1p
tf.math.log_sigmoid
tf.math.logical_and
tf.math.logical_not
tf.math.logical_or
tf.math.logical_xor
tf.math.maximum
tf.math.minimum
tf.math.multiply
tf.math.multiply_no_nan
tf.math.ndtri
tf.math.negative
tf.math.nextafter
tf.math.not_equal
tf.math.polygamma
tf.math.polyval
tf.math.pow
tf.math.real
tf.math.reciprocal
tf.math.reciprocal_no_nan
tf.math.reduce_all
tf.math.reduce_any
tf.math.reduce_euclidean_norm
tf.math.reduce_logsumexp
tf.math.reduce_max
tf.math.reduce_mean
tf.math.reduce_min
tf.math.reduce_prod
tf.math.reduce_std
tf.math.reduce_sum
tf.math.reduce_variance
tf.math.rint
tf.math.round
tf.math.rsqrt
tf.math.scalar_mul
tf.math.segment_max
tf.math.segment_mean
tf.math.segment_min
tf.math.segment_prod
tf.math.segment_sum
tf.math.sigmoid
tf.math.sign
tf.math.sin
tf.math.sinh
tf.math.sobol_sample
tf.math.softplus
tf.math.special.bessel_j0
tf.math.special.bessel_j1
tf.math.special.bessel_k0
tf.math.special.bessel_k0e
tf.math.special.bessel_k1
tf.math.special.bessel_k1e
tf.math.special.bessel_y0
tf.math.special.bessel_y1
tf.math.special.dawsn
tf.math.special.expint
tf.math.special.fresnel_cos
tf.math.special.fresnel_sin
tf.math.special.spence
tf.math.sqrt
tf.math.square
tf.math.squared_difference
tf.math.subtract
tf.math.tan
tf.math.tanh
tf.math.top_k
tf.math.truediv
tf.math.unsorted_segment_max
tf.math.unsorted_segment_mean
tf.math.unsorted_segment_min
tf.math.unsorted_segment_prod
tf.math.unsorted_segment_sqrt_n
tf.math.unsorted_segment_sum
tf.math.xdivy
tf.math.xlog1py
tf.math.xlogy
tf.math.zero_fraction
tf.math.zeta
tf.meshgrid
tf.mlir.experimental.convert_function
tf.nest.assert_same_structure
tf.nest.flatten
tf.nest.is_nested
tf.nest.pack_sequence_as
tf.nn.RNNCellDeviceWrapper
tf.nn.RNNCellDropoutWrapper
tf.nn.atrous_conv2d
tf.nn.atrous_conv2d_transpose
tf.nn.avg_pool
tf.nn.avg_pool1d
tf.nn.avg_pool2d
tf.nn.avg_pool3d
tf.nn.batch_norm_with_global_normalization
tf.nn.batch_normalization
tf.nn.bias_add
tf.nn.collapse_repeated
tf.nn.compute_accidental_hits
tf.nn.compute_average_loss
tf.nn.conv1d
tf.nn.conv1d_transpose
tf.nn.conv2d
tf.nn.conv2d_transpose
tf.nn.conv3d
tf.nn.conv3d_transpose
tf.nn.conv_transpose
tf.nn.convolution
tf.nn.crelu
tf.nn.ctc_beam_search_decoder
tf.nn.ctc_greedy_decoder
tf.nn.ctc_loss
tf.nn.depth_to_space
tf.nn.depthwise_conv2d
tf.nn.depthwise_conv2d_backprop_filter
tf.nn.depthwise_conv2d_backprop_input
tf.nn.dilation2d
tf.nn.dropout
tf.nn.elu
tf.nn.embedding_lookup
tf.nn.embedding_lookup_sparse
tf.nn.erosion2d
tf.nn.fractional_avg_pool
tf.nn.fractional_max_pool
tf.nn.gelu
tf.nn.isotonic_regression
tf.nn.l2_loss
tf.nn.leaky_relu
tf.nn.local_response_normalization
tf.nn.log_poisson_loss
tf.nn.log_softmax
tf.nn.max_pool
tf.nn.max_pool1d
tf.nn.max_pool2d
tf.nn.max_pool3d
tf.nn.max_pool_with_argmax
tf.nn.moments
tf.nn.nce_loss
tf.nn.normalize_moments
tf.nn.pool
tf.nn.relu
tf.nn.relu6
tf.nn.safe_embedding_lookup_sparse
tf.nn.sampled_softmax_loss
tf.nn.scale_regularization_loss
tf.nn.selu
tf.nn.separable_conv2d
tf.nn.separable_conv2d_padding_list
tf.nn.sigmoid_cross_entropy_with_logits
tf.nn.silu
tf.nn.softmax
tf.nn.softmax_cross_entropy_with_logits
tf.nn.softsign
tf.nn.space_to_depth
tf.nn.sparse_softmax_cross_entropy_with_logits
tf.nn.sufficient_statistics
tf.nn.weighted_cross_entropy_with_logits
tf.nn.weighted_moments
tf.nn.with_space_to_batch
tf.no_gradient
tf.no_op
tf.nondifferentiable_batch_function
tf.norm
tf.one_hot
tf.ones
tf.ones_like
tf.pad
tf.parallel_stack
tf.print
tf.quantization.dequantize
tf.quantization.fake_quant_with_min_max_args
tf.quantization.fake_quant_with_min_max_args_gradient
tf.quantization.fake_quant_with_min_max_vars
tf.quantization.fake_quant_with_min_max_vars_gradient
tf.quantization.fake_quant_with_min_max_vars_per_channel
tf.quantization.fake_quant_with_min_max_vars_per_channel_gradient
tf.quantization.quantize
tf.quantization.quantize_and_dequantize
tf.quantization.quantize_and_dequantize_v2
tf.quantization.quantized_concat
tf.queue.FIFOQueue
tf.queue.PaddingFIFOQueue
tf.queue.PriorityQueue
tf.queue.QueueBase
tf.queue.RandomShuffleQueue
tf.ragged.boolean_mask
tf.ragged.constant
tf.ragged.cross
tf.ragged.cross_hashed
tf.ragged.map_flat_values
tf.ragged.range
tf.ragged.row_splits_to_segment_ids
tf.ragged.segment_ids_to_row_splits
tf.ragged.stack
tf.ragged.stack_dynamic_partitions
tf.random.Generator
tf.random.all_candidate_sampler
tf.random.categorical
tf.random.create_rng_state
tf.random.experimental.stateless_fold_in
tf.random.experimental.stateless_split
tf.random.fixed_unigram_candidate_sampler
tf.random.gamma
tf.random.get_global_generator
tf.random.learned_unigram_candidate_sampler
tf.random.log_uniform_candidate_sampler
tf.random.normal
tf.random.poisson
tf.random.set_global_generator
tf.random.set_seed
tf.random.shuffle
tf.random.stateless_binomial
tf.random.stateless_categorical
tf.random.stateless_gamma
tf.random.stateless_normal
tf.random.stateless_parameterized_truncated_normal
tf.random.stateless_poisson
tf.random.stateless_truncated_normal
tf.random.stateless_uniform
tf.random.truncated_normal
tf.random.uniform
tf.random.uniform_candidate_sampler
tf.random_normal_initializer
tf.random_uniform_initializer
tf.rank
tf.raw_ops.Abort
tf.raw_ops.Abs
tf.raw_ops.AccumulateNV2
tf.raw_ops.AccumulatorApplyGradient
tf.raw_ops.AccumulatorNumAccumulated
tf.raw_ops.AccumulatorSetGlobalStep
tf.raw_ops.AccumulatorTakeGradient
tf.raw_ops.Acos
tf.raw_ops.Acosh
tf.raw_ops.Add
tf.raw_ops.AddManySparseToTensorsMap
tf.raw_ops.AddSparseToTensorsMap
tf.raw_ops.AddV2
tf.raw_ops.AdjustHue
tf.raw_ops.AdjustSaturation
tf.raw_ops.All
tf.raw_ops.AllCandidateSampler
tf.raw_ops.Angle
tf.raw_ops.Any
tf.raw_ops.ApplyAdadelta
tf.raw_ops.ApplyAdagrad
tf.raw_ops.ApplyAdagradDA
tf.raw_ops.ApplyAdam
tf.raw_ops.ApplyAddSign
tf.raw_ops.ApplyCenteredRMSProp
tf.raw_ops.ApplyFtrl
tf.raw_ops.ApplyFtrlV2
tf.raw_ops.ApplyGradientDescent
tf.raw_ops.ApplyMomentum
tf.raw_ops.ApplyPowerSign
tf.raw_ops.ApplyProximalAdagrad
tf.raw_ops.ApplyProximalGradientDescent
tf.raw_ops.ApplyRMSProp
tf.raw_ops.ApproxTopK
tf.raw_ops.ApproximateEqual
tf.raw_ops.ArgMax
tf.raw_ops.ArgMin
tf.raw_ops.Asin
tf.raw_ops.Asinh
tf.raw_ops.Assign
tf.raw_ops.AssignAdd
tf.raw_ops.AssignSub
tf.raw_ops.Atan
tf.raw_ops.Atan2
tf.raw_ops.Atanh
tf.raw_ops.AvgPool
tf.raw_ops.AvgPool3D
tf.raw_ops.AvgPool3DGrad
tf.raw_ops.Barrier
tf.raw_ops.BarrierClose
tf.raw_ops.BarrierIncompleteSize
tf.raw_ops.BarrierInsertMany
tf.raw_ops.BarrierReadySize
tf.raw_ops.BarrierTakeMany
tf.raw_ops.BatchMatMul
tf.raw_ops.BatchMatMulV2
tf.raw_ops.BatchMatMulV3
tf.raw_ops.BatchToSpace
tf.raw_ops.BatchToSpaceND
tf.raw_ops.Betainc
tf.raw_ops.BiasAdd
tf.raw_ops.BiasAddGrad
tf.raw_ops.Bincount
tf.raw_ops.Bitcast
tf.raw_ops.BroadcastTo
tf.raw_ops.Bucketize
tf.raw_ops.Cast
tf.raw_ops.Ceil
tf.raw_ops.CheckNumerics
tf.raw_ops.ClipByValue
tf.raw_ops.CombinedNonMaxSuppression
tf.raw_ops.Complex
tf.raw_ops.ComplexAbs
tf.raw_ops.ComputeAccidentalHits
tf.raw_ops.ConditionalAccumulator
tf.raw_ops.ConjugateTranspose
tf.raw_ops.ControlTrigger
tf.raw_ops.Conv2D
tf.raw_ops.Conv2DBackpropFilter
tf.raw_ops.Conv2DBackpropInput
tf.raw_ops.Conv3D
tf.raw_ops.Conv3DBackpropFilterV2
tf.raw_ops.Conv3DBackpropInputV2
tf.raw_ops.Cos
tf.raw_ops.Cosh
tf.raw_ops.CountUpTo
tf.raw_ops.CropAndResize
tf.raw_ops.CropAndResizeGradBoxes
tf.raw_ops.CropAndResizeGradImage
tf.raw_ops.Cross
tf.raw_ops.Cumprod
tf.raw_ops.Cumsum
tf.raw_ops.DataFormatDimMap
tf.raw_ops.DataFormatVecPermute
tf.raw_ops.DebugGradientIdentity
tf.raw_ops.DebugGradientRefIdentity
tf.raw_ops.DecodeAndCropJpeg
tf.raw_ops.DecodeBase64
tf.raw_ops.DecodeBmp
tf.raw_ops.DecodeCompressed
tf.raw_ops.DecodeGif
tf.raw_ops.DecodeImage
tf.raw_ops.DecodeJSONExample
tf.raw_ops.DecodeJpeg
tf.raw_ops.DecodePaddedRaw
tf.raw_ops.DecodePng
tf.raw_ops.DecodeRaw
tf.raw_ops.DeepCopy
tf.raw_ops.DeleteSessionTensor
tf.raw_ops.DenseBincount
tf.raw_ops.DepthToSpace
tf.raw_ops.DepthwiseConv2dNative
tf.raw_ops.DepthwiseConv2dNativeBackpropFilter
tf.raw_ops.DepthwiseConv2dNativeBackpropInput
tf.raw_ops.Dequantize
tf.raw_ops.DeserializeManySparse
tf.raw_ops.DestroyTemporaryVariable
tf.raw_ops.Diag
tf.raw_ops.DiagPart
tf.raw_ops.Digamma
tf.raw_ops.Dilation2D
tf.raw_ops.Dilation2DBackpropFilter
tf.raw_ops.Dilation2DBackpropInput
tf.raw_ops.Div
tf.raw_ops.DivNoNan
tf.raw_ops.DrawBoundingBoxes
tf.raw_ops.DrawBoundingBoxesV2
tf.raw_ops.DynamicPartition
tf.raw_ops.DynamicStitch
tf.raw_ops.EditDistance
tf.raw_ops.Elu
tf.raw_ops.Empty
tf.raw_ops.EncodeBase64
tf.raw_ops.EncodeJpeg
tf.raw_ops.EncodeJpegVariableQuality
tf.raw_ops.EncodePng
tf.raw_ops.EnsureShape
tf.raw_ops.Equal
tf.raw_ops.Erf
tf.raw_ops.Erfc
tf.raw_ops.Erfinv
tf.raw_ops.EuclideanNorm
tf.raw_ops.Exp
tf.raw_ops.ExpandDims
tf.raw_ops.Expm1
tf.raw_ops.ExtractGlimpse
tf.raw_ops.ExtractImagePatches
tf.raw_ops.ExtractJpegShape
tf.raw_ops.ExtractVolumePatches
tf.raw_ops.FIFOQueue
tf.raw_ops.Fact
tf.raw_ops.FakeQuantWithMinMaxArgs
tf.raw_ops.FakeQuantWithMinMaxArgsGradient
tf.raw_ops.FakeQuantWithMinMaxVars
tf.raw_ops.FakeQuantWithMinMaxVarsGradient
tf.raw_ops.FakeQuantWithMinMaxVarsPerChannel
tf.raw_ops.FakeQuantWithMinMaxVarsPerChannelGradient
tf.raw_ops.Fill
tf.raw_ops.Fingerprint
tf.raw_ops.FixedUnigramCandidateSampler
tf.raw_ops.Floor
tf.raw_ops.FloorDiv
tf.raw_ops.FloorMod
tf.raw_ops.FractionalAvgPool
tf.raw_ops.FractionalMaxPool
tf.raw_ops.FusedBatchNorm
tf.raw_ops.FusedBatchNormGrad
tf.raw_ops.FusedBatchNormGradV2
tf.raw_ops.FusedBatchNormGradV3
tf.raw_ops.FusedBatchNormV2
tf.raw_ops.FusedBatchNormV3
tf.raw_ops.FusedPadConv2D
tf.raw_ops.FusedResizeAndPadConv2D
tf.raw_ops.Gather
tf.raw_ops.GatherNd
tf.raw_ops.GatherV2
tf.raw_ops.GetSessionHandle
tf.raw_ops.GetSessionHandleV2
tf.raw_ops.GetSessionTensor
tf.raw_ops.Greater
tf.raw_ops.GreaterEqual
tf.raw_ops.GuaranteeConst
tf.raw_ops.HSVToRGB
tf.raw_ops.HistogramFixedWidth
tf.raw_ops.HistogramSummary
tf.raw_ops.Identity
tf.raw_ops.Igamma
tf.raw_ops.Igammac
tf.raw_ops.Imag
tf.raw_ops.ImmutableConst
tf.raw_ops.InTopK
tf.raw_ops.InTopKV2
tf.raw_ops.InplaceAdd
tf.raw_ops.InplaceSub
tf.raw_ops.InplaceUpdate
tf.raw_ops.Inv
tf.raw_ops.InvertPermutation
tf.raw_ops.IsFinite
tf.raw_ops.IsInf
tf.raw_ops.IsNan
tf.raw_ops.IsVariableInitialized
tf.raw_ops.L2Loss
tf.raw_ops.LMDBReader
tf.raw_ops.LRN
tf.raw_ops.LearnedUnigramCandidateSampler
tf.raw_ops.Less
tf.raw_ops.LessEqual
tf.raw_ops.Lgamma
tf.raw_ops.Log
tf.raw_ops.Log1p
tf.raw_ops.LogSoftmax
tf.raw_ops.LogUniformCandidateSampler
tf.raw_ops.LogicalAnd
tf.raw_ops.LogicalNot
tf.raw_ops.LogicalOr
tf.raw_ops.LoopCond
tf.raw_ops.MapClear
tf.raw_ops.MapIncompleteSize
tf.raw_ops.MapPeek
tf.raw_ops.MapSize
tf.raw_ops.MapUnstage