Acta Scientific Computer Sciences

Research Article Volume 3 Issue 5

Artificial Intelligence Augmented Counseling - A Model

Isac Artzi*

Grand Canyon University, Arizona, USA

*Corresponding Author: Isac Artzi, Grand Canyon University, Arizona, USA.

Received: March 22, 2021; Published: April 16, 2021

Abstract

  Sentiment analysis of texts produced by patients undergoing mental health counseling can be used in the process of diagnosing a variety of conditions. An artificial intelligence driven approach to assisting mental health counselors in the process if diagnosing conditions, SenSym™, based on DSM-5 guidelines, translates sentiments into symptoms. The SenSym™ model replaces initial in-person meetings between patients and counselors, with the analysis of text items created by patients. By extracting patients’ sentiments from text, the system prepares an initial evaluation, ready to be audited by a clinician. SenSym™ is scalable and can potentially reduce clinicians’ case load considerably, by automatically analyzing conditions of multiple simultaneous patients.

Keywords: Natural Language Processing; Artificial Intelligence; Sentiment Analysis; Time Series Analysis; Association Rules; DSM-5; Cosine Similarity

Introduction

  Advances in natural language processing (NLP) have reached the point at which text-based conversations can be conducted between a software application and a human, and a computer program can extract sentiments expressed in the conversation. Such sentiment analysis tasks are discussed by Elik Hari Muktafin, Pramono, and Kusrini [1]. While there is still a lot of work needed to fully simulate human-to-human conversations, there have been several successes in some areas. Most notable are situations when the topic is very well defined and constrained, and the expectation is limited to the exchange of useful and relevant information. These include customer service chatbots in the retail industry [2], higher education [3] and initial forays into healthcare [4].

  The model proposed here, uses artificial intelligence (AI) and sentiment analysis in assisting human counselors in the process of diagnosis of a variety of disorders. Despite current and expected advances in AI and NLP, a psychological barrier must be overcome before fully entrusting human patients solely in the care of software. However, given that drivers and passengers are already trusting AI with their transportation needs (ground and air), AI-based counseling will eventually earn public trust as well.

  Not all those seeking professional counseling have access to one, and if they do, there are additional factors that impact access to needed care: transportation, geographical location, cost of lengthy meeting schedules, time availability, and other. The model proposed here attempts to mitigate some of these obstacles and assist patients while improving diagnosis efficiency.

The sentiment to symptom mapper (SenSym™) model

  A key element in SenSym™ (Figure 1) is that it replaces the initial set of meetings between patient and counselor, with a set of journal entries written by the patient. Rather than scheduling (and paying) for in-person consultations, a software application analyses the journal entries and extracts sentiments about certain areas of interest such as social norms, personal character traits, physical appearance, finances, self-esteem, and so on. Over a predetermined period, the patient writes a journal, using a web-based writing environment, which stores the entries on a HIPAA-compliant, secure cloud platform. Journal entries do not need to be made at a particular frequency or time of day. Every journal entry is written in free form. The patient can choose to write about the events of the day, an event from the past, random thoughts, a poem, bullet points of ideas, or any other form of writing the patient chooses for a given entry. Each journal entry is added to the corpus of documents for that patient and is immediately passed on to the sentiment analyzer. Currently the only supported language is English.

  The system produces obvious and some less obvious descriptive statistics, like words frequency, part-speech-tagging, and other proprietary metrics used by SenSym™ to explore the raw data (patients journal entries). The clinician can configure several system settings related to the sensitivity of sentiment extractions, size and number of documents that can trigger the production of interim reports, and a variety of metrics associated with DSM-5 compliance [5].

  Once sentiments are extracted from the patient’s journal, a proprietary algorithm maps the sentiments onto a set of predefined associations with known conditions, stored in a proprietary repository, compliant with DSM-5. The sentiments extracted are used to generate an initial, tentative evaluation report on the patient’s conditions. This report serves two purposes:

  • Generate an alert if obvious symptoms are detected (e.g., imminent self-harm).
  • Used as part of a system audit, necessary to continuously improve the algorithms.

  The result of the comparison between predefined symptoms-diagnosis associations and detected symptoms is used by another proprietary algorithm to generate a more refined patient evaluation report. This concludes phase 1 of SenSym™, which produces an artificial intelligence driven, automated diagnosis.

  SenSym™ is not presuming to replace a human clinician but assist the clinician by simplifying the diagnosis tasks. Since all AI-driven evaluations are for internal use only (clinicians, software developers), the patient is presented with an official evaluation prepared and certified by a licensed professional. The clinician reserves the right to corroborate SenSym™’s findings, dispute them, or entirely overwrite them. This decision, stemming from human intelligence is necessary feedback to the artificial intelligence modules. A proprietary reinforcement learning algorithm is employed to improve the AI, using feedback from the human clinician.

  The SenSym™ system consists of multiple modules, each based on a combination of proprietary algorithms. The central idea in several algorithms is presented here, omitting intellectual property protected elements.

Algorithm 1 - Text analyzer

  Text analysis is performed at the journal entry level, as well as the corpus level, the collection of journal entries created by one patient. The algorithm (Algorithm 1) is implemented continuously, as new journal entries are created. Thus reports, analysis, and plots can be generated over time to enable detection of trends, using time series analysis tools. The use of relevant time-series analysis and associated methods, is surveyed by Kaushik., et al. [6].

Algorithm 1: Text analyzer.

Algorithm 2 - Sentiment detection

  Sentiment detection is using a word frequency approach, coupled with syntax analysis, to extract sentiments. Parts of speech are identified in each sentence and paragraph and their positions and frequency are converted to vectors (Algorithm 2). The sentiment tags are also converted to vectors (of similar dimension) using a proprietary approach. The two sets of vectors are then matched, using cosine similarity. The method and reasoning for its use, is corroborated by Wijewickrema, Petras, and Dias [7].

Algorithm 2: Sentiment detection.

Algorithm 3 - Symptoms and diagnosis mapping

  The translation of sentiments into symptoms and consequently into a diagnosis, is the essence of the clinician-patient interaction. At the core of this approach, there is framework of association rules and an implementation of the apriori algorithm (Algorithm 3), as argued in a model proposed by Kim and Chung [8]. In SenSym™, the traditional format of an association rule: if conditions then outcome is replaced with: conditions contributes to outcome.

  Thus, at the core of the module that detects symptoms from a given set of sentiments, there is a method that implements the apriori algorithm, then choose the rules with support and confidence level above a predetermined threshold.

Algorithm 3: Symptoms and diagnosis mapping.

Algorithm 4 - Diagnosis

  SenSym™ empowers clinicians by assisting in the monitoring of multiple patients simultaneously. The AI-based diagnosis framework attempts to generate information and evaluation reports, similar in nature to what the clinician would have collected by individually meeting and conversing with each patient (Algorithm 4). The detected symptoms are then fed into another module, which generates diagnosis according to DSM-5 guidelines, as outlined, for example, in Hong and Tan [9].

Upon computing the AI-driven diagnosis, SenSym™ generates a final evaluation report, which is ready to be reviewed and analyzed by a human clinician.

Algorithm 4: Diagnosis.

Implementation and reports

  SenSym™ is being built using a variety of open-source development tools, combined with implementation of proprietary algorithms. The Python-based Natural Language Toolkit (NLTK) is used to build sentiment classifiers. Training, visualizations, and transformer-based pipelines are implemented in spaCy. A similar use of spaCy is described by Shelar, Kaur, Heda, and Agrawal [10]. Currently in a prototyping stage, all user-facing web-based components are developed in Python, using the Django framework. The journal entries are stored as collections of documents in a MongoDB database.

  A clinician-configurable system can generate reports at a variety of stages and formats as desired by a particular practice. They include patient-oriented reports, like tentative diagnostic reports, results of statistical analysis of the journal entries, as well as system functionality and performance. The reports include quantitative data, analytic data, and visualizations in the form of graphic plots. Reports can be viewed on demand by the clinician, but are also automatically generated, to support the monitoring of large numbers of patients simultaneously.

Conclusion

  SenSym™ a model for augmenting mental health clinicians’ ability to diagnose patients’ conditions, was described. The instantly recognizable benefit of SenSym™ is that multiple patients can be monitored and (tentatively) diagnosed and tracked simultaneously. In fact, the scalability of the system is capped only by the availability of computing resources. Since the clinician can monitor many patients simultaneously, several configurable monitoring metrics, and is subscribed to the stream of journal entries, continuous autonomous assessment can follow its course if desired. Conversely, due to the ability to generate interim reports and alerts, the clinician can intervene anytime and take charge of the diagnostic process. SenSym™ © 2021 Isac Artzi, developed by Isac Artzi, is currently in the prototype and proof of concept phase.

Bibliography

  1. Muktafin E., et al. “Sentiments analysis of customer satisfaction in public services using K-nearest neighbors algorithm and natural language processing approach”. Telkomnika 1(2021): 146-154.
  2. Nichifor E., et al. “Artificial Intelligence in Electronic Commerce: Basic Chatbots and Consumer Journey”. Amfiteatru Economic56 (2021): 87-101.
  3. Mckie IAS and Narayan B. “Enhancing the Academic Library Experience with Chatbots: An Exploration of Research and Implications for Practice”. Journal of the Australian Library and Information Association3 (2019): 268-277.
  4. Abd-alrazaq A A., et al. “An overview of the features of chatbots in mental health: A scoping review”. International Journal of Medical Informatics 132 (2019).
  5. American Psychiatric Association. Diagnostic and statistical manual of mental disorders (5th ed.). Arlington, VA: Author (2013).
  6. Kaushik S., et al. “AI in Healthcare: Time-Series Forecasting Using Statistical, Neural, and Ensemble Architectures”. Frontiers in Big Data 3 (2020).
  7. Wijewickrema M., et al. “Selecting a text similarity measure for a content-based recommender system: A comparison in two corpora”. Electronic Library3 (2019): 506-527.
  8. Kim JC and Chung, K. “Associative Feature Information Extraction Using Text Mining from Health Big Data”. Wireless Personal Communications2 (2019): 691-707.
  9. Hong R Y and Tan Y L. “DSM-5 personality traits and cognitive risks for depression, anxiety, and obsessive-compulsive symptoms”. Personality and Individual Differences 169 (2021).
  10. Shelar H., et al. “Named Entity Recognition Approaches and Their Comparison for Custom NER Model”. Science and Technology Libraries3 (2020): 324-337.

Citation

Citation: Isac Artzi. “Artificial Intelligence Augmented Counseling - A Model". Acta Scientific Computer Sciences 3.5 (2021): 08-12.

Copyright

Copyright: © 2021 Isac Artzi. This is an open-access article distributed under the terms of the Creative Commons Attribution License, which permits unrestricted use, distribution, and reproduction in any medium, provided the original author and source are credited.




Metrics

Acceptance rate35%
Acceptance to publication20-30 days

Indexed In




News and Events


  • Certification for Review
    Acta Scientific certifies the Editors/reviewers for their review done towards the assigned articles of the respective journals.
  • Submission Timeline for Upcoming Issue
    The last date for submission of articles for regular Issues is July 10, 2024.
  • Publication Certificate
    Authors will be issued a "Publication Certificate" as a mark of appreciation for publishing their work.
  • Best Article of the Issue
    The Editors will elect one Best Article after each issue release. The authors of this article will be provided with a certificate of "Best Article of the Issue"
  • Welcoming Article Submission
    Acta Scientific delightfully welcomes active researchers for submission of articles towards the upcoming issue of respective journals.

Contact US