├── .gitignore ├── LICENSE ├── README.md └── gauss_rank_scaler.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .ipynb_checkpoints/ 3 | *.DS_Store 4 | __pycache__ 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bits-bytes-nn/gauss-rank-scaler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bits-bytes-nn/gauss-rank-scaler/HEAD/README.md -------------------------------------------------------------------------------- /gauss_rank_scaler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bits-bytes-nn/gauss-rank-scaler/HEAD/gauss_rank_scaler.py --------------------------------------------------------------------------------