Replies: 1 comment 3 replies
-
|
I use fake data for such case: This is just my solution, not sure if this is the best way. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi all,
I am encountering a bottle neck when restore a pre-trained model for a new set of data (the data only have input for prediction). However, when I tried to restored the model from a pre-trained model, its requires data object and net object.
The data object is something looks like:
data = CartesianProd(x_train, y_train, x_test, y_test). Obviously, there is noy_train, x_test, y_testavailable here. How can I resolve this issue without loading the training data to create the same data object, and is there a way to prevent this loading every time a new set of data is inputed?Thank you in advance.
Beta Was this translation helpful? Give feedback.
All reactions