You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: Feature and enhancement proposals in oracle-ads library
3
+
title: "[FR]: "
4
+
labels: [Task, Backlog]
5
+
assignees:
6
+
- octocat
7
+
body:
8
+
- type: markdown
9
+
attributes:
10
+
value: |
11
+
Before proceeding, please review the [Contributing to this repository](https://github.com/oracle/accelerated-data-science/blob/main/CONTRIBUTING.md) and the [Code of Conduct](https://github.com/oracle/.github/blob/main/CODE_OF_CONDUCT.md).
12
+
13
+
---
14
+
15
+
Thank you for submitting a feature request.
16
+
- type: dropdown
17
+
id: contribution
18
+
attributes:
19
+
label: Willingness to contribute
20
+
description: Would you or another member of your organization be willing to contribute an implementation of this feature?
21
+
options:
22
+
- Yes. I can contribute this feature independently.
23
+
- Yes. I would be willing to contribute this feature with guidance from the oracle-ads team.
24
+
- No. I cannot contribute this feature at this time.
25
+
validations:
26
+
required: true
27
+
- type: textarea
28
+
attributes:
29
+
label: Proposal Summary
30
+
description: |
31
+
In a few sentences, provide a clear, high-level description of the feature request
32
+
validations:
33
+
required: true
34
+
- type: textarea
35
+
attributes:
36
+
label: Motivation
37
+
description: |
38
+
- What is the use case for this feature?
39
+
- Why is this use case valuable to support for OCI DataScience users in general?
40
+
- Why is this use case valuable to support for your project(s) or organization?
41
+
- Why is it currently difficult to achieve this use case?
42
+
value: |
43
+
> #### What is the use case for this feature?
44
+
45
+
> #### Why is this use case valuable to support for OCI DataScience users in general?
46
+
47
+
> #### Why is this use case valuable to support for your project(s) or organization?
48
+
49
+
> #### Why is it currently difficult to achieve this use case?
50
+
validations:
51
+
required: true
52
+
- type: textarea
53
+
attributes:
54
+
label: Details
55
+
description: |
56
+
Use this section to include any additional information about the feature. If you have a proposal for how to implement this feature, please include it here. For implementation guidelines, please refer to the [Contributing to this repository](https://github.com/oracle/accelerated-data-science/blob/main/CONTRIBUTING.md).
Copy file name to clipboardExpand all lines: docs/source/user_guide/model_registration/model_artifact.rst
+19-1Lines changed: 19 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,6 +30,7 @@ Auto generation of ``score.py`` with framework specific code for loading models
30
30
31
31
To accomodate for other frameworks that are unknown to ADS, a template code for ``score.py`` is generated in the provided artificat directory location.
32
32
33
+
33
34
Prepare the Model Artifact
34
35
--------------------------
35
36
@@ -98,8 +99,25 @@ ADS automatically captures:
98
99
* ``UseCaseType`` in ``metadata_taxonomy`` cannot be automatically populated. One way to populate the use case is to pass ``use_case_type`` to the ``prepare`` method.
99
100
* Model introspection is automatically triggered.
100
101
101
-
.. include:: _template/score.rst
102
+
Prepare with custom ``score.py``
103
+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
104
+
105
+
.. versionadded:: 2.8.4
102
106
107
+
You could provide the location of your own ``score.py`` by ``score_py_uri`` in :py:meth:`~ads.model.GenericModel.prepare`.
108
+
The provided ``score.py`` will be added into model artifact.
0 commit comments