blob: cb186017fa4d3a425763b658762376771a199690 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF 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. 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.
*/
#ifndef THETA_JACCARD_SIMILARITY_BASE_HPP_
#define THETA_JACCARD_SIMILARITY_BASE_HPP_
#include <memory>
#include <array>
#include "theta_constants.hpp"
#include "bounds_on_ratios_in_theta_sketched_sets.hpp"
#include "ceiling_power_of_2.hpp"
#include "common_defs.hpp"
namespace datasketches {
template<typename Union, typename Intersection, typename ExtractKey>
class jaccard_similarity_base {
public:
/**
* Computes the Jaccard similarity index with upper and lower bounds. The Jaccard similarity index
* <i>J(A,B) = (A ^ B)/(A U B)</i> is used to measure how similar the two sketches are to each
* other. If J = 1.0, the sketches are considered equal. If J = 0, the two sketches are
* disjoint. A Jaccard of .95 means the overlap between the two
* sets is 95% of the union of the two sets.
*
* <p>Note: For very large pairs of sketches, where the configured nominal entries of the sketches
* are 2^25 or 2^26, this method may produce unpredictable results.
*
* @param sketch_a given sketch A
* @param sketch_b given sketch B
* @return a double array {LowerBound, Estimate, UpperBound} of the Jaccard index.
* The Upper and Lower bounds are for a confidence interval of 95.4% or +/- 2 standard deviations.
*/
template<typename SketchA, typename SketchB>
static std::array<double, 3> jaccard(const SketchA& sketch_a, const SketchB& sketch_b) {
if (reinterpret_cast<const void*>(&sketch_a) == reinterpret_cast<const void*>(&sketch_b)) return {1, 1, 1};
if (sketch_a.is_empty() && sketch_b.is_empty()) return {1, 1, 1};
if (sketch_a.is_empty() || sketch_b.is_empty()) return {0, 0, 0};
auto union_ab = compute_union(sketch_a, sketch_b);
if (identical_sets(sketch_a, sketch_b, union_ab)) return {1, 1, 1};
// intersection
Intersection i;
i.update(sketch_a);
i.update(sketch_b);
i.update(union_ab); // ensures that intersection is a subset of the union
auto inter_abu = i.get_result(false);
return {
bounds_on_ratios_in_theta_sketched_sets<ExtractKey>::lower_bound_for_b_over_a(union_ab, inter_abu),
bounds_on_ratios_in_theta_sketched_sets<ExtractKey>::estimate_of_b_over_a(union_ab, inter_abu),
bounds_on_ratios_in_theta_sketched_sets<ExtractKey>::upper_bound_for_b_over_a(union_ab, inter_abu)
};
}
/**
* Returns true if the two given sketches are equivalent.
* @param sketch_a the given sketch A
* @param sketch_b the given sketch B
* @return true if the two given sketches are exactly equal
*/
template<typename SketchA, typename SketchB>
static bool exactly_equal(const SketchA& sketch_a, const SketchB& sketch_b) {
if (reinterpret_cast<const void*>(&sketch_a) == reinterpret_cast<const void*>(&sketch_b)) return true;
if (sketch_a.is_empty() && sketch_b.is_empty()) return true;
if (sketch_a.is_empty() || sketch_b.is_empty()) return false;
auto union_ab = compute_union(sketch_a, sketch_b);
if (identical_sets(sketch_a, sketch_b, union_ab)) return true;
return false;
}
/**
* Tests similarity of an actual Sketch against an expected Sketch.
* Computes the lower bound of the Jaccard index <i>J<sub>LB</sub></i> of the actual and
* expected sketches.
* if <i>J<sub>LB</sub> &ge; threshold</i>, then the sketches are considered to be
* similar with a confidence of 97.7%.
*
* @param actual the sketch to be tested
* @param expected the reference sketch that is considered to be correct
* @param threshold a real value between zero and one
* @return true if the similarity of the two sketches is greater than the given threshold
* with at least 97.7% confidence
*/
template<typename SketchA, typename SketchB>
static bool similarity_test(const SketchA& actual, const SketchB& expected, double threshold) {
auto jc = jaccard(actual, expected);
return jc[0] >= threshold;
}
/**
* Tests dissimilarity of an actual Sketch against an expected Sketch.
* Computes the upper bound of the Jaccard index <i>J<sub>UB</sub></i> of the actual and
* expected sketches.
* if <i>J<sub>UB</sub> &le; threshold</i>, then the sketches are considered to be
* dissimilar with a confidence of 97.7%.
*
* @param actual the sketch to be tested
* @param expected the reference sketch that is considered to be correct
* @param threshold a real value between zero and one
* @return true if the dissimilarity of the two sketches is greater than the given threshold
* with at least 97.7% confidence
*/
template<typename SketchA, typename SketchB>
static bool dissimilarity_test(const SketchA& actual, const SketchB& expected, double threshold) {
auto jc = jaccard(actual, expected);
return jc[2] <= threshold;
}
private:
template<typename SketchA, typename SketchB>
static typename Union::CompactSketch compute_union(const SketchA& sketch_a, const SketchB& sketch_b) {
const unsigned count_a = sketch_a.get_num_retained();
const unsigned count_b = sketch_b.get_num_retained();
const unsigned lg_k = std::min(std::max(log2(ceiling_power_of_2(count_a + count_b)), theta_constants::MIN_LG_K), theta_constants::MAX_LG_K);
auto u = typename Union::builder().set_lg_k(lg_k).build();
u.update(sketch_a);
u.update(sketch_b);
return u.get_result(false);
}
template<typename SketchA, typename SketchB, typename UnionAB>
static bool identical_sets(const SketchA& sketch_a, const SketchB& sketch_b, const UnionAB& union_ab) {
if (union_ab.get_num_retained() == sketch_a.get_num_retained() &&
union_ab.get_num_retained() == sketch_b.get_num_retained() &&
union_ab.get_theta64() == sketch_a.get_theta64() &&
union_ab.get_theta64() == sketch_b.get_theta64()) return true;
return false;
}
};
} /* namespace datasketches */
# endif