diff --git a/README.md b/README.md index 7a519b9682577..27282b44d92ea 100644 --- a/README.md +++ b/README.md @@ -30,11 +30,12 @@ * [Technical Design Details](#technical-design-details) * [Extensibility Options](#extensibility-options) +**[Data/Telemetry](#Data/Telemetry)** + **[Contributions and Feedback](#contribute)** **[License](#license)** -**[Data/Telemetry](#Data/Telemetry)** *** # Key Features ## Run any ONNX model @@ -162,6 +163,10 @@ To tune performance for ONNX models, the [ONNX Go Live tool "OLive"](https://git transform](include/onnxruntime/core/optimizer/graph_transformer.h) * [Add a new rewrite rule](include/onnxruntime/core/optimizer/rewrite_rule.h) +*** +# Data/Telemetry +This project may collect usage data and send it to Microsoft to help improve our products and services. See the [privacy statement](docs/Privacy.md) for more details. + *** # Contribute We welcome contributions! Please see the [contribution guidelines](CONTRIBUTING.md). @@ -173,9 +178,6 @@ For any feedback or to report a bug, please file a [GitHub Issue](https://github This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments. -*** -# Data/Telemetry -This project collects usage data and sends it to Microsoft to help improve our products and services. See the [privacy statement](docs/Privacy.md) for more details. *** # License diff --git a/docs/C_API.md b/docs/C_API.md index 92e0f2456ce1a..30a626fa102e1 100644 --- a/docs/C_API.md +++ b/docs/C_API.md @@ -30,10 +30,5 @@ The example below shows a sample run using the SqueezeNet model from ONNX model * [../csharp/test/Microsoft.ML.OnnxRuntime.EndToEndTests.Capi/C_Api_Sample.cpp](../csharp/test/Microsoft.ML.OnnxRuntime.EndToEndTests.Capi/C_Api_Sample.cpp) -# Telemetry -This project collects usage data and sends it to Microsoft to help improve our products and services. Note however that no data collection is performed by default when using your private builds - -Telemetry is turned OFF by default while this feature is in BETA. When the feature moves from BETA to RELEASE, developers should expect telemetry to be ON by default when using the Official Builds. This is implemented via 'Platform Telemetry' per vendor platform providers (see telemetry.h). - -The Windows provider uses the [TraceLogging](https://docs.microsoft.com/en-us/windows/win32/tracelogging/trace-logging-about) API for its implementation. - +## Telemetry +To turn on/off telemetry collection on official Windows builds, please use Enable/DisableTelemetryEvents() in the C API. See the [Privacy](./Privacy.md) page for more information on telemetry collection and Microsoft's privacy policy. diff --git a/docs/Privacy.md b/docs/Privacy.md index 822e1da6f8bee..9292d989ecfed 100644 --- a/docs/Privacy.md +++ b/docs/Privacy.md @@ -1,10 +1,18 @@ -# Data Collection +# Privacy + +## Data Collection The software may collect information about you and your use of the software and send it to Microsoft. Microsoft may use this information to provide services and improve our products and services. You may turn off the telemetry as described in the repository. There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing appropriate notices to users of your applications together with a copy of Microsoft's privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and use in the help documentation and our privacy statement. Your use of the software operates as your consent to these practices. -Note that no data collection is performed by default when using your private builds. +*** + +### Private Builds +No data collection is performed when using your private builds. -Telemetry is turned OFF by default while this feature is in BETA. When the feature moves from BETA to RELEASE, developers should expect telemetry to be ON by default when using the Official Builds. This is implemented via 'Platform Telemetry' per vendor platform providers (see telemetry.h). +### Official Builds +Currently telemetry is only implemented for Windows builds, but may be expanded in the future to cover other platforms. Telemetry is turned OFF by default while this feature is in BETA. When the feature moves from BETA to RELEASE, developers should expect telemetry to be ON by default when using the Official Builds. This is implemented via 'Platform Telemetry' per vendor platform providers (see telemetry.h). +#### Technical Details The Windows provider uses the [TraceLogging](https://docs.microsoft.com/en-us/windows/win32/tracelogging/trace-logging-about) API for its implementation. -You can turn this on or off using the Enable/DisableTelemetryEvents() C API. +For API usage details to turn this on/off, please check the API pages: +* [C API](./C_API.md#telemetry)