Tagged articles
21 articles
Page 1 of 1
Top Architecture Tech Stack
Top Architecture Tech Stack
Apr 17, 2026 · Artificial Intelligence

Claude Opus 4.7 Unleashed: Self‑Checking, Enhanced Vision, and Code Review Power

Anthropic’s Claude Opus 4.7 introduces self‑verification, longer task execution, a new xhigh inference tier, three‑fold productivity gains in production workflows, dramatically improved visual resolution and coding abilities—including the /ultrareview command—while keeping pricing unchanged, signaling a shift toward more autonomous AI agents.

APIClaudeCode review
0 likes · 12 min read
Claude Opus 4.7 Unleashed: Self‑Checking, Enhanced Vision, and Code Review Power
Tencent Cloud Developer
Tencent Cloud Developer
Apr 1, 2026 · Artificial Intelligence

Why Raw AI Models Fail and How Harness Turns Them Into Powerful Agents

The article explains the four fundamental shortcomings of raw large language models—no memory, no code execution, outdated knowledge, and no workspace—and shows how a six‑component Harness (file system, Bash + sandbox, AGENTS.md memory, web search + MCP, context engineering, and orchestration + hooks) systematically resolves each issue to make AI agents practical and reliable.

EngineeringHarnessModel
0 likes · 34 min read
Why Raw AI Models Fail and How Harness Turns Them Into Powerful Agents
Model Perspective
Model Perspective
Dec 19, 2025 · Fundamentals

How a Multi‑Dimensional Model Ranks China’s Historical TV Dramas

This study builds a comprehensive evaluation model for Chinese historical drama series, defining four primary and nine secondary indicators, standardizing data, applying weighted calculations and a time‑compensation factor to score 127 candidates and produce a TOP‑100 ranking that highlights the influence of audience reputation, market impact, professional recognition, and historical value.

Modelevaluationhistorical drama
0 likes · 18 min read
How a Multi‑Dimensional Model Ranks China’s Historical TV Dramas
Data STUDIO
Data STUDIO
May 12, 2025 · Fundamentals

Why Pydantic Is a Must‑Know Python Library for Data Validation

This article introduces Pydantic (v2), explains its core validation, parsing, and serialization features, compares it with plain dataclasses, demonstrates basic to advanced usage—including optional fields, default factories, nested models, custom validators, and alias handling—while warning about version differences and AI‑generated code pitfalls.

AliasCustom ValidationFastAPI
0 likes · 16 min read
Why Pydantic Is a Must‑Know Python Library for Data Validation
Alimama Tech
Alimama Tech
May 29, 2024 · Artificial Intelligence

Mixture of Multi‑Modal Experts for Advertising Recall

The Mixed‑Modal Expert Model combines ID features with image and text embeddings through optimized representations and conditional output fusion, dramatically improving advertising recall—especially for long‑tail items—and delivering measurable gains in click‑recall, revenue, CTR, and page views in large‑scale online tests.

ModelMultimodalmachine learning
0 likes · 15 min read
Mixture of Multi‑Modal Experts for Advertising Recall
php Courses
php Courses
Jan 6, 2022 · Backend Development

Implementing Redis Cache in PHP Using the __call Magic Method

This article explains how to integrate Redis caching into PHP applications by leveraging the __call magic method to create cache, clear, and flush operations for model methods, enabling shared model layers, resource‑efficient caching, flexible data source selection, and clean, reusable code.

BackendModelPHP
0 likes · 7 min read
Implementing Redis Cache in PHP Using the __call Magic Method
Senior Brother's Insights
Senior Brother's Insights
Dec 13, 2021 · Fundamentals

Why Good Code Structure Matters and How to Build One

A well‑designed code structure reduces hand‑off friction, eases collaboration, and turns tangled, messy code into a clear, modular system by applying single‑responsibility, reusability, and explicit definitions across layers such as Model, Util, Service, Dao, and Controller.

ModelService Layercode architecture
0 likes · 9 min read
Why Good Code Structure Matters and How to Build One
php Courses
php Courses
Jan 25, 2021 · Backend Development

Deep Dive into ThinkPHP Model Implementation and Save Method Execution

This article provides a comprehensive, step‑by‑step analysis of ThinkPHP's Model class, illustrating how the framework organizes model files, utilizes traits and ArrayAccess, and executes the save method—including data validation, insert/update logic, and the underlying execute routine that interacts with the database via PDO.

BackendModelORM
0 likes · 9 min read
Deep Dive into ThinkPHP Model Implementation and Save Method Execution
php Courses
php Courses
Jan 22, 2021 · Backend Development

Laravel Eloquent Model Tips: Selecting Attributes, Cloning, Comparing, Refreshing, Updating Relations, Soft Deletes, and Change Detection

This article presents a collection of practical Laravel Eloquent model techniques, including selecting specific attributes with find, cloning models via replicate, comparing models with is, refreshing and reloading records, updating related models with push, customizing soft‑delete columns, and detecting attribute changes using getChanges, getDirty, and getOriginal.

BackendEloquentLaravel
0 likes · 5 min read
Laravel Eloquent Model Tips: Selecting Attributes, Cloning, Comparing, Refreshing, Updating Relations, Soft Deletes, and Change Detection
php Courses
php Courses
Dec 9, 2020 · Backend Development

How to Specify a Custom Table Name for a Laravel Model

This guide explains why Laravel automatically pluralizes model names to table names, the problems it can cause, and how to override the default by adding a protected $table property in the model class to map the model to a custom table name.

BackendCustom TableLaravel
0 likes · 2 min read
How to Specify a Custom Table Name for a Laravel Model
DataFunTalk
DataFunTalk
Sep 26, 2020 · Artificial Intelligence

What Makes a Good Model? Understanding Model Concepts, Types, and Evaluation in Data Science

This article explores the definition of a model, distinguishes business, data, and function models, discusses criteria for a good model—including performance, fidelity to real‑world relationships, and interpretability—and examines why a universal model does not exist, all within the context of data science and AI.

Data ScienceInterpretabilityModel
0 likes · 18 min read
What Makes a Good Model? Understanding Model Concepts, Types, and Evaluation in Data Science
Laravel Tech Community
Laravel Tech Community
Apr 21, 2020 · Backend Development

Master Laravel Eloquent: Essential Model Cheat Sheet & Usage Guide

This cheat sheet provides a concise yet comprehensive guide to Laravel's Eloquent Model, covering definition, artisan commands, common CRUD methods, soft‑deletes, relationship types, model events, and configuration tips, all illustrated with ready‑to‑copy code examples.

BackendEloquentLaravel
0 likes · 9 min read
Master Laravel Eloquent: Essential Model Cheat Sheet & Usage Guide
Laravel Tech Community
Laravel Tech Community
Apr 16, 2020 · Backend Development

Laravel Eloquent ORM: Defining Models, Queries, and Data Operations

This tutorial explains how to configure Laravel's Eloquent ORM, create and customize model classes, manage table names, primary keys, timestamps, perform queries, insert, update, delete records, handle soft deletes, apply global and local scopes, and work with model events and observers, all with practical PHP code examples.

EloquentLaravelModel
0 likes · 22 min read
Laravel Eloquent ORM: Defining Models, Queries, and Data Operations
Test Development Learning Exchange
Test Development Learning Exchange
Nov 25, 2018 · Backend Development

Mastering Django Model Meta Options: A Complete Guide

This article explains every Django Model Meta attribute—including abstract, app_label, db_table, db_tablespace, get_latest_by, managed, order_with_respect_to, ordering, permissions, proxy, unique_together, verbose_name, and verbose_name_plural—detailing their purpose, usage, and code examples for precise database and admin control.

BackendDjangoMeta
0 likes · 6 min read
Mastering Django Model Meta Options: A Complete Guide
Beike Product & Technology
Beike Product & Technology
Aug 15, 2018 · Backend Development

Applying Yii2 Model Validation with Scenarios and Rules

This article explains how Yii2 uses validators and scenario configurations to perform comprehensive data validation in PHP models, illustrating the approach with a complete code example, detailed rule definitions, and guidance on using on/except, message, and scenarios methods.

BackendModelPHP
0 likes · 7 min read
Applying Yii2 Model Validation with Scenarios and Rules
Test Development Learning Exchange
Test Development Learning Exchange
Jun 26, 2018 · Backend Development

Comprehensive Django ORM Guide: Model Definition, Custom Table Names, Indexes, Relationships, Query Optimization, and Validation

This article provides an in‑depth tutorial on using Django's ORM, covering model creation, custom table names, single and composite indexes, one‑to‑many and many‑to‑many relationships, forward and reverse lookups, performance tuning with select_related and prefetch_related, and model validation techniques.

BackendDjangoModel
0 likes · 21 min read
Comprehensive Django ORM Guide: Model Definition, Custom Table Names, Indexes, Relationships, Query Optimization, and Validation
21CTO
21CTO
Nov 15, 2017 · Artificial Intelligence

What Is Machine Learning? Core Concepts Explained Simply

This article introduces the fundamental concepts of machine learning, defining the terms "machine" and "learning," presenting Tom Mitchell's formal definition, outlining the roles of learners and predictors, and contrasting machine‑learning programs with traditional software through clear diagrams.

DefinitionModellearning process
0 likes · 4 min read
What Is Machine Learning? Core Concepts Explained Simply