Alien-XGBoost

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

            "perl" : "5.008",
            "strict" : "0",
            "warnings" : "0"
         }
      },
      "test" : {
         "requires" : {
            "Test2::V0" : "0",
            "Test::Alien" : "0",
            "Test::Most" : "0",
            "utf8" : "0"
         }
      }
   },
   "release_status" : "stable",
   "resources" : {
      "bugtracker" : {
         "web" : "https://github.com/pablrod/p5-Alien-XGBoost/issues"
      },
      "homepage" : "https://github.com/pablrod/p5-Alien-XGBoost",
      "repository" : {

META.yml  view on Meta::CPAN

  Alien::Build: '1.04'
  Alien::Build::MM: '0.32'
  ExtUtils::MakeMaker: '6.52'
  FFI::CheckLib: '0'
  FFI::Platypus: '0'
  Path::Tiny: '0'
  Sys::Info: '0'
  Test2::V0: '0'
  Test::Alien: '0'
  Test::Most: '0'
  utf8: '0'
configure_requires:
  Alien::Build: '0.32'
  Alien::Build::MM: '0.32'
  Alien::Build::Plugin::Build::CMake: '0.99'
  Alien::git: '0'
  ExtUtils::MakeMaker: '6.52'
  FFI::CheckLib: '0'
  FFI::Platypus: '0'
  Path::Tiny: '0'
  Sys::Info: '0'

Makefile.PL  view on Meta::CPAN

    "Alien::cmake3" => 0,
    "Alien::git" => 0,
    "base" => 0,
    "strict" => 0,
    "warnings" => 0
  },
  "TEST_REQUIRES" => {
    "Test2::V0" => 0,
    "Test::Alien" => 0,
    "Test::Most" => 0,
    "utf8" => 0
  },
  "VERSION" => "0.05",
  "test" => {
    "TESTS" => "t/*.t"
  }
);


my %FallbackPrereqs = (
  "Alien::Base" => 0,

Makefile.PL  view on Meta::CPAN

  "ExtUtils::MakeMaker" => "6.52",
  "FFI::CheckLib" => 0,
  "FFI::Platypus" => 0,
  "Path::Tiny" => 0,
  "Sys::Info" => 0,
  "Test2::V0" => 0,
  "Test::Alien" => 0,
  "Test::Most" => 0,
  "base" => 0,
  "strict" => 0,
  "utf8" => 0,
  "warnings" => 0
);


# BEGIN code inserted by Dist::Zilla::Plugin::AlienBuild
use Alien::Build::MM;
my $abmm = Alien::Build::MM->new;
%WriteMakefileArgs = $abmm->mm_args(%WriteMakefileArgs);
# END code inserted by Dist::Zilla::Plugin::AlienBuild

t/10-dynamic_lib_xgboost.t  view on Meta::CPAN

#!/usr/bin/env perl -w

use strict;
use warnings;
use utf8;

use Test2::V0;
use Test::Alien;
use Alien::XGBoost;

alien_ok 'Alien::XGBoost';

# XGBoost C API lacks XGBVersion o similar
ffi_ok { symbols => [qw(XGBGetLastError XGDMatrixCreateFromMat)] }, with_subtest {
    my ($ffi) = @_;

t/20-xgboost_command.t  view on Meta::CPAN

#!/usr/bin/env perl -w

use strict;
use warnings;
use utf8;

use Test2::V0;
use Test::Alien;
use Alien::XGBoost;

alien_ok 'Alien::XGBoost';
run_ok('xgboost')->exit_is(0);

done_testing;

xgboost/R-package/vignettes/discoverYourData.Rmd  view on Meta::CPAN

title: "Understand your dataset with Xgboost"
output:
  rmarkdown::html_vignette:
    css: vignette.css
    number_sections: yes
    toc: yes
author: Tianqi Chen, Tong He, Michaël Benesty, Yuan Tang
vignette: >
  %\VignetteIndexEntry{Discover your data}
  %\VignetteEngine{knitr::rmarkdown}
  \usepackage[utf8]{inputenc}
---

Understand your dataset with XGBoost
====================================

Introduction
------------

The purpose of this vignette is to show you how to use **Xgboost** to discover and understand your own dataset better.

xgboost/R-package/vignettes/xgboostPresentation.Rmd  view on Meta::CPAN

output:
  rmarkdown::html_vignette:
    css: vignette.css
    number_sections: yes
    toc: yes
bibliography: xgboost.bib
author: Tianqi Chen, Tong He, Michaël Benesty
vignette: >
  %\VignetteIndexEntry{Xgboost presentation}
  %\VignetteEngine{knitr::rmarkdown}
  \usepackage[utf8]{inputenc}
---

XGBoost R Tutorial
==================

## Introduction


**Xgboost** is short for e**X**treme **G**radient **Boost**ing package.

xgboost/dmlc-core/scripts/lint.py  view on Meta::CPAN

        _HELPER.pylint_opts = ['--rcfile='+args.pylint_rc,]
    file_type = args.filetype
    allow_type = []
    if file_type == 'python' or file_type == 'all':
        allow_type += [x for x in PYTHON_SUFFIX]
    if file_type == 'cpp' or file_type == 'all':
        allow_type += [x for x in CXX_SUFFIX]
    allow_type = set(allow_type)
    if sys.version_info.major == 2 and os.name != 'nt':
        sys.stderr = codecs.StreamReaderWriter(sys.stderr,
                                               codecs.getreader('utf8'),
                                               codecs.getwriter('utf8'),
                                               'replace')
    for path in args.path:
        if os.path.isfile(path):
            process(path, allow_type)
        else:
            for root, dirs, files in os.walk(path):
                for name in files:
                    process(os.path.join(root, name), allow_type)

    nerr = _HELPER.print_summary(sys.stderr)



( run in 1.184 second using v1.01-cache-2.11-cpan-49f99fa48dc )