public boolean allowAutoInferFeature()

in src/main/java/com/amazonaws/services/neptune/profiles/neptune_ml/v2/config/ElementConfig.java [65:94]


    public boolean allowAutoInferFeature(Label label, String property){
        if (hasClassificationSpecificationForProperty(label, property)) {
            return false;
        }
        if (hasNoneFeatureSpecification(label, property)){
            return false;
        }
        if (hasTfIdfSpecification(label, property)){
            return false;
        }
        if (hasDatetimeSpecification(label, property)){
            return false;
        }
        if (hasWord2VecSpecification(label, property)){
            return false;
        }
        if (hasFastTextSpecification(label, property)){
            return false;
        }
        if (hasSbertSpecification(label, property)){
            return false;
        }
        if (hasNumericalBucketSpecification(label, property)){
            return false;
        }
        if (hasFeatureOverrideForProperty(label, property)){
            return false;
        }
        return true;
    }