A Python implementation of linear regression using the Model Context Protocol (MCP) framework. This project demonstrates how to apply linear regression techniques within the MCP architecture.
아직 리뷰가 없습니다. 첫 번째 리뷰를 작성해 보세요!
대화에 참여하려면 로그인하세요
Uploads a CSV file and stores it for processing. Parameters: path (string) - Absolute path to the CSV file.
Retrieves the column names in the uploaded dataset. No arguments.
Checks for any categorical columns in the dataset. No arguments.
Label encodes categorical columns into numerical values. No arguments.
Trains a linear regression model and calculates RMSE. Parameters: output_column (string) - The name of the target column.