Tagged articles
13 articles
Page 1 of 1
Qborfy AI
Qborfy AI
Feb 20, 2026 · Artificial Intelligence

Mastering Model Fine‑Tuning: Theory, Workflow, and Real‑World Code

This article explains fine‑tuning as a second‑stage training method that adapts large pre‑trained models to specific tasks, outlines the three‑phase workflow, compares it with prompt engineering and retrieval‑augmented generation, and provides four detailed case studies with complete code snippets and best‑practice tips.

Fine-tuningLoRAOpenAI
0 likes · 20 min read
Mastering Model Fine‑Tuning: Theory, Workflow, and Real‑World Code
BirdNest Tech Talk
BirdNest Tech Talk
Oct 20, 2025 · Artificial Intelligence

How Embedding Models Power Semantic Search: A Hands‑On LangChain Guide

This article explains what embeddings are, how LangChain’s Embeddings interface abstracts various providers, compares common models, and walks through a complete Python example that uses a Chinese‑optimized HuggingFace model to generate document and query vectors, compute cosine similarity, and identify the most relevant text.

LangChainNLPPython
0 likes · 9 min read
How Embedding Models Power Semantic Search: A Hands‑On LangChain Guide
Tech Minimalism
Tech Minimalism
Oct 15, 2025 · Cloud Computing

Free Full Guide to Deploy n8n on HuggingFace

This step‑by‑step tutorial shows how to create a Supabase PostgreSQL database, copy and configure an n8n space on HuggingFace, set up the host URL, verify database connectivity, test webhook functionality, and manage the deployed project.

Supabasehuggingfacen8n
0 likes · 7 min read
Free Full Guide to Deploy n8n on HuggingFace
Code Mala Tang
Code Mala Tang
Oct 8, 2025 · Artificial Intelligence

Quickly Add NLP to Node Apps with Hugging Face Transformers.js

This tutorial shows how to integrate Hugging Face's open‑source Transformers.js library into Node.js projects, covering setup, the Pipeline API, and practical code examples for sentiment analysis, zero‑shot classification, text generation, translation, and question answering, while also discussing when to prefer Python alternatives.

NLPPipelineTransformers.js
0 likes · 15 min read
Quickly Add NLP to Node Apps with Hugging Face Transformers.js
AI Algorithm Path
AI Algorithm Path
Aug 24, 2025 · Artificial Intelligence

Qwen-Image-Edit: Alibaba’s Open‑Source State‑of‑the‑Art Image Editing Model

Qwen-Image-Edit, built on the 20B‑parameter Qwen‑Image foundation, introduces a dual‑path architecture that simultaneously understands semantic intent and visual details, enabling precise semantic and appearance edits, robust text manipulation, and fine‑grained region control, with open‑source weights on HuggingFace and benchmark‑proven superiority over existing models.

AI image manipulationQwen-Image-Editdiffusers
0 likes · 7 min read
Qwen-Image-Edit: Alibaba’s Open‑Source State‑of‑the‑Art Image Editing Model
AI Algorithm Path
AI Algorithm Path
Jul 15, 2025 · Artificial Intelligence

Day 8: Fine‑Tuning CLIP for Image‑Text Tasks – A Beginner’s Guide

This tutorial walks through fine‑tuning OpenAI's CLIP ViT‑B/32 on a small image‑text dataset in a Kaggle notebook, covering environment setup, model loading, data preprocessing with CLIPProcessor, training a linear head, and observing loss convergence to align visual and textual embeddings.

CLIPFine-tuningKaggle
0 likes · 5 min read
Day 8: Fine‑Tuning CLIP for Image‑Text Tasks – A Beginner’s Guide
AI Algorithm Path
AI Algorithm Path
Jul 2, 2025 · Artificial Intelligence

Exploring the Open‑Source Flux.1 Kontext Dev Model for Advanced Image Editing

Black Forest Labs releases the open‑source Flux.1 Kontext Dev model, a 12‑billion‑parameter image‑editing system whose weights are publicly available; the article details its core features, benchmark‑level performance comparable to leading commercial models, access via HuggingFace, and step‑by‑step usage through Fal AI and Replicate APIs.

AI modelFal AIFlux.1
0 likes · 9 min read
Exploring the Open‑Source Flux.1 Kontext Dev Model for Advanced Image Editing
AI Algorithm Path
AI Algorithm Path
Jun 15, 2025 · Artificial Intelligence

Fine‑Tuning Text Embeddings for Domain‑Specific Search: A Complete Walkthrough

This article explains why generic text‑embedding models often fail in specialized retrieval tasks, then demonstrates how to fine‑tune such models using contrastive learning, curated job‑listing data, and the Sentence‑Transformers library, achieving near‑perfect accuracy on a job‑matching benchmark.

Fine-tuningSentence-Transformerscontrastive learning
0 likes · 11 min read
Fine‑Tuning Text Embeddings for Domain‑Specific Search: A Complete Walkthrough
OPPO Kernel Craftsman
OPPO Kernel Craftsman
Mar 22, 2024 · Artificial Intelligence

InternLM Model Fine-Tuning Tutorial with XTuner: Chat Format and Practical Implementation Guide

This tutorial walks through fine‑tuning Shanghai AI Lab’s open‑source InternLM models with XTuner, explaining chat‑format conventions, loading and inference (including multimodal InternLM‑XComposer), dataset preparation, configuration sections, DeepSpeed acceleration, and memory‑efficient QLoRA details for 7‑B‑parameter chat models.

Chat FormatDeepSpeedFine-tuning
0 likes · 22 min read
InternLM Model Fine-Tuning Tutorial with XTuner: Chat Format and Practical Implementation Guide
Architect
Architect
Jul 1, 2023 · Artificial Intelligence

Comprehensive Guide to Text Generation Decoding Strategies with HuggingFace Transformers

This tutorial explores various text generation decoding methods—including greedy search, beam search, top‑k/top‑p sampling, sample‑and‑rank, and group beam search—explaining their principles, providing detailed Python code examples, and comparing their use in modern large language models.

Beam SearchGreedy SearchSampling
0 likes · 59 min read
Comprehensive Guide to Text Generation Decoding Strategies with HuggingFace Transformers
Tencent Cloud Developer
Tencent Cloud Developer
Jun 1, 2023 · Artificial Intelligence

A Comprehensive Guide to Decoding Strategies for Text Generation with HuggingFace Transformers

This guide thoroughly explains the major decoding strategies for neural text generation in HuggingFace Transformers—including greedy, beam, diverse beam, sampling, top‑k, top‑p, sample‑and‑rank, beam sampling, and group beam search—detailing their principles, Python implementations with LogitsProcessor components, workflow diagrams, comparative analysis, and references to original research.

Beam SearchSamplingText Generation
0 likes · 60 min read
A Comprehensive Guide to Decoding Strategies for Text Generation with HuggingFace Transformers