fairsenseai.analysis.bias.analyze_images_batch

analyze_images_batch(images, use_summarizer, output_filename='image_analysis_results.csv')[source]

Analyzes a batch of images for bias.

Parameters:
  • images (List[str]) – The list of images to analyze for bias.

  • use_summarizer (bool) – Whether to use the summarizer to condense the response.

  • output_filename (Optional[str]) – The filename to save the analysis results.

Returns:

The HTML table containing results of batch analysis.

Return type:

str

Example

>>> results_table_html = analyze_images_batch(["image1.jpg", "image2.png"], use_summarizer=True)