github.com/lauslim12/expert-systems@v0.0.0-20221115131159-018513aad29c/web/public/locales/en/translation.json (about) 1 { 2 "heading": { 3 "title": "Expert System — Diagnose Tuberculosis Disease!", 4 "subtitle": "This is an application that is used in order to diagnose Tuberculosis Disease (focuses on TB for lungs). We have implemented both Forward Chaining and Certainty Factor algorithms. Please answer the questions below!" 5 }, 6 "general": { 7 "darken": "Darken", 8 "lighten": "Lighten", 9 "analyze": "Analyze answers", 10 "results": "Results", 11 "notComplete": "Please fill all information before continuing!" 12 }, 13 "tooltips": { 14 "color": "Change color mode", 15 "github": "Access GitHub", 16 "about": "About the system", 17 "terms": "Terms and conditions", 18 "lang": "Change language" 19 }, 20 "notFound": { 21 "title": "Not Found!", 22 "message": "The page you are looking for may or may not have existed in the past, but it certainly doesn't anymore.", 23 "back": "Back to Home" 24 }, 25 "tbSymptoms": { 26 "symptomOne": "I have a fever for two weeks or more.", 27 "symptomTwo": "I cough blood", 28 "symptomThree": "My sputum is mixed with blood", 29 "symptomFour": "I sweat at night", 30 "symptomFive": "I suffer from chest pain constantly", 31 "symptomSix": "I suffer from pain when breathing (pleuritic pain)", 32 "symptomSeven": "I feel a shortness of breath", 33 "symptomEight": "I have experienced weight loss", 34 "symptomNine": "My body feels like always tired", 35 "symptomTen": "Around my armpits and neck, lumps appeared", 36 "symptomEleven": "I cough continously from two weeks to four weeks", 37 "symptomTwelve": "My lymph nodes are swollen", 38 "symptomThirteen": "I experienced a loss of apetite" 39 }, 40 "menu": { 41 "doNotFeelSo": "I do not/never feel so", 42 "sometimesFeelSo": "I sometimes feel so", 43 "oftenFeelSo": "I often feel so", 44 "stronglyFeelSo": "I strongly feel so" 45 }, 46 "disclaimer": { 47 "title": "Disclaimer & Terms", 48 "alert": "Please read the terms and conditions before using this application!", 49 "initial": "Even though this application is made based on available data and the opinion of the pertaining experts, this application is still not a fully correct way to diagnose yourself with. You can use this application as a first-aid kind of situation if you need to get to know about your condition as fast as possible. This application is made for research and educational purposes only.", 50 "privacy": "In this website, we use cookies in order to store your color mode preferences. We do not use your data for anything. As for licenses, all of the usages are cited properly, either in this app or in the repository.", 51 "warning": "This application IS NOT to be construed as a complete medical advice. Consult a medical expert in your area if you need to diagnose yourself in a more detailed way that is more catered to your needs. Use this tool with responsibility. If you need a specialized medical advice for your condition, DO NOT USE THIS APPLICATION.", 52 "license": "This software is provided \"as is\", without warranty of any kind, express or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose and noninfringement. In no event shall the authors or copyright holders be liable for any claim, damages or other liability, whether in an action of contract, tort or otherwise, arising from, out of or in connection with the software or the use or other dealings in the software.", 53 "agreement": "Please check below boxes to continue with this application.", 54 "understand": "I understand the terms written above.", 55 "responsibility": "All of the usage is my own responsibility.", 56 "close": "I understand." 57 }, 58 "about": { 59 "title": "About", 60 "alert": "About the app—in non technical terms", 61 "purpose": "Purpose", 62 "content": "This application is developed in order to diagnose people who may be possibly be infected with TB. Using a technical concept called 'Expert System', it is possible to diagnose those people based on a number of quantitative symptoms. These symptoms will be processed by algorithms in order to produce a predictive analysis and a verdict whether that someone is infected with TB or not. The research's algorithms used in this research are Forward Chaining and Certainty Factor. All of the concepts are explained in this modal.", 63 "dataProcessing": "Data Processing", 64 "dataProcessingExplanation": "Before proceeding with the calculations, it is necessary to perform data processing first, so we can know how exactly the symptoms would be weighed quantitatively. We use a dataset called 'TB Symptoms' from Kaggle. We processed the data further by calculating the average number of occurences of each symptom that is available. Logically, we can use each of the symptom's average number in order to make that as a 'quantitative weight' to be used in further calculations. Furthermore, we also calculated the average of each patient's number of symptoms in order to know the average number of symptoms that a normal person usually have when they are infected with TB.", 65 "algorithmOne": "Forward Chaining", 66 "algorithmOneExplanation": "Forward Chaining is an algorithm in which inference rules are applied to existing data to extract additional information until a goal is reached. Basically, Forward Chaining can be fulfilled with the help of AND, OR, NOR, and many other boolean math expressions. The process uses a top-down approach, starts from an initial state and uses facts to make a conclusion, and is usually employed in Expert Systems or any other production rule systems. In this application, the average number of symptoms that are usually had by people who had TB will be used as the constant. If a number of symptoms exceeds that constant, then it is probably TB.", 67 "algorithmTwo": "Certainty Factor", 68 "algorithmTwoExplanation": "Certainty Factor is an algorithm that is an alternative of Bayesian Reasoning when reliable statistical information is not available or the independence of evidence cannot be assumed - and introduces a certainty factors calculus based on the human expert heuristics. The weights described above are used as the base calculation weights for this algorithm calculation. Certainty Factors are usually divided into two: a user's certainty level, and an expert's certainty level. Both of them are used in this application in order to provide a through calculation.", 69 "process": "Application Process", 70 "inferenceProcess": "Basically, you submit your symptoms → this application will try to make a reasoning and will try to infer about your condition → you receive your inference results → you're done and free to consult about the results to a medical expert. If you wish to take a look deeper down the calculations, the source code is always open.", 71 "references": "Bibliography", 72 "referencesAndSource": "All references, acknowledgements, and more through documentation could be seen in this application's GitHub repository. Credits goes to all of them for helping to build this research project and providing a research to base this research on!", 73 "close": "OK!" 74 }, 75 "inference": { 76 "title": "Inference Result", 77 "alert": "Your results are as follows.", 78 "verdict": "Verdict", 79 "verdictTB": "From our analysis and our system, you may have been infected by TB.", 80 "verdictNoTB": "From our analysis and our system, you have not been infected by TB.", 81 "verdictCalculation": "The calculation was done by using the Forward Chaining Algorithm and provides above result.", 82 "probability": "Probability", 83 "probabilityResult": "The human-readable probability of you being infected with TB stands at {{probability}}%.", 84 "probabilityCalculation": "The calculation was done by using the Certainty Factor Algorithm and provides above result.", 85 "suggestion": "Suggestion", 86 "suggestionOkay": "Judging from your probability rate, you are not at risk of getting TB. However, it's always nice to go to have a medical check up with a doctor or any authorized medical personnel. Stay safe and healthy!", 87 "suggestionVisit": "Judging from your probability rate, you are at a mild risk of getting TB. It is recommended for you to go and have a medical check up with a doctor as soon as possible. Hopefully, you are not at risk. Stay safe and healthy!", 88 "suggestionDangerous": "From your probability rate, you have a high chance of having TB right now. It is absolutely recommended for you to go to a hospital and have a medical check up with a doctor right now. Please stay safe and healthy!", 89 "information": "Information", 90 "prevention": "Prevention", 91 "treatment": "Treatment", 92 "sources": "Sources", 93 "sourcesBeginning": "The sources of the data regarding of the disease are taken from the following sources:", 94 "json": "JSON", 95 "jsonBeginning": "Raw data for those interested.", 96 "showCode": "Show raw data", 97 "hideCode": "Hide raw data", 98 "close": "Close" 99 }, 100 "footer": "This application is the result of the work by the creators." 101 }