2122

Transforming financial analysis with CreditAI on Amazon Bedrock: Octus’s journey with AWS

Investment professionals face the mounting challenge of processing vast amounts of data to make timely, informed decisions. The traditional approach of manually sifting through countless research documents, industry reports, and financial statements is not only time-consuming but can also lead to missed opportunities and incomplete analysis. This challenge is particularly acute in credit markets, where …

Surreal September: Celebrating Our Winners and Highlights

Surreal September was more than just a challenge—it was about elevating your AI art skills through the imaginative world of surrealism. We provided structured subthemes and a detailed workbook to teach actual surreal design principles, guiding participants through an iterative creative process similar to a condensed AI art course. Surrealism made for the perfect theme because it …

Text Summarization with DistillBart Model

This tutorial is in two parts; they are: • Using DistilBart for Summarization • Improving the Summarization Process Let’s start with a fundamental implementation that demonstrates the key concepts of text summarization with DistilBart: import torch from transformers import AutoTokenizer, AutoModelForSeq2SeqLM class TextSummarizer: def __init__(self, model_name=”sshleifer/distilbart-cnn-12-6″): “””Initialize the summarizer with a pre-trained model.