mindspore/docs/api/api_python/dataset_text/mindspore.dataset.text.Char...

20 lines
826 B
ReStructuredText
Raw Normal View History

mindspore.dataset.text.CharNGram
=================================
.. py:class:: mindspore.dataset.text.CharNGram
CharNGram对象用于将tokens映射到预训练的向量中。
.. py:method:: from_file(file_path, max_vectors=None)
从文件构建CharNGram向量。
参数:
- **file_path** (str) - 包含CharNGram向量的文件路径。
- **max_vectors** (int可选) - 用于限制加载的预训练向量的数量。
大多数预训练的向量集是按词频降序排序的。因此,在如果内存不能存放整个向量集,或者由于其他原因不需要,
可以传递 `max_vectors` 限制加载数量。默认值None无限制。
返回:
2022-09-22 16:55:54 +08:00
CharNGram 根据文件构建的CharNGram向量。