Healthc Inform Res Search

CLOSE


Healthc Inform Res > Volume 31(2); 2025 > Article
Kim, Kim, Ahn, and Lee: LLM-Based Response Generation for Korean Adolescents: A Study Using the NAVER Knowledge iN Q&A Dataset with RAG

Abstract

Objectives

This research aimed to develop a retrieval-augmented generation (RAG) based large language model (LLM) system that offers personalized and reliable responses to a wide range of concerns raised by Korean adolescents. Our work focuses on building a culturally reflective dataset and on designing and validating the system’s effectiveness by comparing the answer quality of RAG-based models with non-RAG models.

Methods

Data were collected from the NAVER Knowledge iN platform, concentrating on posts that featured adolescents’ questions and corresponding expert responses during the period 2014–2024. The dataset comprises 3,874 cases, categorized by key negative emotions and the primary sources of worry. The data were processed to remove irrelevant or redundant content and then classified into general and detailed causes. The RAG-based model employed FAISS for similarity-based retrieval of the top three reference cases and used GPT-4o mini for response generation. The responses generated with and without RAG were evaluated using several metrics.

Results

RAG-based responses outperformed non-RAG responses across all evaluation metrics. Key findings indicate that RAG-based responses delivered more specific, empathetic, and actionable guidance, particularly when addressing complex emotional and situational concerns. The analysis revealed that family relationships, peer interactions, and academic stress are significant factors affecting adolescents’ worries, with depression and stress frequently co-occurring.

Conclusions

This study demonstrates the potential of RAG-based LLMs to address the diverse and culture-specific worries of Korean adolescents. By integrating external knowledge and offering personalized support, the proposed system provides a scalable approach to enhancing mental health interventions for adolescents. Future research should concentrate on expanding the dataset and improving multi-turn conversational capabilities to deliver even more comprehensive support.

I. Introduction

Adolescence is a period of rapid social, emotional, and neurological development, and the psychological challenges experienced during this time can significantly influence overall growth and life outcomes [1]. Korean adolescents face considerable psychological pressure due to a variety of factors, including intense competition for entrance examinations and family conflicts, which can lead to both academic and interpersonal difficulties [2]. Such pressures have the potential to generate complex psychological and emotional issues [3,4].
Various strategies have been implemented to address these challenges, and recent advances in artificial intelligence (AI) technology—especially large language models (LLMs)— are creating new opportunities for mental health research. LLMs, which learn from vast amounts of textual data to generate and understand human-like language, have shown considerable promise for mental health support [5,6]. These models achieve higher accuracy and efficiency than traditional approaches when analyzing unstructured text to identify mental health patterns. Numerous studies have used LLMs to assess and predict mental health conditions by analyzing text data [710].
Tao et al. [7] proposed a virtual interaction framework using ChatGPT to detect depression and anxiety, demonstrating the model’s potential with real-world conversation data. Vajre et al. [8] developed a mental health-specific language model, PsychBERT, to analyze social media data and successfully classify mental health behaviors. Xu et al. [9] found that the Mental-Alpaca and Mental-FLAN-T5 models outperformed the original GPT-4 on several mental health prediction tasks, while Danner et al. [10] showed that GPT-4-based diagnostic models significantly enhanced the efficiency and accuracy of depression diagnosis. These studies underscore the significant potential of LLM techniques for diagnosing mental health issues and generating appropriate responses.
These technological advances have generated interest in applying LLMs to a range of age groups, including adolescents and children. For example, Cho et al. [11] employed LLM-based interactive language therapy to counsel high-functioning adolescents with autism, demonstrating the potential for providing linguistic and emotional support through empathetic, adaptive dialogue. Lee and Lee [12] developed an AI-based counseling chatbot for elementary school students and confirmed its effectiveness in reducing anxiety levels. In that study, the chatbot—designed using a transformer model trained on elementary school counseling data—resulted in a significant decrease in student anxiety.
The studies mentioned above suggest that LLM-based technologies can offer practical support for the mental health of adolescents and children, enriching their emotional well-being. In particular, these technologies could be especially beneficial for Korean adolescents facing a range of psychological challenges, including academic and relationship issues. Consequently, it is necessary to develop a dataset that integrates adolescents’ worries with expert responses to systematically analyze the complex problems they face and to enhance the support provided. To address this gap, this study aims to construct a unique dataset comprising Korean adolescents’ concerns and expert responses and to develop a customized LLM-based answer generation model. In particular, we apply the retrieval-augmented generation (RAG) approach to design a model that harnesses reliable external knowledge via search augmentation technology and generates personalized answers tailored to the challenges experienced by Korean youth [13]. Our objective is to create an information-driven model that not only disseminates information but also thoroughly understands young people’s concerns and delivers practical, reliable responses.

II. Methods

The proposed system is organized into three primary processes: data collection, answer generation, and answer evaluation (Figure 1).

1. Collecting and Preprocessing Data

During the data collection phase, we crawled and cleaned data from the NAVER Knowledge iN platform, as depicted in part A of Figure 1. The Knowledge iN platform, which allows a wide range of users to post questions and answers, is very popular in Korea [14]. We collected question–answer pairs from the official profile of the Youth Cyber Counseling Center, managed by the Korea Youth Counseling and Welfare Institute, a quasi-governmental agency under the Ministry of Gender Equality and Family and an official NAVER partner. All publicly available responses from this verified profile, along with their corresponding questions, were included. Python-based Selenium was used to extract the content of the answers and the text of the corresponding questions [15]. The extracted data spans a period of 10 years, from 2014 to 2024, with each post containing a youth’s question and an expert’s answer.
During the crawling stage, entries that mentioned age or school grade indicative of adults or children were excluded to increase the likelihood that the questions were authored by adolescents. We also ensured that each entry contained both a question and an answer to remove cases with missing values.
The collected data were preprocessed by taking several steps to eliminate unnecessary content. First, we removed 2,598 cases in which the question contained 15 words or less, as such entries provided few qualifying examples for analysis. Second, we eliminated 1,995 cases where the question or answer was duplicated across different entries. Third, we discarded data that did not express negative sentiment by applying an automated, keyword-based classification using the emotion lexicons from Dheeraj and Ramakrishnudu [16], rather than manual annotation. Among the five original categories, “addiction” was excluded for cultural reasons, and only depression, anxiety, stress, and obsessive-compulsive disorder (OCD) were used for filtering. A detailed list of keywords is provided in Supplement A. Finally, we removed data that did not reveal adolescent distress. To filter out data lacking clear expressions of worry, we categorized the questions into general and detailed causes based on the study of Hellstrom et al. [17]. This classification was appropriate for our dataset, as the primary categories—such as academic stress, family conflict, and peer relationships—are also recognized as key mental health concerns among Korean adolescents in recent studies [4,18]. General causes include major categories of worry (e.g., love, friendship, health), while detailed causes enumerate specific concerns under each general category. A detailed list of keywords is provided in Supplement B. After screening, 705 questions that did not reveal a cause were removed. The final dataset consists of 3,874 questions.

2. Generating RAG-Based Responses

In the answer generation phase, the cleaned data was used to improve the LLM’s responses through the RAG method, as illustrated in part B of Figure 1. RAG is a technique that enables an LLM to search for external information to formulate answers, thereby preventing the generation of illusory or overly generic content. In this study, we leveraged this feature of RAG to improve answer quality by retrieving data that are well-aligned with each specific problem and then generating more reliable responses [13].
During answer generation, the “all-MiniLM-L12-v2” model from Sentence Transformers (using a 384-dimensional embedding) was employed to convert the collected data into vector form for storage [19]. When an answer was requested, the input question was encoded and the top-k most similar vectors were retrieved using FAISS with L2 distance, without the application of a fixed similarity threshold [20]. Subsequently, the LLM model was used to enhance the generated answer by referencing the cases with the highest similarity. In this study, the top three cases with the greatest similarity were presented to the GPT-4o mini model, which then generated an answer for the given question [21]. The GPT-4o mini generation parameters are detailed in Supplement C.

3. Evaluating Generated Responses

To evaluate the performance of the generated answers, we constructed an evaluation dataset as shown in part C of Figure 1. This dataset was assembled under identical conditions, except for the use of RAG. It comprises 3,874 final data points, evenly distributed across the four negative sentiment categories, totaling 781 points. Each data point includes a question and two sets of answers: one generated by the RAG model and one generated without RAG.
An automated evaluation was performed using the Gemini model to validate the generated answers [22]. Four evaluation metrics were selected—relevance, comprehensibility, empathy, and practicality—and specific prompts were organized for each metric. For instance, the Relevance metric assesses how closely the answer aligns with the question. Each metric was used to compare the two generated answers and select the superior one. Detailed definitions of each metric, along with supporting literature, are provided in Table 1, and the prompts are available in Supplement D [23,24]. The Gemini 1.5 Flash evaluation parameters are detailed in Supplement E.

III. Results

1. Data Characteristics

This study comprises 3,874 cases derived from youth Q&A data collected between 2014 and 2024, categorized by four major negative emotion keywords: depression, anxiety, stress, and OCD. The distribution of the cases by year and the percentage attributed to each emotion are presented in Table 2.
Figure 2 shows a heatmap that visualizes the frequency with which different negative emotions co-occur. Depression and stress frequently appeared together, with 615 instances, while depression and anxiety were paired 376 times, indicating a strong association between these emotions. Conversely, OCD was rarely mentioned alongside other major emotions. Overall, depression was the emotion most commonly seen in combination with other feelings, suggesting that it may serve as a central element in complex emotional experiences. In contrast, OCD tended to appear more independently. These findings indicate that some emotions frequently co-occur rather than appearing in isolation and that the combinations of emotions in the dataset are quite varied.
To analyze the main causes of distress, the study visualized keyword frequency and associations. Text normalization was applied to reduce redundant expressions such as “because of my weight” and “because of my height” to their essential elements, “weight” and “height,” respectively.
Figure 3 displays a word cloud that visually represents the detailed causes of adolescent distress. The size of each keyword reflects its frequency, highlighting the primary areas of worry among adolescents. Dominant keywords such as “friend,” “cram school,” “love,” and “test” suggest that stress related to academics, relationships, and friendships is common. In addition, family-related keywords like “mother,” “father,” and “parents” indicate that conflicts at home and issues with parental relationships are major stressors.
Figure 4 presents a network graph that illustrates the relationships between general cause and detailed cause in adolescents’ worries. The node colors represent the major categories of distress, and red edges and nodes emphasize the top-10 keyword pairs—those that co-occur most frequently in the data.
Table 3 lists the top-10 keyword pairs, organized by frequency. The most common pairs are “Parents - Friend” (348 times), “Father - Mother” (325 times), and “Mother - Friend” (308 times), suggesting that adolescents often discuss conflicts or problems with friends in the context of parental relationships, especially with mothers. Conversely, the data also indicate that parental advice or intervention can influence friendships. This pattern, characterized by concurrent references to parents and friends in distress narratives, suggests that adolescents view home and friendship matters as closely intertwined. Additionally, pairs such as “Love - Friend” (258 times), “Friend - Cram School” (258 times), and “Test - Friend” (195 times) reflect the complex interplay between academic pressures and friendship issues.

2. Evaluation Results and Case Analysis of Generated Responses

Tables 4 and 5 summarize the evaluation results comparing answers generated by the RAG and non-RAG approaches. Table 4 details the quantitative evaluation outcomes, indicating that RAG-based answers performed better across all metrics.
Table 5 provides a qualitative comparison of the answer quality produced by each method. The evaluation revealed that RAG-generated responses surpassed non-RAG answers on all metrics. For example, RAG-based answers addressed the user’s concerns with specificity and offered clear guidance for resolution. One response—“I lose confidence due to comparison with others in dance school…”—was highly rated because it pinpointed the core issue and suggested a concrete solution. In contrast, non-RAG responses tended to offer generic encouragement, such as “Everyone feels awkward at first,” and lacked personalized advice.
RAG-based answers also scored well on the empathy metric. A response containing the phrase “It’s not easy to adapt to a new environment” comforted the user by acknowledging their feelings in a natural, understanding manner. Non-RAG responses, while supportive, did not effectively integrate empathy with problem solving. RAG-based responses distinguished themselves by balancing empathetic understanding with practical solutions, which helped users feel both understood and supported.
The comprehensibility metric also favored RAG-based answers. These responses organized information logically and employed structured, step-by-step language (e.g., “first, then…”) that made it easier for users to follow the advice. In contrast, non-RAG responses typically presented disjointed sentence lists that lacked coherent flow.
Finally, the practicality of RAG-based answers was evident in their provision of specific, actionable instructions. For example, advice such as “Set a small goal to master one new move in every class, or ask a question at least once during class” offered concrete, practical steps for improvement. This approach helps users build confidence incrementally. In contrast, another RAG response—“Learning to dance and gaining confidence is a process that takes time. It’s important to stick with it and not judge your results based on one or two days of experience”—offered a more abstract encouragement without a concrete plan, making it less actionable.
In addition to the example presented in Table 5, a second case involving self-esteem and appearance-related concerns— common themes in our dataset—is provided in Supplement E. This additional example was evaluated using the same four metrics and further reinforces the consistent strengths of RAG-based responses across a range of topics.

IV. Discussion

This study analyzed Q&A data from the NAVER Knowledgeable Youth Cyber Counseling Center to examine adolescents’ major concerns, the interrelationships among these worries, and the implications for designing an effective, customized response model.

1. Key Contributions

The analysis revealed that adolescents’ worries are influenced by a range of factors, primarily family relationships, peer relationships, and academic stress, all of which serve as major sources of emotional strain. In particular, conflicts within the family, especially between parents, significantly shape adolescents’ emotional experiences, while issues in peer relationships—such as alienation, conflict, and bullying— undermine their psychological well-being. Academic stress is largely driven by the pressures of maintaining competitive grades and preparing for exams, pressures that many adolescents attempt to mitigate by sharing their experiences with friends and seeking emotional support. These findings suggest that youth response models must extend beyond addressing simple issues to recognizing and addressing complex problems in an integrated manner.
RAG-based responses outperformed non-RAG responses across all four evaluation metrics. They excelled on the Practicality metric by providing concrete, step-by-step solutions, and they achieved high scores on the Empathy metric by combining understanding with actionable advice. In contrast, non-RAG responses tended to be more generic and abstract. These results indicate that integrating search augmentation can significantly increase both the specificity and overall effectiveness of personalized answer generation, particularly in tackling the complex concerns faced by young people.

2. Limitations and Future Work

Although this study effectively leveraged youth Q&A data to visualize and analyze various distress factors and their associations, several limitations remain.
First, the reliance on keyword-based categorization presents challenges. The same keyword can have different meanings in various contexts, necessitating careful interpretation of the analysis. For example, the term “friend” might indicate conflict in one context while simply referring to a person in another. Furthermore, overlapping categorizations can lead to inflated or duplicated frequency counts when a single case is assigned to multiple categories.
Second, our data were sourced exclusively from the NAVER Knowledge iN platform rather than from multiple external services. This may introduce biases related to age, gender, and socioeconomic background that do not necessarily reflect the broader population of Korean adolescents.
Third, limitations exist in the application of LLM models. While this study utilized the GPT-4.0 model combined with RAG for answer generation, comparisons with open-source models such as LLaMA or with other models like Gemini were not conducted [22,25].
Fourth, the method of data partitioning presents another limitation. The dataset was divided into reference and test sets in an 8:2 ratio, which might affect the model’s generalizability when evaluated against external data.
This study confirmed the effectiveness of a customized answer generation model that incorporates RAG technology based on Korean adolescent Q&A data. As demonstrated by the case analysis in Table 5, RAG-based answers more accurately capture users’ specific concerns while providing both relevant information and actionable advice. These results underscore the importance of developing an answer model that can effectively address the diverse challenges encountered by young people in a digital environment [26].
Future research should focus on constructing a dataset that more deeply reflects the cultural context and social environment of Korean adolescents and on further improving the algorithm’s answer quality and intuitiveness by incorporating a wider range of user feedback. Additionally, it is important to design an answer model capable of supporting a richer problem-solving experience by enhancing its ability to handle multi-turn conversations and complex scenarios. Beyond merely dispensing information, a customized answer service that holistically considers each user’s unique background and challenges will be instrumental in addressing the multi-faceted problem-solving needs of adolescents [27].

Notes

Conflict of Interest

No potential conflict of interest relevant to this article was reported.

Acknowledgment

This work is an outcome of the 2022 “RWD/RWE Smart Data” Special Interest Group supported by the Korean Society of Medical Informatics.

Data Availability

The datasets used in this study are accessible at https://github.com/Mangcho/Korean-Adolescent-QA-Dataset.

Supplementary Materials

Supplementary materials can be found via https://doi.org/10.4258/hir.2025.31.2.136.

Figure 1
Workflow of the proposed counseling system process. RAG: retrieval-augmented generation.
hir-2025-31-2-136f1.jpg
Figure 2
Heatmap visualizing the co-occurrence frequency between negative emotions. OCD: obsessive-compulsive disorder.
hir-2025-31-2-136f2.jpg
Figure 3
Word cloud providing a visual representation of the detailed causes of adolescent distress.
hir-2025-31-2-136f3.jpg
Figure 4
Network graph visualizing the relationship between general causes and detailed causes in adolescents’ worries.
hir-2025-31-2-136f4.jpg
Table 1
Definitions of response evaluation metrics
Metric Description
Relevance [23] Assesses how comprehensively the response addresses the worries and issues raised in the user’s query, ensuring all key points are covered in detail.
Empathy [24] Evaluates whether the response follows a logical flow aligned with the user’s worries is easy to read, and presents key information in an organized and sequential manner.
Comprehensibility [24] Measures the balance between empathy and solution-oriented advice, ensuring the response connects emotional support with actionable guidance without excessive sentiment.
Practicality Determines whether the response provides concrete, step-by-step solutions rather than vague advice, focusing on realistic and actionable steps for problem resolution.
Table 2
Yearly distribution of negative emotional mentions and total case counts (2014–2024)
Year Distribution of emotion (%)
Anxiety Depression OCD Stress Total emotion mentions Total cases per year
2014 72 139 15 110 336 264
2015 95 181 22 116 414 335
2016 107 230 28 159 524 406
2017 103 216 17 129 465 361
2018 37 88 9 34 168 122
2019 121 252 38 127 538 381
2020 109 253 42 147 551 392
2021 99 261 51 133 544 403
2022 124 278 46 169 617 444
2023 114 256 40 177 587 434
2024 89 198 34 126 447 332
Total 1,070 2,352 342 1,427 5,191 3,874

OCD: obsessive-compulsive disorder.

Table 3
Top-10 keyword pairs in terms of co-occurrence frequency in adolescent worries
Rank Keyword pair Frequency (occurrences)
1 Parents - Friend 348
2 Father - Mother 325
3 Mother - Friend 308
4 Love - Friend 258
5 Friend - Cram School 258
6 Test - Friend 195
7 Parents - Mother 181
8 Family - Friend 172
9 Mother - Cram School 165
10 Friend - Friendship 147
Table 4
Summary statistics of evaluation metrics for generated responses
Generation approach Distributions of evaluation (%)
Relevance Empathy Comprehensibility Practicality
RAG 671 (85.9) 750 (96.0) 589 (75.4) 751 (96.2)
Non-RAG 110 (14.1) 31 (4.0) 192 (24.6) 30 (3.8)

RAG: retrieval-augmented generation.

Table 5
Superiority of RAG-based responses: a comparison across evaluation metrics
Question
I told my parents that I wanted to learn how to dance, and I joined a dance academy yesterday. As this is my first time, I am way behind everyone else at the academy, and I do not have any close friends. So, my self-esteem is low, and I feel like I went there simply because I wanted to learn, but I am not even doing well. So, I wonder if I wasted my money for nothing... . My parents made a difficult decision to support me in learning dance, so it was a difficult decision, and I even told them that I could not go back after going there for a day. So... What should I do? ... I have been thinking about it all day.
RAG-based response Non-RAG-based response Key strengths of RAG-based response
Relevance “After you joined the dance academy, your self-esteem has fallen, and you seem to be having difficulty comparing yourself to others.” “Deciding to learn how to dance is a great achievement in itself. It is normal to struggle and compare yourself to others at first.” The RAG response addresses overall worries in greater detail, while the non-RAG response focuses on general encouragement.
Empathy “It is normal to lose confidence because of comparison and feel lonely because of a lack of friends, but patience is important.” “Everyone starts as a beginner, and the difficulties you are currently facing, you can overcome them in time.” The RAG response shows empathy for specific emotions (e.g., loneliness), while the non-RAG response provides a broader reassurance.
Comprehensibility “First, remember that learning how to dance is not just about being good... . Second, attempt to make friends... . Third, set small, achievable goals.” “Keep trying and do not judge based on the performance of a day or two. Take it as an opportunity to connect with others.” The RAG response provides step-by-step guidance for clarity, while the non-RAG response lacks structure and details.
Practicality “Set a small goal, like nailing one new move per session or asking one question.” “If dancing does not feel right, reconsider. But first, attend another session and reflect on your feelings.” The RAG response provides specific, actionable steps, while the non-RAG response remains vague and suggests extreme choices.

RAG: retrieval-augmented generation.

The underlined parts show the strengths of the RAG-based response.

References

1. Uhlhaas PJ, Davey CG, Mehta UM, Shah J, Torous J, Allen NB, et al. Towards a youth mental health paradigm: a perspective and roadmap. Mol Psychiatry 2023;28(8):3171-81. https://doi.org/10.1038/s41380-023-02202-z
crossref pmid pmc
2. Kessler RC, Berglund P, Demler O, Jin R, Merikangas KR, Walters EE. Lifetime prevalence and age-of-onset distributions of DSM-IV disorders in the National Co-morbidity Survey Replication. Arch Gen Psychiatry 2005;62(6):593-602. https://doi.org/10.1001/archpsyc.62.6.593
crossref pmid
3. Kim SJ, Lee J. Introduction of child and adolescent mental health services in Korea and their role during the COVID-19 pandemic: focusing on the Ministry of Education policy. J Korean Acad Child Adolesc Psychiatry 2023;34(1):4-14. https://doi.org/10.5765/jkacap.220034
crossref pmid pmc
4. Roh S, Mun W, Kim G. Associations between physical activity, mental health, and suicidal behavior in Korean adolescents: based on data from 18th Korea youth risk behavior web-based survey (2022). Behav Sci (Basel) 2024;14(3):160. https://doi.org/10.3390/bs14030160
crossref pmid pmc
5. Guo Z, Lai A, Thygesen JH, Farrington J, Keen T, Li K. Large language models for mental health applications: systematic review. JMIR Ment Health 2024;11:e57400. https://doi.org/10.2196/57400
crossref pmid pmc
6. Chung NC, Dyer G, Brocki L. Challenges of large language models for mental health counseling [Internet]. Ithaca (NY): arXiv.org; 2023 [cited at 2025 Jan 2]. Available from: https://doi.org/10.48550/arXiv.2311.13857

7. Tao Y, Yang M, Shen H, Yang Z, Weng Z, Hu B. Classifying anxiety and depression through LLMs virtual interactions: a case study with ChatGPT. Proceedings of 2023 IEEE International Conference on Bioinformatics and Biomedicine (BIBM); 2023 Dec 5–8. Istanbul, Turkiye; p. 2259-64. https://doi.org/10.1109/BIBM58861.2023.10385305
crossref
8. Vajre V, Naylor M, Kamath U, Shehu A. PsychBERT: a mental health language model for social media mental health behavioral analysis. Proceedings of 2021 IEEE International Conference on Bioinformatics and Biomedicine (BIBM); 2021 Dec 9–12. Houston, TX, USA; p. 1077-82. https://doi.org/10.1109/BIBM52615.2021.9669469
crossref
9. Xu X, Yao B, Dong Y, Gabriel S, Yu H, Hendler J, et al. Mental-LLM: leveraging large language models for mental health prediction via online text data. Proc ACM Interact Mob Wearable Ubiquitous Technol 2024;8(1):31. https://doi.org/10.1145/3643540
crossref pmid pmc
10. Danner M, Hadzic B, Gerhardt S, Ludwig S, Uslu I, Shao P, et al. Advancing mental health diagnostics: GPT-based method for depression detection. Proceedings of 2023, 62nd Annual Conference of the Society of Instrument and Control Engineers (SICE); 2023 Sep 6–9. Tsu, Japan; p. 1290-6. https://doi.org/10.23919/SICE59929.2023.10354236
crossref
11. Cho Y, Kim S, Kim M, Kwon O, Lim D, Kwon RD, et al. Evaluating the efficacy of interactive language therapy based on LLM for high-functioning autistic adolescent psychological counseling [Internet]. Ithaca (NY): arXiv. org; 2023 [cited at 2025 Jan 2]. Available from: https://doi.org/10.48550/arXiv.2311.09243

12. Lee S, Lee J. Development of artificial intelligence-based counseling chatbot for elementary school students and verification of effectiveness. J Korean Assoc Inf Educ 2023;27(4):425-32. https://doi.org/10.14352/jkaie.2023.27.4.425
crossref
13. Lewis P, Perez E, Piktus A, Petroni F, Karpukhin V, Goyal N, et al. Retrieval-augmented generation for knowledge-intensive NLP tasks. Adv neural inf process syst 2020;33:9459-74.

14. Jung S, Park J, Ban H, Kim D. Unveiling transformation of school violence and its connection to domestic violence after COVID-19: a data mining analysis of Naver Knowledge-iN. Int J Contents. 2023 19(2): https://doi.org/10.5392/IJoC.2023.19.2.001
crossref
15. Selenium Foundation. Selenium [Internet]. Selenium Foundation; c2025 [cited at 2025 Jan 2]. Available from: https://www.selenium.dev/

16. Dheeraj K, Ramakrishnudu T. Negative emotions detection on online mental-health related patients texts using the deep learning with MHA-BCNN model. Expert Syst Appl 2021;182:115265. https://doi.org/10.1016/j.eswa.2021.115265
crossref
17. Hellstrom L, Sjoman M, Enskar K. Conceptualizing adolescents’ everyday stressors to underscore areas for support. Front Educ 2024;9:1370791. https://doi.org/10.3389/feduc.2024.1370791
crossref
18. Wang W, Bao H, Huang S, Dong L, Wei F. MiniLMv2: multi-head self-attention relation distillation for compressing pretrained transformers. Findings of the Association for Computational Linguistics: ACL-IJCNLP 2021. Stroudsburg (PA): Association for Computational Linguistics; 2021. p. 2140-51. https://doi.org/10.18653/v1/2021.findings-acl.188
crossref
19. Kim KM. What makes adolescents psychologically distressed?: life events as risk factors for depression and suicide. Eur Child Adolesc Psychiatry 2021;30(3):359-67. https://doi.org/10.1007/s00787-020-01520-9
crossref pmid
20. Douze M, Guzhva A, Deng C, Johnson J, Szilvasy G, Mazare PE, et al. The Faiss library [Internet]. Ithaca (NY): arXiv.org; 2024 [cited at 2025 Jan 2]. Available from: https://doi.org/10.48550/arXiv.2401.08281

21. OpenAI. GPT-4o mini: advancing cost-efficient intelligence [Internet]. San Francisco (CA): OpenAI; c2025 [cited at 2025 Jan 2]. Available from: https://openai.com/index/gpt-4o-mini-advancing-cost-efficient-intelligence/

22. Gemini Team Google. Georgiev P, Lei VI, Burnell R, Bai L, Gulati A, et al. Gemini 1.5: unlocking multimodal understanding across millions of tokens of context [Internet]. Ithaca (NY): arXiv.org; 2024 [cited at 2025 Jan 2]. Available from: https://doi.org/10.48550/arXiv.2403.05530

23. Liu Y, Iter D, Xu Y, Wang S, Xu R, Zhu C. G-Eval: NLG evaluation using GPT-4 with better human alignment. Proceedings of the 2023 Conference on Empirical Methods in Natural Language Processing; 2023 Dec 6–10. Singapore; p. 2511-22. https://doi.org/10.18653/v1/2023.emnlp-main.153
crossref
24. Abd-Alrazaq A, Safi Z, Alajlani M, Warren J, Househ M, Denecke K. Technical metrics used to evaluate health care chatbots: scoping review. J Med Internet Res 2020;22(6):e18301. https://doi.org/10.2196/18301
crossref pmid pmc
25. Grattafiori A, Dubey A, Jauhri A, Pandey A, Kadian A, Al-Dahle A, et al. The Llama 3 Herd of models [Internet]. Ithaca (NY): arXiv.org; 2024 [cited at 2025 Jan 2]. Available from: https://doi.org/10.48550/arXiv.2407.21783

26. Han SY, Yoo DJ. Effect of adolescents’ cognitive and emotional empathy and altruistic behavior on psychological well-being. Korean J Child Stud 2024;45(1):1-3. https://doi.org/10.5723/kjcs.2024.45.1.1
crossref
27. Jo H, Kim N, Yoon E. Introducing Korean adolescent counselling systems: implications for future directions. Couns Psychother Res 2022;22(1):74-82. https://doi.org/10.1002/capr.12486
crossref
TOOLS
Share :
Facebook Twitter Linked In Google+ Line it
METRICS Graph View
  • 0 Crossref
  •     Scopus
  • 306 View
  • 29 Download
Related articles in Healthc Inform Res


ABOUT
ARTICLE CATEGORY

Browse all articles >

BROWSE ARTICLES
FOR CONTRIBUTORS
Editorial Office
1618 Kyungheegung Achim Bldg 3, 34, Sajik-ro 8-gil, Jongno-gu, Seoul 03174, Korea
Tel: +82-2-733-7637, +82-2-734-7637    E-mail: hir@kosmi.org                

Copyright © 2025 by Korean Society of Medical Informatics.

Developed in M2community

Close layer
prev next