This repository has been archived by the owner on Jan 22, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into Heat_Cool_Load_Predictor
- Loading branch information
Showing
29 changed files
with
6,765 additions
and
396 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
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,79 @@ | ||
{ | ||
"Credit Card Fraud Estimator": { | ||
"Average Amount per Transaction per Day": { | ||
"type": "number", | ||
"min_value": 0, | ||
"max_value": 100000, | ||
"default_value": 100, | ||
"step": 100, | ||
"field_name": "avg_amount_per_day" | ||
}, | ||
"Transaction Amount": { | ||
"type": "number", | ||
"min_value": 0, | ||
"max_value": 100000, | ||
"default_value": 3000, | ||
"step": 100, | ||
"field_name": "transaction_amount" | ||
}, | ||
"Is Declined": { | ||
"type": "dropdown", | ||
"options": [ | ||
"Yes", | ||
"No" | ||
], | ||
"default_value": "No", | ||
"field_name": "Is_declined" | ||
}, | ||
"Total Number of Declines per Day": { | ||
"type": "number", | ||
"min_value": 0, | ||
"max_value": 100, | ||
"default_value": 0, | ||
"step": 1, | ||
"field_name": "no_of_declines_per_day" | ||
}, | ||
"Is Foreign Transaction": { | ||
"type": "dropdown", | ||
"options": [ | ||
"Yes", | ||
"No" | ||
], | ||
"default_value": "No", | ||
"field_name": "Is_Foreign_transaction" | ||
}, | ||
"Is High-Risk Country": { | ||
"type": "dropdown", | ||
"options": [ | ||
"Yes", | ||
"No" | ||
], | ||
"default_value": "No", | ||
"field_name": "Is_High_Risk_country" | ||
}, | ||
"Daily Chargeback Average Amount": { | ||
"type": "number", | ||
"min_value": 0, | ||
"max_value": 10000, | ||
"default_value": 0, | ||
"step": 100, | ||
"field_name": "Daily_chargeback_avg_amt" | ||
}, | ||
"6-Month Average Chargeback Amount": { | ||
"type": "number", | ||
"min_value": 0, | ||
"max_value": 10000, | ||
"default_value": 0, | ||
"step": 100, | ||
"field_name": "six_month_avg_chbk_amt" | ||
}, | ||
"6-Month Chargeback Frequency": { | ||
"type": "number", | ||
"min_value": 0, | ||
"max_value": 100, | ||
"default_value": 0, | ||
"step": 1, | ||
"field_name": "six_month_chbk_freq" | ||
} | ||
} | ||
} |
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,44 @@ | ||
{ | ||
"Insurance Cost Form": { | ||
"Age": { | ||
"type": "slider", | ||
"min_value": 0, | ||
"default_value": 30, | ||
"step": 1, | ||
"field_name": "age" | ||
}, | ||
"Sex": { | ||
"type": "dropdown", | ||
"options": ["Male", "Female"], | ||
"default_value": "Male", | ||
"field_name": "sex" | ||
}, | ||
"BMI": { | ||
"type": "number", | ||
"min_value": 0.0, | ||
"default_value": 25.0, | ||
"step": 0.1, | ||
"field_name": "bmi" | ||
}, | ||
"Children": { | ||
"type": "number", | ||
"min_value": 0, | ||
"default_value": 0, | ||
"step": 1, | ||
"field_name": "children" | ||
}, | ||
"Smoker": { | ||
"type": "dropdown", | ||
"options": ["Yes", "No"], | ||
"default_value": "No", | ||
"field_name": "smoker" | ||
}, | ||
"Region": { | ||
"type": "dropdown", | ||
"options": ["Southeast", "Southwest", "Northeast", "Northwest"], | ||
"default_value": "Southeast", | ||
"field_name": "region" | ||
} | ||
} | ||
} | ||
|
Oops, something went wrong.