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_model.py 368 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
  1. import os
  2. input_shape: tuple = (4, 80, 96, 64)
  3. # The paper is using (4, 160, 192, 128) with a batch size of 1 to fit the GPU memory.
  4. # We will use a smaller image with a larger batch size because of time & memory issues.
  5. output_channels: int = 3
  6. base_path = os.getcwd() + "/data/raw/*/*"
  7. batch_size=4
  8. epochs=1
  9. model_weights_path = "/model_weights/model_weights.h5"
Tip!

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

Comments

Loading...