All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.facebook.presto.ml.EvaluateClassifierPredictionsStateFactory Maven / Gradle / Ivy

There is a newer version: 0.290
Show newest version
/*
 * 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.
 */
package com.facebook.presto.ml;

import com.facebook.presto.array.ObjectBigArray;
import com.facebook.presto.spi.function.AccumulatorStateFactory;
import com.facebook.presto.spi.function.GroupedAccumulatorState;
import org.openjdk.jol.info.ClassLayout;

import java.util.HashMap;
import java.util.Map;

public class EvaluateClassifierPredictionsStateFactory
        implements AccumulatorStateFactory
{
    private static final long HASH_MAP_SIZE = ClassLayout.parseClass(HashMap.class).instanceSize();

    @Override
    public EvaluateClassifierPredictionsState createSingleState()
    {
        return new SingleEvaluateClassifierPredictionsState();
    }

    @Override
    public Class getSingleStateClass()
    {
        return SingleEvaluateClassifierPredictionsState.class;
    }

    @Override
    public EvaluateClassifierPredictionsState createGroupedState()
    {
        return new GroupedEvaluateClassifierPredictionsState();
    }

    @Override
    public Class getGroupedStateClass()
    {
        return GroupedEvaluateClassifierPredictionsState.class;
    }

    public static class GroupedEvaluateClassifierPredictionsState
            implements GroupedAccumulatorState, EvaluateClassifierPredictionsState
    {
        private final ObjectBigArray> truePositives = new ObjectBigArray<>();
        private final ObjectBigArray> falsePositives = new ObjectBigArray<>();
        private final ObjectBigArray> falseNegatives = new ObjectBigArray<>();
        private long groupId;
        private long memoryUsage;

        @Override
        public void setGroupId(long groupId)
        {
            this.groupId = groupId;
        }

        @Override
        public void addMemoryUsage(int memory)
        {
            memoryUsage += memory;
        }

        @Override
        public Map getTruePositives()
        {
            if (truePositives.get(groupId) == null) {
                truePositives.set(groupId, new HashMap<>());
                memoryUsage += HASH_MAP_SIZE;
            }
            return truePositives.get(groupId);
        }

        @Override
        public Map getFalsePositives()
        {
            if (falsePositives.get(groupId) == null) {
                falsePositives.set(groupId, new HashMap<>());
                memoryUsage += HASH_MAP_SIZE;
            }
            return falsePositives.get(groupId);
        }

        @Override
        public Map getFalseNegatives()
        {
            if (falseNegatives.get(groupId) == null) {
                falseNegatives.set(groupId, new HashMap<>());
                memoryUsage += HASH_MAP_SIZE;
            }
            return falseNegatives.get(groupId);
        }

        @Override
        public void ensureCapacity(long size)
        {
            truePositives.ensureCapacity(size);
            falsePositives.ensureCapacity(size);
            falseNegatives.ensureCapacity(size);
        }

        @Override
        public long getEstimatedSize()
        {
            return memoryUsage + truePositives.sizeOf() + falsePositives.sizeOf() + falseNegatives.sizeOf();
        }
    }

    public static class SingleEvaluateClassifierPredictionsState
            implements EvaluateClassifierPredictionsState
    {
        private final Map truePositives = new HashMap<>();
        private final Map falsePositives = new HashMap<>();
        private final Map falseNegatives = new HashMap<>();
        private int memoryUsage;

        @Override
        public long getEstimatedSize()
        {
            return memoryUsage + 3 * HASH_MAP_SIZE;
        }

        @Override
        public void addMemoryUsage(int memory)
        {
            memoryUsage += memory;
        }

        @Override
        public Map getTruePositives()
        {
            return truePositives;
        }

        @Override
        public Map getFalsePositives()
        {
            return falsePositives;
        }

        @Override
        public Map getFalseNegatives()
        {
            return falseNegatives;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy