File size: 816 Bytes
893db59
 
 
 
a5069eb
893db59
 
 
 
 
 
 
 
 
 
 
a5069eb
893db59
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a5069eb
893db59
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
"""
MuseMorphic: Lightweight Consumer-Grade MIDI Generation
"""

__version__ = "0.2.0"

from .model import (
    MuseMorphicConfig,
    MuseMorphic,
    PhraseVAE,
    LatentMamba,
    FundamentalMusicEmbedding,
    MusicTokenEmbedding,
    SelectiveSSM,
    MambaBlock,
    ZClip,
    apply_span_mask_vectorized,
    model_summary,
)

from .tokenizer import (
    TokenizerConfig,
    REMIPlusTokenizer,
    notes_to_midi_file,
    midi_file_to_notes,
)

__all__ = [
    'MuseMorphicConfig',
    'MuseMorphic',
    'PhraseVAE',
    'LatentMamba',
    'FundamentalMusicEmbedding',
    'MusicTokenEmbedding',
    'SelectiveSSM',
    'MambaBlock',
    'ZClip',
    'apply_span_mask_vectorized',
    'model_summary',
    'TokenizerConfig',
    'REMIPlusTokenizer',
    'notes_to_midi_file',
    'midi_file_to_notes',
]