|
1 | 1 | # Azure Cognitive Services Health Insights Cancer Profiling client library for Java
|
2 | 2 |
|
3 |
| -[Health Insights](https://review.learn.microsoft.com/azure/azure-health-insights/?branch=release-azure-health-insights) is an Azure Applied AI Service built with the Azure Cognitive Services Framework, that leverages multiple Cognitive Services, Healthcare API services and other Azure resources. |
| 3 | +[Health Insights][health_insights] is an Azure Applied AI Service built with the Azure Cognitive Services Framework, that leverages multiple Cognitive Services, Healthcare API services and other Azure resources. |
4 | 4 |
|
5 | 5 | The [Cancer Profiling model][cancer_profiling_docs] receives clinical records of oncology patients and outputs cancer staging, such as clinical stage TNM categories and pathologic stage TNM categories as well as tumor site, histology.
|
6 | 6 | [Source code][source_code] | [Package (Maven)][package] | [API reference documentation][cancer_profiling_api_documentation] | [Product Documentation][product_documentation] | [Samples][samples_location]
|
@@ -73,10 +73,6 @@ Infer key cancer attributes such as tumor site, histology, clinical stage TNM ca
|
73 | 73 | ```Java com.azure.health.insights.cancerprofiling.infercancerprofile
|
74 | 74 | // Construct Patient
|
75 | 75 | PatientRecord patient1 = new PatientRecord("patient_id");
|
76 |
| -PatientInfo patientInfo = new PatientInfo(); |
77 |
| -patientInfo.setBirthDate(LocalDate.parse("1965-12-26")); |
78 |
| -patientInfo.setSex(PatientInfoSex.FEMALE); |
79 |
| -patient1.setInfo(patientInfo); |
80 | 76 | LinkedList<PatientDocument> patientDocuments = new LinkedList<>();
|
81 | 77 | patient1.setData(patientDocuments);
|
82 | 78 |
|
@@ -211,13 +207,14 @@ This project has adopted the [Microsoft Open Source Code of Conduct][code_of_con
|
211 | 207 | [cognitive_resource_cli]: https://docs.microsoft.com/azure/cognitive-services/cognitive-services-apis-create-account-cli
|
212 | 208 | [jdk_link]: https://docs.microsoft.com/java/azure/jdk/?view=azure-java-stable
|
213 | 209 |
|
| 210 | +[health_insights]: https://learn.microsoft.com/azure/azure-health-insights/overview |
214 | 211 | [azure_cli]: https://docs.microsoft.com/cli/azure
|
215 | 212 | [azure_portal]: https://portal.azure.com
|
216 |
| -[cancer_profiling_docs]: https://review.learn.microsoft.com/azure/cognitive-services/health-decision-support/oncophenotype/overview?branch=main |
| 213 | +[cancer_profiling_docs]: https://learn.microsoft.com/azure/azure-health-insights/oncophenotype/overview |
217 | 214 | [cancer_profiling_client_class]: https://github.com/Azure/azure-sdk-for-java/blob/main/sdk/healthinsights/azure-health-insights-cancerprofiling/src/main/java/com/azure/health/insights/cancerprofiling/CancerProfilingClient.java
|
218 | 215 | [package]: https://mvnrepository.com/artifact/com.azure/azure-health-insights-cancerprofiling
|
219 | 216 | [source_code]: https://github.com/Azure/azure-sdk-for-java/tree/main/sdk/healthinsights/azure-health-insights-cancerprofiling/src
|
220 |
| -[cancer_profiling_api_documentation]: https://review.learn.microsoft.com/rest/api/cognitiveservices/healthinsights/onco-phenotype?branch=healthin202303 |
221 |
| -[product_documentation]:https://review.learn.microsoft.com/azure/cognitive-services/health-decision-support/oncophenotype/?branch=main |
| 217 | +[cancer_profiling_api_documentation]: https://learn.microsoft.com/rest/api/cognitiveservices/healthinsights/onco-phenotype |
| 218 | +[product_documentation]: https://learn.microsoft.com/azure/azure-health-insights/oncophenotype/ |
222 | 219 | [samples_location]: https://github.com/Azure/azure-sdk-for-java/tree/main/sdk/healthinsights/azure-health-insights-cancerprofiling/src/samples/
|
223 | 220 | 
|
0 commit comments