""" Gradio demo showcasing ISCC Semantic Text Code. """ from loguru import logger as log import gradio as gr import iscc_sct as sct import textwrap def compute_iscc_code(text1, text2, bit_length): code1 = sct.gen_text_code_semantic(text1, bits=bit_length) code2 = sct.gen_text_code_semantic(text2, bits=bit_length) similarity = compare_codes(code1["iscc"], code2["iscc"], bit_length) return code1["iscc"], code2["iscc"], similarity def compare_codes(code_a, code_b, bits): if all([code_a, code_b]): return generate_similarity_bar(hamming_to_cosine(sct.iscc_distance(code_a, code_b), bits)) def truncate_text(text, max_length=70): return textwrap.shorten(text, width=max_length, placeholder="...") def hamming_to_cosine(hamming_distance: int, dim: int) -> float: """Aproximate the cosine similarity for a given hamming distance and dimension""" result = 1 - (2 * hamming_distance) / dim return result def generate_similarity_bar(similarity): """Generate a horizontal bar representing the similarity value, scaled to -100% to +100%.""" # Scale similarity from [-1, 1] to [-100, 100] display_similarity = similarity * 100 # Calculate the width of the bar based on the absolute value of similarity bar_width = int(abs(similarity) * 50) # 50% is half the width of the container # Determine the color and starting position based on the sign of the similarity color = "green" if similarity >= 0 else "red" position = "left" if similarity >= 0 else "right" # Adjust the text position to be centered within the colored bar text_position = "left: 50%;" if similarity >= 0 else "right: 50%;" text_alignment = "transform: translateX(-50%);" if similarity >= 0 else "transform: translateX(50%);" bar_html = f"""

Semantic Similarity

{display_similarity:.2f}%
""" return bar_html # Sample texts sample_text_en = "\n\n".join( [ " ".join(paragraph.split()) for paragraph in """ This document specifies the syntax and structure of the International Standard Content Code (ISCC), as an identification system for digital assets (including encodings of text, images, audio, video or other content across all media sectors). It also describes ISCC metadata and the use of ISCC in conjunction with other schemes, such as DOI, ISAN, ISBN, ISRC, ISSN and ISWC. An ISCC applies to a specific digital asset and is a data-descriptor deterministically constructed from multiple hash digests using the algorithms and rules in this document. This document does not provide information on registration of ISCCs. """.strip().split("\n\n") ] ) sample_text_de = "\n\n".join( [ " ".join(paragraph.split()) for paragraph in """ Dieses Dokument spezifiziert die Syntax und Struktur des International Standard Content Code (ISCC) als Identifizierungssystem für digitale Inhalte (einschließlich Kodierungen von Text, Bildern, Audio, Video oder anderen Inhalten in allen Medienbereichen). Sie beschreibt auch ISCC-Metadaten und die Verwendung von ISCC in Verbindung mit anderen Systemen wie DOI, ISAN, ISBN, ISRC, ISSN und ISWC. Ein ISCC bezieht sich auf ein bestimmtes digitales Gut und ist ein Daten-Deskriptor, der deterministisch aus mehreren Hash-Digests unter Verwendung der Algorithmen und Regeln in diesem Dokument erstellt wird. Dieses Dokument enthält keine Informationen über die Registrierung von ISCCs. """.strip().split("\n\n") ] ) sample_text_bg = "\n\n".join( [ " ".join(paragraph.split()) for paragraph in """ Този документ определя синтаксиса и структурата на Международния стандартен код на съдържанието (ISCC) като система за идентификация на цифрови активи (включително кодиране на текст, изображения, аудио, видео или друго съдържание във всички медийни сектори). Той описва също метаданните на ISCC и използването на ISCC във връзка с други схеми, като DOI, ISAN, ISBN, ISRC, ISSN и ISWC. ISCC се прилага за конкретен цифров актив и представлява детерминиран дескриптор на данни, конструиран от множество хеш-разходи, като се използват алгоритмите и правилата в настоящия документ. Настоящият документ не предоставя информация за регистрацията на ISCC. """.strip().split("\n\n") ] ) sample_text_zh = "\n\n".join( [ " ".join(paragraph.split()) for paragraph in """ 本文件规定了国际标准内容代码(ISCC)的语法和结构,作为数字资产(包括所有媒 体领域的文本、图像、音频、视频或其他内容的编码)的标识系统。它还介绍了 ISCC 元数据以及 ISCC 与其他方案(如 DOI、ISAN、ISBN、ISRC、ISSN 和 ISWC)的结合使用。 ISCC 适用于特定的数字资产,是使用本文件中的算法和规则从多个哈希摘要中确定性地建 立起来的数据描述符。本文件不提供有关 ISCC 注册的信息。 """.strip().split("\n\n") ] ) custom_css = """ #chunked-text span.label { text-transform: none !important; } .clickable-example { cursor: pointer; transition: all 0.3s ease; } .clickable-example:hover { background-color: #f0f0f0; transform: scale(1.02); } .clickable-example .label-wrap { font-weight: bold; color: #4a90e2; } .truncate-text { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 300px; display: inline-block; } """ iscc_theme = gr.themes.Default( font=[gr.themes.GoogleFont("Readex Pro")], font_mono=[gr.themes.GoogleFont("JetBrains Mono")], radius_size=gr.themes.sizes.radius_none, ) with gr.Blocks(css=custom_css, theme=iscc_theme) as demo: with gr.Row(variant="panel"): gr.Markdown( """ ## ✂️ ISCC Semantic Text-Code Demo of cross-lingual Semantic Text-Code (proof of concept) """, ) with gr.Row(variant="panel"): in_iscc_bits = gr.Slider( label="ISCC Bit-Length", info="NUMBER OF BITS FOR OUTPUT ISCC", minimum=64, maximum=256, step=32, value=128, ) with gr.Row(variant="panel"): with gr.Column(variant="panel"): in_text_a = gr.TextArea( label="Text A", placeholder="Choose sample text from the dropdown or type or paste your text.", lines=12, max_lines=12, ) sample_dropdown_a = gr.Dropdown( choices=["None", "English", "Bulgarian"], label="Select sample for Text A", value="None" ) out_code_a = gr.Textbox(label="ISCC Code for Text A") with gr.Column(variant="panel"): in_text_b = gr.TextArea( label="Text B", placeholder="Choose sample text from the dropdown or type or paste your text.", lines=12, max_lines=12, ) sample_dropdown_b = gr.Dropdown( choices=["None", "German", "Chinese"], label="Select sample for Text B", value="None" ) out_code_b = gr.Textbox(label="ISCC Code for Text B") def update_sample_text(choice, text_a_or_b): if choice == "None": return "" if text_a_or_b == "A": return sample_text_en if choice == "English" else sample_text_bg else: return sample_text_de if choice == "German" else sample_text_zh sample_dropdown_a.change( lambda choice: update_sample_text(choice, "A"), inputs=[sample_dropdown_a], outputs=[in_text_a] ) sample_dropdown_b.change( lambda choice: update_sample_text(choice, "B"), inputs=[sample_dropdown_b], outputs=[in_text_b] ) with gr.Row(variant="panel"): with gr.Column(variant="panel"): out_similarity = gr.HTML(label="Similarity") def process_text(text, nbits, suffix): log.debug(f"{text[:20]}") if not text: return out_code_func = globals().get(f"out_code_{suffix}") iscc = sct.Metadata(**sct.gen_text_code_semantic(text, bits=nbits)) result = {out_code_func: gr.Textbox(value=iscc.iscc)} return result def recalculate_iscc(text_a, text_b, nbits): code_a = sct.gen_text_code_semantic(text_a, bits=nbits)["iscc"] if text_a else None code_b = sct.gen_text_code_semantic(text_b, bits=nbits)["iscc"] if text_b else None if code_a and code_b: similarity = compare_codes(code_a, code_b, nbits) else: similarity = None return ( gr.Textbox(value=code_a) if code_a else gr.Textbox(), gr.Textbox(value=code_b) if code_b else gr.Textbox(), similarity, ) in_text_a.change( lambda text, nbits: process_text(text, nbits, "a"), inputs=[in_text_a, in_iscc_bits], outputs=[out_code_a], show_progress="full", trigger_mode="always_last", ) in_text_b.change( lambda text, nbits: process_text(text, nbits, "b"), inputs=[in_text_b, in_iscc_bits], outputs=[out_code_b], show_progress="full", trigger_mode="always_last", ) in_iscc_bits.change( recalculate_iscc, inputs=[in_text_a, in_text_b, in_iscc_bits], outputs=[out_code_a, out_code_b, out_similarity], show_progress="full", ) out_code_a.change(compare_codes, inputs=[out_code_a, out_code_b, in_iscc_bits], outputs=[out_similarity]) out_code_b.change(compare_codes, inputs=[out_code_a, out_code_b, in_iscc_bits], outputs=[out_similarity]) def reset_all(): return ( gr.Slider(value=128), # Reset ISCC Bit-Length gr.Dropdown(value="None"), # Reset sample dropdown A gr.Dropdown(value="None"), # Reset sample dropdown B gr.TextArea(value=""), # Reset Text A gr.TextArea(value=""), # Reset Text B gr.Textbox(value=""), # Reset ISCC Code for Text A gr.Textbox(value=""), # Reset ISCC Code for Text B gr.HTML(value=""), # Reset Similarity ) with gr.Row(variant="panel"): reset_button = gr.Button("Reset All") reset_button.click( reset_all, outputs=[ in_iscc_bits, sample_dropdown_a, sample_dropdown_b, in_text_a, in_text_b, out_code_a, out_code_b, out_similarity, ], ) with gr.Row(variant="panel"): with gr.Column(variant="panel"): gr.Markdown( """ ## Understanding ISCC Semantic Text-Codes ### What is an ISCC Semantic Text-Code? An ISCC Semantic Text-Code is a digital fingerprint for text content. It captures the meaning of the text, not just the exact words. ### How does it work? 1. **Input**: You provide a text in any language. 2. **Processing**: Our system analyzes the meaning of the text. 3. **Output**: A unique code is generated that represents the text's content. ### What can it do? - **Cross-language matching**: It can recognize similar content across different languages. - **Similarity detection**: It can measure how similar two texts are in meaning, not just in words. - **Content identification**: It can help identify texts with similar content, even if the wording is different. ### How to use this demo: 1. **Enter text**: Type or paste text into either or both text boxes. 2. **Adjust bit length**: Use the slider to change the detail level of the code (higher = more detailed). 3. **View results**: See the generated ISCC code for each text. 4. **Compare**: Look at the similarity bar to see how alike the two texts are in meaning. ### Why is this useful? - **Content creators**: Find similar content across languages. - **Researchers**: Quickly compare documents or find related texts in different languages. - **Publishers**: Identify potential translations or similar works efficiently. This technology opens up new possibilities for understanding and managing text content across language barriers! """ ) if __name__ == "__main__": # pragma: no cover demo.launch()