deplana commited on
Commit
33d795d
·
verified ·
1 Parent(s): 481f35c

Fix kick config: add is_subscriber/is_moderator fields for Malta file compatibility

Browse files
Files changed (1) hide show
  1. README.md +8 -4
README.md CHANGED
@@ -674,6 +674,10 @@ configs:
674
  dtype: string
675
  - name: message
676
  dtype: string
 
 
 
 
677
  - name: reply_to
678
  dtype: string
679
  tags:
@@ -712,14 +716,14 @@ Each VOD folder contains:
712
  | user_name | string | Sender's username |
713
  | user_color | string | User's chat color hex |
714
  | message | string | Chat message content |
715
- | is_subscriber | bool | Is user a subscriber? (Twitch configs only) |
716
- | is_moderator | bool | Is user a moderator? (Twitch configs only) |
717
  | reply_to | string | Username being replied to (always empty for Twitch) |
718
 
719
  ## Usage
720
 
721
  Select a config from the dataset viewer dropdown:
722
  - **`twitch-{streamer}`** - Individual Twitch streamer configs (e.g., `twitch-arkanightlive`, `twitch-lucakingm`)
723
- - **`kick`** - All Kick VODs (9.5MB, 35 files)
724
 
725
- **Note:** The combined `twitch` config was removed to enable dataset viewer (exceeded parquet conversion limits). For bulk analysis, use the `datasets` library to load multiple configs.
 
674
  dtype: string
675
  - name: message
676
  dtype: string
677
+ - name: is_subscriber
678
+ dtype: bool
679
+ - name: is_moderator
680
+ dtype: bool
681
  - name: reply_to
682
  dtype: string
683
  tags:
 
716
  | user_name | string | Sender's username |
717
  | user_color | string | User's chat color hex |
718
  | message | string | Chat message content |
719
+ | is_subscriber | bool | Is user a subscriber? (both platforms) |
720
+ | is_moderator | bool | Is user a moderator? (both platforms) |
721
  | reply_to | string | Username being replied to (always empty for Twitch) |
722
 
723
  ## Usage
724
 
725
  Select a config from the dataset viewer dropdown:
726
  - **`twitch-{streamer}`** - Individual Twitch streamer configs (e.g., `twitch-arkanightlive`, `twitch-lucakingm`)
727
+ - **`kick`** - All Kick VODs (9.5MB, 41 files)
728
 
729
+ **Note:** All configs use 8-field schema for compatibility. Kick files default `is_subscriber`/`is_moderator` to false.