germi123 commited on
Commit
38aef76
·
verified ·
1 Parent(s): 92b4a5b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +31 -3
README.md CHANGED
@@ -1,3 +1,31 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ tags:
4
+ - implicit-neural-representation
5
+ - siren
6
+ - image-compression
7
+ - coordinates-based-model
8
+ - computer-vision
9
+ model_type: SIREN
10
+ ---
11
+
12
+ # Neural RAM Representation (SIREN)
13
+
14
+ This model is an **Implicit Neural Representation (INR)** of a RAM module image. Unlike traditional raster formats (PNG/JPG) that store pixels in a grid, this image is encoded entirely within the weights of a neural network.
15
+
16
+ ## Project Overview
17
+ The model utilizes the **SIREN** (Sinusoidal Representation Networks) architecture. It is trained to map continuous 2D coordinates $(x, y)$ to their corresponding $RGB$ color values.
18
+
19
+ ### Key Features:
20
+ - **Mathematical Storage:** The image exists as a continuous function rather than a discrete pixel array.
21
+ - **Infinite Resolution:** You can render the image at any scale by increasing the density of the coordinate grid.
22
+ - **Efficient Encoding:** The model has been optimized (~12,000 epochs) to capture fine textures of the PCB and gold-plated contacts with high fidelity.
23
+
24
+ ## Technical Specifications
25
+ - **Architecture:** Multi-Layer Perceptron (MLP) with periodic (sine) activation functions.
26
+ - **Depth:** 2 hidden layers.
27
+ - **Width:** 128 neurons per layer.
28
+ - **Format:** Provided as a lightweight `.safetensors` file.
29
+
30
+ ## Usage
31
+ To render the image, you will need `torch`, `safetensors`, and `numpy`.