data-attribute-recommendation-python-sdk
data-attribute-recommendation-python-sdk copied to clipboard
A client SDK for the Data Attribute Recommendation service on SAP Business Technology Platform (SAP BTP). Part of SAP AI Business Services.
This morning, I picked up a Jupyter notebook from last night. When executing requests with a ModelManagerClient instance created yesterday, I received 401 errors. It seems that the code to...
Raised by @karthikmswamy in #93.
Python 3.5 is EOL. We should remove support for Python 3.5. The deprecation of Python 3.5 support is announced in the 0.8.0 release via #98.
This is number 3 from #83 , @mhaas , what do you think? ``` import json class Feature: def __init__(self,columns:list=[]): self.columns = columns self.repr = self._get_def() @property def featuretype(self): pass...
What do you think about API simplification? 1) **Too long import**: _Current_: `from sap.aibus.dar.client.model_manager_client import ModelManagerClient` _Proposal_: 'from sap.dar import MMClient' 2) **Code cutting for model creation**: _Current_: `with open('dar_test.txt',...
Right now, we only allow binary, which requires additional work compared to just opening a file or passing text.
To be able to re-use a model name, we need to delete both the Model resource **and** the Job ressource. If the Model resource has been deleted, it is not...
As raised by @karthikmswamy on #72.
The current implementation will try to perform inference for all chunks. If an exception occurs, the progress is lost. By yielding the individual chunks, the caller can be in charge...