Skip to content

Commit

Permalink
Merge pull request #57 from inception-project/feature/56-Add-simple-l…
Browse files Browse the repository at this point in the history
…ogging-recommender-for-testing

#56 - Add simple logging recommender for testing
  • Loading branch information
reckart authored Mar 12, 2024
2 parents 3907748 + 8221cf3 commit 409739b
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions ariadne/contrib/log_only.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Licensed to the Technische Universität Darmstadt under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The Technische Universität Darmstadt
# licenses this file to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License.
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from typing import List

from cassis import Cas

from ariadne.classifier import Classifier
from ariadne.protocol import TrainingDocument


class LogOnlyRecommender(Classifier):
def fit(self, documents: List[TrainingDocument], layer: str, feature: str, project_id, user_id: str):
print(f'Training triggered for [{feature}] on [{layer}] in [{len(documents)}] documents from project [{project_id}] for user [{user_id}]')

def predict(self, cas: Cas, layer: str, feature: str, project_id: str, document_id: str, user_id: str):
print(f'Prediction triggered on document [{document_id}] for [{feature}] on [{layer}] in project [{project_id}] for user [{user_id}]')

0 comments on commit 409739b

Please sign in to comment.