# Function for AI data processing with NumPy
import numpy as np

def process_features(features, threshold=1.0):
    high_features = [f for f in features if f > threshold]
    return np.array(high_features)

data = [0.5, 1.2, 2.8, 3.5]
processed = process_features(data, 2.0)
print("High Features:", processed)
print("Feature Count:", len(processed))