lettucegoblin

Results 4 comments of lettucegoblin

I was able to set my model to do_sample=True before passing it to jsonformer. `model = AutoModelForCausalLM.from_pretrained( "databricks/dolly-v2-3b", device_map='auto', use_cache=True, do_sample=True)`

@DTrombett I've followed your advice and made the changes and it worked for me. Here's my update to `_to_ad_free_formats`: ```python def _to_ad_free_formats(self, video_id, formats, subtitles): ad_free_formats, ad_free_subtitles = [], {}...

You're absolutely right, it only worked on one test case where there an ad was always in isolation. I couldn't find a way apart from parsing line by line with...

An ugly workaround for anyone looking to get something working at the moment before a fix is available can do the following: ```gdscript func _process(delta: float) -> void: if _is_dragging:...