Skip to content

Commit

Permalink
style(models): Replaces non-ASCII charactes in pdl files with ASCII c… (
Browse files Browse the repository at this point in the history
  • Loading branch information
nmbryant authored and Eric Yomi committed Feb 8, 2023
1 parent 0b3e6a8 commit bdf58fb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 cameras 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]
Expand Down

0 comments on commit bdf58fb

Please sign in to comment.