Moozonian
Web Images Developer News Books Maps Shopping Moo-AI
Showing results for also Vector Product
GitHub Repo https://github.com/DoDesCadeaux/vector

DoDesCadeaux/vector

My first Python library. It is a basic vector manipulation. It supports mathematical operations such as vector addition, subtraction, scalar multiplication, scalar division, and transposition. The library also facilitates dot products between vectors of matching dimensions.
GitHub Repo https://github.com/Shreyas-Yadav/Vector-Space

Shreyas-Yadav/Vector-Space

The Vector Space Project is a Python-based library designed to facilitate operations with 2D and 3D vectors. It includes modules for performing vector arithmetic, scalar operations, and calculating vector properties such as magnitude and dot products. The 3D module also supports cross product calculations.
GitHub Repo https://github.com/Mizanur888/VectorDotProductWith_MPI_Scatter

Mizanur888/VectorDotProductWith_MPI_Scatter

In this assignment we parallelize the matrix-vector product to calculate dot product more efficiently. To reducing the calculation time, we send chunks to array to different processes, so that each process can calculate the dot product of chunks of array. Also, we calculate the start, end and total time to determine how long it taken by each process.
GitHub Repo https://github.com/Jamesasome/3D-Vector-Drawer

Jamesasome/3D-Vector-Drawer

Draws 3D vectors in OpenGL and PyQt6, also calculations the sum, difference and cross product of two 3D vectors and plots the result
GitHub Repo https://github.com/hoangsonww/MERN-Stack-Ecommerce-App

hoangsonww/MERN-Stack-Ecommerce-App

🛒 Welcome to Fusion Electronics - a sample full-stack, lightweight, and modern online e-commerce application, built with the MERN (MongoDB, Express, React, Node.js) stack! Also features a product recommendation service using vector search, FAISS, and the Weaviate/Pinecone vector DB!
GitHub Repo https://github.com/kevin-gatimu/products-api-cosmosdb-typescript-vector-search

kevin-gatimu/products-api-cosmosdb-typescript-vector-search

In this guide, we will build a Products API using Express and TypeScript, and integrate Azure Cosmos DB (with vector search capabilities) for managing product data. We'll also implement vector search, enabling us to query items based on vector similarity.
GitHub Repo https://github.com/Hamzas543/vector-Operations-Scalar-Multiplication-Sum-and-Dot-Product-of-Vectors

Hamzas543/vector-Operations-Scalar-Multiplication-Sum-and-Dot-Product-of-Vectors

In this lab you will use Python and NumPy functions to perform main vector operations: scalar multiplication, sum of vectors and their dot product. You will also investigate the speed of calculations using loop and vectorized forms of these main linear algebra operations
GitHub Repo https://github.com/easonlai/product_recommendations_with_gpt

easonlai/product_recommendations_with_gpt

I have improved the demo by using Azure OpenAI’s Embedding model (text-embedding-ada-002), which has a powerful word embedding capability. This model can also vectorize product key phrases and recommend products based on cosine similarity, but with better results. You can find the updated repo here.
GitHub Repo https://github.com/jashbauer/Python-Vector_Class

jashbauer/Python-Vector_Class

Class that builds a vector from a list, defining several vector properties. Vector operations (sum, dot product and length of cross product) are also implemented.
GitHub Repo https://github.com/sarwat12/Sparse_Numeric_Vector

sarwat12/Sparse_Numeric_Vector

This is a Java implementation and representation of a Sparse Numeric Vector, which has applications in efficient dot product calculations. The vector is represented as nodes of a Singly Linked List, and implementations of various supprted operations on a sparse numeric vector are also provided.