update console design

This commit is contained in:
2026-04-29 19:32:36 +07:00
parent 0a7974260d
commit 83420a314a
6 changed files with 212 additions and 79 deletions
+2 -2
View File
@@ -1,9 +1,9 @@
#ifndef TYPEDEF_H
#define TYPEDEF_H
const int MAX_CONTEXT = 4; // Сколько токенов видит сеть
const int MAX_CONTEXT = 8; // Сколько токенов видит сеть
const int EMBED_DIM = 4; // Размер вектора одного токена
const int MAX_VOCAB = 13; // Размер словаря
const int MAX_VOCAB = 90; // Размер словаря
typedef enum { SIGMOID } FunctionActivate_t;
typedef struct { int size; FunctionActivate_t activate; } LayerStructure_t;