Skip to main content

pyspace is a tool set of data science python functions

Project description

pyspace

requirements

sklearn
pandas
tensorflow
keras
# pytorch
# pytorch-pretrained-bert
# transformers

dataset wrapper

  • class import
from pyspace.wrapper.dataset_wrapper import dataset_container
# parameters with defaults
d1 = dataset_container(self, dataset, valid=True, test=True, valid_size=0.2, test_size=0.2, random_state=42)

# output object
d1.dfX # pandas dataframe of features
d1.y   # list of labels
  • parameters

    • dataset : list # [X, y] or [X]
    • valid # True, False, [X,y] or [X]
      • True : valid_size parameter will be used for valid subset from dataset
      • False : There will be no valid subset
      • [X,y] or [X] : valid subset will constructed from this input, no data from dataset parameter
    • valid_size : float between 0.0 and 1.0 # valid data ratio from dataset
    • test and test_size are similar to valid and valid_size
    • random_state : random state used in train_test_split
  • examples

    •   from pyspace.wrapper.dataset_wrapper import dataset_container
      
        # example 1
        X = [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16]
        y = [0,0,0,0,0,0,0,0,0, 0, 0, 0, 1, 1, 1, 1]
      
        d1 = dataset_container([X,y], valid_size = 0.3, test=False)
      
    •   d1.train.dfX.values[:,0].tolist() # [15, 1, 11, 13, 14, 2, 3, 9, 12, 10, 6]
        d1.train.y # [1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0]
      
    •   d1.valid.dfX.values[:,0].tolist() # [4, 5, 16, 8, 7]
        d1.valid.y # [0, 0, 1, 0, 0]
      
    •   d1.test # False
      

future work

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

pyspace_toolkit-1.0.3-py3-none-any.whl (88.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page