📅  最后修改于: 2023-12-03 15:05:32.742000             🧑  作者: Mango
skip()
方法是 TensorFlow.js 中 tf.data.Dataset
对象的一个方法,用于跳过指定数量的数据,并返回一个新的 Dataset 对象。
skip(count: number): tf.data.Dataset
import * as tf from '@tensorflow/tfjs';
import * as tfd from '@tensorflow/tfjs-data';
const data = tfd.array([1, 2, 3, 4, 5]);
const dataset = tfd.array([1, 2, 3, 4, 5]).batch(2);
跳过一个数据:
const skipOne = dataset.skip(1);
for await (const d of skipOne) {
console.log(d);
}
// 输出:
// [3, 4]
// [5]
跳过多个数据:
const skipTwo = dataset.skip(2);
for await (const d of skipTwo) {
console.log(d);
}
// 输出:
// [3, 4]
// [5]