Spaces:
Runtime error
Runtime error
Add how it works
Browse files- how_it_works.md +72 -0
how_it_works.md
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# How It Works
|
| 2 |
+
|
| 3 |
+
TODO: Replace this with your actual content.
|
| 4 |
+
|
| 5 |
+
---
|
| 6 |
+
|
| 7 |
+
## Formatting Examples
|
| 8 |
+
|
| 9 |
+
### Text Styles
|
| 10 |
+
|
| 11 |
+
You can use **bold text**, *italic text*, or ***both together***. You can also use ~~strikethrough~~ and `inline code`.
|
| 12 |
+
|
| 13 |
+
### Lists
|
| 14 |
+
|
| 15 |
+
**Unordered list:**
|
| 16 |
+
- First item
|
| 17 |
+
- Second item
|
| 18 |
+
- Nested item
|
| 19 |
+
- Another nested item
|
| 20 |
+
- Third item
|
| 21 |
+
|
| 22 |
+
**Ordered list:**
|
| 23 |
+
1. Step one
|
| 24 |
+
2. Step two
|
| 25 |
+
3. Step three
|
| 26 |
+
|
| 27 |
+
### Blockquotes
|
| 28 |
+
|
| 29 |
+
> This is a blockquote. Great for highlighting important information or quotes.
|
| 30 |
+
>
|
| 31 |
+
> It can span multiple lines.
|
| 32 |
+
|
| 33 |
+
### Code Blocks
|
| 34 |
+
|
| 35 |
+
```python
|
| 36 |
+
# Example code with syntax highlighting
|
| 37 |
+
def analyze_chords(sequence):
|
| 38 |
+
embeddings = get_embeddings(sequence)
|
| 39 |
+
return compute_score(embeddings)
|
| 40 |
+
```
|
| 41 |
+
|
| 42 |
+
### Tables
|
| 43 |
+
|
| 44 |
+
| Chord | Function | Example Songs |
|
| 45 |
+
|-------|----------|---------------|
|
| 46 |
+
| I | Tonic | Home base |
|
| 47 |
+
| IV | Subdominant | Building tension |
|
| 48 |
+
| V | Dominant | Wants to resolve |
|
| 49 |
+
| vi | Relative minor | Emotional depth |
|
| 50 |
+
|
| 51 |
+
### Links and Images
|
| 52 |
+
|
| 53 |
+
[Link to external site](https://example.com)
|
| 54 |
+
|
| 55 |
+
### Math (if supported)
|
| 56 |
+
|
| 57 |
+
Some Gradio themes support LaTeX: $E = mc^2$
|
| 58 |
+
|
| 59 |
+
### Horizontal Rules
|
| 60 |
+
|
| 61 |
+
Use `---` to create dividers like the one below the title.
|
| 62 |
+
|
| 63 |
+
---
|
| 64 |
+
|
| 65 |
+
### Collapsible Sections (HTML)
|
| 66 |
+
|
| 67 |
+
<details>
|
| 68 |
+
<summary>Click to expand</summary>
|
| 69 |
+
|
| 70 |
+
Hidden content goes here. Useful for additional details that don't need to be visible by default.
|
| 71 |
+
|
| 72 |
+
</details>
|