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 { defineConfig } from 'vite'; | |
| import react from '@vitejs/plugin-react'; | |
| import svgr from 'vite-plugin-svgr'; | |
| // https://vitejs.dev/config/ | |
| export default defineConfig({ | |
| plugins: [svgr(), react()], | |
| build: { sourcemap: true }, | |
| resolve: { | |
| alias: { | |
| '@': '/src', | |
| }, | |
| }, | |
| }); | |