Repository: kyegomez/RT-X Branch: main Commit: 1393e85e18fb Files: 36 Total size: 82.5 KB Directory structure: gitextract_yvc81ecv/ ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── PULL_REQUEST_TEMPLATE.yml │ ├── dependabot.yml │ ├── labeler.yml │ └── workflows/ │ ├── docs.yml │ ├── label.yml │ ├── publish.yml │ ├── pull-request-links.yml │ ├── pylint.yml │ ├── python-publish.yml │ ├── stale.yml │ ├── test.yml │ ├── unit_test.yml │ └── welcome.yml ├── .gitignore ├── LICENSE ├── README.md ├── examples/ │ ├── __init__.py │ ├── efficient_net_example.py │ ├── rtx1_example.py │ └── train_example.py ├── pyproject.toml ├── requirements.txt ├── rtx/ │ ├── __init__.py │ ├── data_util.py │ ├── efficient_net.py │ ├── rtx1.py │ └── rtx2.py ├── rtx2_example.py ├── run.py └── tests/ ├── __init__.py ├── test_data_utils.py ├── test_rtx1.py └── tests.py ================================================ FILE CONTENTS ================================================ ================================================ FILE: .github/FUNDING.yml ================================================ # These are supported funding model platforms github: [kyegomez] patreon: # Replace with a single Patreon username open_collective: # Replace with a single Open Collective username ko_fi: # Replace with a single Ko-fi username tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry liberapay: # Replace with a single Liberapay username issuehunt: # Replace with a single IssueHunt username otechie: # Replace with a single Otechie username lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry custom: #Nothing ================================================ FILE: .github/ISSUE_TEMPLATE/bug_report.md ================================================ --- name: Bug report about: Create a detailed report on the bug and it's root cause. Conduct root cause error analysis title: "[BUG] " labels: bug assignees: kyegomez --- **Describe the bug** A clear and concise description of what the bug is and what the main root cause error is. Test very thoroughly before submitting. **To Reproduce** Steps to reproduce the behavior: 1. Go to '...' 2. Click on '....' 3. Scroll down to '....' 4. See error **Expected behavior** A clear and concise description of what you expected to happen. **Screenshots** If applicable, add screenshots to help explain your problem. **Additional context** Add any other context about the problem here. ================================================ FILE: .github/ISSUE_TEMPLATE/feature_request.md ================================================ --- name: Feature request about: Suggest an idea for this project title: '' labels: '' assignees: 'kyegomez' --- **Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] **Describe the solution you'd like** A clear and concise description of what you want to happen. **Describe alternatives you've considered** A clear and concise description of any alternative solutions or features you've considered. **Additional context** Add any other context or screenshots about the feature request here. ================================================ FILE: .github/PULL_REQUEST_TEMPLATE.yml ================================================