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
The transform_text function in app.py is the core of the preprocessing logic. The current implementation uses multiple loops and an intermediate list that is repeatedly cleared and reused.
This can be significantly simplified by using a single list comprehension, which will make the code more readable, concise, and slightly more performant.
PLEASE ASSIGN ME THIS ISSUE UNDER THE GSSOC' 25 LABEL. THANK YOU.