- プロンプト実行例
- プロンプトを見る

Input python code or issues

3 class classification

Sure! Here is a sample code for a simple 3-class classification using Python's scikit-learn library with Support Vector Machine (SVM) algorithm:
Python1# Import necessary libraries 2from sklearn import datasets 3from sklearn.model_selection import train_test_split 4from sklearn.svm import SVC 5from sklearn.metrics import accuracy_score 6 7# Load the iris dataset (a popular dataset for classification) 8iris = datasets.load_iris() 9X = iris.data 10y = iris.target 11 12# Split data into training and testing sets 13X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.3, random_state=42) 14 15# Train the Support Vector Machine (SVM) classifier 16clf = SVC(kernel='linear') 17clf.fit(X_train, y_train) 18 19# Make predictions on the test data 20predictions = clf.predict(X_test) 21 22# Calculate the accuracy of the model 23accuracy = accuracy_score(y_test, predictions) 24print("Accuracy:", accuracy)
In this code:
- Load the Iris dataset.
- Split the dataset into training and testing sets.
- Use SVM algorithm for classification.
- Train the model on the training data.
- Make predictions on the test data.
- Calculate and print the accuracy of the model.
This code performs a 3-class classification on the Iris dataset using SVM algorithm. The dataset is split into training and testing sets, and the accuracy of the model is calculated.
コメント 0
他のプロンプトもチェック
GPTs
文案作成
どんなに頭の悪そうな文章(失礼!)も優秀な東大生が執筆する学術論文のような知的な文章へと生まれ変わる、「東大生の文章に変換」の【GPT改良版】です。 このプロセスは、論理的思考、学術的特性、比喩、ストーリー性、さらには学術的文法修正およびその他の技法を駆使して行われ、分析→修正→再構築→物語化を繰り返しながら高度に洗練された文章を生成する仕組みとなっています。今回、教えてAI版を修正し(WEBチェック機能など)、新たに改良版として公開しました。 論文はもちろん、ビジネス文書やメール、SNS投稿文、ブログ記事、自己PR文、履歴書、各種書類、などを作成する際にぜひご利用ください。42136229GPTs
プロンプト生成
構造化プロンプトについて、苦手意識を持つ人が多いと思います。 一方で、自分で書けるようになりたいという人も多いと思います。 そういった方向けに、だれでも簡単に、効果的でカスタマイズしやすい構造化プロンプトを生成してくれるGPTsを作成しました。 「ChatGPTに○○してほしい」という指示をもとに、詳細な構造化プロンプトへと変換してくれるGPTsです。 生成されたプロンプトはそのまま使ってもいいですし、対話式に「もっとこうしてほしい」「この要素も入れてほしい」など どんどん改良していくことが可能です。 プロンプトの一番最後に「#その他Userへの注意事項・Userへの確認事項」として、GPTsからの確認事項が生成されます。 それをもとに新しく情報を追加していくことで、簡単に精度を高めることが可能です。 ぜひ、職場や周りに広めていただき、みんなで構造化プロンプトについて使いこなせるようになっていきましょう。GPTs
SNS広告
背景なしで小さな部屋のインテリアや施設の外観などをミニチュアで作成できます。サムネイルや広告、動画の素材に使える画像です。0042236