MachineIntelligenceCore:Algorithms
|
#include <vector>
#include <string>
#include <map>
#include <limits>
#include <fstream>
#include <logger/Log.hpp>
#include <types/Color.hpp>
#include <types/MatrixTypes.hpp>
Go to the source code of this file.
Classes | |
struct | mic::utils::DataContainer< DATA_TYPE > |
class | mic::utils::DataCollector< LABEL_TYPE, DATA_TYPE > |
Class responsible for collection of data during experiments end exporting the results to files. More... | |
Namespaces | |
mic | |
mic::utils | |
Typedefs | |
template<class DATA_TYPE > | |
using | mic::utils::DataContainerPtr = typename std::shared_ptr< DataContainer< DATA_TYPE > > |
Type representing a pointer to data container. More... | |
template<class LABEL_TYPE , class DATA_TYPE > | |
using | mic::utils::DataContainers = typename std::map< LABEL_TYPE, DataContainerPtr< DATA_TYPE > > |
Type representing a set (map) of containers. More... | |
template<class LABEL_TYPE , class DATA_TYPE > | |
using | mic::utils::DataContainerIt = typename std::map< LABEL_TYPE, DataContainerPtr< DATA_TYPE > >::iterator |
Type representing a data container iterator. More... | |
template<class LABEL_TYPE , class DATA_TYPE > | |
using | mic::utils::DataCollectorPtr = typename std::shared_ptr< mic::utils::DataCollector< LABEL_TYPE, DATA_TYPE > > |
A pointer to data collector. More... | |
Copyright (C) tkornuta, IBM Corporation 2015-2019
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Definition in file DataCollector.hpp.