├── .github └── workflows │ ├── checks.yml │ └── python-package.yml ├── .gitignore ├── LICENSE ├── README.md ├── cfdata ├── __init__.py ├── base.py ├── tabular │ ├── __init__.py │ ├── api.py │ ├── converters │ │ ├── __init__.py │ │ ├── base.py │ │ ├── categorical │ │ │ ├── __init__.py │ │ │ └── core.py │ │ ├── numerical │ │ │ ├── __init__.py │ │ │ └── core.py │ │ └── string │ │ │ ├── __init__.py │ │ │ └── core.py │ ├── misc.py │ ├── processors │ │ ├── __init__.py │ │ ├── base.py │ │ ├── function │ │ │ ├── __init__.py │ │ │ └── core.py │ │ ├── identical │ │ │ ├── __init__.py │ │ │ └── core.py │ │ ├── logarithm │ │ │ ├── __init__.py │ │ │ └── core.py │ │ ├── min_max │ │ │ ├── __init__.py │ │ │ └── core.py │ │ ├── normalize │ │ │ ├── __init__.py │ │ │ └── core.py │ │ └── one_hot │ │ │ ├── __init__.py │ │ │ └── core.py │ ├── recognizer │ │ ├── __init__.py │ │ ├── binning │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── fuse.py │ │ │ ├── identical.py │ │ │ └── opt.py │ │ └── core.py │ └── toolkit.py └── types.py ├── setup.cfg ├── setup.py └── tests └── unittests ├── data ├── mnist_small.txt └── quote_test.csv └── tabular ├── test_core.py └── test_utils.py /.github/workflows/checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carefree0910/carefree-data/HEAD/.github/workflows/checks.yml -------------------------------------------------------------------------------- /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carefree0910/carefree-data/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carefree0910/carefree-data/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carefree0910/carefree-data/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carefree0910/carefree-data/HEAD/README.md -------------------------------------------------------------------------------- /cfdata/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cfdata/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carefree0910/carefree-data/HEAD/cfdata/base.py -------------------------------------------------------------------------------- /cfdata/tabular/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carefree0910/carefree-data/HEAD/cfdata/tabular/__init__.py -------------------------------------------------------------------------------- /cfdata/tabular/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carefree0910/carefree-data/HEAD/cfdata/tabular/api.py -------------------------------------------------------------------------------- /cfdata/tabular/converters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carefree0910/carefree-data/HEAD/cfdata/tabular/converters/__init__.py -------------------------------------------------------------------------------- /cfdata/tabular/converters/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carefree0910/carefree-data/HEAD/cfdata/tabular/converters/base.py -------------------------------------------------------------------------------- /cfdata/tabular/converters/categorical/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carefree0910/carefree-data/HEAD/cfdata/tabular/converters/categorical/__init__.py -------------------------------------------------------------------------------- /cfdata/tabular/converters/categorical/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carefree0910/carefree-data/HEAD/cfdata/tabular/converters/categorical/core.py -------------------------------------------------------------------------------- /cfdata/tabular/converters/numerical/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carefree0910/carefree-data/HEAD/cfdata/tabular/converters/numerical/__init__.py -------------------------------------------------------------------------------- /cfdata/tabular/converters/numerical/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carefree0910/carefree-data/HEAD/cfdata/tabular/converters/numerical/core.py -------------------------------------------------------------------------------- /cfdata/tabular/converters/string/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carefree0910/carefree-data/HEAD/cfdata/tabular/converters/string/__init__.py -------------------------------------------------------------------------------- /cfdata/tabular/converters/string/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carefree0910/carefree-data/HEAD/cfdata/tabular/converters/string/core.py -------------------------------------------------------------------------------- /cfdata/tabular/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carefree0910/carefree-data/HEAD/cfdata/tabular/misc.py -------------------------------------------------------------------------------- /cfdata/tabular/processors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carefree0910/carefree-data/HEAD/cfdata/tabular/processors/__init__.py -------------------------------------------------------------------------------- /cfdata/tabular/processors/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carefree0910/carefree-data/HEAD/cfdata/tabular/processors/base.py -------------------------------------------------------------------------------- /cfdata/tabular/processors/function/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carefree0910/carefree-data/HEAD/cfdata/tabular/processors/function/__init__.py -------------------------------------------------------------------------------- /cfdata/tabular/processors/function/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carefree0910/carefree-data/HEAD/cfdata/tabular/processors/function/core.py -------------------------------------------------------------------------------- /cfdata/tabular/processors/identical/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carefree0910/carefree-data/HEAD/cfdata/tabular/processors/identical/__init__.py -------------------------------------------------------------------------------- /cfdata/tabular/processors/identical/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carefree0910/carefree-data/HEAD/cfdata/tabular/processors/identical/core.py -------------------------------------------------------------------------------- /cfdata/tabular/processors/logarithm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carefree0910/carefree-data/HEAD/cfdata/tabular/processors/logarithm/__init__.py -------------------------------------------------------------------------------- /cfdata/tabular/processors/logarithm/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carefree0910/carefree-data/HEAD/cfdata/tabular/processors/logarithm/core.py -------------------------------------------------------------------------------- /cfdata/tabular/processors/min_max/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carefree0910/carefree-data/HEAD/cfdata/tabular/processors/min_max/__init__.py -------------------------------------------------------------------------------- /cfdata/tabular/processors/min_max/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carefree0910/carefree-data/HEAD/cfdata/tabular/processors/min_max/core.py -------------------------------------------------------------------------------- /cfdata/tabular/processors/normalize/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carefree0910/carefree-data/HEAD/cfdata/tabular/processors/normalize/__init__.py -------------------------------------------------------------------------------- /cfdata/tabular/processors/normalize/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carefree0910/carefree-data/HEAD/cfdata/tabular/processors/normalize/core.py -------------------------------------------------------------------------------- /cfdata/tabular/processors/one_hot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carefree0910/carefree-data/HEAD/cfdata/tabular/processors/one_hot/__init__.py -------------------------------------------------------------------------------- /cfdata/tabular/processors/one_hot/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carefree0910/carefree-data/HEAD/cfdata/tabular/processors/one_hot/core.py -------------------------------------------------------------------------------- /cfdata/tabular/recognizer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carefree0910/carefree-data/HEAD/cfdata/tabular/recognizer/__init__.py -------------------------------------------------------------------------------- /cfdata/tabular/recognizer/binning/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carefree0910/carefree-data/HEAD/cfdata/tabular/recognizer/binning/__init__.py -------------------------------------------------------------------------------- /cfdata/tabular/recognizer/binning/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carefree0910/carefree-data/HEAD/cfdata/tabular/recognizer/binning/base.py -------------------------------------------------------------------------------- /cfdata/tabular/recognizer/binning/fuse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carefree0910/carefree-data/HEAD/cfdata/tabular/recognizer/binning/fuse.py -------------------------------------------------------------------------------- /cfdata/tabular/recognizer/binning/identical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carefree0910/carefree-data/HEAD/cfdata/tabular/recognizer/binning/identical.py -------------------------------------------------------------------------------- /cfdata/tabular/recognizer/binning/opt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carefree0910/carefree-data/HEAD/cfdata/tabular/recognizer/binning/opt.py -------------------------------------------------------------------------------- /cfdata/tabular/recognizer/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carefree0910/carefree-data/HEAD/cfdata/tabular/recognizer/core.py -------------------------------------------------------------------------------- /cfdata/tabular/toolkit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carefree0910/carefree-data/HEAD/cfdata/tabular/toolkit.py -------------------------------------------------------------------------------- /cfdata/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carefree0910/carefree-data/HEAD/cfdata/types.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carefree0910/carefree-data/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carefree0910/carefree-data/HEAD/setup.py -------------------------------------------------------------------------------- /tests/unittests/data/mnist_small.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carefree0910/carefree-data/HEAD/tests/unittests/data/mnist_small.txt -------------------------------------------------------------------------------- /tests/unittests/data/quote_test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carefree0910/carefree-data/HEAD/tests/unittests/data/quote_test.csv -------------------------------------------------------------------------------- /tests/unittests/tabular/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carefree0910/carefree-data/HEAD/tests/unittests/tabular/test_core.py -------------------------------------------------------------------------------- /tests/unittests/tabular/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carefree0910/carefree-data/HEAD/tests/unittests/tabular/test_utils.py --------------------------------------------------------------------------------