Daniel Bevenius
879b690a9e
finetune : fix output formatting in print_params (#4653)
This commit fixes the output formatting in the print_params function
which currently looks like this:
```console
print_params: n_vocab: 32000
print_params: n_ctx: 128
print_params: n_embd: 4096
print_params: n_ff: 11008
print_params: n_head: 32
print_params: n_head_kv: 32
print_params: n_layer: 32
print_params: norm_rms_eps : 0.000010
print_params: rope_freq_base : 10000.000000
print_params: rope_freq_scale : 1.000000
```
With this comit the output will look like this:
```console
print_params: n_vocab : 32000
print_params: n_ctx : 128
print_params: n_embd : 4096
print_params: n_ff : 11008
print_params: n_head : 32
print_params: n_head_kv : 32
print_params: n_layer : 32
print_params: norm_rms_eps : 0.000010
print_params: rope_freq_base : 10000.000000
print_params: rope_freq_scale : 1.000000
```
Signed-off-by: Daniel Bevenius <daniel.bevenius@gmail.com>
2023-12-27 16:16:55 +02:00
..
2023-12-21 23:20:49 +02:00
2023-10-24 16:48:37 +03:00
2023-12-01 10:51:24 +02:00
2023-12-04 15:43:45 +02:00
2023-10-23 22:40:03 +03:00
2023-12-14 14:13:33 +02:00
2023-12-14 16:52:08 +01:00
2023-11-02 08:50:16 +02:00
2023-12-21 23:20:49 +02:00
2023-12-27 16:16:55 +02:00
2023-12-21 23:08:14 +02:00
2023-11-20 14:56:59 +01:00
2023-10-06 16:16:38 +03:00
2023-12-07 13:03:17 +02:00
2023-12-18 20:17:43 +02:00
2023-12-21 23:20:49 +02:00
2023-12-12 11:53:36 +02:00
2023-12-22 18:05:56 +02:00
2023-12-05 12:05:51 +02:00
2023-10-24 20:48:45 +03:00
2023-11-13 14:16:23 +02:00
2023-11-23 19:07:56 +02:00
2023-11-16 19:14:37 -07:00
2023-11-02 08:50:16 +02:00
2023-12-07 13:03:17 +02:00
2023-11-02 08:50:16 +02:00
2023-12-23 11:31:49 +02:00
2023-12-04 18:04:21 +02:00
2023-12-12 11:53:36 +02:00
2023-11-18 14:48:17 -07:00
2023-12-21 23:20:49 +02:00
2023-07-06 19:17:50 +03:00
2023-03-29 20:21:09 +03:00
2023-05-03 20:58:11 +03:00
2023-10-03 21:04:01 +03:00
2023-06-15 21:05:53 +03:00
2023-08-30 09:29:32 +03:00
2023-12-22 18:05:56 +02:00
2023-04-13 16:03:39 +03:00
2023-08-23 17:29:09 +03:00
2023-07-21 13:53:27 +03:00
2023-07-21 13:53:27 +03:00
2023-08-08 14:44:48 +03:00
2023-08-30 09:50:55 +03:00
2023-09-27 19:25:12 +03:00
2023-07-21 11:13:18 +03:00
2023-08-23 17:29:09 +03:00
2023-08-23 17:29:09 +03:00