ঘোষণা :
15 এপ্রিল, 2025 এর আগে আর্থ ইঞ্জিন ব্যবহার করার জন্য নিবন্ধিত সমস্ত অবাণিজ্যিক প্রকল্পগুলিকে অবশ্যই আর্থ ইঞ্জিন অ্যাক্সেস বজায় রাখার জন্য
অ-বাণিজ্যিক যোগ্যতা যাচাই করতে হবে।
ee.Classifier.setOutputMode
সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
একটি শ্রেণীবদ্ধকারীর আউটপুট বিন্যাস সেট করে।
প্রতিটি ক্লাসিফায়ারের জন্য সমর্থিত মোডের তালিকার জন্য https://developers.google.com/earth-engine/guides/classification দেখুন।
ব্যবহার | রিটার্নস | Classifier. setOutputMode (mode) | ক্লাসিফায়ার |
যুক্তি | টাইপ | বিস্তারিত | এই: classifier | ক্লাসিফায়ার | একটি ইনপুট ক্লাসিফায়ার। |
mode | স্ট্রিং | আউটপুট মোড। এর মধ্যে একটি:- শ্রেণীবিভাগ (ডিফল্ট): আউটপুট হল ক্লাস নম্বর।
- রিগ্রেশন: আউটপুট হল স্ট্যান্ডার্ড রিগ্রেশনের ফলাফল।
- সম্ভাব্যতা: আউটপুট হল সম্ভাব্যতা যে শ্রেণীবিভাগ সঠিক।
- মাল্টিপ্রবাবিলিটি: আউটপুট হল সম্ভাব্যতার একটি বিন্যাস যা প্রতিটি শ্রেণীকে দেখা ক্লাস অনুসারে ক্রমানুসারে সঠিক।
- RAW: আউটপুট হল শ্রেণীবিভাগ প্রক্রিয়ার অভ্যন্তরীণ উপস্থাপনার একটি অ্যারে। উদাহরণস্বরূপ, মাল্টি-সিদ্ধান্ত গাছের মডেলগুলিতে কাঁচা ভোট।
- RAW_REGRESSION: আউটপুট হল রিগ্রেশন প্রক্রিয়ার অভ্যন্তরীণ উপস্থাপনার একটি অ্যারে। উদাহরণস্বরূপ, একাধিক রিগ্রেশন গাছের কাঁচা ভবিষ্যদ্বাণী।
|
অন্য কিছু উল্লেখ না করা থাকলে, এই পৃষ্ঠার কন্টেন্ট Creative Commons Attribution 4.0 License-এর অধীনে এবং কোডের নমুনাগুলি Apache 2.0 License-এর অধীনে লাইসেন্স প্রাপ্ত। আরও জানতে, Google Developers সাইট নীতি দেখুন। Java হল Oracle এবং/অথবা তার অ্যাফিলিয়েট সংস্থার রেজিস্টার্ড ট্রেডমার্ক।
2025-07-24 UTC-তে শেষবার আপডেট করা হয়েছে।
[null,null,["2025-07-24 UTC-তে শেষবার আপডেট করা হয়েছে।"],[[["\u003cp\u003eSets the output mode for a classifier, impacting how results are presented.\u003c/p\u003e\n"],["\u003cp\u003eOffers various output modes like CLASSIFICATION, REGRESSION, PROBABILITY, MULTIPROBABILITY, RAW, and RAW_REGRESSION, each providing different data representations.\u003c/p\u003e\n"],["\u003cp\u003eNot all classifiers support every output mode; CLASSIFICATION is the default.\u003c/p\u003e\n"],["\u003cp\u003eThe setOutputMode function takes a string argument representing the desired mode and returns the classifier instance.\u003c/p\u003e\n"]]],[],null,["# ee.Classifier.setOutputMode\n\nSets a classifier's output format.\n\n\u003cbr /\u003e\n\nRefer to https://developers.google.com/earth-engine/guides/classification for a list of supported modes for each classifier.\n\n| Usage | Returns |\n|----------------------------------|------------|\n| Classifier.setOutputMode`(mode)` | Classifier |\n\n| Argument | Type | Details |\n|--------------------|------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| this: `classifier` | Classifier | An input classifier. |\n| `mode` | String | The output mode. One of: - CLASSIFICATION (default): The output is the class number. - REGRESSION: The output is the result of standard regression. - PROBABILITY: The output is the probability that the classification is correct. - MULTIPROBABILITY: The output is an array of probabilities that each class is correct ordered by classes seen. - RAW: The output is an array of the internal representation of the classification process. For example, the raw votes in multi-decision tree models. - RAW_REGRESSION: The output is an array of the internal representation of the regression process. For example, the raw predictions of multiple regression trees. |"]]