Skip to content

Added Batch Size To Prediction #96

Added Batch Size To Prediction

Added Batch Size To Prediction #96

Workflow file for this run

name: Python Lint - autopep8
on: [ push, pull_request, workflow_dispatch ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.12.4'
- name: Install Dependencies
run: python -m pip install --upgrade pip
- name: Install autopep8
run: pip install autopep8
- name: Lint Python Files
run: autopep8 --in-place --recursive ./src