Skip to content Skip to sidebar Skip to footer

Predicting a Ball Trajectory. Polynomial Fit in Python with NumPy | by Florian Trautweiler | Jan, 2025

Polynomial Fit in Python with NumPy Ball Tracking and Trajectory PredictionIn a previous project I visualized the trajectory of a ball that I threw vertically into the air with a real-time position, velocity and acceleration plot. Extending upon this project, I wanted to calculate and visualize a trajectory prediction based on a simple physics model.…

Read More

Multi-Agentic RAG with Hugging Face Code Agents | by Gabriele Sgroi, PhD | Dec, 2024

Using Qwen2.5–7B-Instruct powered code agents to create a local, open source, multi-agentic RAG system Photo by Jaredd Craig on UnsplashLarge Language Models have shown impressive capabilities and they are still undergoing steady improvements with each new generation of models released. Applications such as chatbots and summarisation can directly exploit the language proficiency of LLMs as…

Read More

3 Business Skills You Need to Progress Your Data Science Career in 2025 | by Dr. Varshita Sher | Dec, 2024

If you have been a data scientist for a while, sooner or later you’ll notice that your day-to-day has shifted from a VSCode-loving, research paper-reading, git-version-committing data scientist to a collaboration-driving, project-scoping, stakeholder-managing, and strategy-setting individual. This shift will be gradual and almost unnoticeable but one that will require you to put on different hats…

Read More

Combining Large and Small LLMs to Boost Inference Time and Quality | by Richa Gadgil | Dec, 2024

Implementing Speculative and Contrastive Decoding Large Language models are comprised of billions of parameters (weights). For each word it generates, the model has to perform computationally expensive calculations across all of these parameters. Large Language models accept a sentence, or sequence of tokens, and generate a probability distribution of the next most likely token. Thus,…

Read More