pphothidaen's picture
Upload README.md with huggingface_hub
8583e69 verified
|
Raw
History Blame Contribute Delete
1.42 kB
metadata
license: apache-2.0
base_model: scb10x/typhoon2.5-qwen3-4b
tags:
  - facebook-scraper
  - lora
  - typhoon
  - fine-tuned
  - th

πŸ€– Typhoon 2.5 4B - Facebook Scraper LoRA Adapter

This model is fine-tuned using QLoRA technique on data crawled from Facebook posts.

πŸ‘₯ Developer & Maintainer Information

  • Fine-Tuner: Pansakorn (ζž—ι‡‘ιΎ) Phothidaen (pphothidaen) (LinkedIn)
  • Objective: Academic research, Thai news/post summarization, and data classification.
  • Compliance: Use of this model must strictly comply with local laws and regulations, privacy guidelines, and international standards.

πŸ“Š Last Updated Info

  • Timestamp: 2026-07-17 03:53:31 UTC
  • Base Model: scb10x/typhoon2.5-qwen3-4b
  • License: Apache 2.0 License (In accordance with the base model license and OpenTyphoon Terms and Conditions)
  • Fine-Tuning Technique: QLoRA (LoRA Adapter)

βš™οΈ Usage

from transformers import AutoTokenizer, AutoModelForCausalLM
from peft import PeftModel

base_model_id = "scb10x/typhoon2.5-qwen3-4b"
lora_model_id = "pphothidaen/typhoon-2-4b-fb-scraper-lora"

model = AutoModelForCausalLM.from_pretrained(base_model_id, device_map="auto")
model = PeftModel.from_pretrained(model, lora_model_id)
tokenizer = AutoTokenizer.from_pretrained(base_model_id)