Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/PriorLabs/tabpfn-client
/ types & classes
Types & classes
81 in github.com/PriorLabs/tabpfn-client
⨍
Functions
396
◇
Types & classes
81
↳
Endpoints
31
↓ 24 callers
Class
PredictionResult
src/tabpfn_client/client.py:190
↓ 22 callers
Class
TabPFNClassifier
src/tabpfn_client/estimator.py:144
↓ 18 callers
Class
TabPFNRegressor
src/tabpfn_client/estimator.py:497
↓ 11 callers
Class
ClassifierConfig
src/tabpfn_client/api_models.py:72
↓ 10 callers
Class
BrowserAuthHandler
src/tabpfn_client/browser_auth.py:13
↓ 4 callers
Class
ClientOptions
Options for the client. Can be used to override default client behavior for a single request. Parameters ---------- timeout : fl
src/tabpfn_client/client.py:170
↓ 4 callers
Class
GetModelLimitsResponse
src/tabpfn_client/api_models.py:244
↓ 3 callers
Class
FileInfo
src/tabpfn_client/api_models.py:86
↓ 3 callers
Class
RegressorConfig
src/tabpfn_client/api_models.py:167
↓ 2 callers
Class
Options
src/tabpfn_client/options.py:7
↓ 2 callers
Class
RetryableServerError
Base exception for retryable server-side HTTP errors (typically 5xx).
src/tabpfn_client/client.py:102
↓ 1 callers
Class
FitRequest
src/tabpfn_client/api_models.py:206
↓ 1 callers
Class
MockTabPFNServer
tests/mock_tabpfn_server.py:9
↓ 1 callers
Class
NeedsRefittingError
Exception raised when the server is not able to predict given the current state.
src/tabpfn_client/client.py:158
↓ 1 callers
Class
PredictRequest
src/tabpfn_client/api_models.py:260
↓ 1 callers
Class
PredictionTask
src/tabpfn_client/api_models.py:130
↓ 1 callers
Class
PrepareTestSetUploadRequest
src/tabpfn_client/api_models.py:275
↓ 1 callers
Class
PrepareTrainSetUploadRequest
src/tabpfn_client/api_models.py:289
↓ 1 callers
Class
RegressorPredictParams
src/tabpfn_client/api_models.py:144
↓ 1 callers
Class
SensitiveDataFilter
src/tabpfn_client/client.py:110
↓ 1 callers
Class
_FakeInferenceServer
Stand-in for the remote inference service used by ``check_estimator``. ``check_estimator`` calls ``fit``/``predict`` many times with datasets of
tests/unit/test_estimator.py:164
Class
CallbackHandler
src/tabpfn_client/browser_auth.py:26
Class
ClassifierMetadata
src/tabpfn_client/api_models.py:78
Class
ClassifierOutputType
src/tabpfn_client/api_models.py:44
Class
ClassifierPredictParams
src/tabpfn_client/api_models.py:49
Class
ClassifierTabPFNConfig
src/tabpfn_client/api_models.py:55
Class
Config
src/tabpfn_client/config.py:21
Class
DummyFullSupportBarDistribution
tests/unit/test_tabpfn_regressor.py:574
Class
DuplicateTestSetErrorResponse
src/tabpfn_client/api_models.py:190
Class
DuplicateTrainSetErrorResponse
src/tabpfn_client/api_models.py:198
Class
FileUploadInfo
src/tabpfn_client/api_models.py:101
Class
FitResponse
src/tabpfn_client/api_models.py:233
Class
FitStatus
src/tabpfn_client/api_models.py:107
Class
FitStatusResponse
src/tabpfn_client/api_models.py:238
Class
GCPOverloaded
Exception raised when the Google Cloud Platform service is overloaded or unavailable.
src/tabpfn_client/client.py:93
Class
InferenceClient
Wrapper of ServiceClient to handle inference, including: - fitting - prediction
src/tabpfn_client/service_wrapper.py:260
Class
ModelLimit
src/tabpfn_client/api_models.py:113
Class
ModelVersion
src/tabpfn_client/api_models.py:123
Class
NotFoundErrorResponse
src/tabpfn_client/api_models.py:253
Class
PredictResponse
src/tabpfn_client/api_models.py:270
Class
PrepareTestSetUploadResponse
src/tabpfn_client/api_models.py:284
Class
PrepareTrainSetUploadResponse
src/tabpfn_client/api_models.py:299
Class
PromptAgent
src/tabpfn_client/prompt_agent.py:38
Class
RegressorMetadata
src/tabpfn_client/api_models.py:173
Class
RegressorOutputType
src/tabpfn_client/api_models.py:135
Class
RegressorTabPFNConfig
src/tabpfn_client/api_models.py:151
Class
ServiceClient
Singleton class for handling communication with the server. It encapsulates all the API calls to the server.
src/tabpfn_client/client.py:195
Class
ServiceClientWrapper
src/tabpfn_client/service_wrapper.py:29
Class
TabPFNClassifier
TabPFN classifier backed by a SageMaker real-time endpoint. Example: from tabpfn_client.sagemaker import TabPFNClassifier clf = T
src/tabpfn_client/sagemaker/estimator.py:303
Class
TabPFNClassifier
TabPFN classifier backed by an Azure AI Foundry endpoint. Example: from tabpfn_client.foundry import TabPFNClassifier clf = TabPF
src/tabpfn_client/foundry/estimator.py:200
Class
TabPFNModelSelection
Base class for TabPFN model selection and path handling.
src/tabpfn_client/estimator.py:72
Class
TabPFNRegressor
TabPFN regressor backed by a SageMaker endpoint.
src/tabpfn_client/sagemaker/estimator.py:328
Class
TabPFNRegressor
TabPFN regressor backed by an Azure AI Foundry endpoint. Example: from tabpfn_client.foundry import TabPFNRegressor reg = TabPFNR
src/tabpfn_client/foundry/estimator.py:226
Class
TestBrowserAuthHandler
tests/unit/test_browser_auth.py:12
Class
TestClassifierConfig
Test classification with different estimator configurations.
tests/quick_test_v2.py:95
Class
TestClassifierInputFormats
Test classification with different input data formats.
tests/quick_test_v2.py:155
Class
TestClassifierVersions
Test classification with different model versions.
tests/quick_test_v2.py:78
Class
TestCleanTextFeatures
tests/unit/test_text_features.py:9
Class
TestPromptAgent
tests/unit/test_prompt_agent.py:6
Class
TestRegressorConfig
Test regression with different estimator configurations.
tests/quick_test_v2.py:284
Class
TestRegressorInputFormats
Test regression with different input data formats.
tests/quick_test_v2.py:329
Class
TestRegressorOutputTypes
Test regression with different output_type values.
tests/quick_test_v2.py:219
Class
TestRegressorVersions
Test regression with different model versions.
tests/quick_test_v2.py:207
Class
TestServerConfig
tests/integration/test_server_config.py:9
Class
TestServiceClient
tests/unit/test_client.py:53
Class
TestServiceClientPredictionNormalization
tests/unit/test_client.py:567
Class
TestTabPFNClassifier
tests/integration/test_tabpfn_classifier.py:17
Class
TestTabPFNClassifierInference
tests/unit/test_tabpfn_classifier.py:407
Class
TestTabPFNClassifierInit
tests/unit/test_tabpfn_classifier.py:57
Class
TestTabPFNModelSelection
tests/unit/test_tabpfn_classifier.py:883
Class
TestTabPFNModelSelection
tests/unit/test_tabpfn_regressor.py:856
Class
TestTabPFNRegressorInference
tests/unit/test_tabpfn_regressor.py:403
Class
TestTabPFNRegressorInit
tests/unit/test_tabpfn_regressor.py:58
Class
TestThinkingValidator
tests/unit/test_thinking_validation.py:29
Class
TestUserAuthClient
These test cases are meant to validate the interface between the client and the server. They do not guarantee if the response from the server
tests/unit/test_service_wrapper.py:13
Class
TestUserDataClient
These test cases are meant to validate the interface between the client and the server. They do not guarantee if the response from the server
tests/unit/test_service_wrapper.py:156
Class
UnknownEnum
Sentinel for enum values not known to this SDK — see header.
src/tabpfn_client/api_models.py:30
Class
UserAuthenticationClient
Wrapper of ServiceClient to handle user authentication, including: - user registration and login - access token caching This is impl
src/tabpfn_client/service_wrapper.py:34
Class
UserDataClient
Wrapper of ServiceClient to handle user data, including: - query, or delete user account data - query, download, or delete uploaded data
src/tabpfn_client/service_wrapper.py:187
Class
_FoundryBase
Shared HTTP plumbing for the Foundry TabPFN estimators.
src/tabpfn_client/foundry/estimator.py:77
Class
_SagemakerBase
Shared invoke_endpoint plumbing for the SageMaker TabPFN estimators.
src/tabpfn_client/sagemaker/estimator.py:52