Skip to content

Commit c2aabd8

Browse files
committed
Arreglos del README para la release de la v1.1.0 pt.3
1 parent b4c31f9 commit c2aabd8

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,11 @@ Located in the `tensor.py` and `layers.py` modules, this is the automatic differ
6464

6565
| Layer / Module | Description & C++ Inference Optimization |
6666
| --- | --- |
67-
| **`Conv1D` & `Conv2D**` | Spatial/temporal convolutions. The exporter dynamically indexes the geometry and generates nested loops with safe memory reads using `READ_FLOAT` macros. |
67+
| **`Conv1D` & `Conv2D`** | Spatial/temporal convolutions. The exporter dynamically indexes the geometry and generates nested loops with safe memory reads using `READ_FLOAT` macros. |
6868
| **`SeparableConv2D`** | *MobileNet-Style*. Splits the convolution into *Depthwise* and *Pointwise* steps. Supports native **Operator Fusion** in C++ to minimize memory access and accelerate inference. |
6969
| **`ResidualBlock1D`** | *ResNet-Style*. Enables deep networks without vanishing gradients by adding the identity ($y = \mathcal{F}(x) + x$). Implements strict geometric indexing to align dimensions in C++. |
7070
| **`MaxPool1D/2D`** | Mathematical dimensionality reduction with sliding window management (Kernel/Stride). |
71-
| **`Flatten` & `Linear**` | Multilayer Perceptron. Supports recursive flattening of dynamic tensors (up to 4D) while maintaining the gradient flow. |
71+
| **`Flatten` & `Linear`** | Multilayer Perceptron. Supports recursive flattening of dynamic tensors (up to 4D) while maintaining the gradient flow. |
7272
| **Activations** | `ReLU`, `Sigmoid`, `MSELoss`, `CrossEntropyLoss`. Implemented with *Clip* barriers to prevent mathematical *Overflows* in 8-bit architectures. |
7373

7474
---
@@ -337,11 +337,11 @@ Ubicado en los módulos `tensor.py` y `layers.py`, este es el motor de diferenci
337337

338338
| Capa / Módulo | Descripción y Optimización de Inferencia en C++ |
339339
| --- | --- |
340-
| **`Conv1D` & `Conv2D**` | Convoluciones espaciales/temporales. El exportador indexa la geometría dinámicamente y genera bucles anidados con lectura segura mediante macros `READ_FLOAT`. |
340+
| **`Conv1D` & `Conv2D`** | Convoluciones espaciales/temporales. El exportador indexa la geometría dinámicamente y genera bucles anidados con lectura segura mediante macros `READ_FLOAT`. |
341341
| **`SeparableConv2D`** | *MobileNet-Style*. Divide la convolución en *Depthwise* y *Pointwise*. Soporta **Operator Fusion** nativo en C++ para minimizar el acceso a memoria y acelerar la inferencia. |
342342
| **`ResidualBlock1D`** | *ResNet-Style*. Permite redes profundas sin desvanecimiento de gradiente sumando la identidad ($y = \mathcal{F}(x) + x$). Implementa indexación geométrica estricta para alinear las dimensiones en C++. |
343343
| **`MaxPool1D/2D`** | Reducción de dimensionalidad matemática con gestión de ventanas deslizantes (Kernel/Stride). |
344-
| **`Flatten` & `Linear**` | Perceptrón Multicapa. Soporta el aplanado recursivo de tensores dinámicos (hasta 4D) manteniendo el flujo del gradiente. |
344+
| **`Flatten` & `Linear`** | Perceptrón Multicapa. Soporta el aplanado recursivo de tensores dinámicos (hasta 4D) manteniendo el flujo del gradiente. |
345345
| **Activaciones** | `ReLU`, `Sigmoid`, `MSELoss`, `CrossEntropyLoss`. Implementadas con barreras de *Clip* para evitar *Overflows* matemáticos en arquitecturas de 8-bits. |
346346

347347
---

0 commit comments

Comments
 (0)