File size: 941 Bytes
84bc648 fcdce44 84bc648 |
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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
---
title: VaibeSync User Matching Model
emoji: ๐
colorFrom: pink
colorTo: purple
sdk: pytorch
tags:
- dating
- user-matching
- recommendation-system
- pytorch-lightning
---
# VaibeSync User Matching Model
This model powers the VaibeSync dating app's intelligent user matching system.
## Model Details
- **Framework**: PyTorch Lightning
- **Task**: User compatibility prediction
- **Architecture**: Two-tower neural network
- **Size**: 1.5 MB
## Usage
This model is automatically downloaded and used by the VaibeSync ML API deployed on Railway.
```python
from models.user_match_two_tower import UserMatchingModel
model = UserMatchingModel.load_from_checkpoint("last.ckpt")
model.eval()
```
## Railway Deployment
Set these environment variables in your Railway deployment:
```
MODEL_STORAGE_TYPE=huggingface
HF_MODEL_REPO=ssourav15/vaibesync-user-matching-model
```
The model will be automatically downloaded on first startup.
|