tensorflow::
    
   ops::
    
   Multinomial::
    
   Attrs
  
  
   #include <random_ops.h>
  
  Optional attribute setters for Multinomial .
Summary
     Public attributes | 
   |
|---|---|
     
      
       output_dtype_
      
      = DT_INT64
     
     | 
    
     
       DataType
      
      | 
   
     
      
       seed2_
      
      = 0
     
     | 
    
     
       int64
      
      | 
   
     
      
       seed_
      
      = 0
     
     | 
    
     
       int64
      
      | 
   
     Public functions | 
   |
|---|---|
     
      
       OutputDtype
      
      (DataType x)
     
     | 
    
     
       TF_MUST_USE_RESULT
       
        Attrs
       
      
     
      Defaults to DT_INT64.
      
     | 
   
     
      
       Seed
      
      (int64 x)
     
     | 
    
     
       TF_MUST_USE_RESULT
       
        Attrs
       
      
     
      If either seed or seed2 is set to be non-zero, the internal random number generator is seeded by the given seed.
      
     | 
   
     
      
       Seed2
      
      (int64 x)
     
     | 
    
     
       TF_MUST_USE_RESULT
       
        Attrs
       
      
     
      A second seed to avoid seed collision.
      
     | 
   
Public attributes
output_dtype_
DataType tensorflow::ops::Multinomial::Attrs::output_dtype_ = DT_INT64
seed2_
int64 tensorflow::ops::Multinomial::Attrs::seed2_ = 0
seed_
int64 tensorflow::ops::Multinomial::Attrs::seed_ = 0
Public functions
OutputDtype
TF_MUST_USE_RESULT Attrs tensorflow::ops::Multinomial::Attrs::OutputDtype( DataType x )
Defaults to DT_INT64.
Seed
TF_MUST_USE_RESULT Attrs tensorflow::ops::Multinomial::Attrs::Seed( int64 x )
If either seed or seed2 is set to be non-zero, the internal random number generator is seeded by the given seed.
Otherwise, a random seed is used.
Defaults to 0
Seed2
TF_MUST_USE_RESULT Attrs tensorflow::ops::Multinomial::Attrs::Seed2( int64 x )
A second seed to avoid seed collision.
Defaults to 0