Spaces:
Sleeping
Sleeping
Upload dbt/models/staging/stg_topics.sql with huggingface_hub
Browse files
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') }}
|