Views
No views yet
{"url": "https://..."} → {"embedding": [1024 floats]}.{"url": "https://..."} → same.OnurKenci/pe-av-server, Private or Public.1git init
2git remote add origin git@hf.co:OnurKenci/pe-av-server.git
3git add .
4git commit -m "PE-AV inference server for KODAPA"
5git push -u origin main1docker build --platform linux/amd64 -t YOUR_DOCKERHUB_USER/pe-av-server:latest .
2docker push YOUR_DOCKERHUB_USER/pe-av-server:latestYOUR_DOCKERHUB_USER/pe-av-server:latest. Port 8000. Hardware: T4 (or A10G). Enable scale-to-zero.1pip install -r requirements.txt
2export HF_HUB_MODEL_PATH=facebook/pe-av-base # or path to downloaded model
3uvicorn main:app --host 0.0.0.0 --port 8000HF_HUB_MODEL_PATH=/repository so no weights are in the image.