Created
May 26, 2022 02:37
-
-
Save esenthil2018/92d008fb4722f769e5d1db2301e69e82 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
train_art = lineapy.get("train_data") | |
train_art | |
#LineaArtifact(name='train_data', _version=0) | |
test_art = lineapy.get("test_data") | |
test_art | |
#LineaArtifact(name='test_data', _version=0) | |
y_art = lineapy.get("y") | |
y_art | |
#LineaArtifact(name='y', _version=0) | |
model_art = lineapy.get("decision_tree_titanic") | |
model_art | |
#LineaArtifact(name='decision_tree_titanic', _version=0) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment