Spaces:
Sleeping
Sleeping
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
emoji: 🏢
|
| 4 |
colorFrom: green
|
| 5 |
colorTo: green
|
|
@@ -10,5 +10,22 @@ pinned: false
|
|
| 10 |
license: mit
|
| 11 |
short_description: 'Turn .md / .txt into csv '
|
| 12 |
---
|
|
|
|
| 13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
| 1 |
---
|
| 2 |
+
title: Markdown To CSV Converter (for Threadscope)
|
| 3 |
emoji: 🏢
|
| 4 |
colorFrom: green
|
| 5 |
colorTo: green
|
|
|
|
| 10 |
license: mit
|
| 11 |
short_description: 'Turn .md / .txt into csv '
|
| 12 |
---
|
| 13 |
+
This tool converts structured chat transcripts written in markdown or plain text into a canonical turn-level CSV format suitable for analysis with Threadscope: Drift & Hold.
|
| 14 |
|
| 15 |
+
Supported Format:
|
| 16 |
+
This convertor expects transcripts that use explicit speaker markers, for example:
|
| 17 |
+
You said: Hello
|
| 18 |
+
ChatGPT said: Hi there
|
| 19 |
+
Marker strings are configurable in the UI, but the transcript must follow a consistent "marker to content" pattern
|
| 20 |
+
|
| 21 |
+
Not supported:
|
| 22 |
+
Arbitarily formatted prose
|
| 23 |
+
Chat logs without speaker markers
|
| 24 |
+
Exported HTML/JSON without preprocessing (in process - update coming soon)
|
| 25 |
+
|
| 26 |
+
Output:
|
| 27 |
+
The output CSV includes: turn, speaker, chars, words, tokens_est (lightweight est.)
|
| 28 |
+
|
| 29 |
+
This tool is intended as a preprocessing step for use with Threadscope, which visualizes long-form interaction dynamics such as drift, stability, and perturbation response.
|
| 30 |
+
Files are processed in-session only and are not stored
|
| 31 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|