Yug Khatri

Results 4 issues of Yug Khatri

``` import scrapper from 'instatouch'; const options = { // Number of posts to scrape: {int default: 0} count: 10, // Download posts or not. {boolean default: false} download: false,...

```js peers[connectedUserSocketID].on('stream', (stream) => { streams.set(connectedUserSocketID, stream); store.dispatch(setStreams({ connectedUserSocketID })); }); ``` When i only use the above event listner 'stream' everything works fine. But when I use both the...

### Describe the bug I am trying to train face on the Stable Diffusion model, but I am getting this error on the colab file cell: https://colab.research.google.com/github/ShivamShrirao/diffusers/blob/main/examples/dreambooth/DreamBooth_Stable_Diffusion.ipynb#scrollTo=jjcSXTp-u-Eg Error: ``` 2023-03-06...

bug

Suppose I trained the model first and got the topics, representative docs etc of the training docs using `.get_document_info()`: ``` topic_model = BERTopic(vectorizer_model=vectorizer_model, hdbscan_model=hdbscan_model, embedding_model=embedding_model) topics, probs = topic_model.fit_transform(docs) print(topic_model.get_document_info())...