ChatCrawlersearch across public Telegram Open the app
P

Python Indonesia

сообщение · 2025-08-14 02:43 UTC
E
Replymessage unavailable
Ссылка
click to show
Coba seputar Named Entity Recognition (NER), Gazetteer/Dictionary-based Matching. import spacy import re from fuzzywuzzy import fuzz # Load model NER nlp = spacy.load("en_core_web_sm") def extract_locations(text): doc = nlp(text) locations = [] # Extract menggunakan spaCy NER for ent in doc.ents: if ent.label_ in ["GPE", "LOC", "ORG"]: locations.append(ent.text) return locations # Contoh penggunaan user_prompt = "Saya mau cari restoran enak di Jakarta atau hotel bagus di Bali" locations = extract_locations(user_prompt) https://spacy.io/usage/linguistic-features#named-entities https://nlp.stanford.edu/software/CRF-NER.html

Вся лента · оригинал в Telegram

Open in Telegram Каталог площадок Искать в ChatCrawler

A snapshot of an open public feed from the search index ChatCrawler — “Google for public Telegram”; refreshed as the venue is crawled. Times are UTC.

Public content only, official Telegram API. About · FAQ · What we do not do · Remove a page · Catalog