Instructions to use ProTema/first-start with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- BERTopic
How to use ProTema/first-start with BERTopic:
from bertopic import BERTopic model = BERTopic.load("ProTema/first-start") - Notebooks
- Google Colab
- Kaggle
File size: 487 Bytes
41a71fd | 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 | @import '@/app/globalStyles/config/mixin.scss';
.Textarea {
width: 100%;
min-height: 150px;
padding: 19px;
font-size: 16px;
color: var(--t-primery-c);
background-color: transparent;
border: none;
outline: none;
resize: none;
&::placeholder {
font-size: 16px;
line-height: 140%;
color: var(--t-descriptive-c-5);
letter-spacing: 0.04em;
@include before-768 {
font-size: 16px;
}
}
}
|