File size: 3,003 Bytes
476455e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"). You
# may not use this file except in compliance with the License. A copy of
# the License is located at
#
# http://aws.amazon.com/apache2.0/
#
# or in the "license" file accompanying this file. This file is
# distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
# ANY KIND, either express or implied. See the License for the specific
# language governing permissions and limitations under the License.
"""Placeholder docstring"""
from __future__ import absolute_import
import importlib_metadata
from sagemaker import estimator, parameter, tuner # noqa: F401
from sagemaker.amazon.kmeans import KMeans, KMeansModel, KMeansPredictor # noqa: F401
from sagemaker.amazon.pca import PCA, PCAModel, PCAPredictor # noqa: F401
from sagemaker.amazon.lda import LDA, LDAModel, LDAPredictor # noqa: F401
from sagemaker.amazon.linear_learner import ( # noqa: F401
LinearLearner,
LinearLearnerModel,
LinearLearnerPredictor,
)
from sagemaker.amazon.factorization_machines import ( # noqa: F401
FactorizationMachines,
FactorizationMachinesModel,
)
from sagemaker.amazon.factorization_machines import FactorizationMachinesPredictor # noqa: F401
from sagemaker.inputs import TrainingInput # noqa: F401
from sagemaker.amazon.ntm import NTM, NTMModel, NTMPredictor # noqa: F401
from sagemaker.amazon.randomcutforest import ( # noqa: F401
RandomCutForest,
RandomCutForestModel,
RandomCutForestPredictor,
)
from sagemaker.amazon.knn import KNN, KNNModel, KNNPredictor # noqa: F401
from sagemaker.amazon.object2vec import Object2Vec, Object2VecModel # noqa: F401
from sagemaker.amazon.ipinsights import ( # noqa: F401
IPInsights,
IPInsightsModel,
IPInsightsPredictor,
)
from sagemaker.algorithm import AlgorithmEstimator # noqa: F401
from sagemaker.analytics import TrainingJobAnalytics, HyperparameterTuningJobAnalytics # noqa: F401
from sagemaker.local.local_session import LocalSession # noqa: F401
from sagemaker.model import Model, ModelPackage # noqa: F401
from sagemaker.model_metrics import ModelMetrics, MetricsSource, FileSource # noqa: F401
from sagemaker.pipeline import PipelineModel # noqa: F401
from sagemaker.predictor import Predictor # noqa: F401
from sagemaker.processing import Processor, ScriptProcessor # noqa: F401
from sagemaker.session import Session # noqa: F401
from sagemaker.session import container_def, pipeline_container_def # noqa: F401
from sagemaker.session import get_model_package_args # noqa: F401
from sagemaker.session import production_variant # noqa: F401
from sagemaker.session import get_execution_role # noqa: F401
from sagemaker.automl.automl import AutoML, AutoMLJob, AutoMLInput # noqa: F401
from sagemaker.automl.candidate_estimator import CandidateEstimator, CandidateStep # noqa: F401
__version__ = importlib_metadata.version("sagemaker")
|