mirror of
https://github.com/lllyasviel/ControlNet.git
synced 2026-01-11 06:57:58 -05:00
13 lines
206 B
Python
13 lines
206 B
Python
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)
|