Skip to content

Commit 6c070de

Browse files
committed
Updating documentment url and updating readme.md
1 parent af9ddf2 commit 6c070de

14 files changed

+18
-17
lines changed

ml-insights/README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ Insights provides a simple, declarative API, out of box components covering majo
5656
| [ML Insights : Data Correlation Metrics](./sample_notebooks/11_Data_Correlation_Metrics.ipynb) |
5757
| [ML Insights run with Custom Metrics](./sample_notebooks/12_Custom_Metrics_Example.ipynb) |
5858

59-
59+
## Note
60+
The files [sum_divide_by_k_custom_metrics.py](./sample_notebooks/sum_divide_by_k_custom_metrics.py) and [sum_divide_by_two_custom_metrics.py](./sample_notebooks/sum_divide_by_two_custom_metrics.py) are examples of how to implement custom metrics and usage is demonstrated in sample notebook [ML Insights run with Custom Metrics](./sample_notebooks/12_Custom_Metrics_Example.ipynb).
6061

6162

ml-insights/sample_notebooks/10_Drift_Metrics.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
" !pip install oracle-ml-insights\n",
6262
"\n",
6363
"\n",
64-
"Refer : [Installation and Setup](https://preview.content.oci.oracleiaas.com/iaas/tools/ml-insights-docs/latest/ml-insights-documentation/html/user_guide/tutorials/install.html?bundle=16676&showfilteredtoc=true)\n",
64+
"Refer : [Installation and Setup](https://docs.oracle.com/iaas/tools/ml-insights-docs/latest/ml-insights-documentation/html/user_guide/tutorials/install.html)\n",
6565
" "
6666
]
6767
},

ml-insights/sample_notebooks/11_Data_Correlation_Metrics.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
"\n",
6363
" !pip install oracle-ml-insights\n",
6464
"\n",
65-
"Refer : [Installation and Setup](https://preview.content.oci.oracleiaas.com/iaas/tools/ml-insights-docs/latest/ml-insights-documentation/html/user_guide/tutorials/install.html?bundle=16676&showfilteredtoc=true)\n",
65+
"Refer : [Installation and Setup](https://docs.oracle.com/iaas/tools/ml-insights-docs/latest/ml-insights-documentation/html/user_guide/tutorials/install.html)\n",
6666
" "
6767
]
6868
},

ml-insights/sample_notebooks/12_Custom_Metrics_Example.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
"\n",
5454
" !pip install oracle-ml-insights\n",
5555
"\n",
56-
"Refer : [Installation and Setup](https://preview.content.oci.oracleiaas.com/iaas/tools/ml-insights-docs/latest/ml-insights-documentation/html/user_guide/tutorials/install.html?bundle=16676&showfilteredtoc=true)\n",
56+
"Refer : [Installation and Setup](https://docs.oracle.com/iaas/tools/ml-insights-docs/latest/ml-insights-documentation/html/user_guide/tutorials/install.html)\n",
5757
" "
5858
]
5959
},

ml-insights/sample_notebooks/1_Minimal_ML_Insights.ipynb

+2-2
Original file line numberDiff line numberDiff line change
@@ -64,15 +64,15 @@
6464
"\n",
6565
" !pip install oracle-ml-insights\n",
6666
"\n",
67-
"Refer : [Installation and Setup](https://preview.content.oci.oracleiaas.com/iaas/tools/ml-insights-docs/latest/ml-insights-documentation/html/user_guide/tutorials/install.html?bundle=16676&showfilteredtoc=true)"
67+
"Refer : [Installation and Setup](https://docs.oracle.com/iaas/tools/ml-insights-docs/latest/ml-insights-documentation/html/user_guide/tutorials/install.html)"
6868
]
6969
},
7070
{
7171
"cell_type": "markdown",
7272
"id": "01d44554",
7373
"metadata": {},
7474
"source": [
75-
"This example notebook showcases how to use Insights config reader to run the evaluation based on monitor config. Sample monitor config JSON and sample data are available under `monitor_config.json` and `input_data/iris-dataset` respectively"
75+
"This example notebook showcases how to use Insights config reader to run the evaluation based on monitor config. Sample monitor config JSON and sample data are available under `config/monitor_config.json` and `input_data/iris-dataset` respectively"
7676
]
7777
},
7878
{

ml-insights/sample_notebooks/2_Run_ML_Insights_using_config_file.ipynb

+4-4
Original file line numberDiff line numberDiff line change
@@ -44,15 +44,15 @@
4444
" !pip install oracle-ml-insights\n",
4545
"\n",
4646
"\n",
47-
"Refer : [Installation and Setup](https://preview.content.oci.oracleiaas.com/iaas/tools/ml-insights-docs/latest/ml-insights-documentation/html/user_guide/tutorials/install.html?bundle=16676&showfilteredtoc=true)\n"
47+
"Refer : [Installation and Setup](https://docs.oracle.com/iaas/tools/ml-insights-docs/latest/ml-insights-documentation/html/user_guide/tutorials/install.html)\n"
4848
]
4949
},
5050
{
5151
"cell_type": "markdown",
5252
"id": "13b3fd12",
5353
"metadata": {},
5454
"source": [
55-
"This example notebook showcases how to use Insights config reader to run the evaluation based on monitor config. Sample monitor config JSON and sample data are available under `monitor_config.json` and `input_data/iris-dataset` respectively"
55+
"This example notebook showcases how to use Insights config reader to run the evaluation based on monitor config. Sample monitor config JSON and sample data are available under `config/monitor_config.json` and `input_data/iris-dataset` respectively"
5656
]
5757
},
5858
{
@@ -97,7 +97,7 @@
9797
"\n",
9898
"ML Insights provides low code option to define and customise all of its core features like data scheme , data ingestion, data transformation, metric calculation and post processing of metric output using json based configuration .\n",
9999
"\n",
100-
"Refer : [ML Insights Config File Documentation](https://confluence.oci.oraclecorp.com/pages/viewpage.action?spaceKey=ODSC&title=ML+Insights+-Steps+to+create+insights+config+file)\n",
100+
"Refer : [ML Insights Config File Documentation](https://docs.oracle.com/iaas/tools/ml-insights-docs/latest/ml-insights-documentation/html/user_guide/tutorials/config_reader.html)\n",
101101
"\n"
102102
]
103103
},
@@ -121,7 +121,7 @@
121121
"metadata": {},
122122
"outputs": [],
123123
"source": [
124-
"insights_builder = InsightsConfigReader(config_location=\"monitor_config.json\").get_builder()\n",
124+
"insights_builder = InsightsConfigReader(config_location=\"config/monitor_config.json\").get_builder()\n",
125125
"run_result = insights_builder.build().run()\n",
126126
"profile = run_result.profile\n"
127127
]

ml-insights/sample_notebooks/3_Run_ML_Insights_using_api.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@
116116
"\n",
117117
" !pip install oracle-ml-insights\n",
118118
"\n",
119-
"Refer : [Installation and Setup](https://preview.content.oci.oracleiaas.com/iaas/tools/ml-insights-docs/latest/ml-insights-documentation/html/user_guide/tutorials/install.html?bundle=16676&showfilteredtoc=true)\n"
119+
"Refer : [Installation and Setup](https://docs.oracle.com/iaas/tools/ml-insights-docs/latest/ml-insights-documentation/html/user_guide/tutorials/install.html)\n"
120120
]
121121
},
122122
{

ml-insights/sample_notebooks/4_Data_Source_and_Reader_Example.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"\n",
3838
" !pip install oracle-ml-insights\n",
3939
"\n",
40-
"Refer : [Installation and Setup](https://preview.content.oci.oracleiaas.com/iaas/tools/ml-insights-docs/latest/ml-insights-documentation/html/user_guide/tutorials/install.html?bundle=16676&showfilteredtoc=true)\n",
40+
"Refer : [Installation and Setup](https://docs.oracle.com/iaas/tools/ml-insights-docs/latest/ml-insights-documentation/html/user_guide/tutorials/install.html)\n",
4141
" "
4242
]
4343
},

ml-insights/sample_notebooks/5_Post_Processor_Profile_Writer_Example.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"\n",
4141
" !pip install oracle-ml-insights\n",
4242
"\n",
43-
"Refer : [Installation and Setup](https://preview.content.oci.oracleiaas.com/iaas/tools/ml-insights-docs/latest/ml-insights-documentation/html/user_guide/tutorials/install.html?bundle=16676&showfilteredtoc=true)"
43+
"Refer : [Installation and Setup](https://docs.oracle.com/iaas/tools/ml-insights-docs/latest/ml-insights-documentation/html/user_guide/tutorials/install.html)"
4444
]
4545
},
4646
{

ml-insights/sample_notebooks/6_Data_Quality_and_Data_Integrity_Metrics.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
"\n",
7474
" !pip install oracle-ml-insights\n",
7575
"\n",
76-
"Refer : [Installation and Setup](https://preview.content.oci.oracleiaas.com/iaas/tools/ml-insights-docs/latest/ml-insights-documentation/html/user_guide/tutorials/install.html?bundle=16676&showfilteredtoc=true)\n"
76+
"Refer : [Installation and Setup](https://docs.oracle.com/iaas/tools/ml-insights-docs/latest/ml-insights-documentation/html/user_guide/tutorials/install.html)\n"
7777
]
7878
},
7979
{

ml-insights/sample_notebooks/7_Performance_Metric_For_Classification_Models.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
"\n",
7575
" !pip install oracle-ml-insights\n",
7676
"\n",
77-
"Refer : [Installation and Setup](https://preview.content.oci.oracleiaas.com/iaas/tools/ml-insights-docs/latest/ml-insights-documentation/html/user_guide/tutorials/install.html?bundle=16676&showfilteredtoc=true)"
77+
"Refer : [Installation and Setup](https://docs.oracle.com/iaas/tools/ml-insights-docs/latest/ml-insights-documentation/html/user_guide/tutorials/install.html)"
7878
]
7979
},
8080
{

ml-insights/sample_notebooks/8_Conflict_Metrics.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
"\n",
5353
" !pip install oracle-ml-insights\n",
5454
"\n",
55-
"Refer : [Installation and Setup](https://preview.content.oci.oracleiaas.com/iaas/tools/ml-insights-docs/latest/ml-insights-documentation/html/user_guide/tutorials/install.html?bundle=16676&showfilteredtoc=true)\n",
55+
"Refer : [Installation and Setup](https://docs.oracle.com/iaas/tools/ml-insights-docs/latest/ml-insights-documentation/html/user_guide/tutorials/install.html)\n",
5656
" "
5757
]
5858
},

ml-insights/sample_notebooks/9_Performance_Metrics_for_Regression_Model.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
" !pip install oracle-ml-insights\n",
6060
"\n",
6161
"\n",
62-
"Refer : [Installation and Setup](https://preview.content.oci.oracleiaas.com/iaas/tools/ml-insights-docs/latest/ml-insights-documentation/html/user_guide/tutorials/install.html?bundle=16676&showfilteredtoc=true)\n",
62+
"Refer : [Installation and Setup](https://docs.oracle.com/iaas/tools/ml-insights-docs/latest/ml-insights-documentation/html/user_guide/tutorials/install.html)\n",
6363
" "
6464
]
6565
},

0 commit comments

Comments
 (0)