Downloads · 30 days
0
harjot997u7/test
test is a text-to-image model from harjot997u7. Use it when you need an image from a text prompt. It is set up for diffusers. The card lists the license as bigscience-openrail-m.
Downloads · 30 days
0
Access
Public
Updated Jan 20, 2026
Repo size
176 KB
Likes
0
Public
Click a slice to open those files.
.jpg93.7 KB · 47%
From the Hugging Face model README
================================================================================ ALL REPOSITORY LINKS - CHECKBOX DETECTION PROJECT ================================================================================
Submitted by: Harjot Singh Email: harjotsingh2004harjot@gmail.com Date: January 22, 2026
================================================================================ GITHUB REPOSITORY (SOURCE CODE) ================================================================================
Main Repository: https://github.com/harjotsingh2004/checkbox-detection-finetuning
Description: Complete source code for training, evaluation, inference, and API deployment.
Contents:
Access: Public (no authentication required) License: MIT License
Clone Command: git clone https://github.com/harjotsingh2004/checkbox-detection-finetuning.git
Key Files:
================================================================================ HUGGINGFACE MODEL REPOSITORY ================================================================================
Model Repository: https://huggingface.co/harjotsingh2004/checkbox-detector-finetuned
Description: Fine-tuned PaliGemma 3B model with LoRA adapters for checkbox classification.
Contents:
Model Details:
Access: Public License: Apache 2.0
Download with Python: ```python from transformers import AutoProcessor, PaliGemmaForConditionalGeneration
model = PaliGemmaForConditionalGeneration.from_pretrained( "harjotsingh2004/checkbox-detector-finetuned" ) processor = AutoProcessor.from_pretrained( "harjotsingh2004/checkbox-detector-finetuned" ) ```
Download with CLI: ```bash huggingface-cli login huggingface-cli download harjotsingh2004/checkbox-detector-finetuned ```
================================================================================ HUGGINGFACE DATASET REPOSITORY ================================================================================
Dataset Repository: https://huggingface.co/datasets/harjotsingh2004/checkbox-detection-dataset
Description: Complete dataset with 1,000 annotated checkbox images for training and evaluation.
Contents:
Dataset Statistics:
Access: Public License: Apache 2.0
Load with Python: ```python from datasets import load_dataset
dataset = load_dataset("harjotsingh2004/checkbox-detection-dataset")
train_data = dataset["train"] val_data = dataset["validation"] test_data = dataset["test"]
print(train_data[0]) ```
Download with CLI: ```bash huggingface-cli download harjotsingh2004/checkbox-detection-dataset ```
================================================================================ DOCUMENTATION LINKS ================================================================================
GitHub README: https://github.com/harjotsingh2004/checkbox-detection-finetuning#readme
Model Card: https://huggingface.co/harjotsingh2004/checkbox-detector-finetuned#model-card
Dataset Card: https://huggingface.co/datasets/harjotsingh2004/checkbox-detection-dataset#dataset-card
Training Configuration: https://github.com/harjotsingh2004/checkbox-detection-finetuning/blob/main/configs/training_config.yaml
API Documentation: https://github.com/harjotsingh2004/checkbox-detection-finetuning/blob/main/api/README.md
================================================================================ QUICK START EXAMPLES ================================================================================
Example 1: Clone and Setup ```bash
git clone https://github.com/harjotsingh2004/checkbox-detection-finetuning.git cd checkbox-detection-finetuning
pip install -r requirements.txt
huggingface-cli login python scripts/download_model.py ```
Example 2: Run Inference ```python from src.inference import CheckboxDetector
detector = CheckboxDetector("harjotsingh2004/checkbox-detector-finetuned") result = detector.predict("checkbox_image.png") print(f"State: {result['state']}, Confidence: {result['confidence']}") ```
Example 3: Load Dataset ```python from datasets import load_dataset
dataset = load_dataset("harjotsingh2004/checkbox-detection-dataset") print(f"Train samples: {len(dataset['train'])}") print(f"Test samples: {len(dataset['test'])}") ```
Example 4: Start API ```bash cd api docker build -t checkbox-api . docker run -p 8000:8000 checkbox-api
```
================================================================================ REPOSITORY VERIFICATION ================================================================================
GitHub Repository Status: Public and Active
HuggingFace Model Status: Public
HuggingFace Dataset Status: Public
All Links Tested: January 22, 2026 Access Verification: Successful No Authentication Required: Confirmed
================================================================================ ALTERNATIVE ACCESS ================================================================================
If you experience issues accessing repositories:
Check Internet Connection
GitHub Access Issues
HuggingFace Access Issues
Download Speed Issues
Contact Developer
================================================================================ REPOSITORY STATISTICS ================================================================================
GitHub Repository:
HuggingFace Model:
HuggingFace Dataset:
================================================================================ CITATION INFORMATION ================================================================================
If you use this code, model, or dataset, please cite: ```bibtex @misc{singh2026checkbox, author = {Harjot Singh}, title = {Checkbox Detection with Fine-tuned PaliGemma}, year = {2026}, publisher = {GitHub}, journal = {GitHub Repository}, url = {https://github.com/harjotsingh2004/checkbox-detection-finetuning} } ```
For model citation: ```bibtex @model{singh2026checkboxmodel, author = {Harjot Singh}, title = {Checkbox Detector: Fine-tuned PaliGemma for Checkbox Classification}, year = {2026}, publisher = {Hugging Face}, url = {https://huggingface.co/harjotsingh2004/checkbox-detector-finetuned} } ```
================================================================================ CONTACT INFORMATION ================================================================================
Developer: Harjot Singh Email: harjotsingh2004harjot@gmail.com GitHub: https://github.com/harjotsingh2004 LinkedIn: [Your LinkedIn URL]
For Repository Issues:
Response Time: Within 24 hours
================================================================================ SUBMISSION FORM ANSWERS ================================================================================
For "HuggingFace Repository Link" field: https://huggingface.co/harjotsingh2004/checkbox-detector-finetuned
For "GitHub Repository Link" field: https://github.com/harjotsingh2004/checkbox-detection-finetuned
For "Documentation/Report Drive link" field: [Your Google Drive folder link]
================================================================================
Download them in the Files & versions tab.