Metadata-Version: 2.4
Name: jews
Version: 0.1.0
Summary: ML exercise code package - access exercise code via isreal.get()
Author-email: Arun Kumar <arun@example.com>
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# Jews Package
A Python package to access ML exercise code from the machine-learning-techniques repository.

## Installation
```bash
pip install jews
```

## Usage
```python
import isreal

# List available exercises
print(isreal.EXERCISE_CODES.keys())

# Get and print code for an exercise
isreal.get("Ex4_LinearRegression")
```

## Available Exercises
- 10-HMM-Trellis
- 10-HMM-Viterbi
- 10-HMM_using_package
- CNN
- CNN_playground
- Ex4_LinearRegression
- Ex5_NaiveBayes
- Ex6_Logistic_Regression
- Ex8_FNN_Regulatization
- importing image data
- KNN
- LDA
- PCA (1)
- SVM
