Dmitry Grankin

Results 11 comments of Dmitry Grankin

It's macOS 10.14.3, chrome. As you may see on the screenshot, `fig.layout.height` returns 1000 once 1000 is set in the function. I can scroll the legend on the right. This...

That is all the same with no animation. I have attached a link to a short screencast showing how the cell being rendered, that would might be helpful. https://drive.google.com/open?id=17nt23gFQdpUntHh1XbYgBilHV2gQ-CbR Thank...

yes, this is in JupyterLab

> Hey @DmitriyG228 ! > How did you solve it? Hi, cabhijith, gave up quickly solving it.

I am tying to set function call with lm set in dspy.settings. `` turbo = dspy.OpenAI(model='gpt-3.5-turbo-16k', max_tokens=7000, functions=[function], function_call={"name": "client_meeting_insights"}, ) #gpt-3.5-turbo-16k dspy.settings.configure(lm=turbo)` the function: ` function = { "name":...

I guess the problem comes as a tradeoff to long prompts that are compiled by dspy. I switched to 16k model to deal with this.

that's how I run this ``` from diart import SpeakerDiarization from diart.sources import FileAudioSource from diart.inference import StreamingInference from diart.sinks import RedisWriter pipeline = SpeakerDiarization(return_embeddings=True) # return_embeddings audio_file_path = path...

> Centroid setting for the beginning of a conversation is missing in the current code. Do you have specific use case for centroids setting, do you find it helpful?

My own solution is the following: patch OnlineSpeakerClustering with: ``` def get_speaker_id_to_centroid_mapping(self) -> Dict[int, np.ndarray]: """Returns the mapping of speaker IDs to their centroids.""" if self.centers is None: return {}...

Hey @juanmc2005, thanks for your feedback, please find the PR