Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 568 Bytes

README.md

File metadata and controls

24 lines (20 loc) · 568 Bytes

RBF Neural Network (RBFNN)

A simple and efficient implementation of Radial Basis Function Neural Network using NumPy and scikit-learn.

📁 Structure

  • rbfnn/: RBFNN model implementation
  • examples/: Regression and classification demos
  • requirements.txt: Install dependencies
  • README.md: Project overview

🚀 Usage

Install dependencies

pip install -r requirements.txt

Run regression example

python examples/regression_example.py

Run classification example

python examples/classification_example.py