ZENLLC commited on
Commit
ce3ef76
·
verified ·
1 Parent(s): 93ecab9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +10 -10
README.md CHANGED
@@ -1,18 +1,18 @@
1
  ---
2
- title: AI Zen Garden
3
- emoji: 🧘
4
- colorFrom: green
5
- colorTo: blue
6
  sdk: gradio
7
  app_file: app.py
8
  pinned: false
9
  ---
10
 
11
- # AI Zen Garden
12
 
13
- A daily AI challenge app built for April 2nd, 2026. This application uses a local LLM to generate custom meditation scripts based on your current mood.
14
 
15
- ### How to use:
16
- 1. Select your current emotional state.
17
- 2. Input a focus topic (like 'The Ocean' or 'Deep Breathing').
18
- 3. Click generate to receive a unique 3-sentence mindfulness script.
 
1
  ---
2
+ title: Neural Layer Inspector
3
+ emoji: 🧠
4
+ colorFrom: blue
5
+ colorTo: indigo
6
  sdk: gradio
7
  app_file: app.py
8
  pinned: false
9
  ---
10
 
11
+ # Neural Layer Inspector
12
 
13
+ This is a technical utility designed for Deep Learning engineers to inspect the internal attention mechanisms of Vision Transformers (ViT).
14
 
15
+ ### How it works
16
+ 1. **Model**: Uses `google/vit-base-patch16-224`.
17
+ 2. **Extraction**: Accesses the `attentions` attribute from the model output.
18
+ 3. **Visualization**: Maps the 1D attention sequence back to the 2D image coordinate space using interpolation and normalization.