Rate this Page

Program Listing for File collate.h#

Return to documentation for file (torch/csrc/api/include/torch/data/transforms/collate.h)

#pragma once

#include <torch/data/example.h>
#include <torch/data/transforms/lambda.h>

#include <vector>

namespace torch::data::transforms {

template <typename T, typename BatchType = std::vector<T>>
using Collation = BatchTransform<BatchType, T>;

template <typename T, typename BatchType = std::vector<T>>
using Collate = BatchLambda<BatchType, T>;
} // namespace torch::data::transforms