HangulAI_Model
AI model for recognizing Korean Hangul characters using a CNN in PyTorch. Incorporates data augmentation, batch normalization, dropout, and AdamW optimizer. Supports scalable training, early stopping, and fast inference for OCR and language-learning applications.
File Explorer
- 4008.png
- 5515.png
- 3401.png
- CNN.py
- dataset.py
- LICENSE
- model.pth
- README.md
- requirements.txt
- tend.png
- testing.py
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
pip install
View Details ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
python
View Details ▼
python
Python language interpreter.
python
Start a REPL (interactive shell):
python {{path/to/file.py}}
Execute a specific Python file:
python -i {{path/to/file.py}}
Execute a specific Python file and start a REPL:
