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