engine.py 3.17 KB
Newer Older
chenych's avatar
chenych committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Copyright 2024 the LlamaFactory team.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

Rayyyyy's avatar
V0.6.3  
Rayyyyy committed
15
16
17
from typing import TYPE_CHECKING, Any, Dict

from .chatter import WebChatModel
chenych's avatar
chenych committed
18
from .common import load_config
Rayyyyy's avatar
V0.6.3  
Rayyyyy committed
19
20
21
from .locales import LOCALES
from .manager import Manager
from .runner import Runner
chenych's avatar
chenych committed
22
from .utils import create_ds_config, get_time
Rayyyyy's avatar
V0.6.3  
Rayyyyy committed
23
24
25
26
27
28
29
30
31
32
33
34
35


if TYPE_CHECKING:
    from gradio.components import Component


class Engine:
    def __init__(self, demo_mode: bool = False, pure_chat: bool = False) -> None:
        self.demo_mode = demo_mode
        self.pure_chat = pure_chat
        self.manager = Manager()
        self.runner = Runner(self.manager, demo_mode)
        self.chatter = WebChatModel(self.manager, demo_mode, lazy_init=(not pure_chat))
chenych's avatar
chenych committed
36
37
        if not demo_mode:
            create_ds_config()
Rayyyyy's avatar
V0.6.3  
Rayyyyy committed
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56

    def _update_component(self, input_dict: Dict[str, Dict[str, Any]]) -> Dict["Component", "Component"]:
        r"""
        Gets the dict to update the components.
        """
        output_dict: Dict["Component", "Component"] = {}
        for elem_id, elem_attr in input_dict.items():
            elem = self.manager.get_elem_by_id(elem_id)
            output_dict[elem] = elem.__class__(**elem_attr)

        return output_dict

    def resume(self):
        user_config = load_config() if not self.demo_mode else {}
        lang = user_config.get("lang", None) or "en"

        init_dict = {"top.lang": {"value": lang}, "infer.chat_box": {"visible": self.chatter.loaded}}

        if not self.pure_chat:
chenych's avatar
chenych committed
57
58
59
60
61
            current_time = get_time()
            init_dict["train.current_time"] = {"value": current_time}
            init_dict["train.output_dir"] = {"value": "train_{}".format(current_time)}
            init_dict["train.config_path"] = {"value": "{}.yaml".format(current_time)}
            init_dict["eval.output_dir"] = {"value": "eval_{}".format(current_time)}
luopl's avatar
luopl committed
62
            init_dict["infer.mm_box"] = {"visible": False}
Rayyyyy's avatar
V0.6.3  
Rayyyyy committed
63
64
65
66
67
68

            if user_config.get("last_model", None):
                init_dict["top.model_name"] = {"value": user_config["last_model"]}

        yield self._update_component(init_dict)

chenych's avatar
chenych committed
69
        if self.runner.running and not self.demo_mode and not self.pure_chat:
Rayyyyy's avatar
V0.6.3  
Rayyyyy committed
70
71
72
73
74
75
76
77
78
79
80
81
            yield {elem: elem.__class__(value=value) for elem, value in self.runner.running_data.items()}
            if self.runner.do_train:
                yield self._update_component({"train.resume_btn": {"value": True}})
            else:
                yield self._update_component({"eval.resume_btn": {"value": True}})

    def change_lang(self, lang: str):
        return {
            elem: elem.__class__(**LOCALES[elem_name][lang])
            for elem_name, elem in self.manager.get_elem_iter()
            if elem_name in LOCALES
        }