├── .github └── workflows │ ├── deploypip.yaml │ └── unittests.yaml ├── .gitignore ├── HISTORY.md ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── cfnow ├── __init__.py ├── _cf_searchers.py ├── _checkers.py ├── _data_standardizer.py ├── _fine_tune.py ├── _img_segmentation.py ├── _model_standardizer.py ├── _obj_functions.py ├── assets │ └── verb_tenses.pkl └── cf_finder.py ├── imgs ├── cfnow_hq_logo.gif ├── const_ex.png ├── countershapley_ex.png ├── example_cf_img_daisy.png ├── example_factual_img_daisy.png └── greedy_ex.png ├── requirements.txt ├── setup.py └── tests ├── __init__.py ├── test__cf_searchers.py ├── test__checkers.py ├── test__data_standardizer.py ├── test__fine_tune.py ├── test__img_segmentation.py ├── test__model_standardizer.py ├── test__obj_functions.py └── test_cf_finder.py /.github/workflows/deploypip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmazzine/CFNOW/HEAD/.github/workflows/deploypip.yaml -------------------------------------------------------------------------------- /.github/workflows/unittests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmazzine/CFNOW/HEAD/.github/workflows/unittests.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmazzine/CFNOW/HEAD/.gitignore -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmazzine/CFNOW/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmazzine/CFNOW/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include cfnow/assets/verb_tenses.pkl 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmazzine/CFNOW/HEAD/README.md -------------------------------------------------------------------------------- /cfnow/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmazzine/CFNOW/HEAD/cfnow/__init__.py -------------------------------------------------------------------------------- /cfnow/_cf_searchers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmazzine/CFNOW/HEAD/cfnow/_cf_searchers.py -------------------------------------------------------------------------------- /cfnow/_checkers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmazzine/CFNOW/HEAD/cfnow/_checkers.py -------------------------------------------------------------------------------- /cfnow/_data_standardizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmazzine/CFNOW/HEAD/cfnow/_data_standardizer.py -------------------------------------------------------------------------------- /cfnow/_fine_tune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmazzine/CFNOW/HEAD/cfnow/_fine_tune.py -------------------------------------------------------------------------------- /cfnow/_img_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmazzine/CFNOW/HEAD/cfnow/_img_segmentation.py -------------------------------------------------------------------------------- /cfnow/_model_standardizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmazzine/CFNOW/HEAD/cfnow/_model_standardizer.py -------------------------------------------------------------------------------- /cfnow/_obj_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmazzine/CFNOW/HEAD/cfnow/_obj_functions.py -------------------------------------------------------------------------------- /cfnow/assets/verb_tenses.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmazzine/CFNOW/HEAD/cfnow/assets/verb_tenses.pkl -------------------------------------------------------------------------------- /cfnow/cf_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmazzine/CFNOW/HEAD/cfnow/cf_finder.py -------------------------------------------------------------------------------- /imgs/cfnow_hq_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmazzine/CFNOW/HEAD/imgs/cfnow_hq_logo.gif -------------------------------------------------------------------------------- /imgs/const_ex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmazzine/CFNOW/HEAD/imgs/const_ex.png -------------------------------------------------------------------------------- /imgs/countershapley_ex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmazzine/CFNOW/HEAD/imgs/countershapley_ex.png -------------------------------------------------------------------------------- /imgs/example_cf_img_daisy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmazzine/CFNOW/HEAD/imgs/example_cf_img_daisy.png -------------------------------------------------------------------------------- /imgs/example_factual_img_daisy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmazzine/CFNOW/HEAD/imgs/example_factual_img_daisy.png -------------------------------------------------------------------------------- /imgs/greedy_ex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmazzine/CFNOW/HEAD/imgs/greedy_ex.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmazzine/CFNOW/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmazzine/CFNOW/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test__cf_searchers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmazzine/CFNOW/HEAD/tests/test__cf_searchers.py -------------------------------------------------------------------------------- /tests/test__checkers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmazzine/CFNOW/HEAD/tests/test__checkers.py -------------------------------------------------------------------------------- /tests/test__data_standardizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmazzine/CFNOW/HEAD/tests/test__data_standardizer.py -------------------------------------------------------------------------------- /tests/test__fine_tune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmazzine/CFNOW/HEAD/tests/test__fine_tune.py -------------------------------------------------------------------------------- /tests/test__img_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmazzine/CFNOW/HEAD/tests/test__img_segmentation.py -------------------------------------------------------------------------------- /tests/test__model_standardizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmazzine/CFNOW/HEAD/tests/test__model_standardizer.py -------------------------------------------------------------------------------- /tests/test__obj_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmazzine/CFNOW/HEAD/tests/test__obj_functions.py -------------------------------------------------------------------------------- /tests/test_cf_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmazzine/CFNOW/HEAD/tests/test_cf_finder.py --------------------------------------------------------------------------------