zkeown commited on
Commit
b503ee0
·
verified ·
1 Parent(s): e648f86

Initial model registry with 4 expert models

Browse files
Files changed (1) hide show
  1. registry.json +82 -0
registry.json ADDED
@@ -0,0 +1,82 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "schemaVersion": "1.0.0",
3
+ "organization": "schismaudio",
4
+ "models": [
5
+ {
6
+ "expertId": "melroformer-full",
7
+ "name": "MelRoFormer Full",
8
+ "repo": "schismaudio/melroformer-full",
9
+ "version": "1.0.0",
10
+ "tasks": [
11
+ "vocalSeparation"
12
+ ],
13
+ "qualityTier": "high",
14
+ "estimatedRTF": 0.8,
15
+ "peakMemoryMB": 512,
16
+ "inputKind": "mix",
17
+ "outputKind": "stem",
18
+ "fileSizeMB": 145,
19
+ "description": "Full Mel-Band RoFormer for high-quality vocal separation"
20
+ },
21
+ {
22
+ "expertId": "melroformer-lightweight",
23
+ "name": "MelRoFormer Lightweight",
24
+ "repo": "schismaudio/melroformer-lightweight",
25
+ "version": "1.0.0",
26
+ "tasks": [
27
+ "vocalSeparation"
28
+ ],
29
+ "qualityTier": "medium",
30
+ "estimatedRTF": 0.3,
31
+ "peakMemoryMB": 256,
32
+ "inputKind": "mix",
33
+ "outputKind": "stem",
34
+ "fileSizeMB": 68,
35
+ "description": "Lightweight Mel-Band RoFormer for fast vocal separation"
36
+ },
37
+ {
38
+ "expertId": "scnet-base",
39
+ "name": "SCNet Base",
40
+ "repo": "schismaudio/scnet-base",
41
+ "version": "1.0.0",
42
+ "tasks": [
43
+ "stemSeparation"
44
+ ],
45
+ "qualityTier": "medium",
46
+ "estimatedRTF": 0.2,
47
+ "peakMemoryMB": 128,
48
+ "inputKind": "mix",
49
+ "outputKind": "stems",
50
+ "outputStems": [
51
+ "drums",
52
+ "bass",
53
+ "other",
54
+ "vocals"
55
+ ],
56
+ "fileSizeMB": 40,
57
+ "description": "4-stem separation (drums/bass/other/vocals)"
58
+ },
59
+ {
60
+ "expertId": "scnet-large",
61
+ "name": "SCNet Large",
62
+ "repo": "schismaudio/scnet-large",
63
+ "version": "1.0.0",
64
+ "tasks": [
65
+ "stemSeparation"
66
+ ],
67
+ "qualityTier": "high",
68
+ "estimatedRTF": 0.5,
69
+ "peakMemoryMB": 320,
70
+ "inputKind": "mix",
71
+ "outputKind": "stems",
72
+ "outputStems": [
73
+ "drums",
74
+ "bass",
75
+ "other",
76
+ "vocals"
77
+ ],
78
+ "fileSizeMB": 164,
79
+ "description": "Large SCNet for higher-quality 4-stem separation"
80
+ }
81
+ ]
82
+ }