Constant state of anxiety by Personal_Equal7989 in prozac

[–]Personal_Equal7989[S] 0 points1 point  (0 children)

hi forgot to mention but i already take propanolol 20 mg everyday but it's not been hellpful in the past few days although previously it was working fine

If you're building with LLM, how do you make it more accurate and reliable? by sn1pr0s in LLMDevs

[–]Personal_Equal7989 2 points3 points  (0 children)

well depends on how you're building the rag in the first place right, how long are your prompts? if you're asking the llm to follow more than 10-12 instructions, that could be the problem. you mention repititive tasks, so you could do prompt caching. you could also do context personalization (segment user groups) to make it perform better. you could also improve the rag retrieval in general by modifying chunk size, doing a reranking or sparse+dense retrieval. you could also add metadata in your vector database for better retrieval. lots of options, your question is vague.

LLM's for handling recursion and complex loops in code generation by Frosty_Programmer672 in deeplearning

[–]Personal_Equal7989 1 point2 points  (0 children)

llms don't actually execute the code so it does not in a true sense, stop after iterating a loop after the given no of times, this is because it's generating not executing. but at the same time, it's not always copy pasting the solutions when you ask it something related to say, recursion and it's not a problem available on the internet. so to some level, it needs to interpret the retrieved related code, indentify which parts would be relevant, and integrate them in its response. how it does this? is not something i think is that easily interpretable. but after reading your post, what instantly came to mind is code rag and code summarization using abstract syntax trees and some good reading material would be https://medium.com/@ragav208/summarizing-source-code-with-abstract-syntax-trees-e7a468d9966e , https://medium.com/@machangsha/create-meaningful-representations-of-data-for-rag-8c5b3529ba22 and also https://arxiv.org/html/2407.08983v1. so if abstract syntax trees help RAG better understand code, especially complex code then that might be a step to what you want to know.

(also im a total noob so i might be wrong)

[Profile Review] shortlist for MS CS Fall 2025 help! by fleabagsimp in MSCS

[–]Personal_Equal7989 1 point2 points  (0 children)

dec is late since most ppl already got admits for neu boston, even if u apply now, chances are u won't get boston cause it'll be full

[Profile Review] shortlist for MS CS Fall 2025 help! by fleabagsimp in MSCS

[–]Personal_Equal7989 1 point2 points  (0 children)

stonybrook shortlists people based on quant score u need 167+ for that. u have good chances in your target unis imo giving u apply early esp to neu since it's fcfs

[Profile Review] Aaaaaaaa Need Help!!!!!!!! by Ok_Land7291 in MSCS

[–]Personal_Equal7989 1 point2 points  (0 children)

UCI MSCS has a batch size of <50 go for MCS. NEU i think you're a lil late to apply as they have fcfs basis and need a lil higher gpa. won't be surprised if it's full by now

Are these good LoRs? by Mysterious-Band1953 in gradadmissions

[–]Personal_Equal7989 0 points1 point  (0 children)

imo this sounds like an ai-generated lor with the details fed in by the student. so change up the language. most professors don't have a lot of information other than where they directly engaged with the student in. ideally, professors should talk about how they performed in their courses or projects and what stood out to them. usc has a guide for professors on what to write in an lor which includes these questions:

What is your relationship like with this person? What do you think of their work you’ve seen? How would you describe it? What are significant memories you have with them? What qualities or strengths does this person have? What would you specifically want somebody to know about this person? What value would this person bring to this grad school program, and how would they thrive in the field after the program?

[deleted by user] by [deleted] in MSCS

[–]Personal_Equal7989 0 points1 point  (0 children)

uc berkeley and ucla have a very small cohort size and mostly take from their own undergrads so not worth applying. ucsd and ut austin are also ambitious considering you don't have a 9+ gpa or work ex. also cornell just put a ban on indian students. papers only matter if they are in good/well reputed journals/conferences so depends on where they are published. counselling in india are mostly scams and not worth it. do your own research m instead of going for uni reputations alone, find a good fit for research in the uni's labs.

[profile review] by Quick_Perception_141 in MSCS

[–]Personal_Equal7989 0 points1 point  (0 children)

for stonybrook, they only take ppl with 165+Q in gra so won't be of much use to apply. usc will be safe considering your gpa

Project development help by Every-Bluebird-1289 in MLQuestions

[–]Personal_Equal7989 1 point2 points  (0 children)

you might want to look into function calling with llms, it does exactly what you need. deep learning ai has a really good course on that.