goatfahad commited on
Commit
f409887
·
verified ·
1 Parent(s): 2b627c1

Upload dbt/models/staging/stg_topics.sql with huggingface_hub

Browse files
Files changed (1) hide show
  1. dbt/models/staging/stg_topics.sql +10 -0
dbt/models/staging/stg_topics.sql ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ -- Staging: topic modeling results
2
+ -- Sources: {{ ref('topics_raw') }}
3
+
4
+ SELECT
5
+ Topic,
6
+ Name,
7
+ Count,
8
+ Representation,
9
+ Rep
10
+ FROM {{ ref('topics_raw') }}