ready2drop commited on
Commit
ccb3876
·
verified ·
1 Parent(s): 6e563e9
Files changed (1) hide show
  1. view.py +3 -7
view.py CHANGED
@@ -19,20 +19,17 @@ examples = [
19
  ],
20
  ]
21
 
22
- tabular_header = ['FIRST_HR', 'FIRST_BT','AGE', 'DUCT_DILIATATION_10MM', 'Hb','PLT','WBC', 'ALP', 'ALT', 'AST','BILIRUBIN']
23
 
24
  description = """
25
  Due to GPU resource constraints, the online demo is running on 2 vCPUs and 16 GB of RAM. \n
26
-
27
  **Note**: This model is specifically designed for the diagnosis and prediction of common bile duct(CBD) stones and provides accurate and reliable results. \n
28
  The input data consists of the following **discrete** and **continuous** variables, all of which play a significant role in the model's performance \n
29
-
30
  - Discrete Variables:
31
  - DUCT_DILIATATION_10MM (Presence of common bile duct dilation (≥10mm))
32
-
33
  - Continuous Variables:
34
- - FIRST_HR: Initial heart rate (Float)
35
- - FIRST_BT: Initial body temperature (Float)
36
  - AGE: Age (Int)
37
  - Hb: Hemoglobin level (Float)
38
  - PLT: Platelet count (Float)
@@ -41,7 +38,6 @@ The input data consists of the following **discrete** and **continuous** variabl
41
  - ALT: Alanine aminotransferase (Float)
42
  - AST: Aspartate aminotransferase (Float)
43
  - BILIRUBIN: Bilirubin level (Float)
44
-
45
  **Important**: Changes to the structure of the input data (e.g., adding, removing columns) may affect the model's predictions. \n
46
  Therefore, it is essential to retrain or revalidate the model if any modifications are made to the input data structure. \n
47
  """
 
19
  ],
20
  ]
21
 
22
+ tabular_header = ['HR', 'BT','AGE', 'DUCT_DILIATATION_10MM', 'Hb','PLT','WBC', 'ALP', 'ALT', 'AST','BILIRUBIN']
23
 
24
  description = """
25
  Due to GPU resource constraints, the online demo is running on 2 vCPUs and 16 GB of RAM. \n
 
26
  **Note**: This model is specifically designed for the diagnosis and prediction of common bile duct(CBD) stones and provides accurate and reliable results. \n
27
  The input data consists of the following **discrete** and **continuous** variables, all of which play a significant role in the model's performance \n
 
28
  - Discrete Variables:
29
  - DUCT_DILIATATION_10MM (Presence of common bile duct dilation (≥10mm))
 
30
  - Continuous Variables:
31
+ - HR: Initial heart rate (Float)
32
+ - BT: Initial body temperature (Float)
33
  - AGE: Age (Int)
34
  - Hb: Hemoglobin level (Float)
35
  - PLT: Platelet count (Float)
 
38
  - ALT: Alanine aminotransferase (Float)
39
  - AST: Aspartate aminotransferase (Float)
40
  - BILIRUBIN: Bilirubin level (Float)
 
41
  **Important**: Changes to the structure of the input data (e.g., adding, removing columns) may affect the model's predictions. \n
42
  Therefore, it is essential to retrain or revalidate the model if any modifications are made to the input data structure. \n
43
  """