Tagged articles

Machine Learning

1959 articles · Page 17 of 20
Xianyu Technology
Xianyu Technology
Nov 2, 2018 · Artificial Intelligence

FireEye AI-Powered Automated Testing Framework: Architecture, Model Selection, and Retraining

FireEye is an AI‑driven automated UI testing framework that ingests simulated and real screenshots, preprocesses images and OCR text, and employs a CNN for page anomalies, an SSD detector for control anomalies, and an LSTM‑based classifier for text anomalies, with Jenkins‑triggered retraining, cloud model storage, and API serving, aiming to simplify testing and enable future AutoML enhancements.

AIKerasMachine Learning
0 likes · 9 min read
FireEye AI-Powered Automated Testing Framework: Architecture, Model Selection, and Retraining
58 Tech
58 Tech
Oct 31, 2018 · Artificial Intelligence

Overview of the WPAI AI Platform Architecture and Implementation

The article presents a comprehensive overview of the WPAI (Wuba Platform of AI) architecture, detailing its machine‑learning and deep‑learning components, feature‑engineering framework, distributed training pipelines, online prediction services, and deployment on Kubernetes‑managed GPU/CPU resources to accelerate AI applications across 58.com business lines.

AI platformMachine LearningWPAI
0 likes · 15 min read
Overview of the WPAI AI Platform Architecture and Implementation
Youku Technology
Youku Technology
Oct 29, 2018 · Artificial Intelligence

Improving Online Video Experience: Youku’s End‑to‑End Video Quality Enhancement Techniques

Youku enhances online video by applying intelligent post‑production contrast mapping, device‑specific HDR tone‑mapping, high‑frame‑rate restoration through frame‑rate conversion, and ROI‑aware encoding that allocates bitrate to key visual areas, complemented by audio processing, to deliver cinema‑grade quality across diverse screens.

HDRMachine LearningROI encoding
0 likes · 9 min read
Improving Online Video Experience: Youku’s End‑to‑End Video Quality Enhancement Techniques
360 Quality & Efficiency
360 Quality & Efficiency
Oct 26, 2018 · Artificial Intelligence

Machine Learning Methods: Discriminative and Generative Models, Semi‑Supervised Learning, and GAN‑Based Classification

This article explains the distinction between discriminative and generative models, outlines the challenges of limited labeled data, introduces semi‑supervised learning principles, and describes GAN‑based semi‑supervised classification algorithms with illustrative diagrams.

Artificial IntelligenceGaNGenerative Models
0 likes · 3 min read
Machine Learning Methods: Discriminative and Generative Models, Semi‑Supervised Learning, and GAN‑Based Classification
21CTO
21CTO
Oct 25, 2018 · Artificial Intelligence

How Recommender Systems Work: From Basics to a Python Demo

This article explains what recommender systems are, their evolution, when to use them, the main techniques—including collaborative filtering, content‑based and knowledge‑based approaches—addresses cold‑start challenges, and provides a step‑by‑step Python implementation with code examples.

AICollaborative FilteringMachine Learning
0 likes · 15 min read
How Recommender Systems Work: From Basics to a Python Demo
Tencent Cloud Developer
Tencent Cloud Developer
Oct 23, 2018 · Artificial Intelligence

Demystifying AI, Machine Learning, and Deep Learning

The article clarifies that artificial intelligence encompasses machine learning, which in turn includes deep learning, and uses real‑world examples—from fraud detection and customer clustering to image recognition and language translation—to illustrate how these data‑driven models learn patterns, make predictions, and transform many industries.

Artificial IntelligenceDeep LearningMachine Learning
0 likes · 12 min read
Demystifying AI, Machine Learning, and Deep Learning
MaGe Linux Operations
MaGe Linux Operations
Oct 19, 2018 · Artificial Intelligence

Why Numpy’s Array vs Matrix Can Trip Up Your Machine Learning Projects

The article examines common pitfalls when using NumPy arrays and matrices for data manipulation in machine learning, highlighting chaotic data structures, inefficient filtering, confusing arithmetic syntax, and unintuitive code patterns compared to MATLAB/Octave, and concludes with a critique of Python’s ergonomics.

Data ProcessingMachine LearningNumPy
0 likes · 7 min read
Why Numpy’s Array vs Matrix Can Trip Up Your Machine Learning Projects
DataFunTalk
DataFunTalk
Oct 17, 2018 · Artificial Intelligence

Design Principles for AI‑Driven Anti‑Fraud Systems

The article outlines Tongdun Technology's anti‑fraud challenges, presents their AI‑based detection solutions, and details design principles—including early warning, multi‑feature analysis, and human‑machine collaboration—to build a robust, multi‑layered fraud prevention framework.

AI designMachine LearningUnsupervised Learning
0 likes · 10 min read
Design Principles for AI‑Driven Anti‑Fraud Systems
Qunar Tech Salon
Qunar Tech Salon
Oct 15, 2018 · Artificial Intelligence

Introduction to Decision Trees with scikit-learn

This article provides a comprehensive guide to decision tree algorithms, covering their theoretical background, classic use‑cases, scikit‑learn's DecisionTreeClassifier parameters, step‑by‑step Python examples for training, visualizing, and exporting trees, as well as a comparison of ID3, C4.5, and CART methods with their advantages and limitations.

Machine LearningPythonclassification
0 likes · 20 min read
Introduction to Decision Trees with scikit-learn
Hulu Beijing
Hulu Beijing
Oct 12, 2018 · Artificial Intelligence

How Hulu Boosted Recommendation Diversity with Determinantal Point Processes

This article explains how Hulu tackled the trade‑off between accuracy and diversity in its massive video recommendation system by applying Determinantal Point Processes and an efficient incremental greedy algorithm, achieving 100× speed‑ups without sacrificing recommendation quality.

DiversityHuluMachine Learning
0 likes · 7 min read
How Hulu Boosted Recommendation Diversity with Determinantal Point Processes
Tencent Cloud Developer
Tencent Cloud Developer
Oct 11, 2018 · Artificial Intelligence

Demystifying Neural Networks: A Mathematical Approach (Part 1)

The article mathematically demystifies neural networks by first illustrating a linear predictor for kilometre‑to‑mile conversion and a basic bug classifier, then exposing the limits of single linear boundaries (e.g., XOR), before introducing artificial neurons, activation functions, and multi‑layer weight‑adjustment training.

Artificial NeuronMachine Learningactivation functions
0 likes · 15 min read
Demystifying Neural Networks: A Mathematical Approach (Part 1)
Alibaba Cloud Developer
Alibaba Cloud Developer
Oct 10, 2018 · Artificial Intelligence

How Alibaba’s Uni‑Marketing Boosted Brand Conversions with AI‑Driven Audience Selection

This article details Alibaba's Uni‑Marketing case study where a brand‑targeted audience selection algorithm, built on big‑data and AI techniques, improved the O→IPL deepening rate by 47% during the New‑Year Festival, outlining the technical pipeline, models, evaluation metrics, challenges, and future directions.

Big DataDigital MarketingMachine Learning
0 likes · 20 min read
How Alibaba’s Uni‑Marketing Boosted Brand Conversions with AI‑Driven Audience Selection
Qunar Tech Salon
Qunar Tech Salon
Oct 10, 2018 · Artificial Intelligence

Introduction to Lasso Regression with scikit-learn

This article provides a comprehensive guide to Lasso regression, covering its theoretical background, scikit-learn API parameters, step‑by‑step Python implementation, cross‑validation for hyper‑parameter tuning, visualization of predictions, and a discussion of its advantages over ridge regression.

Cross‑ValidationLasso RegressionMachine Learning
0 likes · 6 min read
Introduction to Lasso Regression with scikit-learn
Qunar Tech Salon
Qunar Tech Salon
Oct 9, 2018 · Artificial Intelligence

Ridge Regression with scikit-learn: Theory, Implementation, and Example

This article introduces Ridge regression, explains its theory and regularization role, discusses overfitting and bias‑variance trade‑offs, presents scikit‑learn parameters, and provides a complete Python example from data loading to model training, evaluation, and optimal alpha selection.

Machine LearningPythonRidge Regression
0 likes · 7 min read
Ridge Regression with scikit-learn: Theory, Implementation, and Example
AI Large-Model Wave and Transformation Guide
AI Large-Model Wave and Transformation Guide
Oct 8, 2018 · Artificial Intelligence

Build a CART Decision Tree from Scratch in Python – Full Step‑by‑Step Guide

This article walks through a complete Python implementation of the CART decision‑tree algorithm on the Banknote dataset, covering data loading, cross‑validation splitting, Gini impurity calculation, recursive tree construction, prediction, and performance evaluation with concrete code examples.

Banknote DatasetCARTGini Index
0 likes · 7 min read
Build a CART Decision Tree from Scratch in Python – Full Step‑by‑Step Guide
Alibaba Cloud Developer
Alibaba Cloud Developer
Sep 30, 2018 · Artificial Intelligence

How Alibaba’s Search & Recommendation Evolved: From Rules to Cognitive AI

This article reviews the evolution of Alibaba’s e‑commerce search and recommendation technologies, detailing Taobao’s unique challenges, the shift from rule‑based retrieval to large‑scale machine learning, real‑time online learning, deep learning and intelligent decision‑making, and outlines future directions toward cognitive intelligence.

Deep LearningE‑commerceMachine Learning
0 likes · 16 min read
How Alibaba’s Search & Recommendation Evolved: From Rules to Cognitive AI
JD Tech
JD Tech
Sep 29, 2018 · Artificial Intelligence

JD.com Prediction Technology: Architecture, Applications, and Future Directions

The article outlines JD.com's evolution of prediction technology from early book‑category sales forecasting to a comprehensive AI‑driven platform that supports sales, order, and GMV forecasts, describes its modular architecture and core algorithm choices, and discusses future enhancements for smarter supply‑chain collaboration.

Big DataMachine Learningforecasting
0 likes · 6 min read
JD.com Prediction Technology: Architecture, Applications, and Future Directions
Xianyu Technology
Xianyu Technology
Sep 25, 2018 · Artificial Intelligence

TensorFlow Lite Applications and UI2Code at Xianyu (Idle Fish)

Xianyu leverages a custom TensorFlow Lite framework to power AI‑driven features such as dynamic video‑cover selection, video fingerprinting, and furniture recognition for smart rentals, while its UI2Code tool transforms screenshots into pixel‑perfect production UI code, emphasizing extensibility, security, and online model updates.

Machine LearningTensorFlowTensorFlow Lite
0 likes · 7 min read
TensorFlow Lite Applications and UI2Code at Xianyu (Idle Fish)
21CTO
21CTO
Sep 24, 2018 · Artificial Intelligence

Why Recommendation Algorithms Aren’t Magic: A Practical Guide

This article explains the fundamentals of recommendation algorithms, illustrates their modest impact with real‑world examples, and outlines how modern e‑commerce systems collect data, rank items, and use rapid A/B testing to continuously improve personalized recommendations.

A/B testingE‑commerceMachine Learning
0 likes · 10 min read
Why Recommendation Algorithms Aren’t Magic: A Practical Guide
MaGe Linux Operations
MaGe Linux Operations
Sep 21, 2018 · Artificial Intelligence

What Classic Diagrams Reveal About Test Error, Overfitting, and Model Selection

The article presents a series of insightful diagrams that illustrate core machine‑learning concepts such as the relationship between training and test error, the dangers of under‑ and over‑fitting, Occam’s razor, feature interactions, discriminative versus generative models, loss functions, least‑squares geometry, and sparsity.

Loss FunctionsMachine LearningModel Selection
0 likes · 6 min read
What Classic Diagrams Reveal About Test Error, Overfitting, and Model Selection
DataFunTalk
DataFunTalk
Sep 21, 2018 · Artificial Intelligence

Construction of a Second‑Hand E‑commerce Knowledge Graph and Its Application in Pricing Models

This article explains how a knowledge graph for second‑hand e‑commerce is built—from data extraction and entity, attribute, and relation mining to ontology construction, entity alignment, and graph integration—and describes how the resulting graph supports personalized recommendation, search optimization, and statistical or regression‑based pricing models.

E‑commerceKnowledge GraphMachine Learning
0 likes · 15 min read
Construction of a Second‑Hand E‑commerce Knowledge Graph and Its Application in Pricing Models
Tencent Cloud Developer
Tencent Cloud Developer
Sep 20, 2018 · Industry Insights

How Big Data Drives Intelligent Outbound Calls and AI Customer Service

This article explains how a data‑driven platform combines big‑data preprocessing, behavior‑prediction models, and AI‑powered voice and text services to improve pre‑sale lead scoring, targeted SMS campaigns, and post‑sale customer support, using Tencent Cloud's TI One platform as a case study.

AI Customer ServiceBig DataMachine Learning
0 likes · 17 min read
How Big Data Drives Intelligent Outbound Calls and AI Customer Service
Qunar Tech Salon
Qunar Tech Salon
Sep 19, 2018 · Artificial Intelligence

Logistic Regression Tutorial with scikit-learn

This article introduces logistic regression, explains its theoretical basis, details key scikit-learn parameters, and provides a complete Python example for breast cancer classification, covering data preprocessing, model training, prediction, and evaluation with classification reports.

Logistic RegressionMachine LearningPython
0 likes · 7 min read
Logistic Regression Tutorial with scikit-learn
Alibaba Cloud Developer
Alibaba Cloud Developer
Sep 14, 2018 · Artificial Intelligence

How Alibaba’s UC Team Boosted Short‑Video Recommendations with FM+GBM

This article details the evolution of Alibaba's short‑video feed ranking system, from a Wide&Deep CTR model to a hybrid Factorization‑Machine and Gradient‑Boosted‑Tree approach, describing feature engineering, model architecture, experimental results, lessons learned, and future directions toward duration‑based relevance.

Machine Learningfactorization machinesgradient boosting
0 likes · 11 min read
How Alibaba’s UC Team Boosted Short‑Video Recommendations with FM+GBM
Alibaba Cloud Developer
Alibaba Cloud Developer
Sep 12, 2018 · Artificial Intelligence

How Alibaba’s XSigma AI Engine Revolutionizes Customer Service Scheduling

The XSigma system combines AI‑driven demand forecasting, real‑time optimization, visual decision‑making and intelligent training to automatically schedule, scale, balance load and match customers with the best agents, dramatically improving resource utilization and user experience for Alibaba’s massive CCO operation.

Artificial IntelligenceMachine Learningoperations
0 likes · 19 min read
How Alibaba’s XSigma AI Engine Revolutionizes Customer Service Scheduling
转转QA
转转QA
Sep 12, 2018 · Information Security

Understanding Spam Prevention: Cheating Types and Anti‑Cheat Strategies in Zhuanzhuan's Risk Control System

The article explains Zhuanzhuan's risk‑control architecture, detailing content and behavior cheating types, three anti‑cheat approaches—strategy, product, and model—and practical interception, rule‑penalty mechanisms, and integration tips for developers and security engineers.

Machine Learninganti-cheatinformation security
0 likes · 9 min read
Understanding Spam Prevention: Cheating Types and Anti‑Cheat Strategies in Zhuanzhuan's Risk Control System
Qizhuo Club
Qizhuo Club
Sep 11, 2018 · Artificial Intelligence

How 360 Mobile Assistant Built a Scalable AI‑Powered App Recommendation System

This article details the design, architecture, and key components of 360 Mobile Assistant's recommendation system, covering business scenarios, data warehouse and computing layers, feature engineering, model selection, and online deployment strategies to improve app discovery and user engagement.

CTR predictionMachine Learningdata warehouse
0 likes · 19 min read
How 360 Mobile Assistant Built a Scalable AI‑Powered App Recommendation System
Tencent Cloud Developer
Tencent Cloud Developer
Sep 10, 2018 · Artificial Intelligence

Machine Learning vs. Deep Learning: Differences, Applications, and Future Trends

The article explains that machine learning encompasses a range of algorithms such as decision trees and random forests, while deep learning—a specialized subset using multi‑layer neural networks—requires large data, powerful hardware, and longer training, yet offers superior performance in fields like computer vision, NLP, and medical diagnosis, and both are poised for expanding industrial and research adoption.

ApplicationsArtificial IntelligenceComparison
0 likes · 9 min read
Machine Learning vs. Deep Learning: Differences, Applications, and Future Trends
58 Tech
58 Tech
Sep 7, 2018 · Artificial Intelligence

Cupid Push Control System: Machine‑Learning‑Driven Notification Optimization at 58.com

The article details how 58.com’s Cupid push control system leverages machine‑learning models, especially XGBoost‑based CTR prediction, to prioritize and filter billions of daily push notifications, improving click‑through rates, reducing user annoyance, and providing a scalable, data‑driven architecture for diverse business services.

AB testingCTR predictionMachine Learning
0 likes · 13 min read
Cupid Push Control System: Machine‑Learning‑Driven Notification Optimization at 58.com
Hulu Beijing
Hulu Beijing
Sep 7, 2018 · Artificial Intelligence

From Chess Engines to AlphaGo Zero: The Evolution of Game AI

This article traces the history of game artificial intelligence—from early MiniMax chess programs and classic board‑game breakthroughs like Deep Blue, through AlphaGo’s triumph over human champions, to the self‑learning AlphaGo Zero—while explaining why games serve as a vital testbed for modern AI research.

AlphaGoMachine Learninggame AI
0 likes · 13 min read
From Chess Engines to AlphaGo Zero: The Evolution of Game AI
JD Tech
JD Tech
Sep 7, 2018 · Information Security

Big Data and AI Security Insights from ISC 2018 Conference

The ISC 2018 conference highlighted the growing importance of big data and artificial intelligence security, presenting JD's research on anti‑scraping techniques, AI‑driven defenses against black‑market attacks, and a service‑oriented approach to protecting user data across enterprises.

AI SecurityBig DataMachine Learning
0 likes · 5 min read
Big Data and AI Security Insights from ISC 2018 Conference
Meituan Technology Team
Meituan Technology Team
Sep 6, 2018 · Artificial Intelligence

Meituan Machine Learning Practice Book Released

Meituan’s new book, 'Machine Learning Practice,' authored by over twenty frontline engineers, offers a comprehensive guide to internet‑company ML techniques, is now sold in major bookstores, invites reader feedback, and provides QR‑code access to the team’s official account and an electronic bibliography, plus a companion summary of 27 essential AI articles.

AIAlgorithmMachine Learning
0 likes · 6 min read
Meituan Machine Learning Practice Book Released
Big Data and Microservices
Big Data and Microservices
Sep 4, 2018 · Big Data

Exploring Five Big Data Architectures—from Traditional to Unified AI Designs

The article examines the evolution of big‑data processing by comparing five prevalent architectures—traditional Hadoop‑based stacks, streaming‑only designs, Kappa, Lambda, and the unified Unifield model—highlighting their strengths, weaknesses, and suitable scenarios while discussing the limitations of classic BI systems and the role of distributed storage, computation, and machine‑learning integration.

Big DataHadoopKappa
0 likes · 14 min read
Exploring Five Big Data Architectures—from Traditional to Unified AI Designs
Sohu Tech Products
Sohu Tech Products
Aug 29, 2018 · Artificial Intelligence

News Recommendation Algorithms: Architecture, Recall, and Ranking Techniques

This article explains the architecture of news recommendation systems, detailing the two-stage recall and ranking process, various recall methods such as content‑based, collaborative filtering and matrix factorization, and advanced ranking models including LR, GBDT, FM, and wide‑and‑deep DNNs.

Collaborative FilteringMachine Learningnews recommendation
0 likes · 14 min read
News Recommendation Algorithms: Architecture, Recall, and Ranking Techniques
iQIYI Technical Product Team
iQIYI Technical Product Team
Aug 24, 2018 · Artificial Intelligence

Lookalike Audience Extension Algorithms in iQIYI Advertising: Tag‑Based and Machine‑Learning Approaches

iQIYI uses two Lookalike audience extension methods—tag‑based using weighted tag scoring and supervised machine‑learning using logistic regression with engineered DMP and ad behavior features—both improving ad performance, e.g., 20% higher Trueview completion and up to 60% lower conversion cost.

AdvertisingAudience ExtensionLookalike
0 likes · 10 min read
Lookalike Audience Extension Algorithms in iQIYI Advertising: Tag‑Based and Machine‑Learning Approaches
Alibaba Cloud Developer
Alibaba Cloud Developer
Aug 23, 2018 · Artificial Intelligence

Boost Short-Video Recommendations: Multi-Goal Optimization with Weighted Logistic Regression

Alibaba's short‑video recommendation team details how they enhance both click‑through rate and viewing duration by applying sample reweighting, weighted logistic regression, and playback‑completion‑rate normalization, achieving over 6% offline AUC gains and more than 10% increase in average user watch time.

Machine Learningclick-through ratemulti-objective optimization
0 likes · 10 min read
Boost Short-Video Recommendations: Multi-Goal Optimization with Weighted Logistic Regression
360 Tech Engineering
360 Tech Engineering
Aug 22, 2018 · Artificial Intelligence

Rules of Machine Learning: 43 Practical Guidelines for Building Robust ML Systems

This article translates and summarizes Martin Zinkevich’s “Rules of ML”, offering 43 concise, experience‑based recommendations that cover terminology, pipeline design, feature engineering, monitoring, training‑serving consistency, and model iteration to help engineers build reliable machine‑learning‑driven products.

ML pipelineMachine LearningModel Monitoring
0 likes · 35 min read
Rules of Machine Learning: 43 Practical Guidelines for Building Robust ML Systems
DataFunTalk
DataFunTalk
Aug 21, 2018 · Artificial Intelligence

iQIYI Traffic Anti-Cheat: Techniques, System Architecture, and Future Directions

This article provides a comprehensive overview of iQIYI's traffic anti‑cheat mechanisms, covering definitions of fraudulent traffic, industry challenges, data cleaning relationships, system design, rule‑based and machine‑learning solutions, feature engineering, model evaluation, monitoring, service applications, and future prospects.

Big DataMachine LearningSystem Architecture
0 likes · 11 min read
iQIYI Traffic Anti-Cheat: Techniques, System Architecture, and Future Directions
Qizhuo Club
Qizhuo Club
Aug 17, 2018 · Artificial Intelligence

43 Essential Rules for Building Robust Machine Learning Systems

These 43 practical rules, adapted from Martin Zinkevich’s “Rules of ML,” guide engineers through terminology, pipeline design, feature engineering, monitoring, and model deployment, offering actionable advice to avoid common pitfalls and build reliable, scalable machine‑learning‑driven products.

EngineeringMachine LearningModel deployment
0 likes · 41 min read
43 Essential Rules for Building Robust Machine Learning Systems
DataFunTalk
DataFunTalk
Aug 17, 2018 · Artificial Intelligence

Technical Evolution and Architecture of Shenma Search Engine

The article outlines Shenma Search's development history, its AI‑driven relevance and ranking technologies, the underlying system architecture based on Zookeeper and YARN, and discusses challenges in query understanding, machine‑learning ranking, and deep‑learning solutions for large‑scale search.

AIMachine LearningNLP
0 likes · 17 min read
Technical Evolution and Architecture of Shenma Search Engine
Alibaba Cloud Developer
Alibaba Cloud Developer
Aug 8, 2018 · Artificial Intelligence

How Alibaba’s AI Prediction Platform Boosts Smart Customer Service

The article describes Alibaba’s AI‑driven prediction platform for its smart‑customer‑service bots, detailing background, order and issue prediction capabilities, deployed products, underlying algorithms such as DeepFM, DCN, reinforcement learning, streaming computation, and the platform’s modular architecture that enables scalable, automated model management.

AIDeep LearningMachine Learning
0 likes · 13 min read
How Alibaba’s AI Prediction Platform Boosts Smart Customer Service
58 Tech
58 Tech
Aug 8, 2018 · Databases

58 Cloud DB Platform: Architecture, Automation, and Intelligent Operations

The article presents a detailed case study of the 58 Cloud DB Platform, describing its architecture, automated workflow using Celery and Ansible, and intelligent features such as server selection and alarm merging powered by machine‑learning, highlighting how it streamlines MySQL, Redis, and MongoDB operations for developers and DBAs.

Machine LearningMongoDBMySQL
0 likes · 10 min read
58 Cloud DB Platform: Architecture, Automation, and Intelligent Operations
Ctrip Technology
Ctrip Technology
Aug 7, 2018 · Artificial Intelligence

AI‑Driven Intelligent Customer Service at Ctrip: Algorithms and Practices

This article describes how Ctrip leverages machine‑learning and deep‑learning techniques—such as question‑answer matching, context‑aware dialogue models, and input‑suggestion algorithms—to automate repetitive customer‑service tasks, improve response efficiency, and enhance user experience across its travel platform.

AIMachine Learningchatbot
0 likes · 13 min read
AI‑Driven Intelligent Customer Service at Ctrip: Algorithms and Practices
Tencent Cloud Developer
Tencent Cloud Developer
Aug 3, 2018 · Artificial Intelligence

Analysis of Google Quickdraw CNN‑RNN Model for Sketch Recognition

The article dissects Google’s Quickdraw sketch‑recognition model, detailing its 1‑D convolutional front‑end, Bi‑LSTM encoder, and softmax classifier, explaining the TFRecord‑based normalization and interpolation steps, why pooling harms accuracy, and how the massive dataset can fuel diverse sequential‑learning applications and product concepts.

CNNMachine LearningRNN
0 likes · 7 min read
Analysis of Google Quickdraw CNN‑RNN Model for Sketch Recognition
Tencent Cloud Developer
Tencent Cloud Developer
Aug 1, 2018 · Artificial Intelligence

How AI Powers Real-World Apps: From Face Filters to Medical Imaging

The July 28 Tencent Cloud community salon in Beijing gathered five AI experts who demonstrated practical AI applications—including computer‑vision face filters, OCR services, smart construction attendance, game AI, and breast‑cancer detection—showing how cloud‑based models, data pipelines, and deployment strategies turn research into usable products.

AICloud AIIndustry Applications
0 likes · 21 min read
How AI Powers Real-World Apps: From Face Filters to Medical Imaging
Architecture Digest
Architecture Digest
Jul 29, 2018 · Artificial Intelligence

Design and Implementation of a Machine Learning Data Platform at Getui

This article describes Getui's end‑to‑end machine‑learning data platform, covering business use cases, the full ML workflow from data ingestion and feature engineering to model training, deployment, monitoring, and the practical tools and solutions adopted to address common challenges in large‑scale AI projects.

AIJupyterMachine Learning
0 likes · 11 min read
Design and Implementation of a Machine Learning Data Platform at Getui
Bitu Technology
Bitu Technology
Jul 19, 2018 · Artificial Intelligence

Introduction to Deep Learning: Concepts, Examples, and Learning Resources

This article provides a comprehensive overview of deep learning, covering its definition, fundamental machine‑learning components, illustrative examples such as hot‑dog classification and house‑price prediction, the mathematics of cost functions and gradient descent, back‑propagation via the chain rule, and practical resources and code snippets using Torch.

BackpropagationMachine Learningcode examples
0 likes · 11 min read
Introduction to Deep Learning: Concepts, Examples, and Learning Resources
Alibaba Cloud Developer
Alibaba Cloud Developer
Jul 18, 2018 · Artificial Intelligence

How Alibaba’s Brand‑Level Ranking Boosts E‑Commerce Clicks with Attention‑GRU

This paper presents Alibaba's first brand‑level ranking system that personalizes brand ordering on e‑commerce platforms by designing brand features and extending an Attention‑GRU model with three key improvements, demonstrating significant offline and online performance gains on the Tmall marketplace.

Machine Learningattention GRUbrand ranking
0 likes · 27 min read
How Alibaba’s Brand‑Level Ranking Boosts E‑Commerce Clicks with Attention‑GRU
Tencent Cloud Developer
Tencent Cloud Developer
Jul 13, 2018 · Artificial Intelligence

Using Facebook Prophet for Time Series Forecasting: Predicting Tencent Cloud Database Storage Trends

The article explains Facebook Prophet’s additive regression model and demonstrates its use to forecast Tencent Cloud database storage demand, showing upward trends and growing uncertainty from January‑June 2018 data, while highlighting practical applications for internal customer identification and capacity planning.

Additive Regression ModelDatabase Storage PredictionFacebook Prophet
0 likes · 5 min read
Using Facebook Prophet for Time Series Forecasting: Predicting Tencent Cloud Database Storage Trends
High Availability Architecture
High Availability Architecture
Jul 12, 2018 · Information Security

Evolution of Zhihu’s Anti‑Cheat System “Wukong”: Architecture, Strategies, and Lessons Learned

This article chronicles the three‑generation evolution of Zhihu’s anti‑cheat platform Wukong, detailing its business context, spam taxonomy, multi‑layered control methods, architectural redesigns, strategy language improvements, graph‑based risk analysis, and the continuous integration of big‑data and machine‑learning techniques to combat content and behavior spam.

Big DataMachine LearningRisk Management
0 likes · 23 min read
Evolution of Zhihu’s Anti‑Cheat System “Wukong”: Architecture, Strategies, and Lessons Learned
Architecture Digest
Architecture Digest
Jul 12, 2018 · Artificial Intelligence

How to Choose the Right Machine Learning Algorithm

This article explains that there is no universal solution for selecting machine learning algorithms and outlines practical factors—such as data characteristics, problem type, business constraints, and algorithm complexity—to help practitioners systematically narrow down and pick the most suitable models.

Machine LearningModel EvaluationSupervised Learning
0 likes · 14 min read
How to Choose the Right Machine Learning Algorithm
Alibaba Cloud Developer
Alibaba Cloud Developer
Jul 11, 2018 · Artificial Intelligence

Can Global Ranking Boost E‑Commerce GMV? A New AI Approach

Traditional e‑commerce ranking ignores interactions among displayed items, but this study introduces a novel global ranking method that models mutual influences, optimizes expected GMV using extended global features and RNN‑based sequence generation, achieving a 5% GMV lift in large‑scale A/B tests.

Attention MechanismGMVMachine Learning
0 likes · 12 min read
Can Global Ranking Boost E‑Commerce GMV? A New AI Approach
Architects' Tech Alliance
Architects' Tech Alliance
Jul 11, 2018 · Artificial Intelligence

AI Technology Trends and Reference Architecture Overview

The article reviews the evolution of artificial intelligence, presents a comprehensive AI reference framework based on roles, activities and functions, explains the intelligent information chain and IT value chain, and details current AI technology trends such as machine learning, deep learning, transfer learning, active learning and evolutionary learning, while also noting talent shortages and promoting an AI education course.

AI trendsDeep LearningMachine Learning
0 likes · 13 min read
AI Technology Trends and Reference Architecture Overview
Qunar Tech Salon
Qunar Tech Salon
Jul 10, 2018 · Artificial Intelligence

Design and Implementation of Qunar's Algorithm Service Platform for Machine Learning

The article describes the background, design, key components, and current status of Qunar's algorithm service platform, which provides a unified, scalable, and automated environment for feature engineering, model training, deployment, monitoring, and management of machine‑learning projects within the company's large‑accommodation division.

Machine LearningModel ManagementMonitoring
0 likes · 15 min read
Design and Implementation of Qunar's Algorithm Service Platform for Machine Learning
Tencent Cloud Developer
Tencent Cloud Developer
Jul 6, 2018 · Big Data

Big Data Book List

In the era of big data, this curated list highlights essential print titles—from machine learning and statistical learning to Hadoop, predictive analytics, data visualization, and data engineering—offering readers a comprehensive roadmap to deepen practical knowledge and stay current with rapidly evolving technologies.

AIBooksMachine Learning
0 likes · 8 min read
Big Data Book List
ITFLY8 Architecture Home
ITFLY8 Architecture Home
Jul 2, 2018 · Artificial Intelligence

How JD.com Built a Multi‑Screen Personalized Recommendation Engine

This article explains how JD.com evolved its recommendation system from simple product suggestions to a sophisticated, multi‑screen, multi‑type personalized engine using big‑data collection, real‑time behavior tracking, machine‑learning models, and a modular architecture that boosts conversion and user experience.

Big DataE‑commerceMachine Learning
0 likes · 14 min read
How JD.com Built a Multi‑Screen Personalized Recommendation Engine
DataFunTalk
DataFunTalk
Jul 2, 2018 · Artificial Intelligence

Overview of Sogou Information Feed Recommendation Algorithms

This article summarizes Sogou's information‑feed recommendation system, covering the architecture from data collection and NLP processing to recall, ranking, and feedback, and detailing the classification, tagging, keyword extraction, and various recall and ranking models such as FastText, TextCNN, collaborative filtering, and wide‑and‑deep learning.

Machine LearningNLPSogou
0 likes · 14 min read
Overview of Sogou Information Feed Recommendation Algorithms
Architecture Digest
Architecture Digest
Jul 1, 2018 · Artificial Intelligence

Evolution and Architecture of JD.com Recommendation System

The article outlines the development, multi‑screen deployment, system architecture, data platform, and core recommendation engine of JD.com’s e‑commerce recommendation platform, highlighting how big‑data and AI techniques enable personalized product, activity, and content suggestions across various user touchpoints.

E‑commerceMachine Learningpersonalization
0 likes · 16 min read
Evolution and Architecture of JD.com Recommendation System
Alibaba Cloud Developer
Alibaba Cloud Developer
Jun 29, 2018 · Artificial Intelligence

How AI Powers Heterogeneous Content Ranking in E‑Commerce Search

This paper addresses the challenge of ranking heterogeneous data in e‑commerce by proposing two algorithms—a multi‑armed bandit approach and a personalized Markov deep neural network—to select and order content streams, demonstrating superior performance over baseline models in A/B tests.

Bandit AlgorithmsDeep LearningE‑commerce
0 likes · 7 min read
How AI Powers Heterogeneous Content Ranking in E‑Commerce Search
Meitu Technology
Meitu Technology
Jun 25, 2018 · Artificial Intelligence

Meitu's Personalized Recommendation System: Architecture, Features, and Optimization Strategies

Meitu’s personalized recommendation platform for the Meipai app combines offline feature engineering, near‑real‑time streaming, and online serving to recall, estimate, and rank billions of short videos using multi‑modal content features, user profiling, online learning, cold‑start bandit strategies, and multi‑objective diversity optimization, delivering timely, diverse feeds across live, homepage, and video‑detail scenarios.

Cold StartMachine LearningPersonalized Recommendation
0 likes · 17 min read
Meitu's Personalized Recommendation System: Architecture, Features, and Optimization Strategies
MaGe Linux Operations
MaGe Linux Operations
Jun 22, 2018 · Artificial Intelligence

8 Fast Python Linear Regression Techniques Compared for Speed and Complexity

This article reviews eight Python-based simple linear regression methods, explains their underlying algorithms, compares their computational complexity and execution speed on datasets up to ten million points, and offers guidance on selecting the most efficient approach for data‑science tasks.

Linear RegressionMachine LearningNumPy
0 likes · 10 min read
8 Fast Python Linear Regression Techniques Compared for Speed and Complexity
Alibaba Cloud Developer
Alibaba Cloud Developer
Jun 22, 2018 · Artificial Intelligence

Essential Machine Learning Algorithms Every Beginner Must Know

This beginner-friendly guide walks through core machine‑learning concepts—from data organization and feature design to supervised and unsupervised algorithms such as perceptron, logistic regression, decision trees, LDA, and ensemble techniques—while explaining model evaluation, overfitting, and practical tuning strategies.

Deep LearningEnsemble MethodsMachine Learning
0 likes · 8 min read
Essential Machine Learning Algorithms Every Beginner Must Know
Ctrip Technology
Ctrip Technology
Jun 19, 2018 · Artificial Intelligence

AIOps at Ctrip: Concepts, Typical Application Scenarios, and Algorithmic Practices

This article introduces Ctrip's AIOps journey, explaining the AI‑driven operations concept, showcasing typical use cases such as anomaly detection, intelligent fault diagnosis, and resource utilization improvement, and detailing the underlying statistical and machine‑learning algorithms that enable these capabilities.

AIOpsCtripMachine Learning
0 likes · 16 min read
AIOps at Ctrip: Concepts, Typical Application Scenarios, and Algorithmic Practices
ITPUB
ITPUB
Jun 19, 2018 · Databases

Can Machine Learning Replace Traditional Hashing? A Deep Dive into Learned Indexes

This article explores the evolution of indexing from classic hash tables and B‑Trees to learned index structures, explaining hash functions, collision handling, machine‑learning fundamentals, and the promise and limits of using ML models to improve memory efficiency and query performance.

HashingMachine Learningcuckoo hashing
0 likes · 24 min read
Can Machine Learning Replace Traditional Hashing? A Deep Dive into Learned Indexes
Qunar Tech Salon
Qunar Tech Salon
Jun 15, 2018 · Artificial Intelligence

Predicting the 2018 FIFA World Cup Winners Using Machine Learning

This article demonstrates how to collect historical football data, perform exploratory analysis and feature engineering, and apply a logistic‑regression model in Python to predict the 2018 FIFA World Cup champion, group‑stage results, and knockout‑stage outcomes.

FIFA World CupLogistic RegressionMachine Learning
0 likes · 8 min read
Predicting the 2018 FIFA World Cup Winners Using Machine Learning
21CTO
21CTO
Jun 14, 2018 · Artificial Intelligence

What Data Scientists Chose in 2018: Top AI, ML, and Big Data Tools Revealed

The 2018 KDnuggets survey of over 2,000 data‑science professionals shows Python dominating with 66% usage, R dropping below 50%, TensorFlow leading deep‑learning frameworks, RapidMiner gaining traction, SQL remaining stable, Hadoop declining, and regional participation shifting toward Europe.

Deep LearningMachine LearningPython
0 likes · 9 min read
What Data Scientists Chose in 2018: Top AI, ML, and Big Data Tools Revealed
AntTech
AntTech
Jun 14, 2018 · Artificial Intelligence

A Local Online Learning Approach for Non-linear Data (SCW-LOL)

This paper introduces the SCW-LOL algorithm, a local online learning method based on Soft Confidence Weighted that extends a global model with multiple local classifiers, uses online K‑Means for sample assignment, provides theoretical error bounds, and demonstrates superior performance on ten benchmark datasets, especially for multi‑class classification.

Machine LearningSCW algorithmdata mining
0 likes · 9 min read
A Local Online Learning Approach for Non-linear Data (SCW-LOL)
Meitu Technology
Meitu Technology
Jun 13, 2018 · Artificial Intelligence

Meipai AI Tech Talk: Deep Ranking Models, Video Clustering, and Optimization

The talk covered Meipai’s personalized deep ranking model that balances depth and low latency, a behavior‑driven video clustering method that enriches recommendation beyond visual cues, and the use of advanced data structures to accelerate solving large‑scale optimization problems in business contexts.

Machine LearningOptimizationneural networks
0 likes · 5 min read
Meipai AI Tech Talk: Deep Ranking Models, Video Clustering, and Optimization
DataFunTalk
DataFunTalk
Jun 13, 2018 · Artificial Intelligence

Evolution of E‑commerce Platform Recommendation System Architecture

This article reviews the evolution of recommendation system architecture for C2C e‑commerce platforms, tracing stages from simple offline‑online pipelines through granular feed‑flow improvements, real‑time processing, and machine‑learning‑driven models, while highlighting user‑profile construction, challenges, and best‑practice guidelines.

E‑commerceMachine Learningarchitecture
0 likes · 10 min read
Evolution of E‑commerce Platform Recommendation System Architecture
Alibaba Cloud Developer
Alibaba Cloud Developer
Jun 13, 2018 · Artificial Intelligence

How Alibaba’s Knowledge Graph Powers Real-Time Product Safety with AI

Alibaba’s knowledge graph leverages massive product data, NLP, semantic reasoning, and machine‑learning inference to detect and block counterfeit, infringing, or unsafe items in real time, providing millisecond‑level responses, self‑learning capabilities, and explainable decisions across e‑commerce platforms, thereby protecting intellectual property and consumer rights.

AIE‑commerceKnowledge Graph
0 likes · 9 min read
How Alibaba’s Knowledge Graph Powers Real-Time Product Safety with AI
Alibaba Cloud Developer
Alibaba Cloud Developer
Jun 13, 2018 · Artificial Intelligence

What Machine Learning Can Teach Us About Growing Up

Using a stroll conversation among Ant Financial AI team members, the article likens machine learning concepts such as overfitting, generalization, supervised and unsupervised learning, transfer learning, and model interpretability to human development stages, illustrating how both require diverse data, training, and evolving algorithms.

AI educationMachine Learninggeneralization
0 likes · 10 min read
What Machine Learning Can Teach Us About Growing Up
Hulu Beijing
Hulu Beijing
Jun 8, 2018 · Artificial Intelligence

How Hulu Leverages AI for Video Recommendation, Content Understanding, and Ads

The article reviews Hulu’s 2018 iQIYI keynote on AI video applications, detailing how AI drives personalized recommendations, content analysis through computer vision and NLP, ad targeting across visual, linguistic, and semantic layers, and outlines the platform’s machine‑learning architecture and future directions.

AIHuluMachine Learning
0 likes · 6 min read
How Hulu Leverages AI for Video Recommendation, Content Understanding, and Ads
ITFLY8 Architecture Home
ITFLY8 Architecture Home
Jun 7, 2018 · Artificial Intelligence

How Modern Recommendation Systems Work: Architecture, Algorithms, and Best Practices

This article explains the goals, architectures, data pipelines, recall strategies, and ranking models of contemporary recommendation systems, covering both online and offline components, collaborative filtering, content-based methods, feature engineering, and practical interview insights for engineers.

Collaborative FilteringMachine LearningRanking Models
0 likes · 18 min read
How Modern Recommendation Systems Work: Architecture, Algorithms, and Best Practices
Tencent Advertising Technology
Tencent Advertising Technology
Jun 4, 2018 · Artificial Intelligence

Tencent Advertising Algorithm Competition: FFM Approach and Feature Engineering by the Wenqiang Ge Team

The Wenqiang Ge team, winners of the first week of the Tencent Advertising Algorithm Competition rematch, detail their FFM-based solution, including baseline adoption, feature engineering with discretized continuous values, cross‑feature handling, and tool choices such as Feather storage and the xlearn library for fast training.

Ensemble ModelingFFMFeather
0 likes · 4 min read
Tencent Advertising Algorithm Competition: FFM Approach and Feature Engineering by the Wenqiang Ge Team
ITPUB
ITPUB
Jun 3, 2018 · Big Data

Spark vs Hadoop: Which Distributed System Fits Your Data Needs?

An in‑depth comparison of Hadoop and Spark examines their architectures, performance, cost, security, and machine‑learning capabilities, helping readers decide which open‑source distributed processing platform best matches their batch, streaming, and analytical workloads.

Big DataCostHadoop
0 likes · 13 min read
Spark vs Hadoop: Which Distributed System Fits Your Data Needs?
MaGe Linux Operations
MaGe Linux Operations
May 30, 2018 · Artificial Intelligence

Master Python Speech Recognition: From Basics to Real-World Audio Transcription

This comprehensive guide walks you through the fundamentals of speech recognition, explains how Python’s SpeechRecognition library works, shows how to install and use various recognizer packages, process audio files and microphone input, handle noise, and troubleshoot common errors with clear code examples.

Machine LearningSpeechRecognitionVoice Transcription
0 likes · 18 min read
Master Python Speech Recognition: From Basics to Real-World Audio Transcription
21CTO
21CTO
May 28, 2018 · Artificial Intelligence

How to Ace AI Company Interviews: Proven Strategies and Resources

This guide shares practical advice from multiple AI interview experiences, covering how to build a standout profile, a curated list of target companies, interview techniques, motivation for meaningful work, and essential computer science, math, and machine‑learning fundamentals to help graduates secure AI roles.

AI InterviewMachine Learningcareer advice
0 likes · 18 min read
How to Ace AI Company Interviews: Proven Strategies and Resources
Meitu Technology
Meitu Technology
May 23, 2018 · Artificial Intelligence

Machine Learning and Optimization Problems: Applications and Exploration

Meitu Technology’s technical salon on June 9, 2018 in Xiamen showcased how its AI‑driven deep ranking, video‑clustering, and data‑structure‑based optimization techniques improve personalization, recommendation and economic‑focused problem solving for billions of mobile users, targeting mid‑senior R&D and algorithm engineers.

Data StructuresMachine LearningOptimization
0 likes · 6 min read
Machine Learning and Optimization Problems: Applications and Exploration
AntTech
AntTech
May 22, 2018 · Artificial Intelligence

Unpack Local Model Interpretation for GBDT – Summary and Analysis

This article summarizes the Ant Financial paper presented at DASFAA 2018 that proposes a universal local explanation method for Gradient Boosting Decision Tree models, detailing the problem definition, the PMML‑based algorithm for attributing feature contributions, experimental validation on fraud detection data, and the practical benefits for model transparency and improvement.

Feature ImportanceGBDTMachine Learning
0 likes · 12 min read
Unpack Local Model Interpretation for GBDT – Summary and Analysis
UCloud Tech
UCloud Tech
May 21, 2018 · Artificial Intelligence

How Cloud Computing Accelerates AI Adoption: Insights from Think in Cloud 2018

The Think in Cloud 2018 conference in Beijing showcased how cloud platforms enable rapid AI deployment across sectors such as autonomous driving, intelligent customer service, and education, highlighting challenges, platform‑centric solutions, and real‑world case studies that illustrate the growing synergy between cloud computing and artificial intelligence.

AIAI ApplicationsCloud Computing
0 likes · 13 min read
How Cloud Computing Accelerates AI Adoption: Insights from Think in Cloud 2018
21CTO
21CTO
May 20, 2018 · Artificial Intelligence

Why Causal Reasoning Is the Missing Piece for Truly Intelligent AI

Judea Pearl, the 2011 Turing Award laureate, argues that modern AI is stuck in curve‑fitting and that true intelligence requires machines to understand cause and effect, a perspective he expands on through a series of insightful interview questions and answers.

AIDeep LearningJudea Pearl
0 likes · 11 min read
Why Causal Reasoning Is the Missing Piece for Truly Intelligent AI
UCloud Tech
UCloud Tech
May 15, 2018 · Artificial Intelligence

Cloud‑Powered AI & Blockchain: Key Takeaways from UCloud TIC 2018

The 2018 UCloud Think in Cloud conference showcased how cloud infrastructure accelerates AI applications in customer service, education, and embedded devices, while also presenting blockchain use cases and security challenges across finance, insurance, and IoT, highlighting practical solutions and emerging platforms.

AICloud ComputingMachine Learning
0 likes · 10 min read
Cloud‑Powered AI & Blockchain: Key Takeaways from UCloud TIC 2018
Tencent Advertising Technology
Tencent Advertising Technology
May 14, 2018 · Artificial Intelligence

Tencent Advertising Algorithm Competition Weekly Champion Shares Data Processing, Feature Engineering, Model Training, and Optimization Strategies

The Nanjing University team '每天队员都想改一次名字' shares their winning approach in Tencent Advertising Algorithm Competition, covering data processing, feature engineering, model training techniques, and alternative optimization targets for AUC improvement, and discuss lessons learned from previous year's champion experience.

AUC optimizationMachine LearningTencent Advertising
0 likes · 5 min read
Tencent Advertising Algorithm Competition Weekly Champion Shares Data Processing, Feature Engineering, Model Training, and Optimization Strategies
360 Quality & Efficiency
360 Quality & Efficiency
May 11, 2018 · Artificial Intelligence

Common Engineering Algorithms and Their Testing Methods

This article introduces the most commonly used algorithms in engineering—recommendation, optimization, estimation, and classification—explains their typical application scenarios, and discusses various testing methods and evaluation metrics such as offline experiments, user surveys, A/B testing, and performance indicators like accuracy, coverage, diversity, and robustness.

AlgorithmEvaluationMachine Learning
0 likes · 12 min read
Common Engineering Algorithms and Their Testing Methods
Xianyu Technology
Xianyu Technology
May 10, 2018 · Artificial Intelligence

Mercari Price Prediction Using TFIDF, GRU, and Ensemble Models

By converting Mercari’s product titles, descriptions, and categorical data into TF‑IDF vectors and embeddings, training MLP and GRU networks, and ensembling them with weighted averaging, the authors achieve a 0.3873 RMSLE—matching the competition’s top score—and demonstrate the power of text‑only price prediction for C2C marketplaces.

E‑commerceGRUMachine Learning
0 likes · 8 min read
Mercari Price Prediction Using TFIDF, GRU, and Ensemble Models
Tencent Advertising Technology
Tencent Advertising Technology
May 7, 2018 · Artificial Intelligence

Choosing Mainstream CTR Models: LightGBM, FFM, and Deep Learning Approaches

The author, a graduate student and weekly champion of the Tencent advertising algorithm contest, shares practical guidance on selecting mainstream CTR models—including LightGBM, field‑aware factorization machines, and deep learning approaches—while offering tips on feature handling, hyper‑parameter settings, and resource‑efficient implementation.

CTRFFMLightGBM
0 likes · 5 min read
Choosing Mainstream CTR Models: LightGBM, FFM, and Deep Learning Approaches
Alibaba Cloud Developer
Alibaba Cloud Developer
May 7, 2018 · Artificial Intelligence

How Active PU Learning Boosts Cash‑Out Fraud Detection by 3×

This article presents an Active PU Learning framework that combines active learning with two‑step PU semi‑supervised learning to improve cash‑out fraud detection, reducing labeling costs, enhancing model performance, and achieving a three‑fold increase in identified fraudulent transactions compared to traditional unsupervised methods.

AIActive LearningMachine Learning
0 likes · 15 min read
How Active PU Learning Boosts Cash‑Out Fraud Detection by 3×
Efficient Ops
Efficient Ops
Apr 26, 2018 · Operations

How 360 Detects Network Anomalies with AI‑Powered Time‑Series Algorithms

This article explains how 360’s network operations team uses time‑series analysis, statistical thresholds, EWMA, dynamic limits, and machine‑learning models such as K‑Means and Isolation Forest to automatically detect, locate, and remediate traffic anomalies across massive data‑center exits.

AI OpsMachine Learninganomaly detection
0 likes · 15 min read
How 360 Detects Network Anomalies with AI‑Powered Time‑Series Algorithms
Qunar Tech Salon
Qunar Tech Salon
Apr 26, 2018 · Artificial Intelligence

Understanding gcForest: Cascade Forest Structure and Multi‑grained Scanning for Representation Learning

The article explains how gcForest, an ensemble‑of‑decision‑tree model that mimics deep neural network hierarchies, uses cascade forests and multi‑grained sliding‑window scanning to achieve effective representation learning with fewer hyper‑parameters, especially on small datasets.

Ensemble MethodsMachine Learningcascade forest
0 likes · 11 min read
Understanding gcForest: Cascade Forest Structure and Multi‑grained Scanning for Representation Learning
AntTech
AntTech
Apr 24, 2018 · Artificial Intelligence

Anomaly Detection with Partially Observed Anomalies: A Two‑Stage Semi‑Supervised Approach

This article summarizes a two‑stage method for anomaly detection when only a few labeled anomalies and many unlabeled instances are available, detailing problem formulation, isolation‑forest‑based scoring, clustering of anomalies, weighted multiclass modeling, experimental validation, and real‑world URL attack applications.

Machine LearningPu-Learninganomaly detection
0 likes · 10 min read
Anomaly Detection with Partially Observed Anomalies: A Two‑Stage Semi‑Supervised Approach
Alibaba Cloud Developer
Alibaba Cloud Developer
Apr 23, 2018 · Fundamentals

Top Technical Books Recommended by Alibaba Experts for World Book Day

On World Book Day, nine Alibaba technology veterans share a curated list of essential technical books—covering software testing, design patterns, AI, machine learning, reinforcement learning, Rust, and database architecture—offering concise reasons why each title is valuable for developers and engineers.

Database ArchitectureDesign PatternsMachine Learning
0 likes · 10 min read
Top Technical Books Recommended by Alibaba Experts for World Book Day
Java Backend Technology
Java Backend Technology
Apr 20, 2018 · Artificial Intelligence

How Do Modern Recommendation Systems Balance Accuracy, Diversity, and Surprise?

This article explains the objectives, methods, architecture, and key algorithms of modern recommendation systems, covering popular, manual, related, and personalized approaches, the data pipeline, real‑time challenges, cold‑start handling, diversity, content quality, and exploration‑exploitation strategies.

Collaborative FilteringMachine LearningRecommendation Systems
0 likes · 15 min read
How Do Modern Recommendation Systems Balance Accuracy, Diversity, and Surprise?
ITFLY8 Architecture Home
ITFLY8 Architecture Home
Apr 19, 2018 · Information Security

How Suning Built a Comprehensive Information Security Architecture

This article outlines Suning's evolution from a basic network operations unit to a sophisticated, multi‑layered security architecture that integrates organizational structure, protection platforms, risk management, big‑data threat perception, and continuous improvement to safeguard e‑commerce operations.

Big DataMachine Learninginformation security
0 likes · 10 min read
How Suning Built a Comprehensive Information Security Architecture
DataFunTalk
DataFunTalk
Apr 18, 2018 · Artificial Intelligence

Introduction to Search Engine Algorithm Systems: Ranking and Intent Recognition

This article provides a comprehensive overview of search engine algorithm systems, tracing their evolution from simple Bayesian and SVM models to modern deep learning approaches, and detailing the architecture, query analysis, ranking methods, click models, and recent advances such as reinforcement learning and adversarial networks.

AILTRMachine Learning
0 likes · 13 min read
Introduction to Search Engine Algorithm Systems: Ranking and Intent Recognition
Efficient Ops
Efficient Ops
Apr 17, 2018 · Artificial Intelligence

From Math to ML: My Path Through Recommendation, Security, and AIOps

This article chronicles the author’s transition from a mathematics background to machine learning, detailing early challenges, hands‑on projects in recommendation systems, security, and AIOps, and sharing practical insights on feature engineering, model evaluation, and large‑scale anomaly detection.

AIOpsMachine LearningRecommendation Systems
0 likes · 17 min read
From Math to ML: My Path Through Recommendation, Security, and AIOps
AntTech
AntTech
Apr 16, 2018 · Artificial Intelligence

Active PU Learning for Cash‑Out Fraud Detection in Alipay’s AlphaRisk Engine

This article presents an Active PU Learning framework that combines active learning with two‑step positive‑unlabeled learning to improve cash‑out fraud detection in Alipay’s fifth‑generation risk engine, AlphaRisk, achieving three‑fold identification gains over unsupervised methods while reducing labeling costs.

Active LearningMachine LearningRisk Management
0 likes · 14 min read
Active PU Learning for Cash‑Out Fraud Detection in Alipay’s AlphaRisk Engine