forked from migueldeicaza/TensorFlowSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathxrefmap.yml
More file actions
7648 lines (7648 loc) · 524 KB
/
xrefmap.yml
File metadata and controls
7648 lines (7648 loc) · 524 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
### YamlMime:XRefMap
sorted: true
references:
- uid: TensorFlow
name: TensorFlow
href: api/TensorFlow.html
fullName: TensorFlow
nameWithType: TensorFlow
- uid: TensorFlow.MonoPInvokeCallbackAttribute
name: MonoPInvokeCallbackAttribute
href: api/TensorFlow/TensorFlow.MonoPInvokeCallbackAttribute.html
fullName: TensorFlow.MonoPInvokeCallbackAttribute
nameWithType: MonoPInvokeCallbackAttribute
- uid: TensorFlow.MonoPInvokeCallbackAttribute.#ctor(System.Type)
name: MonoPInvokeCallbackAttribute(Type)
href: api/TensorFlow/TensorFlow.MonoPInvokeCallbackAttribute.html#TensorFlow_MonoPInvokeCallbackAttribute__ctor_System_Type_
fullName: MonoPInvokeCallbackAttribute.MonoPInvokeCallbackAttribute(Type)
nameWithType: MonoPInvokeCallbackAttribute.MonoPInvokeCallbackAttribute(Type)
- uid: TensorFlow.MonoPInvokeCallbackAttribute.#ctor*
name: MonoPInvokeCallbackAttribute
href: api/TensorFlow/TensorFlow.MonoPInvokeCallbackAttribute.html#TensorFlow_MonoPInvokeCallbackAttribute__ctor_
fullName: MonoPInvokeCallbackAttribute.MonoPInvokeCallbackAttribute
nameWithType: MonoPInvokeCallbackAttribute.MonoPInvokeCallbackAttribute
- uid: TensorFlow.TFAttributeMetadata
name: TFAttributeMetadata
href: api/TensorFlow/TensorFlow.TFAttributeMetadata.html
fullName: TensorFlow.TFAttributeMetadata
nameWithType: TFAttributeMetadata
- uid: TensorFlow.TFAttributeMetadata.IsList
name: IsList
href: api/TensorFlow/TensorFlow.TFAttributeMetadata.html#TensorFlow_TFAttributeMetadata_IsList
fullName: TFAttributeMetadata.IsList
nameWithType: TFAttributeMetadata.IsList
- uid: TensorFlow.TFAttributeMetadata.IsList*
name: IsList
href: api/TensorFlow/TensorFlow.TFAttributeMetadata.html#TensorFlow_TFAttributeMetadata_IsList_
fullName: TFAttributeMetadata.IsList
nameWithType: TFAttributeMetadata.IsList
- uid: TensorFlow.TFAttributeMetadata.ListSize
name: ListSize
href: api/TensorFlow/TensorFlow.TFAttributeMetadata.html#TensorFlow_TFAttributeMetadata_ListSize
fullName: TFAttributeMetadata.ListSize
nameWithType: TFAttributeMetadata.ListSize
- uid: TensorFlow.TFAttributeMetadata.ToString
name: ToString()
href: api/TensorFlow/TensorFlow.TFAttributeMetadata.html#TensorFlow_TFAttributeMetadata_ToString
fullName: TFAttributeMetadata.ToString()
nameWithType: TFAttributeMetadata.ToString()
- uid: TensorFlow.TFAttributeMetadata.ToString*
name: ToString
href: api/TensorFlow/TensorFlow.TFAttributeMetadata.html#TensorFlow_TFAttributeMetadata_ToString_
fullName: TFAttributeMetadata.ToString
nameWithType: TFAttributeMetadata.ToString
- uid: TensorFlow.TFAttributeMetadata.TotalSize
name: TotalSize
href: api/TensorFlow/TensorFlow.TFAttributeMetadata.html#TensorFlow_TFAttributeMetadata_TotalSize
fullName: TFAttributeMetadata.TotalSize
nameWithType: TFAttributeMetadata.TotalSize
- uid: TensorFlow.TFAttributeMetadata.Type
name: Type
href: api/TensorFlow/TensorFlow.TFAttributeMetadata.html#TensorFlow_TFAttributeMetadata_Type
fullName: TFAttributeMetadata.Type
nameWithType: TFAttributeMetadata.Type
- uid: TensorFlow.TFAttributeType
name: TFAttributeType
href: api/TensorFlow/TensorFlow.TFAttributeType.html
fullName: TensorFlow.TFAttributeType
nameWithType: TFAttributeType
- uid: TensorFlow.TFAttributeType.Bool
name: Bool
href: api/TensorFlow/TensorFlow.TFAttributeType.html#TensorFlow_TFAttributeType_Bool
fullName: TFAttributeType.Bool
nameWithType: TFAttributeType.Bool
- uid: TensorFlow.TFAttributeType.Float
name: Float
href: api/TensorFlow/TensorFlow.TFAttributeType.html#TensorFlow_TFAttributeType_Float
fullName: TFAttributeType.Float
nameWithType: TFAttributeType.Float
- uid: TensorFlow.TFAttributeType.Func
name: Func
href: api/TensorFlow/TensorFlow.TFAttributeType.html#TensorFlow_TFAttributeType_Func
fullName: TFAttributeType.Func
nameWithType: TFAttributeType.Func
- uid: TensorFlow.TFAttributeType.Int
name: Int
href: api/TensorFlow/TensorFlow.TFAttributeType.html#TensorFlow_TFAttributeType_Int
fullName: TFAttributeType.Int
nameWithType: TFAttributeType.Int
- uid: TensorFlow.TFAttributeType.Placeholder
name: Placeholder
href: api/TensorFlow/TensorFlow.TFAttributeType.html#TensorFlow_TFAttributeType_Placeholder
fullName: TFAttributeType.Placeholder
nameWithType: TFAttributeType.Placeholder
- uid: TensorFlow.TFAttributeType.Shape
name: Shape
href: api/TensorFlow/TensorFlow.TFAttributeType.html#TensorFlow_TFAttributeType_Shape
fullName: TFAttributeType.Shape
nameWithType: TFAttributeType.Shape
- uid: TensorFlow.TFAttributeType.String
name: String
href: api/TensorFlow/TensorFlow.TFAttributeType.html#TensorFlow_TFAttributeType_String
fullName: TFAttributeType.String
nameWithType: TFAttributeType.String
- uid: TensorFlow.TFAttributeType.Tensor
name: Tensor
href: api/TensorFlow/TensorFlow.TFAttributeType.html#TensorFlow_TFAttributeType_Tensor
fullName: TFAttributeType.Tensor
nameWithType: TFAttributeType.Tensor
- uid: TensorFlow.TFAttributeType.Type
name: Type
href: api/TensorFlow/TensorFlow.TFAttributeType.html#TensorFlow_TFAttributeType_Type
fullName: TFAttributeType.Type
nameWithType: TFAttributeType.Type
- uid: TensorFlow.TFBuffer
name: TFBuffer
href: api/TensorFlow/TensorFlow.TFBuffer.html
fullName: TensorFlow.TFBuffer
nameWithType: TFBuffer
- uid: TensorFlow.TFBuffer.#ctor
name: TFBuffer()
href: api/TensorFlow/TensorFlow.TFBuffer.html#TensorFlow_TFBuffer__ctor
fullName: TFBuffer.TFBuffer()
nameWithType: TFBuffer.TFBuffer()
- uid: TensorFlow.TFBuffer.#ctor(System.Byte[])
name: TFBuffer(Byte[])
href: api/TensorFlow/TensorFlow.TFBuffer.html#TensorFlow_TFBuffer__ctor_System_Byte___
fullName: TFBuffer.TFBuffer(Byte[])
nameWithType: TFBuffer.TFBuffer(Byte[])
- uid: TensorFlow.TFBuffer.#ctor(System.Byte[],System.Int32,System.Int32)
name: TFBuffer(Byte[], Int32, Int32)
href: api/TensorFlow/TensorFlow.TFBuffer.html#TensorFlow_TFBuffer__ctor_System_Byte___System_Int32_System_Int32_
fullName: TFBuffer.TFBuffer(Byte[], Int32, Int32)
nameWithType: TFBuffer.TFBuffer(Byte[], Int32, Int32)
- uid: TensorFlow.TFBuffer.#ctor(System.IntPtr,System.Int64,TensorFlow.TFBuffer.BufferReleaseFunc)
name: TFBuffer(IntPtr, Int64, TFBuffer+BufferReleaseFunc)
href: api/TensorFlow/TensorFlow.TFBuffer.html#TensorFlow_TFBuffer__ctor_System_IntPtr_System_Int64_TensorFlow_TFBuffer_BufferReleaseFunc_
fullName: TFBuffer.TFBuffer(IntPtr, Int64, TFBuffer+BufferReleaseFunc)
nameWithType: TFBuffer.TFBuffer(IntPtr, Int64, TFBuffer+BufferReleaseFunc)
- uid: TensorFlow.TFBuffer.#ctor*
name: TFBuffer
href: api/TensorFlow/TensorFlow.TFBuffer.html#TensorFlow_TFBuffer__ctor_
fullName: TFBuffer.TFBuffer
nameWithType: TFBuffer.TFBuffer
- uid: TensorFlow.TFBuffer.BufferReleaseFunc
name: TFBuffer.BufferReleaseFunc
href: api/TensorFlow/TensorFlow.TFBuffer.BufferReleaseFunc.html
fullName: TensorFlow.TFBuffer.BufferReleaseFunc
nameWithType: TFBuffer.BufferReleaseFunc
- uid: TensorFlow.TFBuffer.ToArray
name: ToArray()
href: api/TensorFlow/TensorFlow.TFBuffer.html#TensorFlow_TFBuffer_ToArray
fullName: TFBuffer.ToArray()
nameWithType: TFBuffer.ToArray()
- uid: TensorFlow.TFBuffer.ToArray*
name: ToArray
href: api/TensorFlow/TensorFlow.TFBuffer.html#TensorFlow_TFBuffer_ToArray_
fullName: TFBuffer.ToArray
nameWithType: TFBuffer.ToArray
- uid: TensorFlow.TFCode
name: TFCode
href: api/TensorFlow/TensorFlow.TFCode.html
fullName: TensorFlow.TFCode
nameWithType: TFCode
- uid: TensorFlow.TFCode.Aborted
name: Aborted
href: api/TensorFlow/TensorFlow.TFCode.html#TensorFlow_TFCode_Aborted
fullName: TFCode.Aborted
nameWithType: TFCode.Aborted
- uid: TensorFlow.TFCode.AlreadyExists
name: AlreadyExists
href: api/TensorFlow/TensorFlow.TFCode.html#TensorFlow_TFCode_AlreadyExists
fullName: TFCode.AlreadyExists
nameWithType: TFCode.AlreadyExists
- uid: TensorFlow.TFCode.Cancelled
name: Cancelled
href: api/TensorFlow/TensorFlow.TFCode.html#TensorFlow_TFCode_Cancelled
fullName: TFCode.Cancelled
nameWithType: TFCode.Cancelled
- uid: TensorFlow.TFCode.DataLoss
name: DataLoss
href: api/TensorFlow/TensorFlow.TFCode.html#TensorFlow_TFCode_DataLoss
fullName: TFCode.DataLoss
nameWithType: TFCode.DataLoss
- uid: TensorFlow.TFCode.DeadlineExceeded
name: DeadlineExceeded
href: api/TensorFlow/TensorFlow.TFCode.html#TensorFlow_TFCode_DeadlineExceeded
fullName: TFCode.DeadlineExceeded
nameWithType: TFCode.DeadlineExceeded
- uid: TensorFlow.TFCode.FailedPrecondition
name: FailedPrecondition
href: api/TensorFlow/TensorFlow.TFCode.html#TensorFlow_TFCode_FailedPrecondition
fullName: TFCode.FailedPrecondition
nameWithType: TFCode.FailedPrecondition
- uid: TensorFlow.TFCode.Internal
name: Internal
href: api/TensorFlow/TensorFlow.TFCode.html#TensorFlow_TFCode_Internal
fullName: TFCode.Internal
nameWithType: TFCode.Internal
- uid: TensorFlow.TFCode.InvalidArgument
name: InvalidArgument
href: api/TensorFlow/TensorFlow.TFCode.html#TensorFlow_TFCode_InvalidArgument
fullName: TFCode.InvalidArgument
nameWithType: TFCode.InvalidArgument
- uid: TensorFlow.TFCode.NotFound
name: NotFound
href: api/TensorFlow/TensorFlow.TFCode.html#TensorFlow_TFCode_NotFound
fullName: TFCode.NotFound
nameWithType: TFCode.NotFound
- uid: TensorFlow.TFCode.Ok
name: Ok
href: api/TensorFlow/TensorFlow.TFCode.html#TensorFlow_TFCode_Ok
fullName: TFCode.Ok
nameWithType: TFCode.Ok
- uid: TensorFlow.TFCode.OutOfRange
name: OutOfRange
href: api/TensorFlow/TensorFlow.TFCode.html#TensorFlow_TFCode_OutOfRange
fullName: TFCode.OutOfRange
nameWithType: TFCode.OutOfRange
- uid: TensorFlow.TFCode.PermissionDenied
name: PermissionDenied
href: api/TensorFlow/TensorFlow.TFCode.html#TensorFlow_TFCode_PermissionDenied
fullName: TFCode.PermissionDenied
nameWithType: TFCode.PermissionDenied
- uid: TensorFlow.TFCode.ResourceExhausted
name: ResourceExhausted
href: api/TensorFlow/TensorFlow.TFCode.html#TensorFlow_TFCode_ResourceExhausted
fullName: TFCode.ResourceExhausted
nameWithType: TFCode.ResourceExhausted
- uid: TensorFlow.TFCode.Unauthenticated
name: Unauthenticated
href: api/TensorFlow/TensorFlow.TFCode.html#TensorFlow_TFCode_Unauthenticated
fullName: TFCode.Unauthenticated
nameWithType: TFCode.Unauthenticated
- uid: TensorFlow.TFCode.Unavailable
name: Unavailable
href: api/TensorFlow/TensorFlow.TFCode.html#TensorFlow_TFCode_Unavailable
fullName: TFCode.Unavailable
nameWithType: TFCode.Unavailable
- uid: TensorFlow.TFCode.Unimplemented
name: Unimplemented
href: api/TensorFlow/TensorFlow.TFCode.html#TensorFlow_TFCode_Unimplemented
fullName: TFCode.Unimplemented
nameWithType: TFCode.Unimplemented
- uid: TensorFlow.TFCode.Unknown
name: Unknown
href: api/TensorFlow/TensorFlow.TFCode.html#TensorFlow_TFCode_Unknown
fullName: TFCode.Unknown
nameWithType: TFCode.Unknown
- uid: TensorFlow.TFCore
name: TFCore
href: api/TensorFlow/TensorFlow.TFCore.html
fullName: TensorFlow.TFCore
nameWithType: TFCore
- uid: TensorFlow.TFCore.GetAllOpList
name: GetAllOpList()
href: api/TensorFlow/TensorFlow.TFCore.html#TensorFlow_TFCore_GetAllOpList
fullName: TFCore.GetAllOpList()
nameWithType: TFCore.GetAllOpList()
- uid: TensorFlow.TFCore.GetAllOpList*
name: GetAllOpList
href: api/TensorFlow/TensorFlow.TFCore.html#TensorFlow_TFCore_GetAllOpList_
fullName: TFCore.GetAllOpList
nameWithType: TFCore.GetAllOpList
- uid: TensorFlow.TFCore.GetDataTypeSize(TensorFlow.TFDataType)
name: GetDataTypeSize(TFDataType)
href: api/TensorFlow/TensorFlow.TFCore.html#TensorFlow_TFCore_GetDataTypeSize_TensorFlow_TFDataType_
fullName: TFCore.GetDataTypeSize(TFDataType)
nameWithType: TFCore.GetDataTypeSize(TFDataType)
- uid: TensorFlow.TFCore.GetDataTypeSize*
name: GetDataTypeSize
href: api/TensorFlow/TensorFlow.TFCore.html#TensorFlow_TFCore_GetDataTypeSize_
fullName: TFCore.GetDataTypeSize
nameWithType: TFCore.GetDataTypeSize
- uid: TensorFlow.TFCore.Version
name: Version
href: api/TensorFlow/TensorFlow.TFCore.html#TensorFlow_TFCore_Version
fullName: TFCore.Version
nameWithType: TFCore.Version
- uid: TensorFlow.TFCore.Version*
name: Version
href: api/TensorFlow/TensorFlow.TFCore.html#TensorFlow_TFCore_Version_
fullName: TFCore.Version
nameWithType: TFCore.Version
- uid: TensorFlow.TFDataType
name: TFDataType
href: api/TensorFlow/TensorFlow.TFDataType.html
fullName: TensorFlow.TFDataType
nameWithType: TFDataType
- uid: TensorFlow.TFDataType.BFloat16
name: BFloat16
href: api/TensorFlow/TensorFlow.TFDataType.html#TensorFlow_TFDataType_BFloat16
fullName: TFDataType.BFloat16
nameWithType: TFDataType.BFloat16
- uid: TensorFlow.TFDataType.Bool
name: Bool
href: api/TensorFlow/TensorFlow.TFDataType.html#TensorFlow_TFDataType_Bool
fullName: TFDataType.Bool
nameWithType: TFDataType.Bool
- uid: TensorFlow.TFDataType.Complex
name: Complex
href: api/TensorFlow/TensorFlow.TFDataType.html#TensorFlow_TFDataType_Complex
fullName: TFDataType.Complex
nameWithType: TFDataType.Complex
- uid: TensorFlow.TFDataType.Complex128
name: Complex128
href: api/TensorFlow/TensorFlow.TFDataType.html#TensorFlow_TFDataType_Complex128
fullName: TFDataType.Complex128
nameWithType: TFDataType.Complex128
- uid: TensorFlow.TFDataType.Complex64
name: Complex64
href: api/TensorFlow/TensorFlow.TFDataType.html#TensorFlow_TFDataType_Complex64
fullName: TFDataType.Complex64
nameWithType: TFDataType.Complex64
- uid: TensorFlow.TFDataType.Double
name: Double
href: api/TensorFlow/TensorFlow.TFDataType.html#TensorFlow_TFDataType_Double
fullName: TFDataType.Double
nameWithType: TFDataType.Double
- uid: TensorFlow.TFDataType.Float
name: Float
href: api/TensorFlow/TensorFlow.TFDataType.html#TensorFlow_TFDataType_Float
fullName: TFDataType.Float
nameWithType: TFDataType.Float
- uid: TensorFlow.TFDataType.Half
name: Half
href: api/TensorFlow/TensorFlow.TFDataType.html#TensorFlow_TFDataType_Half
fullName: TFDataType.Half
nameWithType: TFDataType.Half
- uid: TensorFlow.TFDataType.Int16
name: Int16
href: api/TensorFlow/TensorFlow.TFDataType.html#TensorFlow_TFDataType_Int16
fullName: TFDataType.Int16
nameWithType: TFDataType.Int16
- uid: TensorFlow.TFDataType.Int32
name: Int32
href: api/TensorFlow/TensorFlow.TFDataType.html#TensorFlow_TFDataType_Int32
fullName: TFDataType.Int32
nameWithType: TFDataType.Int32
- uid: TensorFlow.TFDataType.Int64
name: Int64
href: api/TensorFlow/TensorFlow.TFDataType.html#TensorFlow_TFDataType_Int64
fullName: TFDataType.Int64
nameWithType: TFDataType.Int64
- uid: TensorFlow.TFDataType.Int8
name: Int8
href: api/TensorFlow/TensorFlow.TFDataType.html#TensorFlow_TFDataType_Int8
fullName: TFDataType.Int8
nameWithType: TFDataType.Int8
- uid: TensorFlow.TFDataType.QInt16
name: QInt16
href: api/TensorFlow/TensorFlow.TFDataType.html#TensorFlow_TFDataType_QInt16
fullName: TFDataType.QInt16
nameWithType: TFDataType.QInt16
- uid: TensorFlow.TFDataType.QInt32
name: QInt32
href: api/TensorFlow/TensorFlow.TFDataType.html#TensorFlow_TFDataType_QInt32
fullName: TFDataType.QInt32
nameWithType: TFDataType.QInt32
- uid: TensorFlow.TFDataType.QInt8
name: QInt8
href: api/TensorFlow/TensorFlow.TFDataType.html#TensorFlow_TFDataType_QInt8
fullName: TFDataType.QInt8
nameWithType: TFDataType.QInt8
- uid: TensorFlow.TFDataType.QUInt16
name: QUInt16
href: api/TensorFlow/TensorFlow.TFDataType.html#TensorFlow_TFDataType_QUInt16
fullName: TFDataType.QUInt16
nameWithType: TFDataType.QUInt16
- uid: TensorFlow.TFDataType.QUInt8
name: QUInt8
href: api/TensorFlow/TensorFlow.TFDataType.html#TensorFlow_TFDataType_QUInt8
fullName: TFDataType.QUInt8
nameWithType: TFDataType.QUInt8
- uid: TensorFlow.TFDataType.Resource
name: Resource
href: api/TensorFlow/TensorFlow.TFDataType.html#TensorFlow_TFDataType_Resource
fullName: TFDataType.Resource
nameWithType: TFDataType.Resource
- uid: TensorFlow.TFDataType.String
name: String
href: api/TensorFlow/TensorFlow.TFDataType.html#TensorFlow_TFDataType_String
fullName: TFDataType.String
nameWithType: TFDataType.String
- uid: TensorFlow.TFDataType.UInt16
name: UInt16
href: api/TensorFlow/TensorFlow.TFDataType.html#TensorFlow_TFDataType_UInt16
fullName: TFDataType.UInt16
nameWithType: TFDataType.UInt16
- uid: TensorFlow.TFDataType.UInt8
name: UInt8
href: api/TensorFlow/TensorFlow.TFDataType.html#TensorFlow_TFDataType_UInt8
fullName: TFDataType.UInt8
nameWithType: TFDataType.UInt8
- uid: TensorFlow.TFDisposable
name: TFDisposable
href: api/TensorFlow/TensorFlow.TFDisposable.html
fullName: TensorFlow.TFDisposable
nameWithType: TFDisposable
- uid: TensorFlow.TFDisposable.#ctor
name: TFDisposable()
href: api/TensorFlow/TensorFlow.TFDisposable.html#TensorFlow_TFDisposable__ctor
fullName: TFDisposable.TFDisposable()
nameWithType: TFDisposable.TFDisposable()
- uid: TensorFlow.TFDisposable.#ctor(System.IntPtr)
name: TFDisposable(IntPtr)
href: api/TensorFlow/TensorFlow.TFDisposable.html#TensorFlow_TFDisposable__ctor_System_IntPtr_
fullName: TFDisposable.TFDisposable(IntPtr)
nameWithType: TFDisposable.TFDisposable(IntPtr)
- uid: TensorFlow.TFDisposable.#ctor*
name: TFDisposable
href: api/TensorFlow/TensorFlow.TFDisposable.html#TensorFlow_TFDisposable__ctor_
fullName: TFDisposable.TFDisposable
nameWithType: TFDisposable.TFDisposable
- uid: TensorFlow.TFDisposable.Dispose
name: Dispose()
href: api/TensorFlow/TensorFlow.TFDisposable.html#TensorFlow_TFDisposable_Dispose
fullName: TFDisposable.Dispose()
nameWithType: TFDisposable.Dispose()
- uid: TensorFlow.TFDisposable.Dispose(System.Boolean)
name: Dispose(Boolean)
href: api/TensorFlow/TensorFlow.TFDisposable.html#TensorFlow_TFDisposable_Dispose_System_Boolean_
fullName: TFDisposable.Dispose(Boolean)
nameWithType: TFDisposable.Dispose(Boolean)
- uid: TensorFlow.TFDisposable.Dispose*
name: Dispose
href: api/TensorFlow/TensorFlow.TFDisposable.html#TensorFlow_TFDisposable_Dispose_
fullName: TFDisposable.Dispose
nameWithType: TFDisposable.Dispose
- uid: TensorFlow.TFDisposable.Finalize
name: Finalize()
href: api/TensorFlow/TensorFlow.TFDisposable.html#TensorFlow_TFDisposable_Finalize
fullName: TFDisposable.Finalize()
nameWithType: TFDisposable.Finalize()
- uid: TensorFlow.TFDisposable.Finalize*
name: Finalize
href: api/TensorFlow/TensorFlow.TFDisposable.html#TensorFlow_TFDisposable_Finalize_
fullName: TFDisposable.Finalize
nameWithType: TFDisposable.Finalize
- uid: TensorFlow.TFDisposable.Handle
name: Handle
href: api/TensorFlow/TensorFlow.TFDisposable.html#TensorFlow_TFDisposable_Handle
fullName: TFDisposable.Handle
nameWithType: TFDisposable.Handle
- uid: TensorFlow.TFDisposable.Handle*
name: Handle
href: api/TensorFlow/TensorFlow.TFDisposable.html#TensorFlow_TFDisposable_Handle_
fullName: TFDisposable.Handle
nameWithType: TFDisposable.Handle
- uid: TensorFlow.TFException
name: TFException
href: api/TensorFlow/TensorFlow.TFException.html
fullName: TensorFlow.TFException
nameWithType: TFException
- uid: TensorFlow.TFException.#ctor(System.String)
name: TFException(String)
href: api/TensorFlow/TensorFlow.TFException.html#TensorFlow_TFException__ctor_System_String_
fullName: TFException.TFException(String)
nameWithType: TFException.TFException(String)
- uid: TensorFlow.TFException.#ctor*
name: TFException
href: api/TensorFlow/TensorFlow.TFException.html#TensorFlow_TFException__ctor_
fullName: TFException.TFException
nameWithType: TFException.TFException
- uid: TensorFlow.TFGraph
name: TFGraph
href: api/TensorFlow/TensorFlow.TFGraph.html
fullName: TensorFlow.TFGraph
nameWithType: TFGraph
- uid: TensorFlow.TFGraph.#ctor
name: TFGraph()
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph__ctor
fullName: TFGraph.TFGraph()
nameWithType: TFGraph.TFGraph()
- uid: TensorFlow.TFGraph.#ctor*
name: TFGraph
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph__ctor_
fullName: TFGraph.TFGraph
nameWithType: TFGraph.TFGraph
- uid: TensorFlow.TFGraph.Abort(System.String,System.Nullable{System.Boolean},System.String)
name: Abort(String, Nullable<Boolean>, String)
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_Abort_System_String_System_Nullable_System_Boolean__System_String_
fullName: TFGraph.Abort(String, Nullable<Boolean>, String)
nameWithType: TFGraph.Abort(String, Nullable<Boolean>, String)
- uid: TensorFlow.TFGraph.Abort*
name: Abort
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_Abort_
fullName: TFGraph.Abort
nameWithType: TFGraph.Abort
- uid: TensorFlow.TFGraph.Abs(TensorFlow.TFOutput,System.String)
name: Abs(TFOutput, String)
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_Abs_TensorFlow_TFOutput_System_String_
fullName: TFGraph.Abs(TFOutput, String)
nameWithType: TFGraph.Abs(TFOutput, String)
- uid: TensorFlow.TFGraph.Abs*
name: Abs
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_Abs_
fullName: TFGraph.Abs
nameWithType: TFGraph.Abs
- uid: TensorFlow.TFGraph.Acos(TensorFlow.TFOutput,System.String)
name: Acos(TFOutput, String)
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_Acos_TensorFlow_TFOutput_System_String_
fullName: TFGraph.Acos(TFOutput, String)
nameWithType: TFGraph.Acos(TFOutput, String)
- uid: TensorFlow.TFGraph.Acos*
name: Acos
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_Acos_
fullName: TFGraph.Acos
nameWithType: TFGraph.Acos
- uid: TensorFlow.TFGraph.Add(TensorFlow.TFOutput,TensorFlow.TFOutput,System.String)
name: Add(TFOutput, TFOutput, String)
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_Add_TensorFlow_TFOutput_TensorFlow_TFOutput_System_String_
fullName: TFGraph.Add(TFOutput, TFOutput, String)
nameWithType: TFGraph.Add(TFOutput, TFOutput, String)
- uid: TensorFlow.TFGraph.Add*
name: Add
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_Add_
fullName: TFGraph.Add
nameWithType: TFGraph.Add
- uid: TensorFlow.TFGraph.AddGradients(TensorFlow.TFOutput[],TensorFlow.TFOutput[],TensorFlow.TFOutput[],TensorFlow.TFStatus)
name: AddGradients(TFOutput[], TFOutput[], TFOutput[], TFStatus)
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_AddGradients_TensorFlow_TFOutput___TensorFlow_TFOutput___TensorFlow_TFOutput___TensorFlow_TFStatus_
fullName: TFGraph.AddGradients(TFOutput[], TFOutput[], TFOutput[], TFStatus)
nameWithType: TFGraph.AddGradients(TFOutput[], TFOutput[], TFOutput[], TFStatus)
- uid: TensorFlow.TFGraph.AddGradients*
name: AddGradients
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_AddGradients_
fullName: TFGraph.AddGradients
nameWithType: TFGraph.AddGradients
- uid: TensorFlow.TFGraph.AddInitVariable(TensorFlow.TFOperation)
name: AddInitVariable(TFOperation)
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_AddInitVariable_TensorFlow_TFOperation_
fullName: TFGraph.AddInitVariable(TFOperation)
nameWithType: TFGraph.AddInitVariable(TFOperation)
- uid: TensorFlow.TFGraph.AddInitVariable*
name: AddInitVariable
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_AddInitVariable_
fullName: TFGraph.AddInitVariable
nameWithType: TFGraph.AddInitVariable
- uid: TensorFlow.TFGraph.AddManySparseToTensorsMap(TensorFlow.TFOutput,TensorFlow.TFOutput,TensorFlow.TFOutput,System.String,System.String,System.String)
name: AddManySparseToTensorsMap(TFOutput, TFOutput, TFOutput, String, String, String)
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_AddManySparseToTensorsMap_TensorFlow_TFOutput_TensorFlow_TFOutput_TensorFlow_TFOutput_System_String_System_String_System_String_
fullName: TFGraph.AddManySparseToTensorsMap(TFOutput, TFOutput, TFOutput, String, String, String)
nameWithType: TFGraph.AddManySparseToTensorsMap(TFOutput, TFOutput, TFOutput, String, String, String)
- uid: TensorFlow.TFGraph.AddManySparseToTensorsMap*
name: AddManySparseToTensorsMap
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_AddManySparseToTensorsMap_
fullName: TFGraph.AddManySparseToTensorsMap
nameWithType: TFGraph.AddManySparseToTensorsMap
- uid: TensorFlow.TFGraph.AddN(TensorFlow.TFOutput[],System.String)
name: AddN(TFOutput[], String)
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_AddN_TensorFlow_TFOutput___System_String_
fullName: TFGraph.AddN(TFOutput[], String)
nameWithType: TFGraph.AddN(TFOutput[], String)
- uid: TensorFlow.TFGraph.AddN*
name: AddN
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_AddN_
fullName: TFGraph.AddN
nameWithType: TFGraph.AddN
- uid: TensorFlow.TFGraph.AddSparseToTensorsMap(TensorFlow.TFOutput,TensorFlow.TFOutput,TensorFlow.TFOutput,System.String,System.String,System.String)
name: AddSparseToTensorsMap(TFOutput, TFOutput, TFOutput, String, String, String)
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_AddSparseToTensorsMap_TensorFlow_TFOutput_TensorFlow_TFOutput_TensorFlow_TFOutput_System_String_System_String_System_String_
fullName: TFGraph.AddSparseToTensorsMap(TFOutput, TFOutput, TFOutput, String, String, String)
nameWithType: TFGraph.AddSparseToTensorsMap(TFOutput, TFOutput, TFOutput, String, String, String)
- uid: TensorFlow.TFGraph.AddSparseToTensorsMap*
name: AddSparseToTensorsMap
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_AddSparseToTensorsMap_
fullName: TFGraph.AddSparseToTensorsMap
nameWithType: TFGraph.AddSparseToTensorsMap
- uid: TensorFlow.TFGraph.AdjustContrast(TensorFlow.TFOutput,TensorFlow.TFOutput,TensorFlow.TFOutput,TensorFlow.TFOutput,System.String)
name: AdjustContrast(TFOutput, TFOutput, TFOutput, TFOutput, String)
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_AdjustContrast_TensorFlow_TFOutput_TensorFlow_TFOutput_TensorFlow_TFOutput_TensorFlow_TFOutput_System_String_
fullName: TFGraph.AdjustContrast(TFOutput, TFOutput, TFOutput, TFOutput, String)
nameWithType: TFGraph.AdjustContrast(TFOutput, TFOutput, TFOutput, TFOutput, String)
- uid: TensorFlow.TFGraph.AdjustContrast*
name: AdjustContrast
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_AdjustContrast_
fullName: TFGraph.AdjustContrast
nameWithType: TFGraph.AdjustContrast
- uid: TensorFlow.TFGraph.AdjustContrastv2(TensorFlow.TFOutput,TensorFlow.TFOutput,System.String)
name: AdjustContrastv2(TFOutput, TFOutput, String)
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_AdjustContrastv2_TensorFlow_TFOutput_TensorFlow_TFOutput_System_String_
fullName: TFGraph.AdjustContrastv2(TFOutput, TFOutput, String)
nameWithType: TFGraph.AdjustContrastv2(TFOutput, TFOutput, String)
- uid: TensorFlow.TFGraph.AdjustContrastv2*
name: AdjustContrastv2
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_AdjustContrastv2_
fullName: TFGraph.AdjustContrastv2
nameWithType: TFGraph.AdjustContrastv2
- uid: TensorFlow.TFGraph.AdjustHue(TensorFlow.TFOutput,TensorFlow.TFOutput,System.String)
name: AdjustHue(TFOutput, TFOutput, String)
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_AdjustHue_TensorFlow_TFOutput_TensorFlow_TFOutput_System_String_
fullName: TFGraph.AdjustHue(TFOutput, TFOutput, String)
nameWithType: TFGraph.AdjustHue(TFOutput, TFOutput, String)
- uid: TensorFlow.TFGraph.AdjustHue*
name: AdjustHue
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_AdjustHue_
fullName: TFGraph.AdjustHue
nameWithType: TFGraph.AdjustHue
- uid: TensorFlow.TFGraph.AdjustSaturation(TensorFlow.TFOutput,TensorFlow.TFOutput,System.String)
name: AdjustSaturation(TFOutput, TFOutput, String)
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_AdjustSaturation_TensorFlow_TFOutput_TensorFlow_TFOutput_System_String_
fullName: TFGraph.AdjustSaturation(TFOutput, TFOutput, String)
nameWithType: TFGraph.AdjustSaturation(TFOutput, TFOutput, String)
- uid: TensorFlow.TFGraph.AdjustSaturation*
name: AdjustSaturation
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_AdjustSaturation_
fullName: TFGraph.AdjustSaturation
nameWithType: TFGraph.AdjustSaturation
- uid: TensorFlow.TFGraph.All(TensorFlow.TFOutput,TensorFlow.TFOutput,System.Nullable{System.Boolean},System.String)
name: All(TFOutput, TFOutput, Nullable<Boolean>, String)
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_All_TensorFlow_TFOutput_TensorFlow_TFOutput_System_Nullable_System_Boolean__System_String_
fullName: TFGraph.All(TFOutput, TFOutput, Nullable<Boolean>, String)
nameWithType: TFGraph.All(TFOutput, TFOutput, Nullable<Boolean>, String)
- uid: TensorFlow.TFGraph.All*
name: All
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_All_
fullName: TFGraph.All
nameWithType: TFGraph.All
- uid: TensorFlow.TFGraph.AllCandidateSampler(TensorFlow.TFOutput,System.Int64,System.Int64,System.Boolean,System.Nullable{System.Int64},System.Nullable{System.Int64},System.String)
name: AllCandidateSampler(TFOutput, Int64, Int64, Boolean, Nullable<Int64>, Nullable<Int64>, String)
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_AllCandidateSampler_TensorFlow_TFOutput_System_Int64_System_Int64_System_Boolean_System_Nullable_System_Int64__System_Nullable_System_Int64__System_String_
fullName: TFGraph.AllCandidateSampler(TFOutput, Int64, Int64, Boolean, Nullable<Int64>, Nullable<Int64>, String)
nameWithType: TFGraph.AllCandidateSampler(TFOutput, Int64, Int64, Boolean, Nullable<Int64>, Nullable<Int64>, String)
- uid: TensorFlow.TFGraph.AllCandidateSampler*
name: AllCandidateSampler
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_AllCandidateSampler_
fullName: TFGraph.AllCandidateSampler
nameWithType: TFGraph.AllCandidateSampler
- uid: TensorFlow.TFGraph.Any(TensorFlow.TFOutput,TensorFlow.TFOutput,System.Nullable{System.Boolean},System.String)
name: Any(TFOutput, TFOutput, Nullable<Boolean>, String)
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_Any_TensorFlow_TFOutput_TensorFlow_TFOutput_System_Nullable_System_Boolean__System_String_
fullName: TFGraph.Any(TFOutput, TFOutput, Nullable<Boolean>, String)
nameWithType: TFGraph.Any(TFOutput, TFOutput, Nullable<Boolean>, String)
- uid: TensorFlow.TFGraph.Any*
name: Any
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_Any_
fullName: TFGraph.Any
nameWithType: TFGraph.Any
- uid: TensorFlow.TFGraph.ApplyDelayCompensatedGradientDescent(TensorFlow.TFOutput,TensorFlow.TFOutput,TensorFlow.TFOutput,TensorFlow.TFOutput,TensorFlow.TFOutput,System.Nullable{System.Boolean},System.String)
name: ApplyDelayCompensatedGradientDescent(TFOutput, TFOutput, TFOutput, TFOutput, TFOutput, Nullable<Boolean>, String)
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_ApplyDelayCompensatedGradientDescent_TensorFlow_TFOutput_TensorFlow_TFOutput_TensorFlow_TFOutput_TensorFlow_TFOutput_TensorFlow_TFOutput_System_Nullable_System_Boolean__System_String_
fullName: TFGraph.ApplyDelayCompensatedGradientDescent(TFOutput, TFOutput, TFOutput, TFOutput, TFOutput, Nullable<Boolean>, String)
nameWithType: TFGraph.ApplyDelayCompensatedGradientDescent(TFOutput, TFOutput, TFOutput, TFOutput, TFOutput, Nullable<Boolean>, String)
- uid: TensorFlow.TFGraph.ApplyDelayCompensatedGradientDescent*
name: ApplyDelayCompensatedGradientDescent
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_ApplyDelayCompensatedGradientDescent_
fullName: TFGraph.ApplyDelayCompensatedGradientDescent
nameWithType: TFGraph.ApplyDelayCompensatedGradientDescent
- uid: TensorFlow.TFGraph.ApproximateEqual(TensorFlow.TFOutput,TensorFlow.TFOutput,System.Nullable{System.Single},System.String)
name: ApproximateEqual(TFOutput, TFOutput, Nullable<Single>, String)
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_ApproximateEqual_TensorFlow_TFOutput_TensorFlow_TFOutput_System_Nullable_System_Single__System_String_
fullName: TFGraph.ApproximateEqual(TFOutput, TFOutput, Nullable<Single>, String)
nameWithType: TFGraph.ApproximateEqual(TFOutput, TFOutput, Nullable<Single>, String)
- uid: TensorFlow.TFGraph.ApproximateEqual*
name: ApproximateEqual
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_ApproximateEqual_
fullName: TFGraph.ApproximateEqual
nameWithType: TFGraph.ApproximateEqual
- uid: TensorFlow.TFGraph.ArgMax(TensorFlow.TFOutput,TensorFlow.TFOutput,System.String)
name: ArgMax(TFOutput, TFOutput, String)
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_ArgMax_TensorFlow_TFOutput_TensorFlow_TFOutput_System_String_
fullName: TFGraph.ArgMax(TFOutput, TFOutput, String)
nameWithType: TFGraph.ArgMax(TFOutput, TFOutput, String)
- uid: TensorFlow.TFGraph.ArgMax*
name: ArgMax
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_ArgMax_
fullName: TFGraph.ArgMax
nameWithType: TFGraph.ArgMax
- uid: TensorFlow.TFGraph.ArgMin(TensorFlow.TFOutput,TensorFlow.TFOutput,System.String)
name: ArgMin(TFOutput, TFOutput, String)
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_ArgMin_TensorFlow_TFOutput_TensorFlow_TFOutput_System_String_
fullName: TFGraph.ArgMin(TFOutput, TFOutput, String)
nameWithType: TFGraph.ArgMin(TFOutput, TFOutput, String)
- uid: TensorFlow.TFGraph.ArgMin*
name: ArgMin
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_ArgMin_
fullName: TFGraph.ArgMin
nameWithType: TFGraph.ArgMin
- uid: TensorFlow.TFGraph.Asin(TensorFlow.TFOutput,System.String)
name: Asin(TFOutput, String)
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_Asin_TensorFlow_TFOutput_System_String_
fullName: TFGraph.Asin(TFOutput, String)
nameWithType: TFGraph.Asin(TFOutput, String)
- uid: TensorFlow.TFGraph.Asin*
name: Asin
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_Asin_
fullName: TFGraph.Asin
nameWithType: TFGraph.Asin
- uid: TensorFlow.TFGraph.Assert(TensorFlow.TFOutput,TensorFlow.TFOutput[],System.Nullable{System.Int64},System.String)
name: Assert(TFOutput, TFOutput[], Nullable<Int64>, String)
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_Assert_TensorFlow_TFOutput_TensorFlow_TFOutput___System_Nullable_System_Int64__System_String_
fullName: TFGraph.Assert(TFOutput, TFOutput[], Nullable<Int64>, String)
nameWithType: TFGraph.Assert(TFOutput, TFOutput[], Nullable<Int64>, String)
- uid: TensorFlow.TFGraph.Assert*
name: Assert
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_Assert_
fullName: TFGraph.Assert
nameWithType: TFGraph.Assert
- uid: TensorFlow.TFGraph.AssignAddVariableOp(TensorFlow.TFOutput,TensorFlow.TFOutput,System.String)
name: AssignAddVariableOp(TFOutput, TFOutput, String)
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_AssignAddVariableOp_TensorFlow_TFOutput_TensorFlow_TFOutput_System_String_
fullName: TFGraph.AssignAddVariableOp(TFOutput, TFOutput, String)
nameWithType: TFGraph.AssignAddVariableOp(TFOutput, TFOutput, String)
- uid: TensorFlow.TFGraph.AssignAddVariableOp*
name: AssignAddVariableOp
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_AssignAddVariableOp_
fullName: TFGraph.AssignAddVariableOp
nameWithType: TFGraph.AssignAddVariableOp
- uid: TensorFlow.TFGraph.AssignSubVariableOp(TensorFlow.TFOutput,TensorFlow.TFOutput,System.String)
name: AssignSubVariableOp(TFOutput, TFOutput, String)
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_AssignSubVariableOp_TensorFlow_TFOutput_TensorFlow_TFOutput_System_String_
fullName: TFGraph.AssignSubVariableOp(TFOutput, TFOutput, String)
nameWithType: TFGraph.AssignSubVariableOp(TFOutput, TFOutput, String)
- uid: TensorFlow.TFGraph.AssignSubVariableOp*
name: AssignSubVariableOp
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_AssignSubVariableOp_
fullName: TFGraph.AssignSubVariableOp
nameWithType: TFGraph.AssignSubVariableOp
- uid: TensorFlow.TFGraph.AssignVariableOp(TensorFlow.TFOutput,TensorFlow.TFOutput,System.String)
name: AssignVariableOp(TFOutput, TFOutput, String)
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_AssignVariableOp_TensorFlow_TFOutput_TensorFlow_TFOutput_System_String_
fullName: TFGraph.AssignVariableOp(TFOutput, TFOutput, String)
nameWithType: TFGraph.AssignVariableOp(TFOutput, TFOutput, String)
- uid: TensorFlow.TFGraph.AssignVariableOp*
name: AssignVariableOp
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_AssignVariableOp_
fullName: TFGraph.AssignVariableOp
nameWithType: TFGraph.AssignVariableOp
- uid: TensorFlow.TFGraph.AsString(TensorFlow.TFOutput,System.Nullable{System.Int64},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Int64},System.String,System.String)
name: AsString(TFOutput, Nullable<Int64>, Nullable<Boolean>, Nullable<Boolean>, Nullable<Int64>, String, String)
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_AsString_TensorFlow_TFOutput_System_Nullable_System_Int64__System_Nullable_System_Boolean__System_Nullable_System_Boolean__System_Nullable_System_Int64__System_String_System_String_
fullName: TFGraph.AsString(TFOutput, Nullable<Int64>, Nullable<Boolean>, Nullable<Boolean>, Nullable<Int64>, String, String)
nameWithType: TFGraph.AsString(TFOutput, Nullable<Int64>, Nullable<Boolean>, Nullable<Boolean>, Nullable<Int64>, String, String)
- uid: TensorFlow.TFGraph.AsString*
name: AsString
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_AsString_
fullName: TFGraph.AsString
nameWithType: TFGraph.AsString
- uid: TensorFlow.TFGraph.Atan(TensorFlow.TFOutput,System.String)
name: Atan(TFOutput, String)
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_Atan_TensorFlow_TFOutput_System_String_
fullName: TFGraph.Atan(TFOutput, String)
nameWithType: TFGraph.Atan(TFOutput, String)
- uid: TensorFlow.TFGraph.Atan*
name: Atan
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_Atan_
fullName: TFGraph.Atan
nameWithType: TFGraph.Atan
- uid: TensorFlow.TFGraph.Atan2(TensorFlow.TFOutput,TensorFlow.TFOutput,System.String)
name: Atan2(TFOutput, TFOutput, String)
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_Atan2_TensorFlow_TFOutput_TensorFlow_TFOutput_System_String_
fullName: TFGraph.Atan2(TFOutput, TFOutput, String)
nameWithType: TFGraph.Atan2(TFOutput, TFOutput, String)
- uid: TensorFlow.TFGraph.Atan2*
name: Atan2
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_Atan2_
fullName: TFGraph.Atan2
nameWithType: TFGraph.Atan2
- uid: TensorFlow.TFGraph.AudioSpectrogram(TensorFlow.TFOutput,System.Int64,System.Int64,System.Nullable{System.Boolean},System.String)
name: AudioSpectrogram(TFOutput, Int64, Int64, Nullable<Boolean>, String)
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_AudioSpectrogram_TensorFlow_TFOutput_System_Int64_System_Int64_System_Nullable_System_Boolean__System_String_
fullName: TFGraph.AudioSpectrogram(TFOutput, Int64, Int64, Nullable<Boolean>, String)
nameWithType: TFGraph.AudioSpectrogram(TFOutput, Int64, Int64, Nullable<Boolean>, String)
- uid: TensorFlow.TFGraph.AudioSpectrogram*
name: AudioSpectrogram
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_AudioSpectrogram_
fullName: TFGraph.AudioSpectrogram
nameWithType: TFGraph.AudioSpectrogram
- uid: TensorFlow.TFGraph.AudioSummary(TensorFlow.TFOutput,TensorFlow.TFOutput,System.Single,System.Nullable{System.Int64},System.String)
name: AudioSummary(TFOutput, TFOutput, Single, Nullable<Int64>, String)
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_AudioSummary_TensorFlow_TFOutput_TensorFlow_TFOutput_System_Single_System_Nullable_System_Int64__System_String_
fullName: TFGraph.AudioSummary(TFOutput, TFOutput, Single, Nullable<Int64>, String)
nameWithType: TFGraph.AudioSummary(TFOutput, TFOutput, Single, Nullable<Int64>, String)
- uid: TensorFlow.TFGraph.AudioSummary*
name: AudioSummary
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_AudioSummary_
fullName: TFGraph.AudioSummary
nameWithType: TFGraph.AudioSummary
- uid: TensorFlow.TFGraph.AudioSummaryV2(TensorFlow.TFOutput,TensorFlow.TFOutput,TensorFlow.TFOutput,System.Nullable{System.Int64},System.String)
name: AudioSummaryV2(TFOutput, TFOutput, TFOutput, Nullable<Int64>, String)
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_AudioSummaryV2_TensorFlow_TFOutput_TensorFlow_TFOutput_TensorFlow_TFOutput_System_Nullable_System_Int64__System_String_
fullName: TFGraph.AudioSummaryV2(TFOutput, TFOutput, TFOutput, Nullable<Int64>, String)
nameWithType: TFGraph.AudioSummaryV2(TFOutput, TFOutput, TFOutput, Nullable<Int64>, String)
- uid: TensorFlow.TFGraph.AudioSummaryV2*
name: AudioSummaryV2
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_AudioSummaryV2_
fullName: TFGraph.AudioSummaryV2
nameWithType: TFGraph.AudioSummaryV2
- uid: TensorFlow.TFGraph.AvgPool(TensorFlow.TFOutput,System.Int64[],System.Int64[],System.String,System.String,System.String)
name: AvgPool(TFOutput, Int64[], Int64[], String, String, String)
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_AvgPool_TensorFlow_TFOutput_System_Int64___System_Int64___System_String_System_String_System_String_
fullName: TFGraph.AvgPool(TFOutput, Int64[], Int64[], String, String, String)
nameWithType: TFGraph.AvgPool(TFOutput, Int64[], Int64[], String, String, String)
- uid: TensorFlow.TFGraph.AvgPool*
name: AvgPool
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_AvgPool_
fullName: TFGraph.AvgPool
nameWithType: TFGraph.AvgPool
- uid: TensorFlow.TFGraph.AvgPool3D(TensorFlow.TFOutput,System.Int64[],System.Int64[],System.String,System.String,System.String)
name: AvgPool3D(TFOutput, Int64[], Int64[], String, String, String)
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_AvgPool3D_TensorFlow_TFOutput_System_Int64___System_Int64___System_String_System_String_System_String_
fullName: TFGraph.AvgPool3D(TFOutput, Int64[], Int64[], String, String, String)
nameWithType: TFGraph.AvgPool3D(TFOutput, Int64[], Int64[], String, String, String)
- uid: TensorFlow.TFGraph.AvgPool3D*
name: AvgPool3D
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_AvgPool3D_
fullName: TFGraph.AvgPool3D
nameWithType: TFGraph.AvgPool3D
- uid: TensorFlow.TFGraph.AvgPool3DGrad(TensorFlow.TFOutput,TensorFlow.TFOutput,System.Int64[],System.Int64[],System.String,System.String,System.String)
name: AvgPool3DGrad(TFOutput, TFOutput, Int64[], Int64[], String, String, String)
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_AvgPool3DGrad_TensorFlow_TFOutput_TensorFlow_TFOutput_System_Int64___System_Int64___System_String_System_String_System_String_
fullName: TFGraph.AvgPool3DGrad(TFOutput, TFOutput, Int64[], Int64[], String, String, String)
nameWithType: TFGraph.AvgPool3DGrad(TFOutput, TFOutput, Int64[], Int64[], String, String, String)
- uid: TensorFlow.TFGraph.AvgPool3DGrad*
name: AvgPool3DGrad
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_AvgPool3DGrad_
fullName: TFGraph.AvgPool3DGrad
nameWithType: TFGraph.AvgPool3DGrad
- uid: TensorFlow.TFGraph.AvgPoolGrad(TensorFlow.TFOutput,TensorFlow.TFOutput,System.Int64[],System.Int64[],System.String,System.String,System.String)
name: AvgPoolGrad(TFOutput, TFOutput, Int64[], Int64[], String, String, String)
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_AvgPoolGrad_TensorFlow_TFOutput_TensorFlow_TFOutput_System_Int64___System_Int64___System_String_System_String_System_String_
fullName: TFGraph.AvgPoolGrad(TFOutput, TFOutput, Int64[], Int64[], String, String, String)
nameWithType: TFGraph.AvgPoolGrad(TFOutput, TFOutput, Int64[], Int64[], String, String, String)
- uid: TensorFlow.TFGraph.AvgPoolGrad*
name: AvgPoolGrad
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_AvgPoolGrad_
fullName: TFGraph.AvgPoolGrad
nameWithType: TFGraph.AvgPoolGrad
- uid: TensorFlow.TFGraph.BatchDataset(TensorFlow.TFOutput,TensorFlow.TFOutput,TensorFlow.TFDataType[],TensorFlow.TFShape[],System.String)
name: BatchDataset(TFOutput, TFOutput, TFDataType[], TFShape[], String)
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_BatchDataset_TensorFlow_TFOutput_TensorFlow_TFOutput_TensorFlow_TFDataType___TensorFlow_TFShape___System_String_
fullName: TFGraph.BatchDataset(TFOutput, TFOutput, TFDataType[], TFShape[], String)
nameWithType: TFGraph.BatchDataset(TFOutput, TFOutput, TFDataType[], TFShape[], String)
- uid: TensorFlow.TFGraph.BatchDataset*
name: BatchDataset
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_BatchDataset_
fullName: TFGraph.BatchDataset
nameWithType: TFGraph.BatchDataset
- uid: TensorFlow.TFGraph.BatchMatMul(TensorFlow.TFOutput,TensorFlow.TFOutput,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.String)
name: BatchMatMul(TFOutput, TFOutput, Nullable<Boolean>, Nullable<Boolean>, String)
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_BatchMatMul_TensorFlow_TFOutput_TensorFlow_TFOutput_System_Nullable_System_Boolean__System_Nullable_System_Boolean__System_String_
fullName: TFGraph.BatchMatMul(TFOutput, TFOutput, Nullable<Boolean>, Nullable<Boolean>, String)
nameWithType: TFGraph.BatchMatMul(TFOutput, TFOutput, Nullable<Boolean>, Nullable<Boolean>, String)
- uid: TensorFlow.TFGraph.BatchMatMul*
name: BatchMatMul
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_BatchMatMul_
fullName: TFGraph.BatchMatMul
nameWithType: TFGraph.BatchMatMul
- uid: TensorFlow.TFGraph.BatchNormWithGlobalNormalization(TensorFlow.TFOutput,TensorFlow.TFOutput,TensorFlow.TFOutput,TensorFlow.TFOutput,TensorFlow.TFOutput,System.Single,System.Boolean,System.String)
name: BatchNormWithGlobalNormalization(TFOutput, TFOutput, TFOutput, TFOutput, TFOutput, Single, Boolean, String)
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_BatchNormWithGlobalNormalization_TensorFlow_TFOutput_TensorFlow_TFOutput_TensorFlow_TFOutput_TensorFlow_TFOutput_TensorFlow_TFOutput_System_Single_System_Boolean_System_String_
fullName: TFGraph.BatchNormWithGlobalNormalization(TFOutput, TFOutput, TFOutput, TFOutput, TFOutput, Single, Boolean, String)
nameWithType: TFGraph.BatchNormWithGlobalNormalization(TFOutput, TFOutput, TFOutput, TFOutput, TFOutput, Single, Boolean, String)
- uid: TensorFlow.TFGraph.BatchNormWithGlobalNormalization*
name: BatchNormWithGlobalNormalization
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_BatchNormWithGlobalNormalization_
fullName: TFGraph.BatchNormWithGlobalNormalization
nameWithType: TFGraph.BatchNormWithGlobalNormalization
- uid: TensorFlow.TFGraph.BatchNormWithGlobalNormalizationGrad(TensorFlow.TFOutput,TensorFlow.TFOutput,TensorFlow.TFOutput,TensorFlow.TFOutput,TensorFlow.TFOutput,System.Single,System.Boolean,System.String)
name: BatchNormWithGlobalNormalizationGrad(TFOutput, TFOutput, TFOutput, TFOutput, TFOutput, Single, Boolean, String)
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_BatchNormWithGlobalNormalizationGrad_TensorFlow_TFOutput_TensorFlow_TFOutput_TensorFlow_TFOutput_TensorFlow_TFOutput_TensorFlow_TFOutput_System_Single_System_Boolean_System_String_
fullName: TFGraph.BatchNormWithGlobalNormalizationGrad(TFOutput, TFOutput, TFOutput, TFOutput, TFOutput, Single, Boolean, String)
nameWithType: TFGraph.BatchNormWithGlobalNormalizationGrad(TFOutput, TFOutput, TFOutput, TFOutput, TFOutput, Single, Boolean, String)
- uid: TensorFlow.TFGraph.BatchNormWithGlobalNormalizationGrad*
name: BatchNormWithGlobalNormalizationGrad
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_BatchNormWithGlobalNormalizationGrad_
fullName: TFGraph.BatchNormWithGlobalNormalizationGrad
nameWithType: TFGraph.BatchNormWithGlobalNormalizationGrad
- uid: TensorFlow.TFGraph.BatchToSpace(TensorFlow.TFOutput,TensorFlow.TFOutput,System.Int64,System.String)
name: BatchToSpace(TFOutput, TFOutput, Int64, String)
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_BatchToSpace_TensorFlow_TFOutput_TensorFlow_TFOutput_System_Int64_System_String_
fullName: TFGraph.BatchToSpace(TFOutput, TFOutput, Int64, String)
nameWithType: TFGraph.BatchToSpace(TFOutput, TFOutput, Int64, String)
- uid: TensorFlow.TFGraph.BatchToSpace*
name: BatchToSpace
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_BatchToSpace_
fullName: TFGraph.BatchToSpace
nameWithType: TFGraph.BatchToSpace
- uid: TensorFlow.TFGraph.BatchToSpaceND(TensorFlow.TFOutput,TensorFlow.TFOutput,TensorFlow.TFOutput,System.String)
name: BatchToSpaceND(TFOutput, TFOutput, TFOutput, String)
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_BatchToSpaceND_TensorFlow_TFOutput_TensorFlow_TFOutput_TensorFlow_TFOutput_System_String_
fullName: TFGraph.BatchToSpaceND(TFOutput, TFOutput, TFOutput, String)
nameWithType: TFGraph.BatchToSpaceND(TFOutput, TFOutput, TFOutput, String)
- uid: TensorFlow.TFGraph.BatchToSpaceND*
name: BatchToSpaceND
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_BatchToSpaceND_
fullName: TFGraph.BatchToSpaceND
nameWithType: TFGraph.BatchToSpaceND
- uid: TensorFlow.TFGraph.Betainc(TensorFlow.TFOutput,TensorFlow.TFOutput,TensorFlow.TFOutput,System.String)
name: Betainc(TFOutput, TFOutput, TFOutput, String)
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_Betainc_TensorFlow_TFOutput_TensorFlow_TFOutput_TensorFlow_TFOutput_System_String_
fullName: TFGraph.Betainc(TFOutput, TFOutput, TFOutput, String)
nameWithType: TFGraph.Betainc(TFOutput, TFOutput, TFOutput, String)
- uid: TensorFlow.TFGraph.Betainc*
name: Betainc
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_Betainc_
fullName: TFGraph.Betainc
nameWithType: TFGraph.Betainc
- uid: TensorFlow.TFGraph.BiasAdd(TensorFlow.TFOutput,TensorFlow.TFOutput,System.String,System.String)
name: BiasAdd(TFOutput, TFOutput, String, String)
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_BiasAdd_TensorFlow_TFOutput_TensorFlow_TFOutput_System_String_System_String_
fullName: TFGraph.BiasAdd(TFOutput, TFOutput, String, String)
nameWithType: TFGraph.BiasAdd(TFOutput, TFOutput, String, String)
- uid: TensorFlow.TFGraph.BiasAdd*
name: BiasAdd
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_BiasAdd_
fullName: TFGraph.BiasAdd
nameWithType: TFGraph.BiasAdd
- uid: TensorFlow.TFGraph.BiasAddGrad(TensorFlow.TFOutput,System.String,System.String)
name: BiasAddGrad(TFOutput, String, String)
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_BiasAddGrad_TensorFlow_TFOutput_System_String_System_String_
fullName: TFGraph.BiasAddGrad(TFOutput, String, String)
nameWithType: TFGraph.BiasAddGrad(TFOutput, String, String)
- uid: TensorFlow.TFGraph.BiasAddGrad*
name: BiasAddGrad
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_BiasAddGrad_
fullName: TFGraph.BiasAddGrad
nameWithType: TFGraph.BiasAddGrad
- uid: TensorFlow.TFGraph.BiasAddV1(TensorFlow.TFOutput,TensorFlow.TFOutput,System.String)
name: BiasAddV1(TFOutput, TFOutput, String)
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_BiasAddV1_TensorFlow_TFOutput_TensorFlow_TFOutput_System_String_
fullName: TFGraph.BiasAddV1(TFOutput, TFOutput, String)
nameWithType: TFGraph.BiasAddV1(TFOutput, TFOutput, String)
- uid: TensorFlow.TFGraph.BiasAddV1*
name: BiasAddV1
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_BiasAddV1_
fullName: TFGraph.BiasAddV1
nameWithType: TFGraph.BiasAddV1
- uid: TensorFlow.TFGraph.Bincount(TensorFlow.TFOutput,TensorFlow.TFOutput,TensorFlow.TFOutput,System.String)
name: Bincount(TFOutput, TFOutput, TFOutput, String)
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_Bincount_TensorFlow_TFOutput_TensorFlow_TFOutput_TensorFlow_TFOutput_System_String_
fullName: TFGraph.Bincount(TFOutput, TFOutput, TFOutput, String)
nameWithType: TFGraph.Bincount(TFOutput, TFOutput, TFOutput, String)
- uid: TensorFlow.TFGraph.Bincount*
name: Bincount
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_Bincount_
fullName: TFGraph.Bincount
nameWithType: TFGraph.Bincount
- uid: TensorFlow.TFGraph.Bitcast(TensorFlow.TFOutput,TensorFlow.TFDataType,System.String)
name: Bitcast(TFOutput, TFDataType, String)
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_Bitcast_TensorFlow_TFOutput_TensorFlow_TFDataType_System_String_
fullName: TFGraph.Bitcast(TFOutput, TFDataType, String)
nameWithType: TFGraph.Bitcast(TFOutput, TFDataType, String)
- uid: TensorFlow.TFGraph.Bitcast*
name: Bitcast
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_Bitcast_
fullName: TFGraph.Bitcast
nameWithType: TFGraph.Bitcast
- uid: TensorFlow.TFGraph.BitwiseAnd(TensorFlow.TFOutput,TensorFlow.TFOutput,System.String)
name: BitwiseAnd(TFOutput, TFOutput, String)
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_BitwiseAnd_TensorFlow_TFOutput_TensorFlow_TFOutput_System_String_
fullName: TFGraph.BitwiseAnd(TFOutput, TFOutput, String)
nameWithType: TFGraph.BitwiseAnd(TFOutput, TFOutput, String)
- uid: TensorFlow.TFGraph.BitwiseAnd*
name: BitwiseAnd
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_BitwiseAnd_
fullName: TFGraph.BitwiseAnd
nameWithType: TFGraph.BitwiseAnd
- uid: TensorFlow.TFGraph.BitwiseOr(TensorFlow.TFOutput,TensorFlow.TFOutput,System.String)
name: BitwiseOr(TFOutput, TFOutput, String)
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_BitwiseOr_TensorFlow_TFOutput_TensorFlow_TFOutput_System_String_
fullName: TFGraph.BitwiseOr(TFOutput, TFOutput, String)
nameWithType: TFGraph.BitwiseOr(TFOutput, TFOutput, String)
- uid: TensorFlow.TFGraph.BitwiseOr*
name: BitwiseOr
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_BitwiseOr_
fullName: TFGraph.BitwiseOr
nameWithType: TFGraph.BitwiseOr
- uid: TensorFlow.TFGraph.BitwiseXor(TensorFlow.TFOutput,TensorFlow.TFOutput,System.String)
name: BitwiseXor(TFOutput, TFOutput, String)
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_BitwiseXor_TensorFlow_TFOutput_TensorFlow_TFOutput_System_String_
fullName: TFGraph.BitwiseXor(TFOutput, TFOutput, String)
nameWithType: TFGraph.BitwiseXor(TFOutput, TFOutput, String)
- uid: TensorFlow.TFGraph.BitwiseXor*
name: BitwiseXor
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_BitwiseXor_
fullName: TFGraph.BitwiseXor
nameWithType: TFGraph.BitwiseXor
- uid: TensorFlow.TFGraph.BroadcastArgs(TensorFlow.TFOutput,TensorFlow.TFOutput,System.String)
name: BroadcastArgs(TFOutput, TFOutput, String)
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_BroadcastArgs_TensorFlow_TFOutput_TensorFlow_TFOutput_System_String_
fullName: TFGraph.BroadcastArgs(TFOutput, TFOutput, String)
nameWithType: TFGraph.BroadcastArgs(TFOutput, TFOutput, String)
- uid: TensorFlow.TFGraph.BroadcastArgs*
name: BroadcastArgs
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_BroadcastArgs_
fullName: TFGraph.BroadcastArgs
nameWithType: TFGraph.BroadcastArgs
- uid: TensorFlow.TFGraph.BroadcastGradientArgs(TensorFlow.TFOutput,TensorFlow.TFOutput,System.String)
name: BroadcastGradientArgs(TFOutput, TFOutput, String)
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_BroadcastGradientArgs_TensorFlow_TFOutput_TensorFlow_TFOutput_System_String_
fullName: TFGraph.BroadcastGradientArgs(TFOutput, TFOutput, String)
nameWithType: TFGraph.BroadcastGradientArgs(TFOutput, TFOutput, String)
- uid: TensorFlow.TFGraph.BroadcastGradientArgs*
name: BroadcastGradientArgs
href: api/TensorFlow/TensorFlow.TFGraph.html#TensorFlow_TFGraph_BroadcastGradientArgs_
fullName: TFGraph.BroadcastGradientArgs
nameWithType: TFGraph.BroadcastGradientArgs
- uid: TensorFlow.TFGraph.Bucketize(TensorFlow.TFOutput,System.Single[],System.String)
name: Bucketize(TFOutput, Single[], String)