Newer
Older
# Copyright 2021-2023 H2020 TeraFlow (https://www.teraflow-h2020.eu/)
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# 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.
Carlos Natalino Da Silva
committed
import logging
import grpc
Carlos Natalino Da Silva
committed
from common.proto.dbscanserving_pb2 import DetectionRequest, DetectionResponse
from common.proto.dbscanserving_pb2_grpc import DetectorServicer
Carlos Natalino Da Silva
committed
from common.rpc_method_wrapper.Decorator import (
create_metrics,
safe_and_metered_rpc_method,
)
from sklearn.cluster import DBSCAN
LOGGER = logging.getLogger(__name__)
Carlos Natalino Da Silva
committed
SERVICE_NAME = "DbscanServing"
METHOD_NAMES = ["Detect"]
METRICS = create_metrics(SERVICE_NAME, METHOD_NAMES)
class DbscanServiceServicerImpl(DetectorServicer):
def __init__(self):
Carlos Natalino Da Silva
committed
LOGGER.debug("Creating Servicer...")
LOGGER.debug("Servicer Created")
@safe_and_metered_rpc_method(METRICS, LOGGER)
Carlos Natalino Da Silva
committed
def Detect(
self, request: DetectionRequest, context: grpc.ServicerContext
) -> DetectionResponse:
if request.num_samples != len(request.samples):
Carlos Natalino Da Silva
committed
context.set_details(
"The sample dimension declared does not match with the number of samples received."
)
LOGGER.debug(
f"The sample dimension declared does not match with the number of samples received. Declared: {request.num_samples} - Received: {len(request.samples)}"
)
context.set_code(grpc.StatusCode.INVALID_ARGUMENT)
return DetectionResponse()
# TODO: implement the validation of the features dimension
Carlos Natalino Da Silva
committed
clusters = DBSCAN(eps=request.eps, min_samples=request.min_samples).fit_predict(
[[x for x in sample.features] for sample in request.samples]
)
response = DetectionResponse()
for cluster in clusters:
response.cluster_indices.append(cluster)
return response