kjhlhkljh / ControlNet /tutorial_dataset_test.py
newturok's picture
asdfas
1c5ae9c
raw
history blame contribute delete
No virus
206 Bytes
from tutorial_dataset import MyDataset
dataset = MyDataset()
print(len(dataset))
item = dataset[1234]
jpg = item['jpg']
txt = item['txt']
hint = item['hint']
print(txt)
print(jpg.shape)
print(hint.shape)