iRanadheer commited on
Commit
ef6032a
·
verified ·
1 Parent(s): 7d09c9a

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +53 -5
README.md CHANGED
@@ -1,10 +1,58 @@
1
  ---
2
- title: README
3
- emoji: 🐨
4
- colorFrom: green
5
- colorTo: yellow
6
  sdk: static
7
  pinned: false
8
  ---
9
 
10
- Edit this `README.md` markdown file to author your organization card.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ title: C3DS
3
+ emoji: 🌍
4
+ colorFrom: blue
5
+ colorTo: green
6
  sdk: static
7
  pinned: false
8
  ---
9
 
10
+ # Centre for Climate Communication & Data Science (C3DS)
11
+
12
+ Research group developing AI tools for understanding climate communication at scale.
13
+
14
+ ## CARDS: Climate Contrarianism Claim Detection
15
+
16
+ We build and release models that detect and classify **100+ types of climate contrarianism claims** in text, based on the peer-reviewed CARDS taxonomy:
17
+
18
+ > Coan et al. (2026). *Large language model reveals an increase in climate contrarian speech in the United States Congress.* Communications Sustainability. [doi:10.1038/s44458-025-00029-z](https://www.nature.com/articles/s44458-025-00029-z)
19
+
20
+ ## Models
21
+
22
+ ### Full weights (for vLLM / Transformers)
23
+
24
+ | Model | Parameters | Link |
25
+ |-------|-----------|------|
26
+ | CARDS-Qwen3.5-4B | 4B | [C3DS/CARDS-Qwen3.5-4B](https://huggingface.co/C3DS/CARDS-Qwen3.5-4B) |
27
+ | CARDS-Qwen3.5-9B | 9B | [C3DS/CARDS-Qwen3.5-9B](https://huggingface.co/C3DS/CARDS-Qwen3.5-9B) |
28
+ | CARDS-Qwen3.5-27B | 27B | [C3DS/CARDS-Qwen3.5-27B](https://huggingface.co/C3DS/CARDS-Qwen3.5-27B) |
29
+
30
+ ### GGUF (for Ollama / llama.cpp / LM Studio)
31
+
32
+ | Model | Q4_K_M | Q8_0 | Link |
33
+ |-------|--------|------|------|
34
+ | CARDS-Qwen3.5-4B | 2.7 GB | 4.2 GB | [C3DS/CARDS-Qwen3.5-4B-GGUF](https://huggingface.co/C3DS/CARDS-Qwen3.5-4B-GGUF) |
35
+ | CARDS-Qwen3.5-9B | 5.6 GB | 9.8 GB | [C3DS/CARDS-Qwen3.5-9B-GGUF](https://huggingface.co/C3DS/CARDS-Qwen3.5-9B-GGUF) |
36
+ | CARDS-Qwen3.5-27B | 16 GB | 28.6 GB | [C3DS/CARDS-Qwen3.5-27B-GGUF](https://huggingface.co/C3DS/CARDS-Qwen3.5-27B-GGUF) |
37
+
38
+ ### Ollama (one-line install)
39
+
40
+ ```bash
41
+ ollama run exec3ds/cards-qwen3.5 # 4B default
42
+ ollama run exec3ds/cards-qwen3.5:9b
43
+ ollama run exec3ds/cards-qwen3.5:27b
44
+ ```
45
+
46
+ ## Quick start
47
+
48
+ Just give it text — the system prompt and chain-of-thought reasoning are built in:
49
+
50
+ ```bash
51
+ ollama run exec3ds/cards-qwen3.5 "CO2 is just a trace gas. The sun drives climate."
52
+ ```
53
+
54
+ ## Links
55
+
56
+ - [Paper (Nature Communications Sustainability)](https://www.nature.com/articles/s44458-025-00029-z)
57
+ - [Ollama models](https://ollama.com/exec3ds/cards-qwen3.5)
58
+ - [GitHub](https://github.com/project-c3ds/cards-2pO-paper)