-
Notifications
You must be signed in to change notification settings - Fork 236
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
Add a Galaxy tool for TabPFN package (by Prof. Hutter's group) #1533
Conversation
tools/tabpfn/main.py
Outdated
|
||
|
||
def separate_features_labels(data): | ||
df = pd.read_csv(data, sep=",") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can we read tabular? or both ... but tabular would be nice.
</tests> | ||
<help> | ||
<![CDATA[ | ||
**What it does** |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A slightly better help would be nice :)
tools/tabpfn/tabpfn.xml
Outdated
]]> | ||
</help> | ||
<citations> | ||
<citation type="doi">10.48550/arXiv.2207.01848</citation> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we need to update this one
tools/tabpfn/tabpfn.xml
Outdated
]]> | ||
</command> | ||
<inputs> | ||
<param name="train_data" type="data" format="csv" label="Train data" help="Please provide training data for training model."/> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some more hints how the data needs to be structured would be good.
The results seem to be a bit random, so we need to work with asserts. |
The PR adds a Galaxy tool that uses the TabPFN package (DOI: 10.48550/arXiv.2207.01848) to create a general-purpose classifier.
Many more subsequent analyses can be added as required such as creating workflows with this tool.
A few challenges:
One challenge is the export this classifier to standard ONNX format. The standard export of Pytorch models to ONNX does not work with the trained TabPFN model. We may require it, otherwise, we may have to export the trained model as a zipped file.
Additionally, to move the discussion around integrating the
tabpfn_client
package - it requires a separate login before use, so integrating it to Galaxy would be complicated I think unless there is a way to bypass the login process.Thank you!
ping @bgruening