You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is difficult to incorporate custom modifications to the LLM (e.g., deepstack to qwen 2.5 model). You have to touch the API code, which we should not do (unless we separately maintain a fork of HF API, which we are DEFINITELY not doing).
Solution:
Implement the bare minimum, correct, source code of the LLM architecture (use HF as a reference) and then implement logic for loading in weights (following HF API).
Additional Notes:
Vision encoders also use HF API to load in model. However, since the probability of modifying a vision encoder is quite small and we mostly use custom ECG models (with the source code already included), we can have this less of a priority.
Background:
Related to Problem 6 of issue 49.
We use the Huggingface API to load in models like so:
Problem:
Solution:
Additional Notes: