Update README.md
Browse files
README.md
CHANGED
|
@@ -14,14 +14,14 @@ tags:
|
|
| 14 |
- innerinetwork
|
| 15 |
pretty_name: 'Hashtag Consciousness '
|
| 16 |
size_categories:
|
| 17 |
-
-
|
| 18 |
---
|
| 19 |
-
# InnerI/consciousness-hashtag
|
| 20 |
-
Dataset Card for consciousness-hashtag
|
| 21 |
|
| 22 |
## Dataset Summary
|
| 23 |
-
The consciousness-hashtag
|
| 24 |
-
Ideal for NLP researchers, philosophers, cognitive scientists, and AI ethicists, this dataset powers tasks like sentiment analysis on existential themes, topic modeling of spiritual trends, and training models to understand consciousness discourse. Whether you're mapping societal shifts in awareness or fine-tuning LLMs for introspective text generation, #consciousness-hashtag
|
| 25 |
|
| 26 |
## Supported Tasks
|
| 27 |
|
|
@@ -73,7 +73,7 @@ To split in code:
|
|
| 73 |
from datasets import load_dataset
|
| 74 |
import random
|
| 75 |
|
| 76 |
-
dataset = load_dataset("InnerI/consciousness-hashtag
|
| 77 |
# Random split example
|
| 78 |
dataset = dataset["train"].train_test_split(test_size=0.2, seed=42)
|
| 79 |
```
|
|
@@ -86,7 +86,7 @@ Curated to mirror the evolving public fascination with consciousness—fueled by
|
|
| 86 |
- Platform: X (formerly Twitter).
|
| 87 |
- Collection Method: Scraped via X API using keyword/hashtag filters ("consciousness" OR "#consciousness"), deduplicated, and limited to English-language tweets. No manual curation; automated filtering for relevance.
|
| 88 |
- Time Period: Spans up to October 2025, with timestamps in datetime for precise tracking.
|
| 89 |
-
- Size:
|
| 90 |
- Preprocessing: Basic cleaning (e.g., URL normalization, hashtag extraction); no advanced annotation.
|
| 91 |
|
| 92 |
## Annotations
|
|
@@ -106,7 +106,7 @@ This dataset democratizes access to consciousness discourse, supporting research
|
|
| 106 |
|
| 107 |
- Null Fields: ~20% of metadata (e.g., user_id, language) may be null due to API restrictions or privacy deletions—handle with imputation or filtering.
|
| 108 |
- Noise: Includes tangential tweets (e.g., "consciousness in marketing"); apply relevance scoring for precision.
|
| 109 |
-
- Size Constraints:
|
| 110 |
- Privacy/Ethics: Usernames/IDs are anonymized where possible; avoid re-identification in publications.
|
| 111 |
|
| 112 |
Additional Information
|
|
@@ -121,10 +121,10 @@ Please cite this dataset as:
|
|
| 121 |
```
|
| 122 |
@dataset{InnerI_2025,
|
| 123 |
author = {InnerI and macrocosmos.ai},
|
| 124 |
-
title = {consciousness-hashtag
|
| 125 |
year = {2025},
|
| 126 |
publisher = {Hugging Face},
|
| 127 |
-
url = {https://huggingface.co/datasets/InnerI/consciousness-hashtag
|
| 128 |
}
|
| 129 |
```
|
| 130 |
## Contributions
|
|
@@ -137,7 +137,7 @@ from datasets import load_dataset
|
|
| 137 |
import pandas as pd
|
| 138 |
|
| 139 |
# Load the dataset
|
| 140 |
-
dataset = load_dataset("InnerI/consciousness-hashtag
|
| 141 |
|
| 142 |
# Quick peek
|
| 143 |
print(dataset["train"][0]) # First tweet
|
|
@@ -151,4 +151,4 @@ print(df["datetime"].describe()) # Temporal overview
|
|
| 151 |
recent = df[df["datetime"] > "2025-01-01"]
|
| 152 |
print(recent["text"].str.contains("#consciousness").sum()) # Count with hashtag
|
| 153 |
```
|
| 154 |
-
Dive deeper: What thread of consciousness calls to you? Share your analyses with #consciousness-hashtag
|
|
|
|
| 14 |
- innerinetwork
|
| 15 |
pretty_name: 'Hashtag Consciousness '
|
| 16 |
size_categories:
|
| 17 |
+
- n<1K
|
| 18 |
---
|
| 19 |
+
# InnerI/consciousness-hashtag
|
| 20 |
+
Dataset Card for consciousness-hashtag
|
| 21 |
|
| 22 |
## Dataset Summary
|
| 23 |
+
The consciousness-hashtag dataset, curated by InnerI (in collaboration with macrocosmos.ai), is a dynamic collection of 988 English-language tweets sourced from X (formerly Twitter) that contain the word "consciousness" or the hashtag #consciousness. This dataset encapsulates a global dialogue on awareness, weaving together philosophical inquiries, scientific explorations, spiritual awakenings, and speculative discussions on topics like AI sentience, panpsychism, and the nature of the self. From casual reflections ("That moment of pure consciousness at sunrise #consciousness") to deep dives ("Microtubules as the seat of consciousness? Let's debate. #neuroscience"), these tweets form a living archive of human curiosity about what it means to be.
|
| 24 |
+
Ideal for NLP researchers, philosophers, cognitive scientists, and AI ethicists, this dataset powers tasks like sentiment analysis on existential themes, topic modeling of spiritual trends, and training models to understand consciousness discourse. Whether you're mapping societal shifts in awareness or fine-tuning LLMs for introspective text generation, #consciousness-hashtag is your gateway to the collective mind.
|
| 25 |
|
| 26 |
## Supported Tasks
|
| 27 |
|
|
|
|
| 73 |
from datasets import load_dataset
|
| 74 |
import random
|
| 75 |
|
| 76 |
+
dataset = load_dataset("InnerI/consciousness-hashtag")
|
| 77 |
# Random split example
|
| 78 |
dataset = dataset["train"].train_test_split(test_size=0.2, seed=42)
|
| 79 |
```
|
|
|
|
| 86 |
- Platform: X (formerly Twitter).
|
| 87 |
- Collection Method: Scraped via X API using keyword/hashtag filters ("consciousness" OR "#consciousness"), deduplicated, and limited to English-language tweets. No manual curation; automated filtering for relevance.
|
| 88 |
- Time Period: Spans up to October 2025, with timestamps in datetime for precise tracking.
|
| 89 |
+
- Size: 988 tweets, post-preprocessing (e.g., removal of spam/low-engagement posts).
|
| 90 |
- Preprocessing: Basic cleaning (e.g., URL normalization, hashtag extraction); no advanced annotation.
|
| 91 |
|
| 92 |
## Annotations
|
|
|
|
| 106 |
|
| 107 |
- Null Fields: ~20% of metadata (e.g., user_id, language) may be null due to API restrictions or privacy deletions—handle with imputation or filtering.
|
| 108 |
- Noise: Includes tangential tweets (e.g., "consciousness in marketing"); apply relevance scoring for precision.
|
| 109 |
+
- Size Constraints: Substantial but not exhaustive; for larger scales, combine with similar datasets.
|
| 110 |
- Privacy/Ethics: Usernames/IDs are anonymized where possible; avoid re-identification in publications.
|
| 111 |
|
| 112 |
Additional Information
|
|
|
|
| 121 |
```
|
| 122 |
@dataset{InnerI_2025,
|
| 123 |
author = {InnerI and macrocosmos.ai},
|
| 124 |
+
title = {consciousness-hashtag: A 100K Tweet Dataset on Consciousness Discourse},
|
| 125 |
year = {2025},
|
| 126 |
publisher = {Hugging Face},
|
| 127 |
+
url = {https://huggingface.co/datasets/InnerI/consciousness-hashtag}
|
| 128 |
}
|
| 129 |
```
|
| 130 |
## Contributions
|
|
|
|
| 137 |
import pandas as pd
|
| 138 |
|
| 139 |
# Load the dataset
|
| 140 |
+
dataset = load_dataset("InnerI/consciousness-hashtag")
|
| 141 |
|
| 142 |
# Quick peek
|
| 143 |
print(dataset["train"][0]) # First tweet
|
|
|
|
| 151 |
recent = df[df["datetime"] > "2025-01-01"]
|
| 152 |
print(recent["text"].str.contains("#consciousness").sum()) # Count with hashtag
|
| 153 |
```
|
| 154 |
+
Dive deeper: What thread of consciousness calls to you? Share your analyses with #consciousness-hashtag 🚀
|