rithwikn/greek_combined_dataset
Viewer β’ Updated β’ 5.12k β’ 9
A sentence-level Handwritten Text Recognition model for Greek polytonic script,
trained on rithwikn/greek_combined_dataset.
| Component | Details |
|---|---|
| CNN | 5-block (64β128β256β256β512 channels, BatchNorm + ReLU + MaxPool) |
| RNN | 2Γ Bidirectional LSTM (512 units each, 30% dropout between layers) |
| Decoder | CTC (BestPath greedy / BeamSearch width-100) |
| Input size | 1024 Γ 64 px (grayscale) |
| Max text len | 128 characters |
| Batch size | 8 |
SPACE_WEIGHT=3.0)from huggingface_hub import hf_hub_download, list_repo_files
REPO_ID = "rajesh-1902/greek-htr-crnn-ctc-spacefixweighted"
LOCAL_DIR = "./model_sentence"
# Download all files from latest/
for f in list_repo_files(REPO_ID, repo_type="model"):
if f.startswith("latest/"):
hf_hub_download(REPO_ID, filename=f, repo_type="model", local_dir=LOCAL_DIR)
Then run the Colab notebook β it will auto-restore from the checkpoint.
tf.compat.v1)