mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-18 14:16:48 +00:00
style(models): Replaces non-ASCII charactes in pdl files with ASCII c… (#7105)
This commit is contained in:
parent
e92ce161f9
commit
dbc89c8680
@ -12,7 +12,7 @@ enum MLFeatureDataType {
|
||||
USELESS
|
||||
|
||||
/**
|
||||
* Nominal data is made of discrete values with no numerical relationship between the different categories — mean and median are meaningless.
|
||||
* Nominal data is made of discrete values with no numerical relationship between the different categories - mean and median are meaningless.
|
||||
* Animal species is one example. For example, pig is not higher than bird and lower than fish.
|
||||
*/
|
||||
NOMINAL
|
||||
@ -24,19 +24,19 @@ enum MLFeatureDataType {
|
||||
ORDINAL
|
||||
|
||||
/**
|
||||
* Binary data is discrete data that can be in only one of two categories — either yes or no, 1 or 0, off or on, etc
|
||||
* Binary data is discrete data that can be in only one of two categories - either yes or no, 1 or 0, off or on, etc
|
||||
*/
|
||||
BINARY
|
||||
|
||||
/**
|
||||
* Count data is discrete whole number data — no negative numbers here.
|
||||
* Count data is discrete whole number data - no negative numbers here.
|
||||
* Count data often has many small values, such as zero and one.
|
||||
*/
|
||||
COUNT
|
||||
|
||||
/**
|
||||
* Time data is a cyclical, repeating continuous form of data.
|
||||
* The relevant time features can be any period— daily, weekly, monthly, annual, etc.
|
||||
* The relevant time features can be any period- daily, weekly, monthly, annual, etc.
|
||||
*/
|
||||
TIME
|
||||
|
||||
|
@ -14,7 +14,7 @@ record EthicalConsiderations {
|
||||
data: optional array[string]
|
||||
|
||||
/**
|
||||
* Is the MLModel intended to inform decisions about matters central to human life or flourishing – e.g., health or safety? Or could it be used in such a way?
|
||||
* Is the MLModel intended to inform decisions about matters central to human life or flourishing - e.g., health or safety? Or could it be used in such a way?
|
||||
*/
|
||||
humanLife: optional array[string]
|
||||
|
||||
|
@ -13,7 +13,7 @@ record MLModelFactors {
|
||||
|
||||
/**
|
||||
* The performance of a MLModel can vary depending on what instruments were used to capture the input to the MLModel.
|
||||
* For example, a face detection model may perform differently depending on the camera’s hardware and software,
|
||||
* For example, a face detection model may perform differently depending on the camera's hardware and software,
|
||||
* including lens, image stabilization, high dynamic range techniques, and background blurring for portrait mode.
|
||||
*/
|
||||
instrumentation: optional array[string]
|
||||
|
Loading…
x
Reference in New Issue
Block a user