-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Torchvision Transformers #56
Comments
Sort of. Those transformations happen on the fly, but if you want to keep a file version on disk of the tensors after transformation, you can either modify datasetload.py to add a function saving the tensor within this block:
That's the block that sends all the training and validation samples to the model training script.
If you don't want to hack those python file, checking "Cache" next to the "Train" button in Model tabs. This will create a big file containing all transformed tensors on the training server (locally or remotelly depending on where your training happens). Those tensors are packed continuously in this file using fastnumpyio.pack/fastnumpyio.unpack:
|
Hi @divideconcept, I tried the "Cache" approach; but with or without the cache option being checked, the training stops at 70% on its own. I could neither see any results on the Dashboard nor any big file in my local system. Could you please help me resolve this? |
Can I download the images after applying the transformation on custom data? If yes, how do i download with the local installation?
The text was updated successfully, but these errors were encountered: