The dataset viewer is not available for this split.
Job manager crashed while running this job (missing heartbeats).
Error code: JobManagerCrashedError
Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
《明日方舟》2025「感谢庆典」活动宣传PV评论区数据 - 自述卡
任务:
- 内容爬取
- 匿名化处理
爬虫工具
blblcd: https://github.com/WShihan/blblcd
ClickHouse SQL
create table comments (rpid UInt64, parent UInt64, ctime UInt64, mid UInt64, level UInt8, sex String, like UInt64, content String) engine = MergeTree primary key rpid
insert into comments from infile 'test.csv' format CSVWithNames
alter table comments add column hashed_mid UInt64 after ctime
alter table comments update hashed_mid = xxh3(concat([toString(mid), '[SALT_REDACTED]'])) where true
alter table comments drop column mid
select * from comments into outfile 'comments-maxctime-minctime.parquet' format Parquet
待补充
- Downloads last month
- 7