npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

cosinity

v1.0.3

Published

A simple package for cosine similarity calculation with both module support.

Downloads

231

Readme

Cosinity

NPM Version Downloads

Cosinity is a lightweight, zero-dependency NPM package for calculating the cosine similarity between two vectors. It's particularly useful for working with vector embeddings, such as those obtained from the OpenAI Embedding API, enabling applications in semantic similarity, recommendation systems, and more.

Table of Contents

Features

  • Lightweight: Minimalistic implementation without external dependencies.
  • Flexible: Works with both ES6 Modules (import) and CommonJS (require).
  • TypeScript Support: Built-in TypeScript type definitions for type safety.
  • Zero Dependencies: No additional packages required.
  • High Performance: Optimized for performance with large vectors.

Installation

You can install Cosinity via NPM:

npm install cosinity

Or with Yarn:

yarn add cosinity

Usage

ES6 Modules

import cosineSimilarity from "cosinity";

const vectorA = [1, 2, 3];
const vectorB = [4, 5, 6];

const similarity = cosineSimilarity(vectorA, vectorB);
console.log("Cosine Similarity:", similarity);

CommonJS

const cosineSimilarity = require("cosinity");

const vectorA = [1, 2, 3];
const vectorB = [4, 5, 6];

const similarity = cosineSimilarity(vectorA, vectorB);
console.log("Cosine Similarity:", similarity);

API

cosineSimilarity(vectorA, vectorB)

Calculates the cosine similarity between two vectors.

Parameters

  • vectorA number[]: The first vector.
  • vectorB number[]: The second vector.

Returns

  • number: The cosine similarity between vectorA and vectorB. The value ranges from -1 (exact opposite) to 1 (exact same), where 0 indicates orthogonality (no similarity).

Throws

  • Error: If the input vectors are not of the same length or are empty.

Examples

Basic Example

import cosineSimilarity from "cosinity";

const vectorA = [0, 1];
const vectorB = [1, 0];

const similarity = cosineSimilarity(vectorA, vectorB);
console.log("Cosine Similarity:", similarity); // Output: 0

Using with OpenAI Embeddings

Cosinity can be integrated with OpenAI's Embedding API to calculate the similarity between text snippets.

import OpenAI from "openai";
import cosineSimilarity from "cosinity";

const openai = new OpenAI({
  apiKey: "YOUR_OPENAI_API_KEY", // Replace with your OpenAI API key
});

async function getEmbedding(text) {
  const response = await openai.embeddings.create({
    model: "text-embedding-3-small",
    input: text,
    encoding_format: "float",
  });
  return response.data[0].embedding;
}

async function compareTexts(text1, text2) {
  const [embedding1, embedding2] = await Promise.all([
    getEmbedding(text1),
    getEmbedding(text2),
  ]);

  const similarity = cosineSimilarity(embedding1, embedding2);

  console.log(
    `Cosine Similarity between "${text1}" and "${text2}":`,
    similarity
  );
}

compareTexts("Hello, world!", "Hi, universe!");

Sample Output

Cosine Similarity between "Hello, world!" and "Hi, universe!": 0.87654321

Error Handling

The cosineSimilarity function performs input validation:

  • Vector Length Mismatch: Throws an error if vectors vectorA and vectorB are not of the same length.
  • Empty Vectors: Throws an error if either vector is empty.
  • Non-Numeric Values: Throws an error if vectors contain non-numeric values.

Example:

try {
  cosineSimilarity([1, 2], [1, 2, 3]);
} catch (error) {
  console.error(error.message); // Output: Vectors must be of the same length and not empty.
}

Performance Considerations

  • Large Vectors: Cosinity is optimized for performance, but when working with extremely large vectors (e.g., embeddings with thousands of dimensions), consider batching or streaming if you experience performance issues.
  • Floating-Point Precision: Be aware of floating-point precision limitations when dealing with very small or very large numbers.

Contributing

Contributions are welcome!

  1. Fork the repository.

  2. Clone your fork:

    git clone https://github.com/develanet/cosinity.git
  3. Create a new branch:

    git checkout -b feature/my-new-feature
  4. Commit your changes:

    git commit -am 'Add new feature'
  5. Push to the branch:

    git push origin feature/my-new-feature
  6. Submit a Pull Request.

Please make sure your code passes existing tests and add new tests for your features.

License

This project is licensed under the MIT License - see the LICENSE file for details.


Made with ❤️ by Zay

Acknowledgments

  • Inspired by the need for a simple way to calculate cosine similarity for vector embeddings.
  • Thanks to the OpenAI community for the support and collaboration.

Contact

For any questions or suggestions, feel free to open an issue or contact me at [email protected].