swh:1:snp:f50ab94432af916b5fb8b4ad831e8dddded77084
Raw File
Tip revision: 3415b9ba35a59fe5175bbd476271db2b09c9473c authored by Cheng Tang on 18 October 2017, 21:53:41 UTC
skip some sequence operator
Tip revision: 3415b9b
Descriptors.h
//
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.md file in the project root for full license information.
//

#pragma once

#include "DataDeserializer.h"

namespace CNTK {

    // Stream (input) metadata. This text-reader specific descriptor adds two
    // additional fields: stream alias (name prefix in each sample) and expected
    // sample dimension.
    struct StreamDescriptor : StreamInformation
    {
        std::string m_alias; // sample name prefix used in the input data
        size_t m_sampleDimension; // expected number of elements in a sample
                                  // (can be omitted for sparse input)
    };

}
back to top