├── CHANGLOG.txt ├── LICENSE ├── MANIFEST.in ├── README.md ├── RegressionMetricsDemo.ipynb ├── dist ├── regressionmetrics-1.4.0-py3-none-any.whl └── regressionmetrics-1.4.0.tar.gz ├── examples ├── test.py ├── test_with_adjr2.py └── testkeras.py ├── metrics_list.xlsx ├── regressionmetrics.egg-info ├── PKG-INFO ├── SOURCES.txt ├── dependency_links.txt ├── requires.txt ├── top_level.txt └── zip-safe ├── regressionmetrics ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── keras.cpython-38.pyc │ └── metrics.cpython-38.pyc ├── keras.py └── metrics.py └── setup.py /CHANGLOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/regressionmetrics/HEAD/CHANGLOG.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/regressionmetrics/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/regressionmetrics/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/regressionmetrics/HEAD/README.md -------------------------------------------------------------------------------- /RegressionMetricsDemo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/regressionmetrics/HEAD/RegressionMetricsDemo.ipynb -------------------------------------------------------------------------------- /dist/regressionmetrics-1.4.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/regressionmetrics/HEAD/dist/regressionmetrics-1.4.0-py3-none-any.whl -------------------------------------------------------------------------------- /dist/regressionmetrics-1.4.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/regressionmetrics/HEAD/dist/regressionmetrics-1.4.0.tar.gz -------------------------------------------------------------------------------- /examples/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/regressionmetrics/HEAD/examples/test.py -------------------------------------------------------------------------------- /examples/test_with_adjr2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/regressionmetrics/HEAD/examples/test_with_adjr2.py -------------------------------------------------------------------------------- /examples/testkeras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/regressionmetrics/HEAD/examples/testkeras.py -------------------------------------------------------------------------------- /metrics_list.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/regressionmetrics/HEAD/metrics_list.xlsx -------------------------------------------------------------------------------- /regressionmetrics.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/regressionmetrics/HEAD/regressionmetrics.egg-info/PKG-INFO -------------------------------------------------------------------------------- /regressionmetrics.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/regressionmetrics/HEAD/regressionmetrics.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /regressionmetrics.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /regressionmetrics.egg-info/requires.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/regressionmetrics/HEAD/regressionmetrics.egg-info/requires.txt -------------------------------------------------------------------------------- /regressionmetrics.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | regressionmetrics 2 | -------------------------------------------------------------------------------- /regressionmetrics.egg-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /regressionmetrics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /regressionmetrics/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/regressionmetrics/HEAD/regressionmetrics/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /regressionmetrics/__pycache__/keras.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/regressionmetrics/HEAD/regressionmetrics/__pycache__/keras.cpython-38.pyc -------------------------------------------------------------------------------- /regressionmetrics/__pycache__/metrics.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/regressionmetrics/HEAD/regressionmetrics/__pycache__/metrics.cpython-38.pyc -------------------------------------------------------------------------------- /regressionmetrics/keras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/regressionmetrics/HEAD/regressionmetrics/keras.py -------------------------------------------------------------------------------- /regressionmetrics/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/regressionmetrics/HEAD/regressionmetrics/metrics.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/regressionmetrics/HEAD/setup.py --------------------------------------------------------------------------------