🧠 CharLing - Turkish/English Language Detection Model

Model Description

CharLing is a lightweight and fast language detection model trained on 882,555 parallel Turkish-English sentence pairs. It uses character frequency analysis with n-grams (2-4) combined with a Logistic Regression classifier, achieving 99.61% accuracy on the test set. The model is designed to quickly distinguish between Turkish and English text with minimal computational resources, making it ideal for preprocessing pipelines, multilingual applications, and edge devices.

🎯 Quick Start

import pickle

# Download and load the model
with open('charling.pkl', 'rb') as f:
    model_data = pickle.load(f)

vectorizer = model_data['vectorizer']
classifier = model_data['classifier']

def detect_language(text):
    vector = vectorizer.transform([text])
    prediction = classifier.predict(vector)[0]
    return "🇹🇷 Turkish" if prediction == 0 else "🇬🇧 English"

# Test it
print(detect_language("Bugün hava çok güzel."))  # 🇹🇷 Turkish
print(detect_language("The weather is nice today."))  # 🇬🇧 English
Downloads last month
-
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support