Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for gram (0.21 sec)

  1. RELEASE.md

        `RandomTranslation`, `RandomRotation`, `RandomHeight`, `RandomWidth`,
        `RandomZoom`, `RandomContrast`
    *   Improved **`TextVectorization`** layer, which handles string tokenization,
        n-gram generation, and token encoding
        *   The `TextVectorization` layer now accounts for the mask_token as part of
            the vocabulary size when output_mode='int'. This means that, if you have
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
  2. cmd/xl-storage-disk-id-check.go

    			a.Total = atomic.LoadInt64(&old.Total)
    			a.N = atomic.LoadInt64(&old.N)
    			e.mu.Lock()
    			e.lastMinuteLatency.addAll(t-1, a)
    			e.mu.Unlock()
    			acc = newAcc
    		} else {
    			// We may be able to grab the new accumulator by yielding.
    			runtime.Gosched()
    			acc = e.cached.Load()
    		}
    	}
    	atomic.AddInt64(&acc.N, 1)
    	atomic.AddInt64(&acc.Total, int64(value))
    	atomic.AddInt64(&acc.Size, sz)
    }
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 33K bytes
    - Viewed (0)
Back to top