Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add new shuffling support from data frame to partition a data set #5

Open
wants to merge 5 commits into
base: master
Choose a base branch
from

Commits on Dec 11, 2023

  1. Add shuffle data frame support

    Add split train test method
    Hernán Morales Durand committed Dec 11, 2023
    Configuration menu
    Copy the full SHA
    d49e02c View commit details
    Browse the repository at this point in the history

Commits on Dec 13, 2023

  1. Add #AIPartitionedDataSet and API

    Add test
    Hernán Morales Durand committed Dec 13, 2023
    Configuration menu
    Copy the full SHA
    22bf563 View commit details
    Browse the repository at this point in the history

Commits on Dec 14, 2023

  1. Add equality to partitioned data set

    Add split train test test method
    Hernán Morales Durand committed Dec 14, 2023
    Configuration menu
    Copy the full SHA
    de2790e View commit details
    Browse the repository at this point in the history
  2. Move test method to DataFrame test specific package.

    Hernán Morales Durand committed Dec 14, 2023
    Configuration menu
    Copy the full SHA
    318f5a3 View commit details
    Browse the repository at this point in the history
  3. Add splitting methods to AIRandomPartitioner

    	splitTrainTestFrom:usingTargetColumn:withProportions: aCollectionOfProportions to split aCollection into multiple sets. The sets to split are determined by the size of aCollectionOfProportions, which looks like #(0.7 0.3), and commonly it represents splitting between a training and test set.
    
    Add AIPartitionedDataSet class to hold the splitted data from train and test set.
    Hernán Morales Durand committed Dec 14, 2023
    Configuration menu
    Copy the full SHA
    9340ee1 View commit details
    Browse the repository at this point in the history