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

main.py 422 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
  1. from cnnClassifier import logger
  2. from cnnClassifier.pipeline.stage_01_data_ingestion import DataIngestionTrainingPipeline
  3. STAGE_NAME = "Data Ingestion Stage"
  4. try:
  5. logger.info(f">>>>>> stage {STAGE_NAME} started <<<<<<")
  6. obj = DataIngestionTrainingPipeline()
  7. obj.main()
  8. logger.info(f">>>>>> stage {STAGE_NAME} completed <<<<<<\n\nx==========x")
  9. except Exception as e:
  10. logger.exception(e)
  11. raise e
Tip!

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

Comments

Loading...