بنیادی اصول گائیڈ

AI کیسے سیکھتا ہے۔

Machine-learning systems learn by adjusting a model using data and a training objective.

3 min readآخری بار اپ ڈیٹ کیا گیا۔ Part of the AI Foundations learning path

جائزہ

The aim is to perform well on new examples, not simply to remember the training examples; some AI systems use explicit rules and do not learn this way at all.

اہم نکات

  • Training changes the model; inference uses it.
  • Keep evaluation examples separate from the examples used to choose or train the model.
  • Choose metrics that reflect the cost of mistakes, not only a large accuracy number.

گہرا غوطہ

In supervised learning, training examples pair inputs with target outputs. The model makes a prediction, a loss function measures how far that prediction is from the target, and a training algorithm changes the model to reduce the loss. Neural networks commonly use gradient-based optimization, but not every learning algorithm uses gradients. Validation data helps developers choose settings and compare candidate models. A held-out test set provides a separate estimate of performance after those choices are made. Repeatedly choosing models based on the test set weakens that separation. If the same person, document, or near-duplicate example appears on both sides of a split, the result can look better than performance on genuinely new data. Other learning setups use different signals. Unsupervised learning looks for structure without a target label for every example. Self-supervised training creates prediction tasks from the data itself, such as predicting text that follows a context. Reinforcement learning uses feedback about actions and outcomes. In every case, the training objective is a useful proxy, not a complete definition of what people want. After training, inference is the use of the model to produce an output. Supplying an example in a prompt can change the current response without updating the model's learned weights. Whether a service later uses a conversation for training is a separate product and data-policy question.

تکنیکی بصیرت

Low training error can coexist with poor real-world performance. Overfitting, data leakage, changes in the input distribution, and a mismatch between the measured objective and the real task all need separate checks.

Why accuracy can mislead: a toy spam test

  1. Imagine 100 test messages: 10 are spam and 90 are legitimate. A system that never flags spam is 90% accurate but catches none of the spam.
  2. Another system flags 20 messages. Eight really are spam and 12 are legitimate. It misses two spam messages.
  3. Its accuracy is 86%, precision is 8/20 = 40%, and recall is 8/10 = 80%. Decide whether catching eight spam messages is worth wrongly flagging 12 legitimate messages.

These are invented counts for an arithmetic example, not a benchmark result. They show why a single metric cannot determine whether a model is fit for a task.

اسٹریٹجک اثر

واضح فیصلے

یہ آپ کو مارکیٹنگ کی زبان سے واضح تکنیکی دعووں کو الگ کرنے میں مدد کرتا ہے۔

لاگت اور بجٹ

آپ پیسہ یا وقت خرچ کرنے سے پہلے بہتر نفاذ کے سوالات پوچھ سکتے ہیں۔

Team and workflow

مشترکہ تفہیم کے ساتھ ٹیمیں بہتر پروڈکٹ، پالیسی اور سیکھنے کے فیصلے کرتی ہیں۔

حقیقی دنیا کا نفاذ

Predicting tomorrow's demand from historical sales is supervised learning when the past outcomes are known.

Grouping similar documents without predetermined categories is an unsupervised task.

Predicting missing or next tokens in text creates a training signal from the text itself.

خطرات اور گارڈریلز

مختلف ٹیمیں ایک ہی اصطلاح کو مختلف طریقے سے استعمال کر سکتی ہیں، اس لیے دائرہ کار کی جلد وضاحت کریں۔

بینچ مارکس مضبوط نظر آسکتے ہیں جبکہ حقیقی دنیا کی کارکردگی ناہموار ہے۔

ڈیٹا کے معیار اور تشخیص کے منصوبوں کو نظر انداز کرنا اکثر نازک نتائج پیدا کرتا ہے۔

نفاذ کا روڈ میپ

1

آپ کو مطلوبہ نتائج کی سادہ زبان کی تعریف کے ساتھ شروع کریں۔

2

جانچ کرنے سے پہلے ایک کامیابی میٹرک اور ایک ناکامی کی شرط منتخب کریں۔

3

نمائندہ ڈیٹا کے ساتھ ایک چھوٹا پائلٹ چلائیں، نہ کہ پالش شدہ ڈیمو سیٹ۔

4

دستاویز جہاں AI Learns کیسے مدد کرتا ہے اور جہاں آسان طریقے بہتر ہیں۔

ذرائع اور مزید پڑھنا

دریافت کرتے رہیں

Free newsletter

Get the daily AI briefing

Three verified AI stories every weekday morning, written in plain English. Free forever, no ads.

One email each weekday. Unsubscribe in one click. We never sell or share your address.

Test yourself

Take the How AI Learns quiz

Instant feedback on every answer, and a shareable certificate with a verifiable ID once you pass a course.

کوئز شروع کریں۔

Support free AI education. AI Understanding is a 501(c)(3) nonprofit — no ads, no paywall, ever. Make a donation

اکثر پوچھے گئے سوالات

Does an AI system learn permanently from every prompt?

Not necessarily. A prompt changes the model's current context; it does not by itself imply that model weights are updated. A service's later training and retention policies are separate questions.

Why use a separate test set?

It provides examples that were not used to fit the model or repeatedly choose its settings. This makes the evaluation more informative about performance on new data.