Spaces:
Running
Running
File size: 581 Bytes
ae7e3fa |
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 |
import streamlit as st
import pandas as pd
st.header(" Набор данных")
nassiv_row = 35670
st.write(f"* Размер массива: строк`{nassiv_row}`")
st.divider()
st.header(" Использованные модели")
col0, col1 = st.columns(spec=[0.1, 0.9])
with col0:
st.write('1')
st.write('2')
st.write('3')
with col1:
st.write('sentence-transformers/paraphrase-multilingual-MiniLM-L12-v2')
st.write('sentence-transformers/paraphrase-multilingual-mpnet-base-v2')
st.write('intfloat/multilingual-e5-large')
st.divider()
|