forked from udacity/nd0821-c3-starter-code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mlops_proj3_tree.txt
67 lines (67 loc) · 2.27 KB
/
mlops_proj3_tree.txt
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
67
.
├── LICENSE.txt
├── README.md
├── data
│ ├── census.csv.dvc
│ └── preproc_census.csv.dvc
├── dvc_on_heroku_instructions.md
├── logs
│ └── ...
├── mlops_proj3_tree.txt
├── mlops_proj3_tree_dirs.txt
├── model_card.md
├── models
│ ├── final_col_transformer_artifact.pkl
│ └── final_xgb_cls_artifact.pkl
├── plots
│ ├── ... a lot of .png files, like ...
│ ├── salary_dist_hoursPerWeek-age-sex_plot.png
│ ├── sex_dist_age-capitalGain-educationLevel_plot.png
│ ├── sex_plot.png
│ └── workclass_plot.png
├── requirements.txt
├── sanitycheck.py
├── screenshots
│ ├── ... a lot of .png files, like ...
│ ├── MLOps_proj3_FastAPI_docsLandingPage.PNG
│ ├── MLOps_proj3_FastAPI_docsPredictPersonIncomeNegativeExample.PNG
│ ├── MLOps_proj3_FastAPI_gitHubPrecommitHook.PNG
│ ├── education-group_people-count.PNG
│ └── normalDistTest_hours-per-week.PNG
├── setup.py
├── src
│ ├── 2023-09-22_07-51_slice_output.txt
│ ├── __init__.py
│ ├── app
│ │ ├── __init__.py
│ │ ├── examples_request.yml
│ │ └── schemas.py
│ ├── config
│ │ ├── __init__.py
│ │ ├── config.py
│ │ └── config.yml
│ ├── eda
│ │ ├── __init__.py
│ │ ├── eda.ipynb
│ │ ├── eda_census_orig_report.html
│ │ └── eda_census_preproc_report.html
│ ├── main.py
│ ├── slice_performance.py
│ └── training
│ ├── __init__.py
│ ├── ml
│ │ ├── __init__.py
│ │ ├── data.py
│ │ └── model.py
│ └── train_model.py
└── tests
├── __init__.py
├── api_test_report.html
├── assets
│ └── style.css
├── conftest.py
├── data_test_report.html
├── model_test_report.html
├── test_api.py
├── test_data.py
└── test_model.py