File size: 1,103 Bytes
d99d68f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
---
tags:
- university-matching
- AI
- education
- student-advisor
license: mit
---
# ๐ UniversityMatchAI
**UniversityMatchAI** is an AI-powered recommendation model that helps students find the best university based on their interests, skills, goals, and budget.
## ๐ Model Details
- **Base Model**: `mistralai/Mistral-7B-Instruct`
- **Task**: University Matching / Recommendation System
- **Training Data**: A dataset of student profiles and university details
- **Intended Use**: Helps students in Italy choose the best university for them
- **Limitations**: Model is trained on available data and may not always be 100% accurate
## ๐ง How to Use
You can use this model via the Hugging Face **Inference API**:
```python
import requests
API_URL = "https://api-inference.huggingface.co/models/YOUR_USERNAME/UniversityMatchAI"
headers = {"Authorization": "Bearer YOUR_HF_API_KEY"}
data = {"inputs": "Suggest the best university for a student interested in Computer Science with a low budget."}
response = requests.post(API_URL, headers=headers, json=data)
print(response.json())
|