ai:llm:language
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
ai:llm:language [2024/11/29 12:25] – peter | ai:llm:language [2024/11/30 10:35] (current) – peter | ||
---|---|---|---|
Line 17: | Line 17: | ||
* Verb | * Verb | ||
+ | * Nouns | ||
+ | * Pronouns | ||
+ | * Verbs | ||
+ | * Adjectives | ||
+ | * Adverbs | ||
+ | * Prepositions | ||
+ | * Conjunctions | ||
+ | * Interjections | ||
---- | ---- | ||
Line 78: | Line 86: | ||
* Adverbs often end in **-ly**, but some (such as fast) look exactly the same as their adjective counterparts. | * Adverbs often end in **-ly**, but some (such as fast) look exactly the same as their adjective counterparts. | ||
+ | ---- | ||
+ | |||
+ | <code sql> | ||
+ | SELECT RANK() OVER(ORDER BY count DESC) rank, count, comment, avg_score, count_subs, count_authors, | ||
+ | FROM ( | ||
+ | SELECT comment, COUNT(*) count, AVG(avg_score) avg_score, COUNT(UNIQUE(subs)) count_subs, COUNT(UNIQUE(author)) count_authors, | ||
+ | FROM ( | ||
+ | SELECT body comment, author, AVG(score) avg_score, UNIQUE(subreddit) subs, FIRST(' | ||
+ | FROM [fh-bigquery: | ||
+ | WHERE author NOT IN (SELECT author FROM [fh-bigquery: | ||
+ | AND subreddit IN (SELECT subreddit FROM [fh-bigquery: | ||
+ | GROUP EACH BY 1, 2 | ||
+ | ) | ||
+ | GROUP EACH BY 1 | ||
+ | ORDER BY 2 DESC | ||
+ | LIMIT 300 | ||
+ | ) | ||
+ | </ | ||
+ | |||
+ | ---- |
ai/llm/language.1732883112.txt.gz · Last modified: 2024/11/29 12:25 by peter