-
Notifications
You must be signed in to change notification settings - Fork 6
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
[Feature] Pytorch #233
Comments
The first step with PyTorch integration is to make it work with a simple MLP with 1 hidden layer. This works quite trivially if you have a pipeline = Sequential(
nn.Flatten(start_dim=1),
Component(nn.Linear, config={"in_features": 724, "out_features": 20}, name="fc1"),
nn.ReLU,
Component(nn.Linear, config={"in_features": 20, "out_features": 10}, name="fc2"),
Component(nn.LogSoftmax, config={"dim": 1}),
name="my-mlp-pipeline",
) The first challenge is to somehow define the search space in the pipeline, where that number
Problem ScriptThis script can be used to try solve the problem.
|
The basic requirements of the previous features are mostly implemented aside from In the meantime, the next steps will be towards taking the ResNet models family from PyTorch and do the following:
|
This issue will serve as a log as to the PyTorch progress in AMLTK. Please feel free to chime in with any information/suggestions/solutions to problems.
The text was updated successfully, but these errors were encountered: