-
Notifications
You must be signed in to change notification settings - Fork 18
Open
Description
Hi, thanks for the great repo.
I am having a small issue getting the pretrained model to run. Using the example from the readme:
X, y = load_breast_cancer(return_X_y=True)
X_train, X_test, y_train, y_test = train_test_split(
X, y, test_size=0.33, random_state=42
)
# MotherNetClassifier encapsulates a single instantiation of the model.
# This will automatically download a model from blob storage
classifier = MotherNetClassifier(device="cpu")
classifier.fit(X_train, y_train)
y_eval, p_eval = classifier.predict(X_test, return_winning_probability=True)
print("Accuracy", accuracy_score(y_test, y_eval))
# Ensembling as described in the TabPFN paper an be performed using the EnsembleMeta wrapper
ensemble_classifier = EnsembleMeta(classifier)gives the following error
Downloading model from https://amuellermothernet.blob.core.windows.net/models/mn_Dclass_average_03_25_2024_17_14_32_epoch_3970.pickle
HTTPError: HTTP Error 404: The specified blob does not exist.Metadata
Metadata
Assignees
Labels
No labels