8000 Update multilayer_perceptron_classifier_from_scratch.py · TheAlgorithms/Python@644ba59 · GitHub
[go: up one dir, main page]

Skip to content

add a code file of the multi-layer perceptron classifier from scrach #13133

add a code file of the multi-layer perceptron classifier from scrach

add a code file of the multi-layer perceptron classifier from scrach #13133

Workflow file for this run

# https://beta.ruff.rs
name: ruff
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v6
- run: uvx ruff check --output-format=github .
0