Spaces:
Sleeping
Sleeping
File size: 10,619 Bytes
ab83949 9f906cd ffe5715 ab83949 ffe5715 ab83949 ae36f5b d1e36c0 ab83949 ffe5715 ab83949 d1e36c0 ab83949 d1e36c0 ab83949 d1e36c0 ab83949 d1e36c0 ab83949 d1e36c0 ab83949 d1e36c0 ab83949 d1e36c0 ab83949 d1e36c0 ab83949 d1e36c0 ab83949 d1e36c0 ab83949 d1e36c0 ab83949 d1e36c0 ab83949 afabb72 ab83949 ffe5715 ab83949 ffe5715 ab83949 ffe5715 d1e36c0 ab83949 ffe5715 ab83949 ffe5715 ab83949 ffe5715 ab83949 ffe5715 ab83949 b247df5 ab83949 d1e36c0 ab83949 d1e36c0 ab83949 d1e36c0 ab83949 d1e36c0 afabb72 ab83949 d1e36c0 ab83949 d1e36c0 ab83949 d1e36c0 ab83949 d1e36c0 ab83949 d1e36c0 ab83949 b247df5 ab83949 afabb72 ab83949 ffe5715 ab83949 ffe5715 d1e36c0 ab83949 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 | import os
import torch
import json
import re
import gradio as gr
import numpy as np
from transformers import AutoTokenizer, AutoModelForSequenceClassification
from langchain_huggingface import HuggingFaceEmbeddings
from langchain_community.vectorstores import FAISS
from langchain_core.documents import Document
from langchain_text_splitters import RecursiveCharacterTextSplitter
from huggingface_hub import login, InferenceClient
# ================= 1. KONFIGURASI & RULES =================
hf_token = os.getenv("HF_TOKEN")
login(token=hf_token)
# PATH FILE MODEL
ROBERTA_PATH = "akage99/roberta-corporate-backend"
BGE_MODEL_NAME = "BAAI/bge-m3"
# --- A. GATEKEEPER RULES (TIDAK DIUBAH) ---
GATE_RULES = {
"min_words": 500, # Wajib 500 kata
"max_digit_ratio": 0.3, # Maksimal 30% angka
"math_latex_triggers": [
r"\\documentclass", r"\\begin\{", r"\\frac", r"\\sum", r"\\int",
r"\$\$.*?\$\$", r"x\^2", r"a\^2", r"b\^2",
r"sin\(", r"cos\(", r"tan\(", r"H_2O", r"CO_2",
r"fig\.", r"eq\.", r"et al\."
]
}
# --- B. QUALITY AUDIT RULES (TIDAK DIUBAH) ---
QUALITY_RULES = {
"standard": {
"min_paragraphs": 3,
"max_sentence_length": 60
},
"penalties": {
"bad_structure": 30,
"risk_word": 50,
"bad_tone": 20,
"short_content": 20
},
"risk_keywords": [
"confidential", "rahasia", "internal use only", "top secret",
"bodoh", "goblok", "brengsek", "tolol", "idiot",
"password:", "api_key", "access token",
"suap", "gratifikasi", "korupsi"
]
}
# --- C. LLM MODELS (Fallback Strategy) ---
LLM_MODELS = [
"HuggingFaceH4/zephyr-7b-beta",
"mistralai/Mistral-7B-Instruct-v0.3",
"google/gemma-1.1-7b-it"
]
# ================= 2. SETUP ENGINE (UPDATED) =================
print("⏳ Starting System...")
# 1. Load Tokenizer & RoBERTa (Untuk Audit Tone)
print(" Loading RoBERTa Model...")
tokenizer = AutoTokenizer.from_pretrained(ROBERTA_PATH)
roberta_model = AutoModelForSequenceClassification.from_pretrained(ROBERTA_PATH)
# 2. Load Embedding Model (Untuk memproses input User)
print(" Loading BGE-M3 Model...")
embeddings = HuggingFaceEmbeddings(model_name=BGE_MODEL_NAME)
# 3. Setup Chunking (Untuk memecah artikel User)
text_splitter = RecursiveCharacterTextSplitter(chunk_size=1000, chunk_overlap=200)
# 4. LOAD DATABASE VEKTOR DARI FILE (PENGGANTI JSON BUILDER)
print(" Loading Vector Database from Disk (index.pkl & index.faiss)...")
try:
# "." artinya mencari file di folder root (tempat file ini berada)
# allow_dangerous_deserialization=True wajib aktif karena kita pakai Pickle
vectorstore = FAISS.load_local(
folder_path=".",
embeddings=embeddings,
allow_dangerous_deserialization=True
)
print("✅ SUCCESS: Database Vektor Berhasil Dimuat!")
except Exception as e:
print(f"❌ CRITICAL ERROR: Gagal memuat database vektor. Pastikan file index.pkl dan index.faiss sudah diupload.\nDetail: {e}")
vectorstore = None
print("✅ System Ready!")
# ================= 3. LOGIC MODULES (TIDAK DIUBAH) =================
# --- MODUL 1: GATEKEEPER ---
def run_gatekeeper(text):
words = text.strip().split()
if len(words) < GATE_RULES['min_words']:
return False, f"REJECTED: Terlalu pendek ({len(words)} kata). Minimal {GATE_RULES['min_words']} kata."
clean_text = re.sub(r'[\s.,\-\+]', '', text)
if clean_text.isdigit():
return False, "REJECTED: Input hanya berisi angka (Spam Data)."
digit_ratio = sum(c.isdigit() for c in text) / len(text)
if digit_ratio > GATE_RULES['max_digit_ratio']:
return False, "REJECTED: Terlalu banyak angka. Terdeteksi sebagai Laporan Keuangan/Data Mentah."
for pattern in GATE_RULES['math_latex_triggers']:
if re.search(pattern, text, re.IGNORECASE):
return False, f"REJECTED: Terdeteksi format Dokumen Teknis/Matematika/LaTeX ('{pattern}')."
return True, "PASS"
# --- MODUL 2: SYSTEM A (MANUAL AUDIT) ---
def run_manual_audit(text, rules):
base_score = 100
flags = []
if text.count("\n\n") + 1 < rules['standard']['min_paragraphs']:
base_score -= rules['penalties']['bad_structure']
flags.append("⚠️ Struktur buruk (Kurang paragraf/Wall of text)")
text_lower = text.lower()
found_risks = [w for w in rules['risk_keywords'] if w in text_lower]
if found_risks:
base_score -= rules['penalties']['risk_word']
flags.append(f"🚨 Terdeteksi kata berisiko/sensitif: {', '.join(found_risks)}")
try:
inputs = tokenizer(text[:512], return_tensors="pt", truncation=True, padding=True, max_length=512)
with torch.no_grad():
outputs = roberta_model(**inputs)
probs = torch.softmax(outputs.logits, dim=-1)[0]
rob_score = float(probs[1])
except:
rob_score = 0.5
rule_decimal = max(0, base_score) / 100.0
final_score = (rule_decimal * 0.7) + (rob_score * 0.3)
if final_score >= 0.85: verdict = "AI-Curated (Good Quality)"
elif final_score >= 0.60: verdict = "Needs Revision (Minor Issue)"
else: verdict = "Needs Attention (Low Clarity/Risk)"
return {
"verdict": verdict,
"score_decimal": final_score,
"flags": flags
}
# --- MODUL 3: SYSTEM B (LLM JUDGE) ---
def run_llm_judge(text, content_type):
prompt = f"""
Role: Senior Editor. Assess this article based on DigiFeed Parameters.
Type: "{content_type}".
STANDARDS:
1. GOOD (>80): Clear idea, logical flow, grammar 90%, professional tone.
2. REVISION (50-80): Unfocused, messy paragraphs, typos.
3. BAD (<50): No flow, misleading, sensitive data, too technical.
Text: "{text[:2000]}..."
Output JSON: {{ "category": "GOOD/REVISION/BAD", "score": (0-100), "reason": "summary", "advice": "tip" }}
"""
for model_id in LLM_MODELS:
try:
client = InferenceClient(model=model_id, token=hf_token, timeout=15)
response = client.text_generation(prompt, max_new_tokens=250, temperature=0.4)
json_str = response.strip()
if "```json" in json_str: json_str = json_str.split("```json")[1].split("```")[0]
elif "{" in json_str: json_str = "{" + json_str.split("{", 1)[1].rsplit("}", 1)[0] + "}"
res = json.loads(json_str)
res['model'] = model_id
return res
except: continue
return None
# ================= 4. MAIN PROCESSOR (TIDAK DIUBAH) =================
def process_article(title, content):
full_text = f"{title}\n\n{content}"
# 1. GATEKEEPER CHECK
is_valid, msg = run_gatekeeper(full_text)
if not is_valid:
return {"is_content": False, "rejection_reason": msg}
# 2. CHUNKING & VECTOR SEARCH
chunks = text_splitter.split_text(full_text)
competency_candidates = []
form_candidates = []
if vectorstore:
for chunk in chunks:
# Cari di FAISS (Load dari File)
# Filter berdasarkan metadata 'source' yang kita buat di Colab
res_comp = vectorstore.similarity_search_with_score(chunk, k=3, filter={'source': 'competency'})
res_form = vectorstore.similarity_search_with_score(chunk, k=1, filter={'source': 'form'}) # Ganti 'form' jadi 'content_form' sesuai script colab
# Koreksi Sedikit: Di Colab tadi metadata source-nya "content_form", bukan "form"
# Kita sesuaikan filternya di bawah ini agar match:
# ... Ulangi search dengan filter yang benar ...
res_form_corrected = vectorstore.similarity_search_with_score(chunk, k=1, filter={'source': 'content_form'})
for doc, score in res_comp:
competency_candidates.append({"meta": doc.metadata, "score": score})
for doc, score in res_form_corrected:
form_candidates.append({"meta": doc.metadata, "score": score})
# 3. AGGREGATION
unique_comp = {}
for item in competency_candidates:
name = item['meta'].get('competency', item['meta'].get('name', 'Unknown')) # Handle variasi nama key
if name not in unique_comp:
unique_comp[name] = item['meta']
unique_comp[name]['best_score'] = item['score']
else:
if item['score'] < unique_comp[name]['best_score']:
unique_comp[name]['best_score'] = item['score']
top_5_competencies = sorted(unique_comp.values(), key=lambda x: x['best_score'])[:5]
final_competencies = []
for comp in top_5_competencies:
sim_score = 1 / (1 + comp['best_score'])
final_competencies.append({
"category": comp.get('group', comp.get('category', '-')), # Sesuaikan key metadata Colab
"competency": comp.get('name', comp.get('competency', '-')),
"type": comp.get('code', comp.get('type', '-')),
"similarity_score": f"{sim_score:.4f}"
})
predicted_form = "General"
if form_candidates:
best_form = min(form_candidates, key=lambda x: x['score'])
predicted_form = best_form['meta'].get('name', best_form['meta'].get('content_type', 'General'))
# 4. QUALITY AUDIT
manual_res = run_manual_audit(full_text, QUALITY_RULES)
llm_res = run_llm_judge(full_text, predicted_form)
# 5. CONSTRUCT OUTPUT
result = {
"is_content": True,
"CONTENT_ANALYSIS": {
"predicted_type": predicted_form,
"top_5_competencies": final_competencies
},
"QUALITY_REPORT": {
"SYSTEM_A_MANUAL": {
"verdict": manual_res['verdict'],
"score": f"{manual_res['score_decimal']:.4f}",
"flags": manual_res['flags']
}
}
}
if llm_res:
result["QUALITY_REPORT"]["SYSTEM_B_LLM"] = {
"verdict": llm_res.get('category'),
"score": llm_res.get('score'),
"advice": llm_res.get('advice'),
"served_by": llm_res.get('model')
}
return result
# ================= 5. UI =================
iface = gr.Interface(
fn=process_article,
inputs=[gr.Textbox(label="Judul"), gr.Textbox(lines=10, label="Isi Artikel (Min 500 Kata)")],
outputs=gr.JSON(label="Hasil Analisis"),
title="DigiFeed V6.1: Pre-computed Index",
description="Sistem klasifikasi artikel menggunakan FAISS Index statis (Pre-loaded) untuk performa lebih cepat dan stabil."
)
iface.launch() |