Aaditya Sharma
Aaditya Sharma
hello there Key Improvements Config Class Refactoring: Reduced code duplication using a base configuration class. Naming Conventions: Renamed vision_head to VisionHead for PEP8 compliance while maintaining backward compatibility. Critical Bug...
Test with Different Cursor Settings:-Have you Try setting no_hardware_cursors = true in your Hyprland configuration as you mentioned that this shows the cursor correctly in Gamescope. Although this might affect...
As a temporary fix, if you’re primarily needing this configuration to take screenshots without the cursor, you can use no_hardware_cursors = true while working on solving the interaction problem, and...
Modify the Processor to Support Initial Prompt from transformers import WhisperProcessor initial_prompt = "This installation uses technical terms like thermodynamics and calibration." processor = WhisperProcessor.from_pretrained("openai/whisper-small") prompt_ids = processor(initial_prompt, return_tensors="pt").input_ids
Pass the prompt_ids to the Whisper Model from transformers import WhisperForConditionalGeneration model = WhisperForConditionalGeneration.from_pretrained("openai/whisper-small") audio = processor("path_to_audio_file.wav", return_tensors="pt").input_features output = model.generate(audio, prompt_ids=prompt_ids)
Integrating with transformers.js: const processor = await WhisperProcessor.from_pretrained('openai/whisper-small'); const model = await WhisperForConditionalGeneration.from_pretrained('openai/whisper-small'); const initialPrompt = "This installation uses technical terms like thermodynamics and calibration."; const prompt_ids = processor.tokenize(initialPrompt); const...
Changing behavior to the textarea ```html With textarea Set Text **And handling form data from textarea** document.getElementById('submitBtn').addEventListener('click', function() { let textareaValue = document.getElementById('myTextarea').value; console.log('Textarea value:', textareaValue); // You can then...
Fixes & Improvements
@Giom-V Could you please review and approve this PR? Thanks!
Hello, I’m interested in contributing to this issue. Let me know if it’s okay for me to work on it. Thanks!