Posts

Showing posts with the label XAI

ROUGE Metric

Image
The Recall-Oriented Understudy for Gisting Evaluation (ROUGE)(Lin et al., 2004) is a metric, commonly used to measure the accuracy of text summarization models. Summarization is one of the most difficult tasks to measure because there is no straightforward way to do it. The ROUGE score is one of the most used metrics for summarization. This metric compares a generated summary to a set of human-created reference summaries. Using ROUGE, recall is calculated based on how much of the reference summary is represented by the generated summary. ROUGE refers to a set of metrics. Those most likely to be used are ROUGE-N, ROUGE-L, and ROUGE-LSUM. The ROUGE-N metric measures how many ‘n-grams’ match between our model-generated text and the reference text. In simple terms, n-grams are groups of words or tokens. There is only one word in a unigram (1-gram) and two consecutive words in a bigram(2-gram). ROUGE-N uses n-grams to represent the gram. In ROUGE-1, we are measuring the match-rate of unigra...

Explainable AI (XAI) in Healthcare

Image
  Explainable AI (XAI) in Healthcare Artificial Intelligence has been an uprising technology since a decade ago and is still an emerging technology providing various levels of enhancements. But sometimes it is better to interpret the results of the solution in such a way that a user can understand it. Which is referred to as explainable or interpretable Artificial Intelligence. AI is widely used in medical and healthcare fields to help clinicians to make decisions, increase efficiency and reduce the mortality rate. However, the end-user cannot see the logic behind these outputs. Due to their black-box character, these models are difficult for physicians to comprehend, and as a result, they cannot be used in clinical practice. There comes the scope of explainable Artificial intelligence. The act of reliability on artificial intelligence is the next question. As said with a black box nature, AI systems are not widely accepted for many medicinal decision-making scenarios, especially d...

AutoML

Image
                      AutoML Automated machine learning(AutoML) is a process to fully automates the end-to-end of the machine learning process and makes it more usable by intended users. AutoML is also related to AI and the introduction of AutoML in Robotics is a boom in technology. AutoML tools will outperform the manual machine learning (ML) modelling, with high robustness then only it has relevance. How to provide robustness while dealing with real-world datasets, with considerable time constraints is a relevant question in this area. TPOT, Auto-sklearn, Auto-keras and H2O-Automl are some of the open-source AutoML tools and Google cloud Automl and Microsoft AzureML are commercial AutoML Tools. To compare the robustness of the open-source AutoML tools many researchers take different datasets from openML and conduct studies based on different criteria. They use quantitative measurement based on time to understand the robustness of ...