|
- name: Feature Request
- description: Request/Propose a new feature of Tensorflow.NET.
- title: "[Feature Request]: "
- labels: [feature-request]
- body:
- - type: markdown
- attributes:
- value: |
- We welcome feature proposal/request! This template will help us gather the information we need to implement the new feature.
- - type: markdown
- id: background
- attributes:
- label: Background and Feature Description
- description: Please describe the purpose and value of the new feature here. If the feature is linked to a specific problem, please describe it or put the link here.
- placeholder: Purpose
- validations:
- required: true
- - type: markdown
- id: api-proposal
- attributes:
- label: API Definition and Usage
- description: |
- Please tell us the new API related to the requested feature, if any.
- placeholder: API declaration (no method bodies)
- value: |
- ```cs
- public Tensor NewFunc(Tensor x, int y);
-
- var result = NewFunc(input, index);
- ```
- validations:
- required: false
- - type: markdown
- id: alternatives
- attributes:
- label: Alternatives
- description: |
- Please provide some alternative information of the feature, if any. For example, if you request a feature which depends on a specific device, please provide the device information.
- placeholder: Alternatives
- validations:
- required: false
- - type: markdown
- id: risks
- attributes:
- label: Risks
- description: |
- Please mention any risks that to your knowledge the API proposal might entail, such as breaking changes, performance regressions, etc.
- placeholder: Risks
- validations:
- required: false
- - type: markdown
- attributes:
- value: |
- Thanks for your contributing!
|