--- title: Vysakhan ScrorePrediction emoji: 🏢 colorFrom: gray colorTo: purple sdk: gradio sdk_version: 5.3.0 app_file: app.py pinned: false --- # Score Prediction Model This model predicts the score in a cricket match based on several factors such as the venue, match type, team batting, and team bowling. ### Example Input and Output Here is an example of the input and corresponding output for the `ScorePrediction` model: #### Input: ```json { "inputs": { "Venue": "Lords", "Match_Type": "Test", "Team_Batting": "India", "Team_Bowling": "Australia" } } #### Output: { "score": 256 }