gitextract_0qfvetgz/ ├── .codecov.yml ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── blank_issue.md │ │ ├── bug_report.md │ │ ├── config.yml │ │ ├── documentation_improvement.md │ │ └── feature_request.md │ ├── auto_assign.yml │ └── workflows/ │ ├── auto_approve_dependency_PRs.yml │ ├── build_docs.yml │ ├── create_feedstock_pr.yaml │ ├── install_test.yml │ ├── latest_dependency_checker.yml │ ├── lint_check.yml │ ├── release.yml │ ├── release_notes_updated.yml │ └── unit_tests_with_latest_deps.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── LICENSE ├── Makefile ├── README.md ├── composeml/ │ ├── __init__.py │ ├── conftest.py │ ├── data_slice/ │ │ ├── __init__.py │ │ ├── extension.py │ │ ├── generator.py │ │ └── offset.py │ ├── demos/ │ │ ├── __init__.py │ │ └── transactions.csv │ ├── label_maker.py │ ├── label_search.py │ ├── label_times/ │ │ ├── __init__.py │ │ ├── description.py │ │ ├── deserialize.py │ │ ├── object.py │ │ └── plots.py │ ├── tests/ │ │ ├── __init__.py │ │ ├── requirement_files/ │ │ │ ├── latest_core_dependencies.txt │ │ │ ├── minimum_core_requirements.txt │ │ │ └── minimum_test_requirements.txt │ │ ├── test_data_slice/ │ │ │ ├── __init__.py │ │ │ ├── test_extension.py │ │ │ └── test_offset.py │ │ ├── test_datasets.py │ │ ├── test_featuretools.py │ │ ├── test_label_maker.py │ │ ├── test_label_plots.py │ │ ├── test_label_serialization.py │ │ ├── test_label_times.py │ │ ├── test_label_transforms/ │ │ │ ├── __init__.py │ │ │ ├── test_bin.py │ │ │ ├── test_lead.py │ │ │ ├── test_sample.py │ │ │ └── test_threshold.py │ │ ├── test_version.py │ │ └── utils.py │ ├── update_checker.py │ └── version.py ├── contributing.md ├── docs/ │ ├── Makefile │ ├── make.bat │ └── source/ │ ├── _static/ │ │ └── style.css │ ├── _templates/ │ │ ├── class.rst │ │ └── layout.html │ ├── api_reference.rst │ ├── conf.py │ ├── examples/ │ │ ├── demo/ │ │ │ ├── __init__.py │ │ │ ├── chicago_bike/ │ │ │ │ ├── __init__.py │ │ │ │ └── sample.csv │ │ │ ├── next_purchase/ │ │ │ │ ├── __init__.py │ │ │ │ └── sample.csv │ │ │ ├── turbofan_degredation/ │ │ │ │ ├── __init__.py │ │ │ │ └── sample.csv │ │ │ └── utils.py │ │ ├── predict_bike_trips.ipynb │ │ ├── predict_next_purchase.ipynb │ │ └── predict_turbofan_degredation.ipynb │ ├── images/ │ │ ├── innovation_labs.xml │ │ ├── label-maker.xml │ │ ├── labeling-function.xml │ │ └── workflow.xml │ ├── index.rst │ ├── install.md │ ├── release_notes.rst │ ├── resources/ │ │ ├── faq.ipynb │ │ └── help.rst │ ├── resources.rst │ ├── start.ipynb │ ├── tutorials.rst │ ├── user_guide/ │ │ ├── controlling_cutoff_times.ipynb │ │ ├── data_slice_generator.ipynb │ │ └── using_label_transforms.ipynb │ └── user_guide.rst ├── pyproject.toml └── release.md