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.py 284 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
  1. #!/usr/bin/env python3
  2. from pathlib import Path
  3. BASE_DIR = Path(__file__).parent.parent.as_posix()
  4. CSV_PATH = ['audio_data', 'metadata', 'UrbanSound8K.csv']
  5. AUDIO_PATH = ['audio_data', 'audio', 'fold1']
  6. MODEL_SAVE_PATH = ['models',]
  7. EPOCHS = 150
  8. BATCH_SIZE = 16
  9. FRAC_OF_DATA = 0.5
Tip!

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

Comments

Loading...