File size: 1,030 Bytes
5e9a603
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
"""Fast-dDrive HF release package.

Mirrors the layout of ``Efficient-Large-Model/Fast_dVLM_3B`` on the Hugging Face
Hub: a single :mod:`modeling` module that holds the model definition plus
inference-time decoding paths (Section Diffusion, Scaffold Spec, and
Scaffold Spec with multi-trajectory rollouts), and a :mod:`configuration`
module with the config classes.

Users normally load the model via::

    from transformers import AutoModelForCausalLM, AutoTokenizer
    model = AutoModelForCausalLM.from_pretrained(
        "Efficient-Large-Model/Fast_dDrive",  # or local path
        trust_remote_code=True,
    )

with the ``auto_map`` entry in :file:`config.json` pointing back to the classes
defined here.
"""

from .configuration import (
    Fast_dDriveConfig,
    Fast_dDriveTextConfig,
    Fast_dDriveVisionConfig,
)
from .modeling import Fast_dDriveForConditionalGeneration

__all__ = [
    "Fast_dDriveConfig",
    "Fast_dDriveTextConfig",
    "Fast_dDriveVisionConfig",
    "Fast_dDriveForConditionalGeneration",
]