Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion platform/models/README.md
Original file line number Diff line number Diff line change
@@ -1 +1,13 @@
# Model Placeholder\n\nBu klasf6r, gerf5ek model aa7b1rld1k dosyalard1 ib7ermez. Netlify ortamd1nda ab7d1rld1klar host edilmiyor; gerf5ek inference, harici INFERENCE_API_URL ile saf7lanacak.\n
# Model Placeholders

Bu klasör sadece yer tutucu dosyalar içerir; gerçek model ağırlıkları burada yoktur. Netlify üzerinde model barındırmıyoruz, gerçek inference harici `INFERENCE_API_URL` ile sağlanacak.

Beklenen gerçek dosyalar (eğitim sonrası):
- `auth_classifier.joblib`: AI/insan sınıflandırıcı (sklearn)
- `scaler.joblib`: Özellik ölçekleyici
- `metadata.json`: Model sürümü, veri özeti, lisans, eğitim tarihi
- `thresholds.json`: Karar eşikleri
- `signature.json`: Girdi/çıktı şeması (`AnalysisResult`)
- Derin model varsa: `checkpoint.pt` veya `model.safetensors`, `config.json`, `label_map.json`

Mevcut dosyalar sahte içeriktir ve yalnızca dosya yapısını gösterir.
1 change: 1 addition & 0 deletions platform/models/auth_classifier.joblib
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
placeholder-auth-classifier
4 changes: 4 additions & 0 deletions platform/models/label_map.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"ai": 1,
"human": 0
}
11 changes: 11 additions & 0 deletions platform/models/metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"model_name": "ai_music_detector_placeholder",
"version": "0.0.0-placeholder",
"trained_on": "n/a",
"features": [
"spectralRegularity",
"temporalPatterns",
"harmonicStructure"
],
"notes": "Placeholder metadata. Replace after real training."
}
1 change: 0 additions & 1 deletion platform/models/model-placeholder.bin

This file was deleted.

1 change: 1 addition & 0 deletions platform/models/scaler.joblib
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
placeholder-scaler
27 changes: 27 additions & 0 deletions platform/models/signature.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"input": {
"audio": "wav, mono, 44.1kHz",
"max_bytes": 31457280,
"max_duration_sec": 360
},
"output": {
"isAIGenerated": "boolean",
"confidence": "float",
"processingTime": "seconds",
"modelVersion": "string",
"decisionSource": "music_ai|ses_analizi|preview",
"features": {
"spectralRegularity": "float",
"temporalPatterns": "float",
"harmonicStructure": "float",
"artificialIndicators": "string[]"
},
"audioInfo": {
"duration": "seconds",
"sampleRate": "Hz",
"bitrate": "kbps",
"format": "string"
}
},
"note": "Placeholder signature; align with real inference service."
}
6 changes: 6 additions & 0 deletions platform/models/thresholds.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"ai_probability_threshold": 0.5,
"min_confidence": 0.5,
"max_confidence": 0.99,
"note": "Placeholder thresholds; update after calibration."
}
Loading