Aim
AimCallback #
Bases: BaseCallbackHandler
AimCallback回调类。
Args:
repo (:obj:`str`, optional):
Aim存储库路径或Run对象绑定的Repo对象。
如果跳过,默认使用默认Repo。
experiment_name (:obj:`str`, optional):
设置Run的`experiment`属性。如果未指定,默认为'default'。
以后可用于查询运行/序列。
system_tracking_interval (:obj:`int`, optional):
设置系统使用情况的跟踪间隔(以秒为单位)指标
(CPU、内存等)。设置为`None`以禁用
系统指标跟踪。
log_system_params (:obj:`bool`, optional):
启用/禁用记录系统参数,如已安装的软件包,
git信息,环境变量等。
capture_terminal_logs (:obj:`bool`, optional):
启用/禁用终端标准输出日志记录。
event_starts_to_ignore (Optional[List[CBEventType]]):
要忽略的事件类型列表,用于跟踪事件开始时。
event_ends_to_ignore (Optional[List[CBEventType]]):
要忽略的事件类型列表,用于跟踪事件结束时。
Source code in llama_index/callbacks/aim/base.py
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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 |
|
on_event_start #
on_event_start(
event_type: CBEventType,
payload: Optional[Dict[str, Any]] = None,
event_id: str = "",
parent_id: str = "",
**kwargs: Any
) -> str
Args: event_type(CBEventType):要存储的事件类型。 payload(Optional[Dict[str, Any]]):要存储的有效负载。 event_id(str):要存储的事件ID。 parent_id(str):父事件ID。
Source code in llama_index/callbacks/aim/base.py
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 |
|
on_event_end #
on_event_end(
event_type: CBEventType,
payload: Optional[Dict[str, Any]] = None,
event_id: str = "",
**kwargs: Any
) -> None
Args: event_type(CBEventType):要存储的事件类型。 payload(Optional[Dict[str, Any]]):要存储的有效负载。 event_id(str):要存储的事件ID。
Source code in llama_index/callbacks/aim/base.py
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 |
|