| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| """Placeholder docstring""" |
| from __future__ import absolute_import |
|
|
| import importlib_metadata |
|
|
| from sagemaker import estimator, parameter, tuner |
| from sagemaker.amazon.kmeans import KMeans, KMeansModel, KMeansPredictor |
| from sagemaker.amazon.pca import PCA, PCAModel, PCAPredictor |
| from sagemaker.amazon.lda import LDA, LDAModel, LDAPredictor |
| from sagemaker.amazon.linear_learner import ( |
| LinearLearner, |
| LinearLearnerModel, |
| LinearLearnerPredictor, |
| ) |
| from sagemaker.amazon.factorization_machines import ( |
| FactorizationMachines, |
| FactorizationMachinesModel, |
| ) |
| from sagemaker.amazon.factorization_machines import FactorizationMachinesPredictor |
| from sagemaker.inputs import TrainingInput |
| from sagemaker.amazon.ntm import NTM, NTMModel, NTMPredictor |
| from sagemaker.amazon.randomcutforest import ( |
| RandomCutForest, |
| RandomCutForestModel, |
| RandomCutForestPredictor, |
| ) |
| from sagemaker.amazon.knn import KNN, KNNModel, KNNPredictor |
| from sagemaker.amazon.object2vec import Object2Vec, Object2VecModel |
| from sagemaker.amazon.ipinsights import ( |
| IPInsights, |
| IPInsightsModel, |
| IPInsightsPredictor, |
| ) |
|
|
| from sagemaker.algorithm import AlgorithmEstimator |
| from sagemaker.analytics import TrainingJobAnalytics, HyperparameterTuningJobAnalytics |
| from sagemaker.local.local_session import LocalSession |
|
|
| from sagemaker.model import Model, ModelPackage |
| from sagemaker.model_metrics import ModelMetrics, MetricsSource, FileSource |
| from sagemaker.pipeline import PipelineModel |
| from sagemaker.predictor import Predictor |
| from sagemaker.processing import Processor, ScriptProcessor |
| from sagemaker.session import Session |
| from sagemaker.session import container_def, pipeline_container_def |
| from sagemaker.session import get_model_package_args |
| from sagemaker.session import production_variant |
| from sagemaker.session import get_execution_role |
|
|
| from sagemaker.automl.automl import AutoML, AutoMLJob, AutoMLInput |
| from sagemaker.automl.candidate_estimator import CandidateEstimator, CandidateStep |
|
|
| __version__ = importlib_metadata.version("sagemaker") |
|
|