Spaces:
Paused
Paused
File size: 334 Bytes
3450e6b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
from pydantic import BaseModel
class ToneUpData(BaseModel):
image_id : str
exposure : float
saturation : float
contrast : float
brightness : float
gamma : float
shadows : float
highlights : float
whites : float
blacks : float
clarity : float
temperature : float
sharpness : float |