pavankumarvk commited on
Commit
93fd62d
Β·
verified Β·
1 Parent(s): 0318cca

Update pipeline.py

Browse files
Files changed (1) hide show
  1. pipeline.py +3 -3
pipeline.py CHANGED
@@ -45,9 +45,9 @@ efficientnet_model = tf.keras.layers.TFSMLayer(
45
  # Tie on real vs fake β†’ AI Synthesized (safest middle ground)
46
  # ─────────────────────────────────────────────────────────────────────────────
47
  AUDIO_MODELS = [
48
- "mo-thecreator/Deepfake-audio-detection",
49
- "MelodyMachine/Deepfake-audio-detection-V2",
50
- "Gustking/wav2vec2-large-xlsr-deepfake-audio-classification",
51
  ]
52
  AUDIO_SAMPLE_RATE = 16000
53
 
 
45
  # Tie on real vs fake β†’ AI Synthesized (safest middle ground)
46
  # ─────────────────────────────────────────────────────────────────────────────
47
  AUDIO_MODELS = [
48
+ "MelodyMachine/Deepfake-audio-detection-V2", # Highest accuracy
49
+ "MelodyMachine/Deepfake-audio-detection", # Second best
50
+ "Gustking/wav2vec2-large-xlsr-deepfake-audio-classification", # Most robust to real-world audio
51
  ]
52
  AUDIO_SAMPLE_RATE = 16000
53