|
--- |
|
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()) |
|
|