Skip to content

Commit

Permalink
Merge #30 Feature Store, Model Reg, AutoGluon
Browse files Browse the repository at this point in the history
Update initial XGBoost+HPO exercise to briefly mention some exciting
newer SageMaker features: Bring in data via SM Feature Store; Compare
model versions via SM Model Registry; and show AutoGluon-Tabular algo
for high accuracy on tabular datasets. Update this exercise to DSci
v3.0 kernel, and the SAM deployment template to use that kernel.
  • Loading branch information
athewsey authored Nov 23, 2022
2 parents 3242cd3 + 5f5d6d4 commit f35d8f1
Show file tree
Hide file tree
Showing 15 changed files with 2,263 additions and 1,017 deletions.
10 changes: 5 additions & 5 deletions .infrastructure/template.sam.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -441,23 +441,23 @@ Resources:
DomainId: !GetAtt StudioDomain.DomainId
UserProfileName: !GetAtt UserProfile.UserProfileName

# Pre-warm the default Python 3 (Data Science) kernel to make first exercise start-up faster:
SMDataScienceApp:
# Pre-warm the Data Science 3.0 kernel to make first exercise start-up faster:
SMDataScience3App:
Type: 'AWS::SageMaker::App'
DependsOn: UserProfile
Properties:
AppName: instance-prewarm-datascience-ml-t3-medium
AppName: instance-prewarm-datascience3-ml-t3-medium
AppType: KernelGateway
DomainId: !GetAtt StudioDomain.DomainId
ResourceSpec:
InstanceType: ml.t3.medium
SageMakerImageArn: !FindInMap
- RegionMap
- !Ref 'AWS::Region'
- datascience
- datascience3
UserProfileName: !GetAtt UserProfile.UserProfileName

# ...Also the new Data Science 2.0 kernel in case we want to try out JupyterLab debugger:
# ...Also the Data Science 2.0 kernel, for Autopilot exercise:
SMDataScience2App:
Type: 'AWS::SageMaker::App'
DependsOn: UserProfile
Expand Down
1,000 changes: 1,000 additions & 0 deletions builtin_algorithm_hpo_tabular/1 Autopilot and XGBoost.ipynb

Large diffs are not rendered by default.

616 changes: 616 additions & 0 deletions builtin_algorithm_hpo_tabular/2 AutoGluon (Optional).ipynb

Large diffs are not rendered by default.

799 changes: 0 additions & 799 deletions builtin_algorithm_hpo_tabular/SageMaker XGBoost HPO.ipynb

This file was deleted.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions builtin_algorithm_hpo_tabular/util/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
from . import reporting
from . import data
213 changes: 0 additions & 213 deletions builtin_algorithm_hpo_tabular/util/classification_report.py

This file was deleted.

Loading

0 comments on commit f35d8f1

Please sign in to comment.