tf.raw_ops.For
    
    
      
    
    
      
      Stay organized with collections
    
    
      
      Save and categorize content based on your preferences.
    
  
  
      
    
  
  
  
  
  
    
  
  
    
    
<section class="expandable">
  <h4 class="showalways">View aliases</h4>
  <p>
<b>Compat aliases for migration</b>
<p>See
<a href="https://www.tensorflow.org/guide/migrate">Migration guide</a> for
more details.</p>
<p>`tf.compat.v1.raw_ops.For`</p>
</p>
</section>
<pre class="devsite-click-to-copy prettyprint lang-py tfo-signature-link">
<code>tf.raw_ops.For(
    start, limit, delta, input, body, name=None
)
</code></pre>
<!-- Placeholder for "Used in" -->
 output = input;
 for i in range(start, limit, delta)
   output = body(i, output);
| Args | 
|---|
| start | A Tensorof typeint32. The lower bound. An int32 | 
| limit | A Tensorof typeint32. The upper bound. An int32 | 
| delta | A Tensorof typeint32. The increment. An int32 | 
| input | A list of Tensorobjects.
A list of input tensors whose types are T. | 
| body | A function decorated with @Defun.
A function that takes a list of tensors (int32, T) and returns another
list of tensors (T). | 
| name | A name for the operation (optional). | 
| Returns | 
|---|
| A list of Tensorobjects. Has the same type asinput. | 
  
  
 
  
    
    
      
       
    
    
  
  
  Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates. Some content is licensed under the numpy license.
  Last updated 2022-10-27 UTC.
  
  
  
    
      [null,null,["Last updated 2022-10-27 UTC."],[],[]]