-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
created early lambda function for running XGBboost
- Loading branch information
Showing
3 changed files
with
31 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"name": "ASHA-xgboost-evaluation", | ||
"version": "1.0.0", | ||
"description": "Trains and evaluates an XGBoost model for a parallel ASHA implementation", | ||
"author": "", | ||
"license": "MIT" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
service: ASHA-xgboost-evaluation | ||
|
||
frameworkVersion: ">=1.2.0 <2.0.0" | ||
|
||
provider: | ||
name: aws | ||
runtime: python3.7 # or python3.7, supported as of November 2018 | ||
|
||
functions: | ||
run: | ||
handler: run_xgboost.run | ||
events: | ||
- http: | ||
path: run | ||
method: post |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters