// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
// Calling separableConv2d() method
tf.separableConv2d(
tf.tensor4d([1.1, 2.2, 3.3, 4.4], [1, 1, 2, 2]),
tf.tensor4d([1.2, 1.1, 0.3, 4.5], [1, 1, 2, 2]),
tf.tensor4d([1.4, 1.6, 0.5, 4.8], [1, 1, 4, 1]),
1, 'same', 1, 'NHWC').print();