A library of cross-platform, cross-framework, cross-programming language featurizers (operations in a data processing pipeline) that can be used during Machine Learning training and prediction activities.
Перейти к файлу
David Brownell f05b6bdd82 Merged PR 5298: Added semantic versioning and nuget upload support
Added semantic versioning and nuget upload support
2019-10-25 15:07:48 +00:00
CI Merged PR 5298: Added semantic versioning and nuget upload support 2019-10-25 15:07:48 +00:00
Libraries/Python/DataPipelines/v1.0/DataPipelines Merged PR 5256: Added MacOS build 2019-10-15 17:26:12 +00:00
Scripts Merged PR 4717: Moved CppToJson python code to its own directory 2019-07-12 20:32:44 +00:00
Tools/Nuget/v5.2.0/Windows Merged PR 5115: Building nuget packages 2019-09-17 18:04:29 +00:00
src Merged PR 5298: Added semantic versioning and nuget upload support 2019-10-25 15:07:48 +00:00
.gitignore Merged PR 4976: DateTimeTransformer implemented in ML.NET with assocated C++ wrapper 2019-08-19 16:45:08 +00:00
Activate_custom.py Merged PR 5210: Updates for Universal Linux Build 2019-10-08 18:24:48 +00:00
Readme.md Merged PR 5209: Build/debug vscode documentation. 2019-10-07 21:52:03 +00:00
ScmHook_custom.py Initial checkin 2019-05-22 10:10:31 -07:00
Setup.cmd Initial checkin 2019-05-22 10:10:31 -07:00
Setup.sh Merged PR 4455: Added CI files 2019-05-24 16:18:38 +00:00
Setup_custom.py Merged PR 5273: Added x86 builds 2019-10-18 16:49:08 +00:00
__RepositoryId__ Initial checkin 2019-05-22 10:10:31 -07:00
bootstrap.cmd Merged PR 5210: Updates for Universal Linux Build 2019-10-08 18:24:48 +00:00
bootstrap.sh Merged PR 5256: Added MacOS build 2019-10-15 17:26:12 +00:00

Readme.md

Data Pipelines

Data Pipelines are used to convert from arbitrary data into a matrix/tensor that can be consumed by machine learning algorithms.

Developer Quick Start

Note that these commands should be invoked within the root of the repository.

Linux

  1. Run sudo bootstrap.sh ..

    This will need to happen once per machine or after a repository has moved to a different directory. Note that sudo is not necessary when running within a Docker container.

  2. Run source ./Activate.sh x64

    This will need to happen each time a new terminal window is opened.

Windows

  1. Run bootstrap.cmd ..

    This will need to happen once per machine or after a repository has moved to a different directory.

  2. Run Activate.cmd x64

    This will need to happen each time a new terminal window is opened.

Useful Development Commands

The following commands are available within an activated terminal window.

Name Command Description
DevEnvScripts `DevEnvScripts.sh .cmd`
Builder `Builder.sh .cmd`
Tester `Tester.sh .cmd`
Formatter `Formatter.sh .cmd`

Invoking CMake

Native code is built via CMake. The following commands can be used to build any folder that contains a CMakeLists.txt file. In each example, create a build directory that will contain the generated CMake content and eventual binaries.

Assumed directory structure:

| - <Workspace dir>
    | - CMakeLists.txt
    | - ...
    | - build
        | - <Initially empty>

Within <Workspace Dir>/build run...

  • [Debug] cmake -G Ninja ..
  • [Debug with Code Coverage] cmake -G Ninja -D CppCommon_CODE_COVERAGE=ON ..
  • [Release] cmake -G Ninja -D CMAKE_BUILD_TYPE=Release ..

Once CMake has generated the build files, within <WorkSpace Dir>/build run...

  • [Build] cmake --build . or ninja -v (if the build generator was Ninja)
  • [Test] ctest --parallel

Featurizers

Information for setup/configuration of the Featurizers library can be found here