import requests import streamlit as st import time from transformers import pipeline import os from .utils import query def write(): st.markdown( """

TURNA

""", unsafe_allow_html=True, ) st.write("#") col = st.columns(2) col[0].image("images/turna-logo.png", width=100) st.markdown( """

... is a Turkish encoder-decoder language model.

In this Huggingface space, you can test the TURNA language model.

The model contains 1.1B parameters, and was pre-trained with an encoder-decoder architecture following the UL2 framework on 43B tokens from various domains.

TURNA was fine-tuned to carry out Turkish summarization, paraphrasing, news title generation, sentiment classification, text categorization, named entity recognition, part-of-speech tagging, semantic textual similarity and natural language inference tasks.

Go to the Navigation bar to access our applications.

Refer to our paper for more details...

TURNA can generate toxic content or provide erroneous information. Double-check before usage.

""", unsafe_allow_html=True, )