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
| import { ReactNode } from 'react'; | |
| import { classNames } from '@/shared/lib/classNames/classNames'; | |
| import cls from './Layout.module.scss'; | |
| interface LayoutProps { | |
| className?: string; | |
| headerSlot: ReactNode; | |
| pageSlot: ReactNode; | |
| sideMenuSlot: ReactNode; | |
| } | |
| export const Layout = (props: LayoutProps) => { | |
| const { className, headerSlot, pageSlot, sideMenuSlot } = props; | |
| return ( | |
| <div className={classNames(cls.Layout, {}, [className])}> | |
| {headerSlot} | |
| <main className={cls.content}>{pageSlot}</main> | |
| {sideMenuSlot} | |
| </div> | |
| ); | |
| }; | |