- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for punctuation (0.05 sec)
-
src/bytes/bytes.go
// Title treats s as UTF-8-encoded bytes and returns a copy with all Unicode letters that begin // words mapped to their title case. // // Deprecated: The rule Title uses for word boundaries does not handle Unicode // punctuation properly. Use golang.org/x/text/cases instead. func Title(s []byte) []byte { // Use a closure here to remember state. // Hackish but effective. Depends on Map scanning in order and calling // the closure once per rune.
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Sep 03 14:04:47 UTC 2025 - 35.5K bytes - Viewed (0) -
RELEASE.md
* Added additional `standardize` and `split` modes to `TextVectorization`: * `standardize="lower"` will lowercase inputs. * `standardize="string_punctuation"` will remove all punctuation. * `split="character"` will split on every unicode character. * Added an `output_mode` argument to the `Discretization` and `Hashing` layers with the same semantics as other preprocessing layers. All
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Mon Aug 18 20:54:38 UTC 2025 - 740K bytes - Viewed (1)