jbilcke-hf HF staff commited on
Commit
18ffad7
1 Parent(s): 874c9ec
src/app/api/v1/edit/music/generateMusic.ts CHANGED
@@ -70,7 +70,7 @@ export async function generateMusic({
70
 
71
  if (!hasAudio) {
72
  console.warn(`generateMusic(): the generated music waveform appears to be silent (might be a ffprobe malfunction)`)
73
- return
74
  }
75
 
76
  const newProperties: Partial<ClapSegment> = {
 
70
 
71
  if (!hasAudio) {
72
  console.warn(`generateMusic(): the generated music waveform appears to be silent (might be a ffprobe malfunction)`)
73
+ // return
74
  }
75
 
76
  const newProperties: Partial<ClapSegment> = {
src/app/api/v1/render/cluster.ts CHANGED
@@ -2,12 +2,15 @@ import { sleep } from "@/lib/utils/sleep"
2
  import { ClusterMachine } from "../types"
3
 
4
 
 
 
5
  export const nbClusterMachines = 3
6
  // make sure the machines are running!!
7
 
8
  // https://huggingface.co/spaces/jbilcke-hf/ai-tube-model-adl-1/settings
9
  // https://huggingface.co/spaces/jbilcke-hf/ai-tube-model-adl-2/settings
10
  // https://huggingface.co/spaces/jbilcke-hf/ai-tube-model-adl-3/settings
 
11
 
12
  // we maintain a global cluster state
13
 
 
2
  import { ClusterMachine } from "../types"
3
 
4
 
5
+ // video generation requires A100s so we need to be parcimonous here,
6
+ // we shouldn't burn too many GPUs
7
  export const nbClusterMachines = 3
8
  // make sure the machines are running!!
9
 
10
  // https://huggingface.co/spaces/jbilcke-hf/ai-tube-model-adl-1/settings
11
  // https://huggingface.co/spaces/jbilcke-hf/ai-tube-model-adl-2/settings
12
  // https://huggingface.co/spaces/jbilcke-hf/ai-tube-model-adl-3/settings
13
+ // https://huggingface.co/spaces/jbilcke-hf/ai-tube-model-adl-4/settings
14
 
15
  // we maintain a global cluster state
16