Group
Extension

Matches 2

Alien-XGBoost ( P/PA/PABLROD/Alien-XGBoost-0.05.tar.gz, PABLROD, 2017; MetaCPAN )
Alien-XGBoost/xgboost/dmlc-core/include/dmlc/parameter.h ( view source; MetaCPAN )
ctor>
#include <algorithm>
#include <utility>
#include <iostream>
#include "./base.h"
#include "./json.h"
#include "./logging.h"
#include "./type_traits.h"
#include "./optional.h"

namespace dmlc {
//
d());
  }
  /*!
   * \brief Write the parameters in JSON format.
   * \param writer JSONWriter used for writing.
   */
  inline void Save(dmlc::JSONWriter *writer) const {
    writer->Write(this->__DI
\brief Load the parameters from JSON.
   * \param reader JSONReader used for loading.
   * \throw ParamError when something go wrong.
   */
  inline void Load(dmlc::JSONReader *reader) {
    std::map<
Alien-XGBoost ( P/PA/PABLROD/Alien-XGBoost-0.05.tar.gz, PABLROD, 2017; MetaCPAN )
Alien-XGBoost/xgboost/dmlc-core/include/dmlc/json.h ( view source; MetaCPAN )
rs
 * \file json.h
 * \brief Lightweight JSON Reader/Writer that read save into C++ data structs.
 *  This includes STL composites and structures.
 */
#ifndef DMLC_JSON_H_
#define DMLC_JSON_H_

// Thi
namespace dmlc {
/*!
 * \brief Lightweight JSON Reader to read any STL compositions and structs.
 *  The user need to know the schema of the
 *
 */
class JSONReader {
 public:
  /*!
   * \brief Constr
he input stream.
   */
  explicit JSONReader(std::istream *is)
      : is_(is),
        line_count_r_(0),
        line_count_n_(0) {}
  /*!
   * \brief Parse next JSON string.
   * \param out_str the 

Powered by Groonga
Maintained by Kenichi Ishigaki <ishigaki@cpan.org>. If you find anything, submit it on GitHub.