Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

const.yaml 715 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  1. # Model
  2. BATCH_SIZE: 16
  3. CLASSES: ['Atelectasis', 'Cardiomegaly', 'Effusion', 'Infiltration', 'Mass', 'Nodule', 'Pneumonia', 'Pneumothorax', 'Consolidation', 'Edema', 'Emphysema', 'Fibrosis', 'Pleural_Thickening', 'Hernia']
  4. N_CLASSES: 'len(general_const.CLASSES)'
  5. ACTIVATION: 'sigmoid'
  6. SEED: 2083
  7. # Dataset params
  8. CLASS_MODE: 'raw'
  9. TEST_SIZE: 1024
  10. X_COL: 'Image Index'
  11. Y_COL: 'Finding Labels'
  12. ORIGINAL_SIZE: (1024, 1024)
  13. IMG_SIZE: (224, 224)
  14. IMG_SHAPE: (224, 224, 3)
  15. #Path
  16. DATA_DIR: ['data_labeling', 'data']
  17. DATA_FILE: 'Data_Entry_2017.csv'
  18. BBOX_FILE: 'BBox_List_2017.csv'
  19. IMAGE_PATH: ['*', 'images*', '*.png']
  20. PROD_MODEL_PATH: 'prod_model'
  21. MLFLOW_TRACKING_URL: 'https://dagshub.com/nirbarazida/CheXNet.mlflow'
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...