BestPromptFinder
HomeCoding › Below is an instruction that describes a task. Write a respo...

Below is an instruction that describes a task. Write a respo...

Coding · Gemini, GPT-5.6, Claude · Coding
50Quality
87%Useful
85Reliability

The prompt

Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: Develop a Python function to predict the class labels of a given set of data. ### Input: The dataset contains 4 features: Length, Width, Height and Weight. ### Output: # Load the dataset import pandas as pd csv_url = ' df = pd.read_csv(csv_url) # Split the dataset into features and label X = df.iloc[:, 0:4].values y = df.iloc[:, 4].values # Import the ML model from sklearn.tree import DecisionTreeClassifier # Create and fit the model model = DecisionTreeClassifier() model.fit(X, y) # Predict the label def predict(data): predicted_label = model.predict([data]) return predicted_label
Find similar in the app →

Why this prompt

Source

Hugging Face

Related Coding prompts

PRD to MVP Technical Plan
Quality 93 · Claude Code
Full-Stack CRUD App Builder
Quality 93 · Claude Code
Legacy Refactor Planner
Quality 93 · Claude Code
Test Suite Generator
Quality 93 · Claude Code
Third-Party API Integration
Quality 93 · Claude Code
Database Schema and Migration
Quality 93 · Claude Code