--- license: mit language: - ja tags: - ocr - paddleocr - steel-code - detection --- # Steel OCR DET Model 鉄骨の手書き製品コード認識のためのファインチューニング済み検出モデル。 ## Configuration | Parameter | Value | |-----------|-------| | Base Model | PP-OCRv5_mobile_det | | Epochs | 500 | | Batch Size | 32 | | Learning Rate | 0.001 | ## Usage ```python from huggingface_hub import hf_hub_download # 特定バージョンをダウンロード model_path = hf_hub_download( repo_id="iput-tk230215/steel-ocr-det", filename="best_accuracy.pdparams", revision="baseline-20260114", ) # PaddleOCRで使用 from paddleocr import PaddleOCR ocr = PaddleOCR( det_model_dir=model_path.replace("/best_accuracy.pdparams", ""), ) ``` ## Versions モデルはタグでバージョン管理されています。利用可能なバージョン一覧は [Tags](https://huggingface.co/iput-tk230215/steel-ocr-det/tags) を参照してください。 ## Repository https://github.com/iput-tk230215/solution_teamB_image-recog