Skip to main content

pyspace is a tool set of data science python functions

Project description

pyspace

requirements

    'sklearn','pandas','numpy',
    'matplotlib','seaborn',
    'rasa>=1.10.3','tensorflow',
    'lightgbm','xgboost',
    'spacy>=2.3.0','spacymoji',
    'stanza','nlpcube',
    'fuzzywuzzy','jellyfish>=0.8.2','fuzzy_sequence_matcher','fastdtw',
    'tabulate','tqdm','jsonlines',
    'sklearn-hierarchical-classification','JPype1','MiniSom'

text gcn

import pandas as pd
train = pd.read_csv('dataset.csv')
train.columns = ['text', 'label']

from sklearn.model_selection import StratifiedKFold
skf = StratifiedKFold(n_splits=5, shuffle=True, random_state=0)
train_idx, test_idx = list(skf.split(list(train.index), train['label'].values))[4]

train['tot'] = None
train.at[train_idx, 'tot'] = 'train'
train.at[test_idx, 'tot'] = 'test'
from pyspace.nlp.models.text_gcn.text_gcn import TextGCN_TransductiveClassifier
from pyspace.nlp.models.text_gcn.fast_text_gcn_norank import FastTextGCN_InductiveClassifier

fasttextgcn = FastTextGCN_InductiveClassifier(verbose=1, )
fasttextgcn.train(train, validation_ratio=0.0, batch_size=256, epochs=80, learning_rate=0.01)


legacy notes

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

This version

1.0.5

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.5-py3-none-any.whl (154.0 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