当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Tensorflow.js tf.encodeString()用法及代码示例


Tensorflow.js是一个开放源代码库,由Google开发,用于在浏览器或节点环境中运行机器学习模型以及深度学习神经网络。

.encodeString()函数用于在给定的编码方案的帮助下将声明的字符串编码为字节。

用法:

tf.encodeString(s, encoding?)

Parameters: 

  • s:是要编码的指定字符串。它是字符串类型。
  • encoding:这是要使用的编码方案。并且默认值是utf-8。

返回值:它返回Uint8Array。



范例1:未提供编码方案时。

Javascript


// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
  
// Calling tf.encodeString() method and
// printing output
console.log(tf.util.encodeString("fghi"));

输出:

102,103,104,105

范例2:提供编码方案时。

Javascript


// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
  
// Definging string and encoding 
// scheme
var str = "1234"
var encoding = "utf-8"
  
// Calling tf.encodeString() method and
// printing output
var x = tf.util.encodeString(str, encoding);
console.log(x);

输出:

49,50,51,52

参考: https://js.tensorflow.org/api/latest/#encodeString

相关用法


注:本文由纯净天空筛选整理自nidhi1352singh大神的英文原创作品 Tensorflow.js tf.encodeString() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。