-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.yaml
1064 lines (1019 loc) · 35.6 KB
/
config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Database Configuration
database:
mysql:
driverName:
host:
port:
user:
password:
schema:
database:
log:
filename:
log_level:
max_size:
max_backups:
max_age:
compress:
encoding:
nargo:
version: 0.7.1
# Model List Configuration
module:
- name: XGBoost
description: XGBoost The idea of combining multiple weak learners into a strong classifier improves the model's predictive ability
- name: Decision tree
description: The main advantage of decision trees is that they are easy to understand and interpret, and can handle continuous and discrete data, missing values, and other issues. However, due to the susceptibility of decision trees to overfitting and underfitting issues, attention should be paid to controlling the complexity and pruning techniques of the tree when using it.
- name: K-Means
description: K-means is a commonly used unsupervised learning algorithm used to partition a set of data into K different clusters. It determines the cluster to which each sample point belongs by minimizing the Euclidean distance between the sample point and the center point of the cluster to which it belongs.
ipfs:
url:
auth:
contract:
contract_function: verify
Decision_tree+Acute_Inflammations:
address:
Decision_tree+Breast_Cancer:
address:
Decision_tree+Chronic_Kidney_Disease:
address:
Decision_tree+Heart_Disease:
address:
Decision_tree+Heart_Failure_Clinical_Records:
address:
Decision_tree+Lymphography:
address:
Decision_tree+Parkinsons:
address:
K_Means+Acute_Inflammations:
address:
K_Means+Breast_Cancer:
address:
K_Means+Chronic_Kidney_Disease:
address:
K_Means+Heart_Disease:
address:
K_Means+Heart_Failure_Clinical_Records:
address:
K_Means+Lymphography:
address:
K_Means+Parkinsons:
address:
XGBoost+Acute_Inflammations:
address:
XGBoost+Breast_Cancer:
address:
XGBoost+Chronic_Kidney_Disease:
address:
XGBoost+Heart_Disease:
address:
XGBoost+Heart_Failure_Clinical_Records:
address:
XGBoost+Lymphography:
address:
XGBoost+Parkinsons:
address:
# Disease category configuration
disease:
Acute Inflammations:
description: "Acute inflammation is a vital defense mechanism of the body in response to injury or infection. It is characterized by a series of complex biological processes that aim to eliminate harmful stimuli and initiate the healing process. When tissue is damaged, immune cells and chemical mediators are swiftly mobilized to the affected area.
The hallmark signs of acute inflammation include redness (rubor), heat (calor), swelling (tumor), pain (dolor), and loss of function. These symptoms are a result of increased blood flow, enhanced vascular permeability, and the recruitment of white blood cells to the site of inflammation. The purpose of these responses is to deliver important immune cells, such as neutrophils and macrophages, to the injured area to neutralize invading pathogens and clear away debris.
During acute inflammation, pro-inflammatory mediators, such as cytokines and chemokines, are released to orchestrate the immune response. These molecules attract immune cells to the site of injury and activate them to perform their protective functions. Inflammation is an intricate process that involves a delicate balance between initiating the immune response and preventing excessive tissue damage.
While acute inflammation is essential for tissue repair and pathogen clearance, uncontrolled or prolonged inflammation can lead to tissue destruction and chronic diseases. Therefore, it is crucial to promptly identify the underlying cause of inflammation and provide appropriate medical intervention to manage the inflammatory response effectively.
In conclusion, acute inflammation serves as a critical defense mechanism that mobilizes the body's immune system to combat injury and infection. Understanding the complex mechanisms involved in acute inflammation is crucial for developing effective treatments and interventions to optimize the healing process and restore tissue function."
inputs:
- name: Temperature
description: Temperature of patient { 35C-42C }
index: 0
regular: ^(3[4-9]|[4-9][0-9]|46(\.[0-5])?)$
warn: Please enter a number between 34 and 46.5
input method: input
select:
- celsius: 0
- name: Occurrence of nausea
description: Occurrence of nausea { yes, no }
index: 1
input method: select
select:
- yes: 1
- no: 0
- name: Lumbar pain
description: Lumbar pain { yes, no }
index: 2
input method: select
select:
- yes: 1
- no: 0
- name: Urine pushing
description: Urine pushing (continuous need for urination) { yes, no }
index: 3
input method: select
select:
- yes: 1
- no: 0
- name: Micturition pains
description: Micturition pains { yes, no }
index: 4
input method: select
select:
- yes: 1
- no: 0
- name: Burning of urethra, itch, swelling of urethra outlet
description: Burning of urethra, itch, swelling of urethra outlet { yes, no }
index: 5
input method: select
select:
- yes: 1
- no: 0
output:
description:
result:
- 0: Normal
- 1: Inflammation of urinary bladder
- 2: Nephritis of renal pelvis origin
- 3: Inflammation of urinary bladder and Nephritis of renal pelvis origin
Breast Cancer:
description: "Breast cancer is a type of cancer that begins in the cells of the breast. It occurs when abnormal cells grow out of control and form a tumor. Breast cancer is the most common cancer among women worldwide, but it can also occur in men.
There are several types of breast cancer, including ductal carcinoma in situ (DCIS), invasive ductal carcinoma (IDC), and invasive lobular carcinoma (ILC). DCIS is a non-invasive form of breast cancer that originates in the milk ducts and is confined to the inside of the ducts. On the other hand, IDC and ILC are invasive forms of breast cancer that have spread outside of the milk ducts or lobules and into surrounding breast tissue.
The risk factors for breast cancer include age, gender, family history, genetic mutations, reproductive factors, obesity, and exposure to certain chemicals and radiation. Symptoms of breast cancer may include a lump or thickening in the breast tissue, changes in breast size or shape, nipple discharge, breast pain, or skin dimpling.
Diagnosis of breast cancer typically involves a combination of imaging tests, such as mammography and ultrasound, and a biopsy to confirm the presence of cancerous cells. Treatment options for breast cancer depend on the type and stage of cancer, as well as the patient's overall health and preferences. Treatment may include surgery, radiation therapy, chemotherapy, hormone therapy, or targeted therapy.
Breast cancer can be a devastating diagnosis, but early detection and effective treatment can lead to excellent outcomes. Regular breast self-exams, clinical breast exams, and mammograms are recommended for women at average risk for developing breast cancer. For women at high risk, additional screening and preventive measures may be recommended."
inputs:
- name: Age
description:
index: 0
input method: select
select:
- 10-19: 1
- 20-29: 2
- 30-39: 3
- 40-49: 4
- 50-59: 5
- 60-69: 6
- 70-79: 7
- 80-89: 8
- 90-99: 9
- name: Menopause
description:
index: 1
input method: select
select:
- lt40: 0
- ge40: 1
- premeno: 2
- name: Tumor size
description:
index: 2
input method: select
select:
- 0-4: 0
- 5-9: 1
- 10-14: 2
- 15-19: 3
- 20-24: 4
- 25-29: 5
- 30-34: 6
- 35-39: 7
- 40-44: 8
- 45-49: 9
- 50-54: 10
- 55-59: 11
- name: Inv nodes
description:
index: 3
input method: select
select:
- 0-2: 0
- 3-5: 1
- 6-8: 2
- 9-11: 3
- 12-14: 4
- 15-17: 5
- 18-20: 6
- 21-23: 7
- 24-26: 8
- 27-29: 9
- 30-32: 10
- 33-35: 11
- 36-39: 12
- name: Node caps
description:
index: 4
input method: select
select:
- yes: 0
- no: 1
- name: Deg-malig
description:
index: 5
input method: select
select:
- 1: 0
- 2: 1
- 3: 2
- name: Breast
description:
index: 6
input method: select
select:
- left: 0
- right: 1
- name: Breast quad
description:
index: 7
input method: select
select:
- left-up: 0
- left-low: 1
- right-up: 2
- right-low: 3
- center: 4
- name: Irradiat
description:
index: 8
input method: select
select:
- yes: 0
- no: 1
output:
description: Class
result:
- 0: No recurrence events
- 1: Recurrence events
Chronic Kidney Disease:
description: "Chronic kidney disease (CKD) is a progressive condition in which the kidneys gradually lose function over time. It is a serious and common health problem that can lead to end-stage renal disease (ESRD) if left untreated.
The most common causes of CKD include diabetes, high blood pressure, glomerulonephritis, interstitial nephritis, polycystic kidney disease, and urinary tract obstruction. CKD progresses slowly and often does not produce symptoms until it reaches an advanced stage. Symptoms may include fatigue, nausea, vomiting, loss of appetite, muscle cramps, and swelling of the legs and feet.
Diagnosis of CKD typically involves blood and urine tests to measure kidney function and identify any abnormalities. Treatment for CKD focuses on slowing or stopping the progression of the disease. This may involve lifestyle changes such as reducing salt intake, quitting smoking, and exercising regularly, as well as medication to control blood pressure and blood sugar levels and prevent complications.
In cases of advanced CKD, dialysis or kidney transplantation may be necessary. Dialysis involves using a machine to remove waste products and excess fluids from the blood, while kidney transplantation involves surgically placing a healthy kidney from a donor into the patient's body.
Preventing CKD involves managing risk factors such as diabetes and high blood pressure, maintaining a healthy weight, and avoiding exposure to environmental toxins. Regular check-ups with a healthcare provider can help detect and treat any kidney problems early on.
In conclusion, chronic kidney disease is a serious condition that requires close monitoring and management to prevent complications and preserve kidney function. Early diagnosis and intervention are essential in improving outcomes for people with CKD."
inputs:
- name: Age
description: age in years
index: 0
regular:
warn:
input method: input
select:
- years old: 0
- name: Blood pressure
description: Blood Pressure(numerical) bp in mm/Hg
index: 1
regular:
warn:
input method: input
select:
- mm/Hg: 0
- name: Specific gravity
description: Specific Gravity(nominal)
index: 2
input method: select
select:
- 1.005: 1.005
- 1.010: 1.010
- 1.015: 1.015
- 1.020: 1.020
- 1.025: 1.025
- name: Alibumin
description: Albumin(nominal)
index: 3
input method: select
select:
- 0: 0
- 1: 1
- 2: 2
- 3: 3
- 4: 4
- 5: 5
- name: Sugar
description:
index: 4
input method: select
select:
- 0: 0
- 1: 1
- 2: 2
- 3: 3
- 4: 4
- 5: 5
- name: Read blood cells
description:
index: 5
input method: select
select:
- normal: 0
- abnormal: 1
- name: Pus cell
description:
index: 6
input method: select
select:
- normal: 0
- abnormal: 1
- name: Pus cell clumps
description:
index: 7
input method: select
select:
- not present: 0
- present: 1
- name: Bacteria
description:
index: 8
input method: select
select:
- not present: 0
- present: 1
- name: Blood glucose random
description:
index: 9
regular:
warn:
input method: input
select:
- mgs/dl: 0
- name: Blood urea
description:
index: 10
regular:
warn:
input method: input
select:
- mgs/dl: 0
- name: Serum creatinine
description:
index: 11
regular:
warn:
input method: input
select:
- mgs/dl: 0
- name: Sodium
description:
index: 12
regular:
warn:
input method: input
select:
- mEq/L: 0
- name: Potassium
description:
index: 13
regular:
warn:
input method: input
select:
- mEq/L: 0
- name: Hemoglobin
description:
index: 14
regular:
warn:
input method: input
select:
- gms: 0
- name: Packed cell volume
description:
index: 15
regular:
warn:
input method: input
select:
- numerical: 0
- name: White blood cell count
description:
index: 16
regular:
warn:
input method: input
select:
- cells/cumm: 0
- name: Red blood cell count
description:
index: 17
regular:
warn:
input method: input
select:
- millions/cmm: 0
- name: Hypertension
description:
index: 18
input method: select
select:
- yes: 0
- no: 1
- name: Diabetes mellitus
description:
index: 19
input method: select
select:
- yes: 0
- no: 1
- name: Coronary artery disease
description:
index: 20
input method: select
select:
- yes: 0
- no: 1
- name: Appetite
description:
index: 21
input method: select
select:
- poor: 0
- good: 1
- name: Pedal edema
description:
index: 22
input method: select
select:
- yes: 0
- no: 1
- name: Anemia
description:
index: 23
input method: select
select:
- yes: 0
- no: 1
output:
description: Class
result:
- 0: Not chronic kidney disease
- 1: Chronic kidney disease
Heart Disease:
description: "Heart disease, also known as cardiovascular disease, refers to a range of conditions that affect the heart and blood vessels. It is a leading cause of death worldwide and includes conditions such as coronary artery disease, heart failure, arrhythmias, and valvular heart disease.
Coronary artery disease (CAD) is the most common form of heart disease and occurs when the blood vessels that supply oxygen-rich blood to the heart muscle become narrowed or blocked by a buildup of plaque. This can lead to chest pain or discomfort, shortness of breath, and even heart attacks.
Heart failure is another prevalent form of heart disease, where the heart is unable to pump blood effectively. This can cause fluid buildup in the lungs, leading to symptoms like fatigue, swelling in the legs and ankles, and difficulty breathing.
Arrhythmias are abnormal heart rhythms that may cause the heart to beat too fast, too slow, or irregularly. This can disrupt the heart's pumping ability and lead to symptoms such as palpitations, dizziness, and fainting.
Valvular heart disease occurs when the valves in the heart do not function properly, either becoming narrowed or leaking. This can force the heart to work harder, leading to symptoms like fatigue, shortness of breath, and chest discomfort.
Risk factors for heart disease include high blood pressure, high cholesterol levels, smoking, obesity, diabetes, a sedentary lifestyle, and a family history of heart disease. Prevention and management of heart disease involve making lifestyle changes, such as adopting a healthy diet, exercising regularly, quitting smoking, managing stress, and taking prescribed medications.
Early detection and treatment are crucial in preventing complications and improving outcomes for individuals with heart disease. Regular check-ups, screenings, and timely medical intervention are essential in managing heart health.
In conclusion, heart disease encompasses various conditions that affect the heart and blood vessels. It is a significant global health concern, but with appropriate lifestyle modifications and medical care, its impact can be reduced, and individuals can lead healthier lives."
inputs:
- name: Age
description: age in years
index: 0
regular:
warn:
input method: input
select:
- years old: 0
- name: Sex
description: sex
index: 1
input method: select
select:
- female: 0
- male: 1
- name: Chest pain type
description: chest pain type
index: 2
input method: select
select:
- typical angina: 1
- atypical angina: 2
- non-anginal pain: 3
- asymptomatic: 4
- name: Trestbps
description: resting blood pressure (in mm Hg on admission to the hospital)
index: 3
regular:
warn:
input method: input
select:
- mm/Hg: 0
- name: Cholestoral
description: serum cholestoral in mg/dl
index: 4
regular:
warn:
input method: input
select:
- mg/dl: 0
- name: Fasting blood sugar
description: fasting blood sugar > 120 mg/dl
index: 5
input method: select
select:
- yes: 1
- no: 0
- name: Resting electrocardiographic
description: resting electrocardiographic results
index: 6
input method: select
select:
- normal: 0
- having ST-T wave abnormality: 1
- showing probable or definite left ventricular hypertrophy by Estes' criteria: 2
- name: Thalach
description: maximum heart rate achieved
index: 7
regular:
warn:
input method: input
select:
- beats per minute: 0
- name: Exercise induced angina
description: exercise induced angina
index: 8
input method: select
select:
- no: 0
- yes: 1
- name: ST depression induced by exercise relative to rest
description: ST depression induced by exercise relative to rest
index: 9
regular:
warn:
input method: input
select:
- 0: 0
- name: Slope
description: the slope of the peak exercise ST segment
index: 10
input method: select
select:
- upsloping: 1
- flat: 2
- downsloping: 3
- name: Number of major vessels colored by flourosopy
description: number of major vessels (0-3) colored by flourosopy
index: 11
input method: select
select:
- 0: 0
- 1: 1
- 2: 2
- 3: 3
- name: Thalassemia
description:
index: 12
input method: select
select:
- normal: 3
- fixed defect: 6
- reversable defect: 7
output:
description: Angiographic disease status
result:
- 0: "0%"
- 1: "25%"
- 2: "50%"
- 3: "75%"
- 4: "100%"
Heart Failure Clinical Records:
description: "Heart failure clinical records are comprehensive documents that contain important information about patients diagnosed with heart failure. These records serve as a vital tool for healthcare professionals to track and manage the condition of heart failure patients.
The clinical records typically include a range of details, such as the patient's medical history, physical examination findings, diagnostic test results (e.g., echocardiograms, electrocardiograms), medication regimens, and any surgical or interventional procedures performed. These records also document the patient's symptoms, functional status, and response to treatment.
Furthermore, heart failure clinical records may incorporate information about the patient's risk factors for heart failure, such as hypertension, diabetes, or coronary artery disease. They may also include data on lifestyle modifications, dietary recommendations, and exercise plans tailored to each patient's specific needs.
Healthcare providers use these records to monitor the progression of heart failure, assess treatment effectiveness, and make informed decisions regarding adjustments to medication dosages or interventions. The records provide a historical overview of the patient's condition, facilitating continuity of care and enabling healthcare professionals to identify trends or patterns in the patient's health status.
Heart failure clinical records play a crucial role in facilitating communication among healthcare providers involved in the patient's care, ensuring that all relevant information is shared accurately and efficiently. They also serve as a legal document, providing a record of the care provided and serving as a reference for future medical evaluations or legal proceedings.
Overall, heart failure clinical records are essential tools that support the delivery of high-quality care to patients with heart failure. They enable healthcare professionals to provide personalized treatment plans, closely monitor patients' progress, and optimize management strategies to improve patients' quality of life and long-term outcomes."
inputs:
- name: Age
description: age of the patient
index: 0
regular:
warn:
input method: input
select:
- years old: 0
- name: Anaemia
description: decrease of red blood cells or hemoglobin
index: 1
input method: select
select:
- no: 0
- yes: 1
- name: Creatinine phosphokinase
description: level of the CPK enzyme in the blood (mcg/L)
index: 2
regular:
warn:
input method: input
select:
- mcg/L: 0
- name: Diabetes
description: if the patient has diabetes
index: 3
input method: select
select:
- no: 0
- yes: 1
- name: Ejection fraction
description: percentage of blood leaving the heart at each contraction (percentage)
index: 4
regular:
warn:
input method: input
select:
- "%": 0
- name: High blood pressure
description:
index: 5
input method: select
select:
- no: 0
- yes: 1
- name: Platelets
description: platelets in the blood (kiloplatelets/mL)
index: 6
regular:
warn:
input method: input
select:
- kiloplatelets/mL: 0
- name: Serum creatinine
description: level of serum creatinine in the blood (mg/dL)
index: 7
regular:
warn:
input method: input
select:
- mg/dL: 0
- name: Serum sodium
description: level of serum sodium in the blood (mEq/L)
index: 8
regular:
warn:
input method: input
select:
- mEq/L: 0
- name: Sex
description: woman or man
index: 9
input method: select
select:
- female: 0
- male: 1
- name: Smoking
description: if the patient smokes or not (boolean)
index: 10
input method: select
select:
- no: 0
- yes: 1
- name: Time
description: follow-up period (days)
index: 11
regular:
warn:
input method: input
select:
- days: 0
output:
description: Death event
result:
- 0: no
- 1: yes
Lymphography:
description: "Lymphography is a diagnostic imaging technique used to visualize the lymphatic system in the human body. It involves the injection of a contrast agent into the lymphatic vessels, followed by the capture of X-ray images or the use of other imaging modalities to track the flow of the contrast agent through the lymphatic system.
During the procedure, a radiopaque dye or radioactive tracer is injected into the lymphatic vessels, typically in the hand or foot. The contrast agent then travels through the lymphatic vessels, highlighting the structure and function of the lymphatic system. This allows healthcare professionals to identify any abnormalities or blockages in the lymphatic pathways.
Lymphography can be performed using various imaging techniques, including X-ray lymphography, computed tomography (CT) lymphography, magnetic resonance imaging (MRI) lymphography, or even nuclear medicine lymphoscintigraphy. Each modality offers unique advantages and may be selected based on the specific clinical question and the patient's condition.
The information obtained from lymphography can aid in the diagnosis and staging of lymphatic disorders, such as lymphedema, lymphoma, or lymphatic malformations. It can also help guide surgical interventions, such as lymph node biopsies or lymphatic mapping for cancer staging.
Lymphography is generally considered safe, although there may be some minor risks associated with the injection of contrast agents, such as allergic reactions or localized swelling. The procedure is typically performed by a trained radiologist or nuclear medicine specialist in a hospital or imaging center.
In summary, lymphography is a valuable diagnostic tool that allows healthcare professionals to visualize and assess the lymphatic system. By providing detailed information about lymphatic flow and identifying any abnormalities, it helps in the diagnosis, treatment planning, and management of various lymphatic disorders."
inputs:
- name: Lymphatics
description: normal, arched, deformed, displaced
index: 0
inputs method: select
select:
- normal: 1
- arched: 2
- deformed: 3
- displaced: 4
- name: Block of affere
description: no, yes
index: 1
inputs method: select
select:
- no: 1
- yes: 2
- name: Bl of lymph c
description: no, yes
index: 2
inputs method: select
select:
- no: 1
- yes: 2
- name: Bl of lymph s
description: no, yes
index: 3
inputs method: select
select:
- no: 1
- yes: 2
- name: By pass
description: no, yes
index: 4
inputs method: select
select:
- no: 1
- yes: 2
- name: Extravasates
description: no, yes
index: 5
inputs method: select
select:
- no: 1
- yes: 2
- name: Regeneration of
description: no, yes
index: 6
inputs method: select
select:
- no: 1
- yes: 2
- name: Early uptake in
description: no, yes
index: 7
inputs method: select
select:
- no: 1
- yes: 2
- name: Lym nodes dimin
description: 0-3
index: 8
inputs method: select
select:
- 0: 0
- 1: 1
- 2: 2
- 3: 3
- name: Lym nodes enlar
description: 1-4
index: 9
inputs method: select
select:
- 1: 1
- 2: 2
- 3: 3
- 4: 4
- name: Changes in lym
description: bean, oval, round
index: 10
inputs method: select
select:
- bean: 1
- oval: 2
- round: 3
- name: Defect in node
description: no, lacunar, lac. marginal, lac. central
index: 11
inputs method: select
select:
- no: 1
- lacunar: 2
- lac marginal: 3
- lac central: 4
- name: Changes in node
description: no, lacunar, lac. margin, lac. central
index: 12
inputs method: select
select:
- no: 1
- lacunar: 2
- lac. marginal: 3
- lac. central: 4
- name: Changes in stru
description: no, grainy, drop-like, coarse, diluted, reticular, stripped, faint,
index: 13
inputs method: select
select:
- no: 1
- grainy: 2
- drop-like: 3
- coarse: 4
- diluted: 5
- reticular: 6
- stripped: 7
- faint: 8
- name: Special forms
description: no, chalices, vesicles
index: 14
inputs method: select
select:
- no: 1
- chalices: 2
- vesicles: 3
- name: Dislocation of
description: no, yes
index: 15
inputs method: select
select:
- no: 1
- yes: 2
- name: Exclusion of no
description: no, yes
index: 16
inputs method: select
select:
- no: 1
- yes: 2
- name: No of nodes in
description:
index: 17
inputs method: select
select:
- 0-9: 0
- 10-19: 1
- 20-29: 2
- 30-39: 3
- 40-49: 4
- 50-59: 5
- 60-69: 6
- ">=70": 7
output:
description: Class
result:
- 0: normal find
- 1: metastases
- 2: malign lymph
- 3: fibrosis
Parkinsons:
description: "Parkinson's disease is a chronic and progressive neurological disorder that affects movement. It is caused by the death of dopamine-producing cells in a region of the brain called the substantia nigra. Symptoms of Parkinson's disease include tremors, stiffness, and slowness of movement, as well as balance and coordination problems. As the disease progresses, individuals with Parkinson's may also experience cognitive changes such as memory problems and difficulty with decision-making. While there is no cure for Parkinson's disease, there are treatments available to manage symptoms and improve quality of life for those living with the disease."
inputs:
- name: "MDVP:Fo(Hz)"
description: Average vocal fundamental frequency
index: 0
regular:
warn:
input method: input
select:
- Hz: 0
- name: "MDVP:Fhi(Hz)"
description: Maximum vocal fundamental frequency
index: 1
regular:
warn:
input method: input
select:
- Hz: 0
- name: "MDVP:Flo(Hz)"
description: Minimum vocal fundamental frequency
index: 2
regular:
warn:
input method: input
select:
- Hz: 0
- name: "MDVP-Jitter"
description:
index: 3
regular:
warn:
input method: input
select:
- "%": 0
- name: "MDVP:Jitter(Abs)"
description: Several measures of variation in fundamental frequency
index: 4
regular:
warn:
input method: input
select:
- "%": 0
- name: "MDVP:RAP"
description: Several measures of variation in fundamental frequency
index: 5
regular:
warn:
input method: input
select:
- "%": 0
- name: "MDVP:PPQ"
description: Several measures of variation in fundamental frequency
index: 6
regular:
warn:
input method: input
select:
- "%": 0
- name: "Jitter:DDP"
description: Several measures of variation in fundamental frequency
index: 7
regular:
warn:
input method: input
select:
- "%": 0
- name: "MDVP:Shimmer"
description: Several measures of variation in amplitude
index: 8
regular:
warn:
input method: input
select:
- "%": 0
- name: "MDVP:Shimmer(dB)"
description: Several measures of variation in amplitude
index: 9
regular:
warn:
input method: input
select:
- "%": 0
- name: "Shimmer:APQ3"
description: Several measures of variation in amplitude
index: 10
regular:
warn:
input method: input
select:
- "%": 0
- name: "Shimmer:APQ5"
description: Several measures of variation in amplitude
index: 11
regular:
warn:
input method: input
select:
- "%": 0
- name: "MDVP:APQ"
description: Several measures of variation in amplitude
index: 12
regular:
warn:
input method: input
select:
- "%": 0
- name: "Shimmer:DDA"
description: Several measures of variation in amplitude
index: 13
regular:
warn:
input method: input
select:
- "%": 0
- name: NHR
description: Two measures of ratio of noise to tonal components in the voice
index: 14
regular:
warn: