ygyash's picture
Update README.md
6ec48fa verified
metadata
library_name: torch
pipeline_tag: image-classification

Hindi Character CNN

This model is a Convolutional Neural Network (CNN) for Hindi character image classification, built with PyTorch.

Usage

(Provide instructions on how to load and use your model. Include code snippets.)

Example:

import torch
from your_model_file import HindiCharacterCNN #replace your_model_file

model = HindiCharacterCNN(num_labels=36)
model.load_state_dict(torch.load("your_model.safetensors")) #or .bin
model.eval()

# ... your inference code ...