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

config.yaml 754 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
  1. # It contains all the configs required in the project
  2. artifacts:
  3. ARTIFACTS_DIR: artifacts
  4. TRAINED_MODEL_DIR: model
  5. BASE_MODEL_DIR: base_model
  6. BASE_MODEL_NAME: base_model.h5
  7. UPDATED_BASE_MODEL_NAME: updated_base_model.h5
  8. CHECKPOINT_DIR: checkpoints
  9. BASE_LOG_DIR: base_model_dir
  10. TENSORBOARD_ROOT_LOG_DIR: tensorboard_log_dir
  11. CALLBACKS_DIR: callbacks
  12. DATA_DIR: data
  13. # you can download the dataset from the link: https://drive.google.com/drive/folders/1Z2c3e_rGBGV8wHValqT6Va4uomP246Lv?usp=sharing
  14. # if you download the dataset, you need to store it outside of the project directory and then call it through the method below.
  15. source_data_dirs:
  16. - ../outside_data/cat
  17. - ../outside_data/dog
  18. local_data_dirs:
  19. - data/cat
  20. - data/dog
Tip!

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

Comments

Loading...