Skip to content

Commit

Permalink
Merge pull request #114 from george0st/transaction
Browse files Browse the repository at this point in the history
Add comments
  • Loading branch information
george0st authored Jan 13, 2024
2 parents 9f9787b + 15dde19 commit 5918241
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,3 +69,5 @@ The project was tested with these MLRun versions (see [change log](https://docs.
- **Iguazio** (k8s, on-prem with VM with VMware)
- Iguazio 3.5.3 (with MLRun 1.4.1)
- Iguazio 3.5.1 (with MLRun 1.3.0)

NOTE: Current state, only the last MLRun/Iguazio versions are valid for testing.
5 changes: 3 additions & 2 deletions qgate_sln_mlrun/ts/ts502.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def desc(self) -> str:

@property
def long_desc(self):
return "Get data from on-line feature vector"
return "Get data from on-line feature vector(s), focus on target Redis"

def exec(self):
self.get_data_online()
Expand Down Expand Up @@ -68,6 +68,7 @@ def _get_data_online(self, testcase_name, project_name, featurevector_name):
f"feature vector return '{resp[0][feature_name]}'")

def _get_test_setting(self,featurevector_name):
# get information for testing (feature set, entities and features)
test_detail=self.test_setting['vector']['test'][featurevector_name]

test_featureset=test_detail['feature-set']
Expand All @@ -76,7 +77,7 @@ def _get_test_setting(self,featurevector_name):
return test_featureset, test_entities, test_features

def _get_data_hint(self, featurevector_name, test_featureset):

# get data hint for testing
file = os.path.join(os.getcwd(),
self.setup.model_definition,
"03-test",
Expand Down
2 changes: 1 addition & 1 deletion qgate_sln_mlrun/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Store the version here so:

__version__ = '0.1.3'
__version__ = '0.1.4'

0 comments on commit 5918241

Please sign in to comment.