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: 606 Bytes
41a71fd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | 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>
);
};
|