Search

Clear filter
Question
William Vorhees · Aug 4, 2017

AES Encryption

Trying to use AES encryption for a url. I have a plain text string, a 16-byte key and a initialization vector. I am trying to match a C# implementation that uses RijndaelManaged
Article
Alex Woodhead · Jun 13, 2023

LangChain on InterSystems PDF documentation

into Vector Store import lancedb from langchain.embeddings import OpenAIEmbeddings from langchain.vectorstores import LanceDB from langchain.document_loaders import PyPDFLoader
Article
Muhammad Waseem · Jul 4, 2023

Step by step guide to create personalized AI with ChatGPT by using LangChain

the document Step 2: Splitting the document into chunks Step 3: Use Embedding against Chunks Data and convert to vectors Step 4: Save data to the Vector database Step 5
Announcement
Daniel Palevski · Mar 26

General Availability of InterSystems IRIS, InterSystems IRIS for Health, and HealthShare Health Connect 2025.1

In this exciting release, users can expect several new features and enhancements, including: Advanced Vector Search Capabilities A new disk-based Approximate Nearest Neighbor
Announcement
Evgeny Shvarov · 2 hr ago

Technological Bonuses Results for the InterSystems AI Programming Contest

Hi Developers! We are happy to present the bonuses page for the applications submitted to the InterSystems AI Programming Contest: Vector Search, GenAI and AI AgentsContest! See
Article
Renato Banzai · Jul 17, 2020

Using Machine Learning to Organize the Community - 2

', stop_words=stop_words) matrix_x = count_vec.fit_transform(a_dataframe) ``` After run the above methods we have a vectorizer and we will need to keep this vectorizer all
Article
José Pereira · Feb 2, 2021

A custom SQL index with Python features

of this descriptors creates a so called feature space, and each instance of it it's called a vector. The number d of components needed to describe the vectors, defines the feature space and vectors
Question
Kishan Ravindran · Jun 6, 2017

iKnow with Japanese

are equivalent to Concepts in Western languages, based on the grammatical information (but not always Relations) within the sentence, and an algorithm we call Entity Vector determines
Article
Irène Mykhailova · Mar 28

UK&I Data Summit in Birmingham - freebies inside

to the Summit and much more, so read on! First, a bit of background. The first day was dedicated to different workshops, including FHIR Server, Data Fabric Studio, and Vector Search
Article
Yuri Marx · Apr 1

Ask your IRIS classes with Ollama, IRIS VectorDB and Langchain

If you want to know if a class about a topic already exists asking a simple natural language question, it is possible now. Download and run the application https
Question
Scott Roth · Dec 8, 2016

Storing a PDF in a Stream and Seaching for Values within that Stream

(similar to postscript), but more regularly pdfs are containing vectorized graphics. In that case you'd have to run OCR on the document first to get textual information out
Announcement
Andreas Dieckow · Jan 5, 2018

InterSystems Response to Meltdown and Spectre Vulnerabilities

InterSystems continuously monitors our systems for any evidence of attempts to exploit vulnerabilities such as the newly announced Meltdown and Spectre attack vectors
Announcement
Nina Nif3 · Sep 8, 2023

AI internet navigation assistant

of the application. Endpoints: /crawl: Initiates the crawling process. /status: Checks the status of a crawling task. /search: Searches the vector database with a given query
Article
Robbie Luman · Jan 12, 2024

Textual Similarity Comparison using IRIS, Python, and Sentence Transformers

. The code used above is how we can generate the embeddings, which will convert the given string of text into a Python vector that can then be used in the comparison function