``` class SDG(nn.Module): def __init__(self, channel=128,ratio=1,hidden_dim = 512,dataset='ShapeNet'): super(SDG, self).__init__() self.channel = channel self.hidden = hidden_dim self.ratio = ratio self.conv_1 = nn.Conv1d(256, channel, kernel_size=1) self.conv_11 = nn.Conv1d(512, 256, kernel_size=1) self.conv_x = nn.Conv1d(3, 64, kernel_size=1) self.sa1 = self_attention(channel*2,hidden_dim,dropout=0.0,nhead=8) self.cross1 = cross_attention(hidden_dim, hidden_dim, dropout=0.0,nhead=8) self.decoder1 = SDG_Decoder(hidden_dim,channel,ratio) if dataset == 'ShapeNet' else self_attention(hidden_dim, channel * ratio, dropout=0.0,nhead=8) self.decoder2 = SDG_Decoder(hidden_dim,channel,ratio) if dataset == 'ShapeNet' else self_attention(hidden_dim, channel * ratio, dropout=0.0,nhead=8) self.relu = nn.GELU() self.conv_out = nn.Conv1d(64, 3, kernel_size=1) self.conv_delta = nn.Conv1d(channel, channel*1, kernel_size=1) self.conv_ps = nn.Conv1d(channel*ratio*2, channel*ratio, kernel_size=1) self.conv_x1 = nn.Conv1d(64, channel, kernel_size=1) self.conv_out1 = nn.Conv1d(channel, 64, kernel_size=1) self.mlpp = MLP_CONV(in_channel=256,layer_dims=[256,hidden_dim]) self.sigma = 0.2 self.embedding = SinusoidalPositionalEmbedding(hidden_dim) self.cd_distance = chamfer_3DDist() def forward(self, local_feat, coarse,f_g,partial): batch_size, _, N = coarse.size() F = self.conv_x1(self.relu(self.conv_x(coarse))) f_g = self.conv_1(self.relu(self.conv_11(f_g))) F = torch.cat([F, f_g.repeat(1, 1, F.shape[-1])], dim=1) # Structure Analysis half_cd = self.cd_distance(coarse.transpose(1, 2).contiguous(), partial.transpose(1, 2).contiguous())[ 0] / self.sigma embd = self.embedding(half_cd).reshape(batch_size, self.hidden, -1).permute(2, 0, 1) F_Q = self.sa1(F,embd) F_Q_ = self.decoder1(F_Q) # Similarity Alignment local_feat = self.mlpp(local_feat) F_H = self.cross1(F_Q,local_feat) F_H_ = self.decoder2(F_H) F_L = self.conv_delta(self.conv_ps(torch.cat([F_Q_,F_H_],1)).reshape(batch_size,-1,N*self.ratio)) O_L = self.conv_out(self.relu(self.conv_out1(F_L))) fine = coarse.repeat(1,1,self.ratio) + O_L return fine```ratio的作用

时间: 2025-03-20 07:10:25 浏览: 43
<think>好的,我现在需要分析用户提供的PyTorch代码中`ratio`参数的作用。首先,我会仔细阅读代码,看看`ratio`在哪些地方被使用到,然后逐步理解每个使用场景中的作用。 首先,在类的初始化方法`__init__`中,`ratio`被作为参数传入,并保存为实例变量`self.ratio`。接下来,查看代码中哪些部分引用了`self.ratio`。 1. **解码器定义部分**: - `self.decoder1`和`self.decoder2`的定义中,`SDG_Decoder`的参数包含了`channel`和`ratio`。如果数据集不是'ShapeNet',则使用自注意力模块,其输入维度是`hidden_dim`,输出是`channel * ratio`。这可能意味着`ratio`用于调整输出通道数的缩放。 2. **前向传播部分**: - 在`forward`函数中,`F_L`的计算中使用了`N * self.ratio`,这里N是输入点云的数量。因此,`ratio`可能控制点云的上采样倍数,即每个输入点生成`ratio`个新点。 - 最后,`coarse.repeat(1,1,self.ratio)`将粗糙点云沿第三个维度复制`ratio`次,加上`O_L`得到精细点云。这进一步说明`ratio`用于确定上采样的倍数,例如,如果`ratio`为4,则每个点生成4个新点,总点数变为原来的4倍。 接下来,需要确认`SDG_Decoder`的具体实现,但根据变量命名和上下文,可能该解码器负责生成高分辨率点云。`ratio`在这里可能控制生成点数量相对于输入点数的比例。例如,输入N个点,输出N*ratio个点。 另外,注意到`F_L`在reshape时使用了`N*self.ratio`,这表明中间特征也被调整为适应目标点数的维度。而最终`fine`的输出是将原始`coarse`点云通过复制和调整得到更高分辨率的点云,其中`ratio`决定了复制次数,即上采样率。 可能的疑问点:`ratio`是否在多个地方被用来同步不同的维度变化?例如,解码器输出的通道是否与`ratio`有关,从而影响后续点数的生成。比如,如果`SDG_Decoder`的输出通道是`channel*ratio`,那么在reshape时可能需要将通道数与点数相乘,从而得到N*ratio个点。 总结起来,`ratio`的主要作用可能是控制点云上采样的倍数,决定从粗糙到精细过程中每个点生成的新点数,进而影响最终输出点云的分辨率。例如,当`ratio=4`时,每个粗糙点生成4个精细点,整体点数增加4倍。</think>在提供的PyTorch代码中,`ratio`参数主要用于控制点云上采样的倍数,具体作用可分为以下几步分析: --- ### 1. **定义阶段:解码器通道缩放** 在`__init__`方法中: ```python self.decoder1 = SDG_Decoder(hidden_dim, channel, ratio) # 输出通道可能与ratio相关 ``` - **通道扩展**:若`SDG_Decoder`内部将特征通道数缩放`ratio`倍(例如输出为`channel * ratio`),则为后续**点云数量扩展**提供基础。 --- ### 2. **前向传播:点云数量扩展** 在`forward`方法中: ```python F_L = ...reshape(batch_size, -1, N * self.ratio) # 特征维度扩展为N*ratio fine = coarse.repeat(1,1,self.ratio) + O_L # 粗糙点云复制ratio次 ``` - **特征维度调整**:通过`reshape`将特征维度从`N`扩展为`N * ratio`,实现特征到点数的映射。 - **上采样操作**:复制粗糙点云`ratio`次,配合残差修正项`O_L`,生成更高分辨率的精细点云。 --- ### 3. **核心作用总结** - **上采样倍数**:`ratio`直接决定了输出点云的数量是输入粗糙点云的多少倍。例如,若输入粗糙点云有$N$个点,`ratio=4`时,输出将有$4N$个点。 - **通道控制**:可能通过解码器调整中间特征通道数,确保维度与目标点数匹配。 --- ### 示例说明 假设输入`coarse`点云为$512$个点,`ratio=4`: 1. 特征`F_L`被重塑为$512 \times 4 = 2048$维。 2. `coarse`点云被复制4次,得到$2048$个初始点。 3. 修正项`O_L`细化这些点,最终输出$2048$个精细点。 --- ### 关键结论 `ratio`是**点云上采样的超参数**,控制从粗糙到精细过程中点云分辨率的提升倍数,直接影响生成模型的细节重建能力。
阅读全文

相关推荐

class SDG(nn.Module): def __init__(self, channel=128,ratio=1,hidden_dim = 512,dataset='ShapeNet'): super(SDG, self).__init__() self.channel = channel self.hidden = hidden_dim self.ratio = ratio self.conv_1 = nn.Conv1d(256, channel, kernel_size=1) self.conv_11 = nn.Conv1d(512, 256, kernel_size=1) self.conv_x = nn.Conv1d(3, 64, kernel_size=1) self.sa1 = self_attention(channel*2,hidden_dim,dropout=0.0,nhead=8) self.cross1 = cross_attention(hidden_dim, hidden_dim, dropout=0.0,nhead=8) self.decoder1 = SDG_Decoder(hidden_dim,channel,ratio) if dataset == 'ShapeNet' else self_attention(hidden_dim, channel * ratio, dropout=0.0,nhead=8) self.decoder2 = SDG_Decoder(hidden_dim,channel,ratio) if dataset == 'ShapeNet' else self_attention(hidden_dim, channel * ratio, dropout=0.0,nhead=8) self.relu = nn.GELU() self.conv_out = nn.Conv1d(64, 3, kernel_size=1) self.conv_delta = nn.Conv1d(channel, channel*1, kernel_size=1) self.conv_ps = nn.Conv1d(channel*ratio*2, channel*ratio, kernel_size=1) self.conv_x1 = nn.Conv1d(64, channel, kernel_size=1) self.conv_out1 = nn.Conv1d(channel, 64, kernel_size=1) self.mlpp = MLP_CONV(in_channel=256,layer_dims=[256,hidden_dim]) self.sigma = 0.2 self.embedding = SinusoidalPositionalEmbedding(hidden_dim) self.cd_distance = chamfer_3DDist() def forward(self, local_feat, coarse,f_g,partial): batch_size, _, N = coarse.size() F = self.conv_x1(self.relu(self.conv_x(coarse))) f_g = self.conv_1(self.relu(self.conv_11(f_g))) F = torch.cat([F, f_g.repeat(1, 1, F.shape[-1])], dim=1) # Structure Analysis half_cd = self.cd_distance(coarse.transpose(1, 2).contiguous(), partial.transpose(1, 2).contiguous())[ 0] / self.sigma embd = self.embedding(half_cd).reshape(batch_size, self.hidden, -1).permute(2, 0, 1) F_Q = self.sa1(F,embd) F_Q_ = self.decoder1(F_Q) # Similarity Alignment local_feat = self.mlpp(local_feat) F_H = self.cross1(F_Q,local_feat) F_H_ = self.decoder2(F_H) F_L = self.conv_delta(self.conv_ps(torch.cat([F_Q_,F_H_],1)).reshape(batch_size,-1,N*self.ratio)) O_L = self.conv_out(self.relu(self.conv_out1(F_L))) fine = coarse.repeat(1,1,self.ratio) + O_L return fineclass SDG_Decoder(nn.Module): def __init__(self, hidden_dim,channel,ratio): super().__init__() self.sa1 = self_attention(hidden_dim, hidden_dim, dropout=0.0, nhead=8) self.sa2 = self_attention(hidden_dim, channel * ratio, dropout=0.0, nhead=8) def forward(self, input): f = self.sa1(input) f = self.sa2(f) return f 这段代码是sdgdocoder的实现

#!/usr/bin/env python3.6.5 # -*- coding: utf-8 -*- import visa import time import binascii #USB resource of Device device_resource = 'USB0::0xF4EC::0x1102::SDG7ABAQ5R0010::INSTR' SDG 系列编程手册 165 #Little endian, 16-bit2's complement wave_points = [0x0080, 0x0070, 0x0060, 0x0040, 0x0050, 0x0060, 0x0070, 0xff7f,0x0050] def create_wave_file(): """create a file""" f = open("wave1.bin", "wb") for a in wave_points: b = hex(a) b = b[2:] len_b = len(b) if (0 == len_b): b = '0000' elif (1 == len_b): b = '000' + b elif (2 == len_b): b = '00' + b elif (3 == len_b): b = '0' + b c = binascii.a2b_hex(b) #Hexadecimal integer to ASCii encoded string f.write(c) f.close() def send_wawe_data(dev): """send wave1.bin to the device""" f = open("wave1.bin", "rb") #wave1.bin is the waveform to be sent data = f.read() print ('write bytes:%s'%len(data)) dev.write("C1:WVDT WVNM,wave1,FREQ,2000.0,AMPL,4.0,OFST,0.0,PHASE,0.0,WAVEDATA,%s" % (data)) #"X" series (SDG1000X/SDG2000X/SDG6000X/X-E) dev.write("C1:ARWV NAME,wave1") f.close() def get_wave_data(dev): """get wave from the devide""" f = open("wave2.bin", "wb") #save the waveform as wave2.bin dev.write("WVDT? user,wave1") #"X" series (SDG1000X/SDG2000X/SDG6000X/X-E) SDG 系列编程手册 166 time.sleep(1) data = dev.read() data_pos = data.find("WAVEDATA,") + len("WAVEDATA,") print (data[0:data_pos]) wave_data = data[data_pos:] print ('read bytes:%s'%len(wave_data)) f.write(wave_data) f.close() if __name__ == '__main__': """""" rm=visa.ResourceManager() device =rm.open_resource(device_resource, timeout=50000, chunk_size = 24*1024*1024) create_wave_file() send_wawe_data(device) #get_wave_data(device)解释代码

写一个php构造POST请求https://edith.xiaohongshu.com/api/sns/web/v1/search/notes Host: edith.xiaohongshu.com X-Mns: unload Accept: application/json, text/plain, */* Origin: https://www.xiaohongshu.com User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 Cookie: 实际提取的 Content-Type: application/json;charset=utf-8 请求体: {"search_id":"2uldcc7ue25ts00","sort":"general","ext_flags":[],"note_type":0,"page_size":20,"keyword":"豆包","page":1,"geo":"","image_formats":["jpg"]} 用户需要get传入keyword字段和page字段的实际内容,然后请求的Cookie在ck.txt文件里提取。 请求后需要在响应内容中data字段中的子对象items里提取每个数组的id字段和xsec_token字段进行返还。 https://edith.xiaohongshu.com/api/sns/web/v1/search/notes请求的返回样式: 帮我缩短json保留5个数据就行了 {"has_more":true,"items":[{"id":"67fe664b000000001d000c0b","model_type":"note","note_card":{"image_list":[{"width":768,"height":1024,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/27be75d13dab07d41c03680201178755\/1040g2sg31ga47dmi2c705nvr2nqg91sk2r124co!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/1cb1e1b7caa49749643e4e897ed0ebdc\/1040g2sg31ga47dmi2c705nvr2nqg91sk2r124co!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]}],"corner_tag_info":[{"type":"publish_time","text":"04-15"}],"display_title":"大家说说,豆包的图标为啥是个卡通美女?","type":"normal","interact_info":{"comment_count":"1107","collected":false,"liked":false,"liked_count":"4678","shared_count":"358","collected_count":"595"},"cover":{"url_pre":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/1cb1e1b7caa49749643e4e897ed0ebdc\/1040g2sg31ga47dmi2c705nvr2nqg91sk2r124co!nc_n_nwebp_prv_1","height":1024,"width":768,"url_default":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/27be75d13dab07d41c03680201178755\/1040g2sg31ga47dmi2c705nvr2nqg91sk2r124co!nc_n_nwebp_mw_1"},"user":{"nick_name":"末楼楼","user_id":"5ffb15f50000000001008794","nickname":"末楼楼","xsec_token":"ABDHcPzwkh104l5Sv02RuvuVhozWWkiuKo-USS3fRTu8A=","avatar":"https:\/\/2.zoppoz.workers.dev:443\/https\/sns-avatar-qc.xhscdn.com\/avatar\/6363514a88b3145a9cb41f43.jpg?imageView2\/2\/w\/80\/format\/jpg"}},"xsec_token":"ABGlZOK6jlmslYCFOBXdTarixRrXZYEj6EsORo57MZYdE="},{"id":"6826bb1c0000000022004e0e","model_type":"note","note_card":{"image_list":[{"width":1180,"height":1742,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/efc4883ad98a20bb52c0606f7f8d515e\/notes_pre_post\/1040g3k031hhgho8a3u005osis4a7qoujm7p19eg!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/dd5a3d02d9fe12cabaf18d9b6391f517\/notes_pre_post\/1040g3k031hhgho8a3u005osis4a7qoujm7p19eg!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]},{"width":1082,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/8374ce6cc716ff874bd95cf1adee9c99\/notes_pre_post\/1040g3k031hhgho8a3u0g5osis4a7qoujf5tbh1o!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/23717b9c844ad1f0cafd6aee5c9fd22e\/notes_pre_post\/1040g3k031hhgho8a3u0g5osis4a7qoujf5tbh1o!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}],"height":1920}],"corner_tag_info":[{"type":"publish_time","text":"1天前"}],"display_title":"第一个能想到用豆包跑cos照片的是天才","type":"normal","interact_info":{"comment_count":"200","collected":false,"liked":false,"liked_count":"2486","shared_count":"416","collected_count":"1366"},"cover":{"url_pre":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/dd5a3d02d9fe12cabaf18d9b6391f517\/notes_pre_post\/1040g3k031hhgho8a3u005osis4a7qoujm7p19eg!nc_n_nwebp_prv_1","height":1742,"width":1180,"url_default":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/efc4883ad98a20bb52c0606f7f8d515e\/notes_pre_post\/1040g3k031hhgho8a3u005osis4a7qoujm7p19eg!nc_n_nwebp_mw_1"},"user":{"nick_name":"小潮x","nickname":"小潮x","user_id":"6392e114000000001f0163d3","xsec_token":"ABfjtQfKgGLku6hKtpye_AkcLs_hVMTUEW8qLuN6ZZN64=","avatar":"https:\/\/2.zoppoz.workers.dev:443\/https\/sns-avatar-qc.xhscdn.com\/avatar\/64a3a4f506816b819d6c0967.jpg?imageView2\/2\/w\/80\/format\/jpg"}},"xsec_token":"ABz1mWb2e816DjwF5B8z-OQPw0riVLIRt8kLcRxNnenM8="},{"id":"682fcd9e00000000200294f0","model_type":"note","note_card":{"image_list":[{"width":1996,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/2e5941cc3c6b73c5b94cacacd50baadf\/1040g2sg31i812dqqn8k05ppauju73c8f6ndbnm0!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/bcf154926d25f198ade4a6e22e7b32f0\/1040g2sg31i812dqqn8k05ppauju73c8f6ndbnm0!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}],"height":2560}],"corner_tag_info":[{"type":"publish_time","text":"06-03"}],"display_title":"别问!问就是原相机直出生图!","interact_info":{"comment_count":"5","collected":false,"liked":false,"liked_count":"25","shared_count":"0","collected_count":"10"},"cover":{"url_pre":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/bcf154926d25f198ade4a6e22e7b32f0\/1040g2sg31i812dqqn8k05ppauju73c8f6ndbnm0!nc_n_nwebp_prv_1","height":2560,"width":1996,"url_default":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/2e5941cc3c6b73c5b94cacacd50baadf\/1040g2sg31i812dqqn8k05ppauju73c8f6ndbnm0!nc_n_nwebp_mw_1"},"type":"normal","user":{"nick_name":"静静","user_id":"672af4fc000000001c01b10f","nickname":"静静","xsec_token":"ABkzUEW6emU3X-SDd_kwsgrSlB6agNm72AD1OEZfZxCsA=","avatar":"https:\/\/2.zoppoz.workers.dev:443\/https\/sns-avatar-qc.xhscdn.com\/avatar\/1040g2jo31hi2l1tk3o6g5ppauju73c8fhadsu6o?imageView2\/2\/w\/80\/format\/jpg"}},"xsec_token":"ABx5qJgdBDkVvShnqVArlfq9YjRSj2AJxHVJnZlMD6pZk="},{"id":"6804df22000000001b03b178","model_type":"note","note_card":{"image_list":[{"width":1242,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/ea2c135e9a0a59089e3164f6d5058587\/notes_pre_post\/1040g3k831gge7t4ejo705p9nn971158ifmmu1k8!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/6aba80214529beea0f860442d8f50d7b\/notes_pre_post\/1040g3k831gge7t4ejo705p9nn971158ifmmu1k8!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}],"height":1656}],"corner_tag_info":[{"type":"publish_time","text":"04-20"}],"display_title":"天塌了,这也能封!","interact_info":{"comment_count":"16","collected_count":"12","liked":false,"liked_count":"43","shared_count":"3","collected":false},"cover":{"url_pre":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/6aba80214529beea0f860442d8f50d7b\/notes_pre_post\/1040g3k831gge7t4ejo705p9nn971158ifmmu1k8!nc_n_nwebp_prv_1","height":1656,"width":1242,"url_default":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/ea2c135e9a0a59089e3164f6d5058587\/notes_pre_post\/1040g3k831gge7t4ejo705p9nn971158ifmmu1k8!nc_n_nwebp_mw_1"},"type":"normal","user":{"nick_name":"山羊「省钱版」","user_id":"6537ba4e0000000004009512","nickname":"山羊「省钱版」","xsec_token":"ABu4t0M3N8cz1e-sKP7VFB3Nk32UCn2M-LTVuLA1yhvkw=","avatar":"https:\/\/2.zoppoz.workers.dev:443\/https\/sns-avatar-qc.xhscdn.com\/avatar\/1040g2jo31g5p2ge6hk005p9nn971158i732ab8g?imageView2\/2\/w\/80\/format\/jpg"}},"xsec_token":"ABxq_YSP10IiqbP3XB5c2mstWQtXw2LKyzxo1asJwDrO8="},{"id":"68047dcc000000001c00884a","model_type":"note","note_card":{"image_list":[{"width":1072,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/7e77abb89e0ae1811ad239d27bbfac6e\/1040g2sg31gg2j4i3jo005oc40bpk1t3k3vcmqro!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/d6a44a5ae40ccedbcbfc107d003012a5\/1040g2sg31gg2j4i3jo005oc40bpk1t3k3vcmqro!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}],"height":1429}],"corner_tag_info":[{"type":"publish_time","text":"04-20"}],"display_title":"谁的心头宝?","interact_info":{"comment_count":"16751","collected":false,"liked":false,"liked_count":"670837","shared_count":"29309","collected_count":"118837"},"cover":{"url_pre":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/d6a44a5ae40ccedbcbfc107d003012a5\/1040g2sg31gg2j4i3jo005oc40bpk1t3k3vcmqro!nc_n_nwebp_prv_1","height":1429,"width":1072,"url_default":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/7e77abb89e0ae1811ad239d27bbfac6e\/1040g2sg31gg2j4i3jo005oc40bpk1t3k3vcmqro!nc_n_nwebp_mw_1"},"type":"video","user":{"nick_name":"嗦芒果核","user_id":"618402f3000000001000f474","nickname":"嗦芒果核","xsec_token":"ABYxKLhhmR2AXQz4McPFtdCwvksVCE9LpxQwfkPK6Ld38=","avatar":"https:\/\/2.zoppoz.workers.dev:443\/https\/sns-avatar-qc.xhscdn.com\/avatar\/1040g2jo31eiftqqv0u005oc40bpk1t3kg1ifg20?imageView2\/2\/w\/80\/format\/jpg"}},"xsec_token":"ABxq_YSP10IiqbP3XB5c2msrMln1sO1GrgSYmAUdTBJUw="},{"rec_query":{"title":"相关搜索","source":1,"queries":[{"id":"豆包是什么app","name":"豆包是什么app","search_word":"豆包是什么app"},{"search_word":"豆包照片","id":"豆包照片","name":"豆包照片"},{"search_word":"豆包ai聊天","id":"豆包ai聊天","name":"豆包ai聊天"},{"id":"豆包生成图片","name":"豆包生成图片","search_word":"豆包生成图片"}],"word_request_id":"f27c4b7a-25ec-4e63-841f-999d4dcf3d32#1750061018755"},"id":"f27c4b7a-25ec-4e63-841f-999d4dcf3d32#1750061018755","model_type":"rec_query","xsec_token":"ABIctk-DDeWv7EzfmgNrQs71Z4r4M7KBRXdgZDfgY9qj6iV-wzRv8nfrF6TCcVmW52fLtvP3CwcKTeFAN2GnO3VyjInG8gWEE9HF9TSs_NsHI="},{"id":"680f38e400000000230135f9","model_type":"note","note_card":{"image_list":[{"width":1279,"height":1706,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/78cc97ad94da8712fd54b438af4b3b81\/notes_pre_post\/1040g3k031gqhrn3m42005p7imrsh4ufl9rjcvko!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/4d3f431d5d7e71e60027adac0db90b7f\/notes_pre_post\/1040g3k031gqhrn3m42005p7imrsh4ufl9rjcvko!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]},{"width":1279,"height":1706,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/19151effd97d66dd7fff011d84e00287\/notes_pre_post\/1040g3k031gqhrn3m420g5p7imrsh4uflhfs67mo!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/5547bb7206668185983c42b6bca2d170\/notes_pre_post\/1040g3k031gqhrn3m420g5p7imrsh4uflhfs67mo!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]}],"corner_tag_info":[{"type":"publish_time","text":"04-28"}],"display_title":"豆包到底会不会泄漏个人隐私","cover":{"url_pre":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/4d3f431d5d7e71e60027adac0db90b7f\/notes_pre_post\/1040g3k031gqhrn3m42005p7imrsh4ufl9rjcvko!nc_n_nwebp_prv_1","height":1706,"width":1279,"url_default":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/78cc97ad94da8712fd54b438af4b3b81\/notes_pre_post\/1040g3k031gqhrn3m42005p7imrsh4ufl9rjcvko!nc_n_nwebp_mw_1"},"type":"normal","interact_info":{"comment_count":"4","collected":false,"liked":false,"liked_count":"45","shared_count":"2","collected_count":"3"},"user":{"nick_name":"大吃一口","user_id":"64f2b6f900000000040279f5","nickname":"大吃一口","xsec_token":"AB-qErhc2MbUUiZXCzOsRdTjt1ZAM8teiCs3UQtxvYcqU=","avatar":"https:\/\/2.zoppoz.workers.dev:443\/https\/sns-avatar-qc.xhscdn.com\/avatar\/1040g2jo31e91pre312005p7imrsh4uflgn1eaa8?imageView2\/2\/w\/80\/format\/jpg"}},"xsec_token":"ABW__fJ9dWDaFErZ5pif5-8jdYo-Qwu5YY5IBMTTHs9n0="},{"id":"67e40566000000001203e6f1","model_type":"note","note_card":{"image_list":[{"width":988,"height":1227,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/51303237ddc115c77958bb417b5db9fb\/1040g00831fgbrotomedg5purodsinkr3hbesdhg!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/a9f931728d98b00ec5049832708af82b\/1040g00831fgbrotomedg5purodsinkr3hbesdhg!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]},{"width":1256,"height":1675,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/ddaaaff5457d11eaf2573d7ef9b1f2a9\/1040g00831fgbrotomed05purodsinkr3ic5arho!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/020387a8fb58a22a016ffe5121c9aa4a\/1040g00831fgbrotomed05purodsinkr3ic5arho!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]},{"width":1080,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/48bc08c1b57bb147b7ff4e89ec6f37bc\/1040g00831fgbrotomec05purodsinkr3hbb6uko!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/70ca6102ba5f34713a512e9e6be406e6\/1040g00831fgbrotomec05purodsinkr3hbb6uko!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}],"height":1440},{"width":895,"height":1194,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/a15891d38995e18256752a13ed700f2d\/1040g00831fgbrotomecg5purodsinkr3nueqdhg!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/6f208b81b5ff57a92e64132689f41494\/1040g00831fgbrotomecg5purodsinkr3nueqdhg!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]}],"corner_tag_info":[{"type":"publish_time","text":"05-05"}],"display_title":"我用豆包写作大杀四方!太方便了😭","interact_info":{"comment_count":"108","collected":false,"liked":false,"liked_count":"2537","shared_count":"208","collected_count":"3716"},"cover":{"url_pre":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/a9f931728d98b00ec5049832708af82b\/1040g00831fgbrotomedg5purodsinkr3hbesdhg!nc_n_nwebp_prv_1","width":988,"height":1227,"url_default":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/51303237ddc115c77958bb417b5db9fb\/1040g00831fgbrotomedg5purodsinkr3hbesdhg!nc_n_nwebp_mw_1"},"type":"normal","user":{"nick_name":"鲸鱼AI手记","user_id":"67dbc379000000000a03d363","nickname":"鲸鱼AI手记","xsec_token":"ABVFmDCyKSKFvjCYNkSDxb4R-x5xiHGBPyLkzlsTDJ9DM=","avatar":"https:\/\/2.zoppoz.workers.dev:443\/https\/sns-avatar-qc.xhscdn.com\/avatar\/1040g2jo31f9h1dffme605pa1nplghk36tcglo68?imageView2\/2\/w\/80\/format\/jpg"}},"xsec_token":"ABjJJuR7ZKpVvM4n0w6M1EdBRQu7DlvBd9TlsCvpW2bKg="},{"id":"67d13efc000000000b017171","model_type":"note","note_card":{"image_list":[{"width":1800,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/a576e7802898b95edf1ce6b2d42c21ce\/1040g00831eu14en5mi6g5o2g9f80bqki2ponfvo!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/4a00574b2c5624d100265ad14b46f27d\/1040g00831eu14en5mi6g5o2g9f80bqki2ponfvo!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}],"height":2400},{"width":1050,"height":1399,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/8c357eaecf55f86023f2398310d1200c\/1040g00831eu14en5mi4g5o2g9f80bqki4pkh330!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/8aafd73cff2cff6f9446099bbbbecbbd\/1040g00831eu14en5mi4g5o2g9f80bqki4pkh330!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]},{"width":1800,"height":2400,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/282488f9a16c8d8f4fadeeb55fd8d31a\/1040g00831eu14en5mi505o2g9f80bqki4k867r0!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/8c880ebff9a270abbbe448e0b1207445\/1040g00831eu14en5mi505o2g9f80bqki4k867r0!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]},{"width":1800,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/cc36a9e706893b8bffcf0d9d018b4140\/1040g00831eu14en5mi305o2g9f80bqkig1a5fkg!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/c560a084fd89bab05ab5a9f145b28466\/1040g00831eu14en5mi305o2g9f80bqkig1a5fkg!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}],"height":2400},{"width":1800,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/d1fe5dd133fb1637d837076dfe5a74bc\/1040g00831eu14en5mi5g5o2g9f80bqkincofoo0!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/16eb01ac1b3b0d634a65b59e910525a5\/1040g00831eu14en5mi5g5o2g9f80bqkincofoo0!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}],"height":2400},{"width":1009,"height":1345,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/597f76521f23d3420293e3bcda247978\/1040g00831eu14en5mi605o2g9f80bqki529023g!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/dd7e9263bb7bbdd1d1d130e4db4f6e48\/1040g00831eu14en5mi605o2g9f80bqki529023g!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]}],"corner_tag_info":[{"type":"publish_time","text":"03-13"}],"display_title":"『豆包』以闪亮之名\/双服捏脸分享","type":"normal","interact_info":{"comment_count":"410","collected":false,"liked":false,"liked_count":"486","shared_count":"14","collected_count":"365"},"cover":{"url_pre":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/4a00574b2c5624d100265ad14b46f27d\/1040g00831eu14en5mi6g5o2g9f80bqki2ponfvo!nc_n_nwebp_prv_1","height":2400,"width":1800,"url_default":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/a576e7802898b95edf1ce6b2d42c21ce\/1040g00831eu14en5mi6g5o2g9f80bqki2ponfvo!nc_n_nwebp_mw_1"},"user":{"nick_name":"无思儿","user_id":"60504bd0000000000101ea92","nickname":"无思儿","xsec_token":"ABz8LDRhjqYHpychL-rGH1lRpM5-GK0lzDkUZwH4IB-Ec=","avatar":"https:\/\/2.zoppoz.workers.dev:443\/https\/sns-avatar-qc.xhscdn.com\/avatar\/1040g2jo31e24h7us0m505o2g9f80bqkimqh4d18?imageView2\/2\/w\/80\/format\/jpg"}},"xsec_token":"ABEIqqxwbt6185Qz3D1gY0YhKqQc8wyPjAX0tlB02QXms="},{"id":"67e68611000000000900c82d","model_type":"note","note_card":{"image_list":[{"width":1242,"height":1656,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/2ad4b449ca2f18147877a979a782198d\/1040g2sg31fiq3bjd066g5purodsinkr39ibjpco!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/553f2b8d9c6a43057bfbafac7d5a964d\/1040g2sg31fiq3bjd066g5purodsinkr39ibjpco!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]},{"width":1256,"height":1675,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/d340f0f10815139167e2d09ad3588c80\/1040g2sg31fiq3bjd065g5purodsinkr326reba8!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/f092bb191ba1c0ca29e9b21b238c2b66\/1040g2sg31fiq3bjd065g5purodsinkr326reba8!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]},{"width":700,"height":933,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/e79495db79ac37803a6aba7c9603b02d\/1040g2sg31fiq3bjd064g5purodsinkr3da08o4g!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/19a0e2ef5fc0439fa52afb6a1a43a5cf\/1040g2sg31fiq3bjd064g5purodsinkr3da08o4g!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]},{"width":700,"height":933,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/db3b865d099b1f9d29224d012c150586\/1040g2sg31fiq3bjd06505purodsinkr34u7pl08!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/0e925c6eebe4747cb33e84ca697041e3\/1040g2sg31fiq3bjd06505purodsinkr34u7pl08!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]},{"width":698,"height":931,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/8e33faf112d6055750c0f3899af79ad9\/1040g2sg31fiq3bjd06605purodsinkr329833r0!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/5187cf2651b5aa87ef99ce824485987e\/1040g2sg31fiq3bjd06605purodsinkr329833r0!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]}],"corner_tag_info":[{"type":"publish_time","text":"04-15"}],"display_title":"豆包不好用?那是你不会用!","type":"normal","interact_info":{"comment_count":"4","collected":false,"liked":false,"liked_count":"29","shared_count":"2","collected_count":"24"},"cover":{"url_pre":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/553f2b8d9c6a43057bfbafac7d5a964d\/1040g2sg31fiq3bjd066g5purodsinkr39ibjpco!nc_n_nwebp_prv_1","height":1656,"width":1242,"url_default":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/2ad4b449ca2f18147877a979a782198d\/1040g2sg31fiq3bjd066g5purodsinkr39ibjpco!nc_n_nwebp_mw_1"},"user":{"nick_name":"鲸鱼AI手记","user_id":"67dbc379000000000a03d363","nickname":"鲸鱼AI手记","xsec_token":"ABVFmDCyKSKFvjCYNkSDxb4R-x5xiHGBPyLkzlsTDJ9DM=","avatar":"https:\/\/2.zoppoz.workers.dev:443\/https\/sns-avatar-qc.xhscdn.com\/avatar\/1040g2jo31f9h1dffme605pa1nplghk36tcglo68?imageView2\/2\/w\/80\/format\/jpg"}},"xsec_token":"ABehoLayMAy1hvTzmHAgE_GlXGmE_KRlTKEsIp1OB0Cns="},{"id":"668626fe000000000a0064df","model_type":"note","note_card":{"image_list":[{"width":2268,"height":4032,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/f8688f3c455d19ca8f614354a89fd1a2\/1040g2sg314qmabq5gu905op1t2noskb7h21plbo!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/01e1cb4fe8e8d676a5dcabed9bc563dc\/1040g2sg314qmabq5gu905op1t2noskb7h21plbo!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]},{"width":2268,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/1b1b25125aaac89030cd63464f786a58\/1040g2sg314qmabq5gu9g5op1t2noskb7r1cni38!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/f1ab30c5b06bb9a46cebd0f328b3c4e4\/1040g2sg314qmabq5gu9g5op1t2noskb7r1cni38!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}],"height":4032},{"width":4032,"height":3024,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/70d36433554721268da4c7da4bf57a1e\/1040g2sg314qmabq5gua05op1t2noskb7q6l7npg!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/0b877a9f41fbfd741e5fc75d630d1036\/1040g2sg314qmabq5gua05op1t2noskb7q6l7npg!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]},{"width":3024,"height":4032,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/2acb51626fee911097d3120cfccad8eb\/1040g2sg314qmabq5guag5op1t2noskb7befg3fg!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/30ab85b8bb47f16d22799d8306560013\/1040g2sg314qmabq5guag5op1t2noskb7befg3fg!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]},{"width":3024,"height":4032,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/e8b797d28bff0ecf1c646b5812d12e85\/1040g2sg314qmabq5gub05op1t2noskb7lc392u0!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/886456a8c5da18ac3589ae29737e6cb1\/1040g2sg314qmabq5gub05op1t2noskb7lc392u0!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]}],"corner_tag_info":[{"type":"publish_time","text":"2024-07-04"}],"display_title":"这豆沙包是来报恩的么","interact_info":{"comment_count":"298","collected":false,"liked":false,"liked_count":"1270","shared_count":"237","collected_count":"541"},"cover":{"url_pre":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/01e1cb4fe8e8d676a5dcabed9bc563dc\/1040g2sg314qmabq5gu905op1t2noskb7h21plbo!nc_n_nwebp_prv_1","height":4032,"width":2268,"url_default":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/f8688f3c455d19ca8f614354a89fd1a2\/1040g2sg314qmabq5gu905op1t2noskb7h21plbo!nc_n_nwebp_mw_1"},"type":"normal","user":{"nick_name":"地蛋爱吃糯叽叽","user_id":"6321e8af0000000023025167","nickname":"地蛋爱吃糯叽叽","xsec_token":"AB8Sspm7Sq_yhBchYujQCajzu0_GhkY2vZLN4bkS11lFM=","avatar":"https:\/\/2.zoppoz.workers.dev:443\/https\/sns-avatar-qc.xhscdn.com\/avatar\/1040g2jo313u8808o1o005op1t2noskb7ls1e8mo?imageView2\/2\/w\/80\/format\/jpg"}},"xsec_token":"ABrn1SIVfLP9d0qPitIHbCeU1AgXFZnG0IhXb44Wwuhn4="},{"id":"67dbc9610000000009015639","model_type":"note","note_card":{"image_list":[{"width":1242,"height":1656,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/cb1b011289bd91b6c5b5de38ad7d678b\/notes_pre_post\/1040g3k831f8ahknq6o705pej17u13n4aa9quq38!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/b3ce5ac9c081e28218cb38fd9e99ec30\/notes_pre_post\/1040g3k831f8ahknq6o705pej17u13n4aa9quq38!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]},{"width":3024,"height":4032,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/ae45cbde4a3e60e093bf95ca03c8567d\/notes_pre_post\/1040g3k831f8ahknq6o7g5pej17u13n4ak1hksm8!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/6fa288f1c0c8e57b06231c3cd23097ac\/notes_pre_post\/1040g3k831f8ahknq6o7g5pej17u13n4ak1hksm8!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]},{"width":1588,"height":2117,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/33bd95573303865bc5d33ada5af1f2aa\/notes_pre_post\/1040g3k831f8ahknq6o805pej17u13n4aa5d0ff0!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/dfcb4630ad11375389540fab07f31ee3\/notes_pre_post\/1040g3k831f8ahknq6o805pej17u13n4aa5d0ff0!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]},{"width":3024,"height":4032,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/6801f9f6389fdaafde488a20b96daeee\/notes_pre_post\/1040g3k831f8ahknq6o8g5pej17u13n4aodilgv0!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/51e8f2a6fde2e6819d0f08161b5af820\/notes_pre_post\/1040g3k831f8ahknq6o8g5pej17u13n4aodilgv0!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]},{"width":3024,"height":4032,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/437fe95a92df5b8b67ab69158462c070\/notes_pre_post\/1040g3k831f8ahknq6o905pej17u13n4amjn1qt0!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/03e3ae503e40875da8fbe4c31887c49f\/notes_pre_post\/1040g3k831f8ahknq6o905pej17u13n4amjn1qt0!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]},{"width":3024,"height":4032,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/99acc4974571e6817e54ee5e4646488b\/notes_pre_post\/1040g3k831f8ahknq6o9g5pej17u13n4acjrnc3o!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/9adf440ca2354854465ab81a07f16c41\/notes_pre_post\/1040g3k831f8ahknq6o9g5pej17u13n4acjrnc3o!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]},{"width":3024,"height":4032,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/612436567a289600c8ecb35783e258f4\/notes_pre_post\/1040g3k831f8ahknq6oa05pej17u13n4amg83oro!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/cc0e743a6ad11363c27e1a7bcd67b1d1\/notes_pre_post\/1040g3k831f8ahknq6oa05pej17u13n4amg83oro!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]},{"width":3024,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/f8bc85394556a6e391cc1192ee227c8d\/notes_pre_post\/1040g3k831f8ahknq6oag5pej17u13n4ab8qsgeo!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/02c686c57f9de662cb0261ac6c09d482\/notes_pre_post\/1040g3k831f8ahknq6oag5pej17u13n4ab8qsgeo!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}],"height":4032},{"width":3024,"height":4032,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/2b3f0e64e7295cfb7d744582857678bf\/notes_pre_post\/1040g3k831f8ahknq6ob05pej17u13n4ak2i9lag!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/5c71b768d1b64d1299811e347c3385bd\/notes_pre_post\/1040g3k831f8ahknq6ob05pej17u13n4ak2i9lag!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]},{"width":3024,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/cbb9d9fe279471e8b9686efbc21691df\/notes_pre_post\/1040g3k831f8ahknq6obg5pej17u13n4akurib8g!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/927f621992e9e74f3717e1ff7d49bb20\/notes_pre_post\/1040g3k831f8ahknq6obg5pej17u13n4akurib8g!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}],"height":4032},{"width":3024,"height":4032,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/4ca000f5a0049b7364e935b88f17495f\/notes_pre_post\/1040g3k831f8ahknq6oc05pej17u13n4a7bgjo9o!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/e953123c878579af60fd4070cf869a21\/notes_pre_post\/1040g3k831f8ahknq6oc05pej17u13n4a7bgjo9o!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]},{"width":3024,"height":4032,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/03df938a430caff434d9af2bd2f47268\/notes_pre_post\/1040g3k831f8ahknq6ocg5pej17u13n4a6dpmljo!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/462fc22e229d68bda15973dfa0ca5bf8\/notes_pre_post\/1040g3k831f8ahknq6ocg5pej17u13n4a6dpmljo!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]},{"width":3024,"height":4032,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/fcd7401acd4966e2908fd161d889f466\/notes_pre_post\/1040g3k831f8ahknq6od05pej17u13n4aai10lg8!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/6dd01e648c83e057a0ec701f8a810327\/notes_pre_post\/1040g3k831f8ahknq6od05pej17u13n4aai10lg8!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]},{"width":1920,"height":2560,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/89512af759a7603b051c1fdc522e6ac6\/notes_pre_post\/1040g3k831f8ahknq6odg5pej17u13n4ah74v1j8!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/c6a89c2f4b16b3e1189d3a84c0a8d22f\/notes_pre_post\/1040g3k831f8ahknq6odg5pej17u13n4ah74v1j8!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]},{"width":1920,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/1ffb8989b52522963dfcf8b438d7b573\/notes_pre_post\/1040g3k831f8ahmvhm6705pej17u13n4auk8076o!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/2ae594c5a8c8c91a91ea93aceedf8f4c\/notes_pre_post\/1040g3k831f8ahmvhm6705pej17u13n4auk8076o!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}],"height":2560},{"width":1920,"height":2560,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/160938c64808be15f5e35cd46cfda024\/notes_pre_post\/1040g3k831f8ahmvhm67g5pej17u13n4acc8g7bo!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/042b406e4232c687f1d693f83e01dcfb\/notes_pre_post\/1040g3k831f8ahmvhm67g5pej17u13n4acc8g7bo!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]},{"width":1920,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/428ca1f85b004b40382008bbddba6d17\/notes_pre_post\/1040g3k831f8ahmvhm6805pej17u13n4aja4fkmo!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/e3125a8cefc77b31c56306b5cd95e67b\/notes_pre_post\/1040g3k831f8ahmvhm6805pej17u13n4aja4fkmo!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}],"height":2560},{"width":3024,"height":4032,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/778e19fd159cae17e688d5f264107352\/notes_pre_post\/1040g3k831f8ahmvhm68g5pej17u13n4aqddl9ho!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/3644a26a26aeea1a35d4dbb1079d9fe3\/notes_pre_post\/1040g3k831f8ahmvhm68g5pej17u13n4aqddl9ho!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]}],"corner_tag_info":[{"type":"publish_time","text":"03-20"}],"display_title":"有和我一样觉得豆包很好用的宝子吗!赠书","interact_info":{"comment_count":"21","collected":false,"liked":false,"liked_count":"71","shared_count":"10","collected_count":"54"},"cover":{"url_pre":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/b3ce5ac9c081e28218cb38fd9e99ec30\/notes_pre_post\/1040g3k831f8ahknq6o705pej17u13n4aa9quq38!nc_n_nwebp_prv_1","height":1656,"width":1242,"url_default":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/cb1b011289bd91b6c5b5de38ad7d678b\/notes_pre_post\/1040g3k831f8ahknq6o705pej17u13n4aa9quq38!nc_n_nwebp_mw_1"},"type":"normal","user":{"nick_name":"博库","user_id":"65d309fc000000000401dc8a","nickname":"博库","xsec_token":"ABSPQl2kwLNH87W0ULg7QG4JU7mzjRTT_F_q9SkES4m5o=","avatar":"https:\/\/2.zoppoz.workers.dev:443\/https\/sns-avatar-qc.xhscdn.com\/avatar\/1040g2jo319uf36ab7a6g5pej17u13n4aph69k6g?imageView2\/2\/w\/80\/format\/jpg"}},"xsec_token":"ABVFmDCyKSKFvjCYNkSDxb4etHY5wu6pXQRqFd6IQpPqs="},{"id":"680ccc2e000000001c008e88","model_type":"note","note_card":{"image_list":[{"width":1278,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/22abf873ed74724066720b94c0e8ef8c\/1040g00831go62mvo3q6g5p809dq1m9hlev527f8!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/36610b65ddd1783d1e351566a2eba9eb\/1040g00831go62mvo3q6g5p809dq1m9hlev527f8!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}],"height":1704},{"width":1080,"height":1440,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/c2b97c53ff49e2fe230f6e983aa505d6\/1040g00831go62mvo3q605p809dq1m9hlgb3r22o!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/f1120570b6c5b1f6ac2001d07495face\/1040g00831go62mvo3q605p809dq1m9hlgb3r22o!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]},{"width":1080,"height":1440,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/a4292d524c7b0485572c1abc61d861c8\/1040g00831go62mvo3q2g5p809dq1m9hlbmdok7g!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/3d57af683c876b5a0b62647059072265\/1040g00831go62mvo3q2g5p809dq1m9hlbmdok7g!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]},{"width":1080,"height":1440,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/ce68e2479b4dfed93e303c337eb5c558\/1040g00831go62mvo3q3g5p809dq1m9hlv4br7c0!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/d5aaa476f7ae82f9ff5b9423e48cb781\/1040g00831go62mvo3q3g5p809dq1m9hlv4br7c0!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]},{"width":1280,"height":2774,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/0028ff1a4522869b8d147aa4df6fef4d\/1040g00831go62mvo3q505p809dq1m9hl4jlcorg!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/cd57f3b4714972eda54c6122fad61d80\/1040g00831go62mvo3q505p809dq1m9hl4jlcorg!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]}],"corner_tag_info":[{"type":"publish_time","text":"04-26"}],"display_title":"苹果手机豆包旧版本降级成功啦!","cover":{"url_pre":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/36610b65ddd1783d1e351566a2eba9eb\/1040g00831go62mvo3q6g5p809dq1m9hlev527f8!nc_n_nwebp_prv_1","height":1704,"width":1278,"url_default":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/22abf873ed74724066720b94c0e8ef8c\/1040g00831go62mvo3q6g5p809dq1m9hlev527f8!nc_n_nwebp_mw_1"},"type":"normal","interact_info":{"shared_count":"0","collected":false,"liked":false,"liked_count":"2","comment_count":"9","collected_count":"0"},"user":{"nick_name":"拿铁工具箱","user_id":"65004b740000000006032635","nickname":"拿铁工具箱","xsec_token":"ABhMxSk45sYsmFP1tE4Lbu7AM9wU4C8FtO_uPnFfrn0js=","avatar":"https:\/\/2.zoppoz.workers.dev:443\/https\/sns-avatar-qc.xhscdn.com\/avatar\/1040g2jo31fddu03e6o6g5p809dq1m9hlmekjsj8?imageView2\/2\/w\/80\/format\/jpg"}},"xsec_token":"ABFG44Vh6YOtfosS7_mHkoW71A-qEUqDqJHN9pX32eqX4="},{"id":"681ae9a50000000021001c4d","model_type":"note","note_card":{"image_list":[{"width":1920,"height":2560,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/61aeed1d228c824252e962b22a33e995\/1040g2sg31h5uvjb63ujg5oo1gkvkge21frrakl0!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/a62118ebd21a48cbf48d602027483f76\/1040g2sg31h5uvjb63ujg5oo1gkvkge21frrakl0!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]}],"corner_tag_info":[{"type":"publish_time","text":"05-07"}],"display_title":"豆包心中的白马王子 | 豆包同人文E1","interact_info":{"comment_count":"13","collected":false,"liked":false,"liked_count":"214","shared_count":"25","collected_count":"107"},"cover":{"url_pre":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/a62118ebd21a48cbf48d602027483f76\/1040g2sg31h5uvjb63ujg5oo1gkvkge21frrakl0!nc_n_nwebp_prv_1","height":2560,"width":1920,"url_default":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/61aeed1d228c824252e962b22a33e995\/1040g2sg31h5uvjb63ujg5oo1gkvkge21frrakl0!nc_n_nwebp_mw_1"},"type":"video","user":{"nick_name":"豆秘书","user_id":"6301853f0000000012003841","nickname":"豆秘书","xsec_token":"ABtdQYbXUAslKH_gdftK47Lz7VyZijCI_9zPI7_aKrGMk=","avatar":"https:\/\/2.zoppoz.workers.dev:443\/https\/sns-avatar-qc.xhscdn.com\/avatar\/1040g2jo31h6433p1ji605oo1gkvkge21j0jougg?imageView2\/2\/w\/80\/format\/jpg"}},"xsec_token":"ABTFdW1_zKe2ibTl2AZrI_K4aNle9KdjxDrjiIfgy78Vc="},{"id":"68451ba0000000001101ef7d","model_type":"note","xsec_token":"ABdV7Ce4tfn3c9K-801_e2kl_-CDbBl1n6kmu-ttETN9Y=","note_card":{"image_list":[{"width":1296,"height":2304,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/a748522e896c3ec4a00baf018d515762\/notes_pre_post\/1040g3k831if5pjhq0ce05o0a77r091p0u0t0ci0!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/6a57243f84df0f31a304eb12d1479f84\/notes_pre_post\/1040g3k831if5pjhq0ce05o0a77r091p0u0t0ci0!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]},{"width":1296,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/9fea613e8315f423fc5a1fef25b69b32\/notes_pre_post\/1040g3k831if5pjhq0ceg5o0a77r091p0pes7408!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/c298ad3c087d9bbe0076114885b5b4e0\/notes_pre_post\/1040g3k831if5pjhq0ceg5o0a77r091p0pes7408!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}],"height":2304},{"width":1296,"height":2304,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/aa60fa034c13311f4943dce026397bf7\/notes_pre_post\/1040g3k831if5pjhq0cf05o0a77r091p0e02dh1g!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/4de1ccf986407c2d4352ad08a52c8de7\/notes_pre_post\/1040g3k831if5pjhq0cf05o0a77r091p0e02dh1g!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]},{"width":1296,"height":2304,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/f3ae37dcba64d831408eebd59bf637b9\/notes_pre_post\/1040g3k831if5pjhq0cfg5o0a77r091p0579rdj0!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/1bce2cc32abaeb3bbb5be8e13c698f34\/notes_pre_post\/1040g3k831if5pjhq0cfg5o0a77r091p0579rdj0!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]},{"width":1296,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/de739861405b8a01dcea58027f8219b1\/notes_pre_post\/1040g3k831if5pjhq0cg05o0a77r091p0m5ktql8!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/e8097234377e56e577a330ec2403d69c\/notes_pre_post\/1040g3k831if5pjhq0cg05o0a77r091p0m5ktql8!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}],"height":2304},{"width":1296,"height":2304,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/26f1df7e0e57088a0ec683921fcd53b1\/notes_pre_post\/1040g3k831if5pjhq0cgg5o0a77r091p0s2q7p5o!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/f7dcc543bc70afbdb804001e80b93e31\/notes_pre_post\/1040g3k831if5pjhq0cgg5o0a77r091p0s2q7p5o!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]},{"width":1296,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/9ec7dfdc76ddeb0fd3196001878f9d07\/notes_pre_post\/1040g3k831if5pjhq0ch05o0a77r091p0tad1llg!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/c69c1a502743bf42a22a7b7af105120d\/notes_pre_post\/1040g3k831if5pjhq0ch05o0a77r091p0tad1llg!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}],"height":2304},{"width":1296,"height":2304,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/5a11064c0fe3e49d79fc44230dadf77f\/notes_pre_post\/1040g3k831if5pjhq0chg5o0a77r091p0at5hvio!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/6aa078bc32d7a19ea3f3bf5f138a97df\/notes_pre_post\/1040g3k831if5pjhq0chg5o0a77r091p0at5hvio!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]},{"width":1296,"height":2304,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/5badc74b83548f998b14a54a5eea7455\/notes_pre_post\/1040g3k831if5pjhq0ci05o0a77r091p0h778urg!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/a6b68da96157a9cbb6eb57440e22d712\/notes_pre_post\/1040g3k831if5pjhq0ci05o0a77r091p0h778urg!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]},{"width":1296,"height":2304,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/673acaff853619005d2e57e9605755d2\/notes_pre_post\/1040g3k831if5pjhq0cig5o0a77r091p0i81ih4o!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/fa7aefee71784bc64f8fc34d15def958\/notes_pre_post\/1040g3k831if5pjhq0cig5o0a77r091p0i81ih4o!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]},{"width":1296,"height":2304,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/9f0c2476a5dd2920b1941e5fa167ea2d\/notes_pre_post\/1040g3k831if5pjhq0cj05o0a77r091p0i5jlm6o!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/d6b7d836de0a702da81a2ef0e67ac989\/notes_pre_post\/1040g3k831if5pjhq0cj05o0a77r091p0i5jlm6o!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]},{"width":1296,"height":2304,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/9a99c3bccffc81c0c73300261cdeb365\/notes_pre_post\/1040g3k831if5pjhq0cjg5o0a77r091p0f331a08!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/7fba9af7230d6da564819401508dfaee\/notes_pre_post\/1040g3k831if5pjhq0cjg5o0a77r091p0f331a08!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]},{"width":1296,"height":2304,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/beb6dae189d458f4564d8ea14107fb96\/notes_pre_post\/1040g3k831if5pjhq0ck05o0a77r091p0p45fqto!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/5b7e52b2163f83dec5ad430ea3cd6b10\/notes_pre_post\/1040g3k831if5pjhq0ck05o0a77r091p0p45fqto!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]},{"width":1296,"height":2304,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/d033aebd78d4f597baef5e971fae10df\/notes_pre_post\/1040g3k831if5pjhq0ckg5o0a77r091p06fbom5o!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/ed2bd8b18658e9bc011850252a24d3b0\/notes_pre_post\/1040g3k831if5pjhq0ckg5o0a77r091p06fbom5o!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]},{"width":1296,"height":2304,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/39bb2e6324500ae326387045c65d199e\/notes_pre_post\/1040g3k031if5reepgc005o0a77r091p0susk15g!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/98d50b3b953ed63bff063241c62f9a20\/notes_pre_post\/1040g3k031if5reepgc005o0a77r091p0susk15g!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]},{"width":1296,"height":2304,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/86a9d7aa5eba24e00ab35911f3ac87ff\/notes_pre_post\/1040g3k031if5reepgc0g5o0a77r091p0p40upvo!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/27edab160caeb9e516bac3cb49d0db95\/notes_pre_post\/1040g3k031if5reepgc0g5o0a77r091p0p40upvo!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]},{"width":1296,"height":2304,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/0d5334ec37d42fb170539d1c79d8bdbd\/notes_pre_post\/1040g3k031if5reepgc105o0a77r091p0r3shn2o!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/b7e3407778e1ca6644a2b7b95fc0a1dd\/notes_pre_post\/1040g3k031if5reepgc105o0a77r091p0r3shn2o!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]},{"width":1296,"height":2304,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/9fcae407b8e43b4f754ca6bc04705262\/notes_pre_post\/1040g3k031if5reepgc1g5o0a77r091p0vh9t2v8!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/588358479d03de21dbdf6ce8825523ff\/notes_pre_post\/1040g3k031if5reepgc1g5o0a77r091p0vh9t2v8!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]}],"corner_tag_info":[{"type":"publish_time","text":"06-08"}],"display_title":"对镜自拍的jk~豆包ai生成","type":"normal","interact_info":{"shared_count":"0","collected":false,"liked":false,"liked_count":"6","comment_count":"0","collected_count":"2"},"cover":{"url_pre":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/6a57243f84df0f31a304eb12d1479f84\/notes_pre_post\/1040g3k831if5pjhq0ce05o0a77r091p0u0t0ci0!nc_n_nwebp_prv_1","height":2304,"width":1296,"url_default":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/a748522e896c3ec4a00baf018d515762\/notes_pre_post\/1040g3k831if5pjhq0ce05o0a77r091p0u0t0ci0!nc_n_nwebp_mw_1"},"user":{"nick_name":"星星鱼","user_id":"600a39f60000000001008720","nickname":"星星鱼","xsec_token":"ABK-B7xR_GzTOOhcKEPotQRz46jLlUAhPuosiVUJeHRhQ=","avatar":"https:\/\/2.zoppoz.workers.dev:443\/https\/sns-avatar-qc.xhscdn.com\/avatar\/1040g2jo31icgg36p08005o0a77r091p07g7ps40?imageView2\/2\/w\/80\/format\/jpg"}}},{"rec_query":{"title":"相关搜索","source":1,"queries":[{"id":"豆包一家人","name":"豆包一家人","search_word":"豆包一家人"},{"id":"豆包头像","name":"豆包头像","search_word":"豆包头像"},{"id":"豆包在哪里找","name":"豆包在哪里找","search_word":"豆包在哪里找"},{"id":"豆包ai动图","name":"豆包ai动图","search_word":"豆包ai动图"}],"word_request_id":"f27c4b7a-25ec-4e63-841f-999d4dcf3d32#1750061018755"},"id":"f27c4b7a-25ec-4e63-841f-999d4dcf3d32#1750061018755","model_type":"rec_query","xsec_token":"ABIctk-DDeWv7EzfmgNrQs71Z4r4M7KBRXdgZDfgY9qj6iV-wzRv8nfrF6TCcVmW52fLtvP3CwcKTeFAN2GnO3VyjInG8gWEE9HF9TSs_NsHI="},{"id":"6826bc8300000000220348de","model_type":"note","note_card":{"image_list":[{"width":1152,"height":2048,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/7bb560357ee333521f29c207bbb340b5\/1040g00831hhgj37n3a6g4bugba194fnra9va6ng!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/cbada8b0ad5afe6300d634916f722052\/1040g00831hhgj37n3a6g4bugba194fnra9va6ng!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]}],"corner_tag_info":[{"type":"publish_time","text":"05-16"}],"display_title":"宝宝你是香香软软小蛋糕","type":"normal","interact_info":{"comment_count":"9","collected":false,"liked":false,"liked_count":"142","shared_count":"10","collected_count":"21"},"cover":{"url_pre":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/cbada8b0ad5afe6300d634916f722052\/1040g00831hhgj37n3a6g4bugba194fnra9va6ng!nc_n_nwebp_prv_1","height":2048,"width":1152,"url_default":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/7bb560357ee333521f29c207bbb340b5\/1040g00831hhgj37n3a6g4bugba194fnra9va6ng!nc_n_nwebp_mw_1"},"user":{"nick_name":"AAA 棺材批发老王","user_id":"5bfd829244363b6af4d13efb","nickname":"AAA 棺材批发老王","xsec_token":"ABPjN3uyI5a0CUiNrwMjVLYTd6OsuJa2VYrUYSSDUDqpU=","avatar":"https:\/\/2.zoppoz.workers.dev:443\/https\/sns-avatar-qc.xhscdn.com\/avatar\/1040g2jo315e90bs3gq004bugba194fnru65qcgg?imageView2\/2\/w\/80\/format\/jpg"}},"xsec_token":"ABz1mWb2e816DjwF5B8z-OQDazyF9A-3LOKdurJRIHhF4="},{"id":"6827f4ae0000000022027efb","model_type":"note","note_card":{"image_list":[{"width":1296,"height":1728,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/015223da4880120de3889c059932983d\/spectrum\/1040g0k031himhfr834005oaj37f0jqbr2319gu8!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/98a1fcabb1eb21ca9b329709af4b5260\/spectrum\/1040g0k031himhfr834005oaj37f0jqbr2319gu8!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]},{"width":1296,"height":1728,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/af127765251708c7bcb358fed6edb95d\/spectrum\/1040g0k031himhfr8340g5oaj37f0jqbr3c98ffg!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/73cac88d552a292569b6998042b95f33\/spectrum\/1040g0k031himhfr8340g5oaj37f0jqbr3c98ffg!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]},{"width":1746,"height":1570,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/35fcdef25970bac4251095e8bd34f3a7\/spectrum\/1040g0k031himjh8s3a0g5oaj37f0jqbrnhlda20!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/b262a53931ea485e5c1fb1c1245dca27\/spectrum\/1040g0k031himjh8s3a0g5oaj37f0jqbrnhlda20!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]}],"corner_tag_info":[{"type":"publish_time","text":"05-22"}],"display_title":"用豆包应援,享明星人生🥹","interact_info":{"shared_count":"11","collected":false,"liked":false,"liked_count":"97","comment_count":"2","collected_count":"43"},"cover":{"url_pre":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/98a1fcabb1eb21ca9b329709af4b5260\/spectrum\/1040g0k031himhfr834005oaj37f0jqbr2319gu8!nc_n_nwebp_prv_1","height":1728,"width":1296,"url_default":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/015223da4880120de3889c059932983d\/spectrum\/1040g0k031himhfr834005oaj37f0jqbr2319gu8!nc_n_nwebp_mw_1"},"type":"normal","user":{"nick_name":"默悦的生活碎碎念","user_id":"615319de000000000201e97b","nickname":"默悦的生活碎碎念","xsec_token":"ABKLfKqco5lJaJQlxZpD0d-LjPgOHeyydNMkUuU7Cky-0=","avatar":"https:\/\/2.zoppoz.workers.dev:443\/https\/sns-avatar-qc.xhscdn.com\/avatar\/1040g2jo31fuhre6lg07g5oaj37f0jqbrtjeic00?imageView2\/2\/w\/80\/format\/jpg"}},"xsec_token":"ABijIwtTlO889C5nouzKZXGtV_uIf4h_iYv2YLxnm4ApM="},{"id":"68494bed000000002300dcd7","model_type":"note","note_card":{"image_list":[{"width":1428,"height":1920,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/66c82f8d4f3417e2e5c74677908e89c4\/1040g00831ij8nhob7o605oijia641o89jhos5m0!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/257d1bb0f6848a6a19c6b2f8d8dc0732\/1040g00831ij8nhob7o605oijia641o89jhos5m0!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]}],"corner_tag_info":[{"type":"publish_time","text":"4天前"}],"display_title":"豆包太可怜了,喝了鼻屎奶茶😭","type":"video","interact_info":{"comment_count":"245","collected":false,"liked":false,"liked_count":"7107","shared_count":"376","collected_count":"3941"},"cover":{"url_pre":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/257d1bb0f6848a6a19c6b2f8d8dc0732\/1040g00831ij8nhob7o605oijia641o89jhos5m0!nc_n_nwebp_prv_1","height":1920,"width":1428,"url_default":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/66c82f8d4f3417e2e5c74677908e89c4\/1040g00831ij8nhob7o605oijia641o89jhos5m0!nc_n_nwebp_mw_1"},"user":{"nick_name":"豆花","user_id":"6253928c000000001000e109","nickname":"豆花","xsec_token":"ABHMsd9Fxfv3ZfKwcq_sgeQFjMLOEOhJ1oNYjkp1Xbipg=","avatar":"https:\/\/2.zoppoz.workers.dev:443\/https\/sns-avatar-qc.xhscdn.com\/avatar\/1040g2jo31io89et00u6g5oijia641o89pbtjpu8?imageView2\/2\/w\/80\/format\/jpg"}},"xsec_token":"ABldSmWB5gsqbBiTLgO4IJ7D_hvKZ1fKDU6LHYRm0qsEY="},{"id":"67e3bfd7000000001201f459","model_type":"note","note_card":{"image_list":[{"width":1280,"height":1707,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/b6776e1a8df438196b7a7c62d29e4dc8\/1040g2sg31fg3d6cjme705ngk3a508mislb3h308!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/389a8b589d05747902bdf135ac49d43c\/1040g2sg31fg3d6cjme705ngk3a508mislb3h308!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]},{"width":1290,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/a85d40747c101463e38c0c800ab886f6\/1040g2sg31fg3d6cjme7g5ngk3a508mis1qn4k7o!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/ae0fbe87da29fbc5c705f0ac19126cfc\/1040g2sg31fg3d6cjme7g5ngk3a508mis1qn4k7o!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}],"height":2796}],"corner_tag_info":[{"type":"publish_time","text":"03-26"}],"display_title":"中国AI应用排行","type":"normal","interact_info":{"shared_count":"41","collected":false,"liked":false,"liked_count":"1069","comment_count":"134","collected_count":"742"},"cover":{"url_pre":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/389a8b589d05747902bdf135ac49d43c\/1040g2sg31fg3d6cjme705ngk3a508mislb3h308!nc_n_nwebp_prv_1","height":1707,"width":1280,"url_default":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/b6776e1a8df438196b7a7c62d29e4dc8\/1040g2sg31fg3d6cjme705ngk3a508mislb3h308!nc_n_nwebp_mw_1"},"user":{"nick_name":"数据世界","user_id":"5e141a8a0000000001005a5c","nickname":"数据世界","xsec_token":"ABnWZ2RdkGOdPjLuQYwMkJZk8S3Q0LSvDPc5d6S7tMCPQ=","avatar":"https:\/\/2.zoppoz.workers.dev:443\/https\/sns-avatar-qc.xhscdn.com\/avatar\/665ab2298dc98099a7b5c4e1.jpg?imageView2\/2\/w\/80\/format\/jpg"}},"xsec_token":"ABpocoAloKTneOQ_e4ybidHHga_pAA83DkQ4F-jPXWpGk="},{"id":"684cdd65000000002002abaf","model_type":"note","note_card":{"image_list":[{"width":1500,"height":2000,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/1e6ab8abcf2539744233dc5f8c6e63d8\/notes_pre_post\/1040g3k031imo73ebhe605or8rqt7r49om8jp4e0!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/293fc619bd58d036540f6e01ac3ec3ab\/notes_pre_post\/1040g3k031imo73ebhe605or8rqt7r49om8jp4e0!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]},{"width":1500,"height":2000,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/e6ac41a4ea1502276dd078307abe5d67\/notes_pre_post\/1040g3k031imo73ebhe6g5or8rqt7r49o2u08tjg!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/87fc127e30451c127ee4edf826121c57\/notes_pre_post\/1040g3k031imo73ebhe6g5or8rqt7r49o2u08tjg!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]},{"width":1500,"height":2000,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/0aecdbb3e27a517d6851e9de1ce26793\/notes_pre_post\/1040g3k031imo73ebhe405or8rqt7r49ojar6q6o!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/7e97ffb01f6d712eb8cc2b890b76acdc\/notes_pre_post\/1040g3k031imo73ebhe405or8rqt7r49ojar6q6o!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]},{"width":1500,"height":2000,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/368c460bd53fc48a5db0766a6f1cd9a6\/notes_pre_post\/1040g3k031imo73ebhe4g5or8rqt7r49obclrapo!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/116b7fb6af13242d70cddd51ad5d327e\/notes_pre_post\/1040g3k031imo73ebhe4g5or8rqt7r49obclrapo!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]},{"width":1500,"height":2000,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/9211ed0c9a841d240c605e12eea8b4c6\/notes_pre_post\/1040g3k031imo73ebhe1g5or8rqt7r49ocplqb6g!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/baf9b7c72a66c1321046f77655780aa8\/notes_pre_post\/1040g3k031imo73ebhe1g5or8rqt7r49ocplqb6g!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]},{"width":1500,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/d3b7b758f6ac1c528f940ac81364bf22\/notes_pre_post\/1040g3k031imo73ebhe5g5or8rqt7r49o324shko!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/3a1af78829ec2ffb981191191060f25f\/notes_pre_post\/1040g3k031imo73ebhe5g5or8rqt7r49o324shko!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}],"height":2000}],"corner_tag_info":[{"type":"publish_time","text":"2天前"}],"display_title":"豆包你……","type":"normal","interact_info":{"shared_count":"236","collected":false,"liked":false,"liked_count":"1512","comment_count":"243","collected_count":"634"},"cover":{"url_pre":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/293fc619bd58d036540f6e01ac3ec3ab\/notes_pre_post\/1040g3k031imo73ebhe605or8rqt7r49om8jp4e0!nc_n_nwebp_prv_1","height":2000,"width":1500,"url_default":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/1e6ab8abcf2539744233dc5f8c6e63d8\/notes_pre_post\/1040g3k031imo73ebhe605or8rqt7r49om8jp4e0!nc_n_nwebp_mw_1"},"user":{"nick_name":"小小素问","user_id":"6368deba000000001f019138","nickname":"小小素问","xsec_token":"ABrHnvD7SRHwE31YLUxIqgjqeBaD8vmIAg7OiBtVfM7Pw=","avatar":"https:\/\/2.zoppoz.workers.dev:443\/https\/sns-avatar-qc.xhscdn.com\/avatar\/1040g2jo318rb0c36kc6g5or8rqt7r49okan7sdg?imageView2\/2\/w\/80\/format\/jpg"}},"xsec_token":"ABC8COOBqJbAPR76OfJqFz1BNHjtSoBQOAhKYd-8cOUBo="},{"id":"6832bd2c0000000020028780","model_type":"note","note_card":{"image_list":[{"width":1212,"height":1920,"info_list":[{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/2e9677cd5c9759bae2b394f6e46586ab\/1040g00831ht7qp8e3q705pvm6bcj93i3l0lqtso!nc_n_nwebp_mw_1","image_scene":"WB_DFT"},{"url":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/ee000d2e10570e013eeb385960234b1f\/1040g00831ht7qp8e3q705pvm6bcj93i3l0lqtso!nc_n_nwebp_prv_1","image_scene":"WB_PRV"}]}],"corner_tag_info":[{"type":"publish_time","text":"05-25"}],"display_title":"日常找豆包麻烦","interact_info":{"comment_count":"111","collected":false,"liked":false,"liked_count":"1259","shared_count":"182","collected_count":"407"},"cover":{"url_pre":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/ee000d2e10570e013eeb385960234b1f\/1040g00831ht7qp8e3q705pvm6bcj93i3l0lqtso!nc_n_nwebp_prv_1","height":1920,"width":1212,"url_default":"https:\/\/2.zoppoz.workers.dev:443\/http\/sns-webpic-qc.xhscdn.com\/202506161603\/2e9677cd5c9759bae2b394f6e46586ab\/1040g00831ht7qp8e3q705pvm6bcj93i3l0lqtso!nc_n_nwebp_mw_1"},"type":"video","user":{"nick_name":"无脑浆","user_id":"67f632d9000000000d008e43","nickname":"无脑浆","xsec_token":"AB2HDZQZgGtvvPOhknsV5gGL_xdjX5fES5fcUxy_sUdT8=","avatar":"https:\/\/2.zoppoz.workers.dev:443\/https\/sns-avatar-qc.xhscdn.com\/avatar\/1040g2jo31gqe6qq9jq005pvm6bcj93i3342o7uo?imageView2\/2\/w\/80\/format\/jpg"}},"xsec_token":"ABGjOiyAx_iCl9Wc2DrbgpiUWSaqPeX9c1k5aSeayyohQ="}]}

最新推荐

recommend-type

关于torch.optim的灵活使用详解(包括重写SGD,加上L1正则)

def adjust_learning_rate(optimizer, decay_rate=0.9): for para_group in optimizer.param_groups: para_group['lr'] = para_group['lr'] * decay_rate ``` 接下来,我们讨论如何添加L1正则化。默认情况下,`...
recommend-type

数据挖掘概述.ppt

数据挖掘概述.ppt
recommend-type

浅谈互联网+儿童文学阅读指导策略(1).docx

浅谈互联网+儿童文学阅读指导策略(1).docx
recommend-type

前端分析-202307110078988

前端分析-202307110078988
recommend-type

推荐算法介绍PPT学习课件.ppt

推荐算法介绍PPT学习课件.ppt
recommend-type

500强企业管理表格模板大全

在当今商业环境中,管理表格作为企业运营和管理的重要工具,是确保组织高效运作的关键。世界500强企业在管理层面的成功,很大程度上得益于它们的规范化和精细化管理。本文件介绍的“世界500强企业管理表格经典”,是一份集合了多种管理表格模板的资源,能够帮助管理者们更有效地进行企业规划、执行和监控。 首先,“管理表格”这个概念在企业中通常指的是用于记录、分析、决策和沟通的各种文档和图表。这些表格不仅仅局限于纸质形式,更多地是以电子形式存在,如Excel、Word、PDF等文件格式。它们帮助企业管理者收集和整理数据,以及可视化信息,从而做出更加精准的决策。管理表格可以应用于多个领域,例如人力资源管理、财务预算、项目管理、销售统计等。 标题中提及的“世界500强”,即指那些在全球范围内运营且在《财富》杂志每年公布的全球500强企业排行榜上出现的大型公司。这些企业通常具备较为成熟和先进的管理理念,其管理表格往往经过长时间的实践检验,并且能够有效地提高工作效率和决策质量。 描述中提到的“规范化”是企业管理中的一个核心概念。规范化指的是制定明确的标准和流程,以确保各项管理活动的一致性和可预测性。管理表格的使用能够帮助实现管理规范化,使得管理工作有据可依、有章可循,减少因个人经验和随意性带来的风险和不确定性。规范化管理不仅提高了企业的透明度,还有利于培养员工的规则意识,加强团队之间的协调与合作。 “经典”一词在这里强调的是,这些管理表格模板是经过实践验证,能够适用于大多数管理场景的基本模式。由于它们的普适性和高效性,这些表格模板被广泛应用于不同行业和不同规模的企业之中。一个典型的例子是SWOT分析表,它可以帮助企业识别内部的优势(Strengths)、弱点(Weaknesses)以及外部的机会(Opportunities)和威胁(Threats)。SWOT分析表就是一个在世界500强企业中普遍使用的管理表格。 标签中的“表格模板”则是对上述管理工具的具体描述。这些模板通常是预先设计好的,能够帮助企业管理者快速开始工作,无需从零开始制作新的表格。它们包含了一些必备的字段和格式,用户可以根据自己的具体需求对模板进行调整和填充。 文件名称列表中的“index.html”可能是压缩包内的一个网页文件,用于展示管理表格的索引或介绍。如果这是一个在线资源,它将允许用户通过网页界面访问和下载各种表格模板。而“menu”可能是一个导航文件,用来帮助用户在多个表格模板之间进行选择。“data”文件夹可能包含了实际的表格模板文件,它们可能以Excel、Word等格式存在。 总的来说,管理表格是企业成功管理不可或缺的工具。通过使用世界500强企业所采纳的管理表格模板,其他企业可以借鉴这些顶级企业的管理经验,帮助自己在管理实践中达到更高的效率和质量。通过规范化和模板化的管理表格,企业可以确保其管理活动的一致性和标准化,这对于保持竞争力和实现长期发展至关重要。
recommend-type

YOLOv8目标检测算法深度剖析:从零开始构建高效检测系统(10大秘诀)

# 1. YOLOv8目标检测算法概述 ## 1.1 YOLOv8的简介与定位 YOLOv8(You Only Look Once version 8)作为一种前沿的目标检测算法,是由YOLO系列算法演化而来。该算法特别强调快速与准确的平衡,它被设计用于实时图像识别
recommend-type

mclmcrrt9_8.dll下载

<think>我们正在处理用户关于"mclmcrrt9_8.dll"文件的下载请求。根据引用内容,这个文件是MATLAB运行时库的一部分,通常与特定版本的MATLABRuntime相关联。用户需求:下载mclmcrrt9_8.dll的官方版本。分析:1.根据引用[2]和[3],mclmcrrt9_0_1.dll和mclmcrrt9_13.dll都是MATLABRuntime的文件,版本号对应MATLAB的版本(如9_0对应R2016a,9_13对应2022b)。2.因此,mclmcrrt9_8.dll应该对应于某个特定版本的MATLAB(可能是R2016b?因为9.8版本通常对应MATLABR
recommend-type

林锐博士C++编程指南与心得:初学者快速提能

首先,这份文件的核心在于学习和提高C++编程能力,特别是针对初学者。在这个过程中,需要掌握的不仅仅是编程语法和基本结构,更多的是理解和运用这些知识来解决实际问题。下面将详细解释一些重要的知识点。 ### 1. 学习C++基础知识 - **基本数据类型**: 在C++中,需要熟悉整型、浮点型、字符型等数据类型,以及它们的使用和相互转换。 - **变量与常量**: 学习如何声明变量和常量,并理解它们在程序中的作用。 - **控制结构**: 包括条件语句(if-else)、循环语句(for、while、do-while),它们是构成程序逻辑的关键。 - **函数**: 理解函数定义、声明、调用和参数传递机制,是组织代码的重要手段。 - **数组和指针**: 学习如何使用数组存储数据,以及指针的声明、初始化和运算,这是C++中的高级话题。 ### 2. 林锐博士的《高质量的C++编程指南》 林锐博士的著作《高质量的C++编程指南》是C++学习者的重要参考资料。这本书主要覆盖了以下内容: - **编码规范**: 包括命名规则、注释习惯、文件结构等,这些都是编写可读性和可维护性代码的基础。 - **设计模式**: 在C++中合理使用设计模式可以提高代码的复用性和可维护性。 - **性能优化**: 学习如何编写效率更高、资源占用更少的代码。 - **错误处理**: 包括异常处理和错误检测机制,这对于提高程序的鲁棒性至关重要。 - **资源管理**: 学习如何在C++中管理资源,避免内存泄漏等常见错误。 ### 3. 答题与测试 - **C++C试题**: 通过阅读并回答相关试题,可以帮助读者巩固所学知识,并且学会如何将理论应用到实际问题中。 - **答案与评分标准**: 提供答案和评分标准,使读者能够自我评估学习成果,了解哪些方面需要进一步加强。 ### 4. 心得体会与实践 - **实践**: 理论知识需要通过大量编程实践来加深理解,动手编写代码,解决问题,是学习编程的重要方式。 - **阅读源码**: 阅读其他人的高质量代码,可以学习到许多编程技巧和最佳实践。 - **学习社区**: 参与C++相关社区,比如Stack Overflow、C++论坛等,可以帮助解答疑惑,交流心得。 ### 5. 拓展知识 - **C++标准库**: 学习C++标准模板库(STL),包括vector、map、list、algorithm等常用组件,是构建复杂数据结构和算法的基础。 - **面向对象编程**: C++是一种面向对象的编程语言,理解类、对象、继承、多态等概念对于写出优雅的C++代码至关重要。 - **跨平台编程**: 了解不同操作系统(如Windows、Linux)上的C++编程差异,学习如何编写跨平台的应用程序。 - **现代C++特性**: 学习C++11、C++14、C++17甚至C++20中的新特性,如智能指针、lambda表达式、自动类型推导等,可以提高开发效率和代码质量。 ### 总结 学习C++是一个系统工程,需要从基础语法开始,逐步深入到设计思想、性能优化、跨平台编程等领域。通过不断的学习和实践,初学者可以逐步成长为一个具有高代码质量意识的C++程序员。而通过阅读经典指南书籍,参与测试与评估,以及反思和总结实践经验,读者将更加扎实地掌握C++编程技术。此外,还需注意编程社区的交流和现代C++的发展趋势,这些都对于保持编程技能的前沿性和实用性是必不可少的。
recommend-type

线性代数方程组求解全攻略:直接法vs迭代法,一文搞懂

# 摘要 线性代数方程组求解是数学和工程领域中的基础而重要的问题。本文首先介绍了线性方程组求解的基础知识,然后详细阐述了直接法和迭代法两种主要的求解策略。直接法包括高斯消元法和LU分解方法,本文探讨了其理论基础、实践应用以及算法优化。迭代法则聚焦于雅可比和高斯-赛德尔方法,分析了其原理、实践应用和收敛性。通过比较分析,本文讨论了两种方法在