Bohrium
robot
新建

空间站广场

论文
Notebooks
比赛
课程
Apps
我的主页
我的Notebooks
我的论文库
我的足迹

我的工作空间

任务
节点
文件
数据集
镜像
项目
数据库
公开
twitter_data_initial_exploration.ipynb
数据分析
数据处理
数据分析数据处理
xuxh@dp.tech
更新于 2024-08-20
推荐镜像 :Basic Image:bohrium-notebook:2023-04-07
推荐机型 :c2_m4_cpu
赞 1
1
Data Exploration
Plots
Image captions
Download images

Data Exploration


©️ Copyright 2023 @ Authors
作者:AlexZhangji
共享协议:本作品采用知识共享署名-非商业性使用-相同方式共享 4.0 国际许可协议进行许可。
快速开始:点击上方的 开始连接 按钮,选择 bohrium-notebook:2023-04-07镜像及任意CPU节点配置,稍等片刻即可运行。

代码
文本
[1]
import pandas as pd

df = pd.read_json('data/sample_output_json.json ', lines=True)
# Convert 'date' column to datetime with the correct format
df['date'] = pd.to_datetime(df['date'], format='%d/%m/%Y')

代码
文本
[2]
df.date.min(), df.date.max()
(Timestamp('2021-06-04 00:00:00'), Timestamp('2024-03-01 00:00:00'))
代码
文本
[17]
df.head(2).to_dict()
{'text': {0: 'Towards Long Context RAG \n\nGemini 1.5 Pro is impressive. Naturally this begs this question of what RAG will look like in a long-context LLM future - which techniques will disappear and which will remain?\n\nWe did a deep dive into Gemini, and consolidated our thinking about…',
,  1: 'LayerDiffusion 这个可以直接生成透明背景图片的项目已经可以在forge的扩展上使用了,试了一下确实非常牛批。\n\n不仅支持直接生成透明的图片元素,还支持在已有图片上生成跟环境融合的透明图片,这个就可以做很多事情了。\n\n不得不怀疑老哥只支持forge是为了推广他的项目,哈哈…'},
, 'author_name': {0: 'LlamaIndex', 1: '歸藏'},
, 'author_handle': {0: '@llama_index', 1: '@op7418'},
, 'date': {0: Timestamp('2024-03-01 00:00:00'),
,  1: Timestamp('2024-03-01 00:00:00')},
, 'lang': {0: 'en', 1: 'zh'},
, 'url': {0: 'https://twitter.com/llama_index/status/1763620476847632744',
,  1: 'https://twitter.com/op7418/status/1763563619193856252'},
, 'mentioned_urls': {0: [], 1: []},
, 'is_retweet': {0: False, 1: False},
, 'media_type': {0: 'Image', 1: 'Video'},
, 'images_urls': {0: ['https://pbs.twimg.com/media/GHmjUsMaEAA5hRQ?format=png&name=900x900'],
,  1: None},
, 'num_reply': {0: 3, 1: 7},
, 'num_retweet': {0: 69, 1: 71},
, 'num_like': {0: 298, 1: 267},
, 'num_view': {0: 0, 1: 0},
, 'WeekdayName': {0: 'Friday', 1: 'Friday'},
, 'WeekdayNumber': {0: 4, 1: 4}}
代码
文本
[3]
df.sample(7)
, , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
textauthor_nameauthor_handledatelangurlmentioned_urlsis_retweetmedia_typeimages_urlsnum_replynum_retweetnum_likenum_view
660BEIR is a *zero-shot test* set. It’s not meant...Omar Khattab@lateinteraction2023-07-16enhttps://twitter.com/lateinteraction/status/168...[]FalseNo mediaNone21330
484Out Of Context Football@nocontextfooty2023-09-25https://twitter.com/nocontextfooty/status/1706...[]FalseVideoNone3676482858990
379Here's my conversation with \n@elonmusk\n, his...Lex Fridman@lexfridman2023-11-09enhttps://twitter.com/lexfridman/status/17226860...[]FalseVideoNone31536709345710
395gaut@0xgaut2023-11-03https://twitter.com/0xgaut/status/172053180438...[]FalseImage[https://pbs.twimg.com/media/F-COjmwXAAEHzyB?f...3111450110530
138Azure 的 zh-CN-XiaoxiaoDialectsNeural 这个语音是同一个人...LE@lewangx2024-01-16zhhttps://twitter.com/lewangx/status/17471196773...[]FalseVideoNone9621930
563みなとみらいでポケモンドローンのタイムラプスk_kinukawa@k_kinukawa2023-08-11jahttps://twitter.com/k_kinukawa/status/16899922...[]FalseVideoNone4219295881320
739Every science and tech person who is currently...Yishan@yishan2023-06-19enhttps://twitter.com/yishan/status/167061296506...[]FalseNo mediaNone60722414200
,
代码
文本
[4]
df.author_name.value_counts().head(5)
author_name
,Jim Fan         23
,Jerry Liu       20
,Yann LeCun      19
,Science girl    18
,Massimo         17
,Name: count, dtype: int64
代码
文本

Plots

Few basic plots.

代码
文本
[5]
import pandas as pd
import plotly.graph_objects as go
import plotly.express as px
from plotly.subplots import make_subplots

def plot_likes_with_cumulative(df, start_date, end_date):
df['date'] = pd.to_datetime(df['date'])
df = df[(df['date'] >= start_date) & (df['date'] <= end_date)]
df['media_type'] = df['media_type'].replace({'No media': 'Text'})
df['year_month'] = df['date'].dt.strftime('%Y-%m')

# Prepare the monthly count DataFrame
monthly_likes_df = df.groupby(['year_month', 'media_type']).size().reset_index(name='counts')

# Prepare the cumulative DataFrame
cumulative_likes_df = monthly_likes_df.copy()
cumulative_likes_df['cumulative_counts'] = cumulative_likes_df.groupby('media_type')['counts'].cumsum()

# Select a color palette
color_palette = px.colors.qualitative.Pastel

# Match colors to media type
color_map = {media_type: color_palette[i] for i, media_type in enumerate([ 'Video', 'Image', 'Text'])}

# Creating subplots
fig = make_subplots(rows=2, cols=1, shared_xaxes=True,
subplot_titles=("Monthly Likes by Media Type", "Cumulative Likes by Media Type"),
vertical_spacing=0.15)

# Adding the monthly bar chart
for media_type in monthly_likes_df['media_type'].unique():
filtered_df = monthly_likes_df[monthly_likes_df['media_type'] == media_type]
fig.add_trace(go.Bar(x=filtered_df['year_month'], y=filtered_df['counts'], opacity=0.8,
name=media_type, marker_color=color_map[media_type]),
row=1, col=1)

# Adding the cumulative area chart
for media_type in cumulative_likes_df['media_type'].unique():
filtered_cumulative_df = cumulative_likes_df[cumulative_likes_df['media_type'] == media_type]
fig.add_trace(go.Scatter(x=filtered_cumulative_df['year_month'], y=filtered_cumulative_df['cumulative_counts'],
mode='lines', name=media_type, fill='tonexty',
line=dict(color=color_map[media_type])),
row=2, col=1)

# Update layout for clarity and visual appeal
fig.update_layout(height=600, title_text="Likes Analysis by Media Type")
fig.update_xaxes(title_text="Month-Year", row=2, col=1)
fig.update_yaxes(title_text="Monthly Counts", row=1, col=1)
fig.update_yaxes(title_text="Cumulative Counts", row=2, col=1)

fig.show()

# Call the function with your DataFrame and a date range
plot_likes_with_cumulative(df, '2023-01-01', '2023-12-31')

C:\Users\zjxen\AppData\Local\Temp\ipykernel_46600\3397730805.py:9: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  df['media_type'] = df['media_type'].replace({'No media': 'Text'})
C:\Users\zjxen\AppData\Local\Temp\ipykernel_46600\3397730805.py:10: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  df['year_month'] = df['date'].dt.strftime('%Y-%m')
代码
文本
[6]
def plot_combined_donut_chart_ordered_correctly(data_df, date_col = 'StrTime'):
# Convert 'StrTime' to datetime and extract the weekday name and number
data_df['WeekdayName'] = data_df[date_col].dt.day_name()
# Map weekday names to numbers for sorting (Monday=0, ..., Sunday=6)
weekdays_map = {'Monday': 0, 'Tuesday': 1, 'Wednesday': 2, 'Thursday': 3, 'Friday': 4, 'Saturday': 5, 'Sunday': 6}
data_df['WeekdayNumber'] = data_df['WeekdayName'].map(weekdays_map)
# Prepare the data: count messages by WeekdayName, ignoring sender
weekday_distribution = data_df.groupby(['WeekdayName', 'WeekdayNumber']).size().reset_index(name='Count')
# Sort by WeekdayNumber to ensure correct order
weekday_distribution.sort_values('WeekdayNumber', inplace=True)
# Now that sorting is done, WeekdayNumber is no longer needed
weekday_distribution = weekday_distribution.drop(columns=['WeekdayNumber'])
# Create Donut chart with a different color scheme
fig = px.pie(weekday_distribution, names='WeekdayName', values='Count',
title="Tweets Liked by Weekday",
color_discrete_sequence=px.colors.qualitative.Pastel,
hole=0.4)
# Add slight margin between each day for better visualization
fig.update_traces(textinfo='percent+label', pull=0.02)
fig.update_traces(
sort=False,
direction='clockwise'
)


fig.show()

# Ensure data_df['StrTime'] is a datetime column before calling the function
plot_combined_donut_chart_ordered_correctly(df, date_col='date')

代码
文本
[7]
from plotly_calplot import calplot

def convert_to_day_df(df):
# Convert the 'date' column to datetime if it's not already
df['date'] = pd.to_datetime(df['date'])
day_df = df.groupby(df['date'].dt.date).size().reset_index(name='num_tweets')
return day_df

day_df = convert_to_day_df(df)
day_df.head(2)

fig = calplot(day_df[(day_df['date'].astype(str)>'2023-01-01') & (day_df['date'].astype(str) < '2024-01-01')], x="date", y="num_tweets",
start_month = 1,
end_month = 12,
)

# set height of the figure
fig.update_layout(height=250)
# add title
fig.update_layout(title='Number of Liked Tweets per Day 2023')
fig.show()
c:\Users\zjxen\anaconda3\envs\openai\lib\site-packages\plotly_calplot\calplot.py:159: SettingWithCopyWarning:


A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy

代码
文本
[ ]

代码
文本
[ ]

代码
文本
[ ]

代码
文本

Image captions

Proof of concept: get high level summary, detailed description and tags for first image from liked tweets.

With GPT-4-V.

Gemini 1.0 also works pretty great for this usecase.

Mainly, convert image to structured json data.

代码
文本
[10]
from openai import OpenAI
from config import OPENAI_API_KEY
import os
import json
from IPython.display import Image, display

if "OPENAI_API_KEY" not in os.environ:
os.environ["OPENAI_API_KEY"] = OPENAI_API_KEY

client = OpenAI()

def get_valid_json_with_gpt35(input):
response = client.chat.completions.create(
model="gpt-3.5-turbo-0125", # latest version of GPT-3.5, better JSON mode support.
messages=[
{
"role": "system",
"content": "You will be given a JSON string (that may not be completely valid), your task is to create a valid JSON results based on the input. Try keep the structure of the input JSON as much as possible."
},
{
"role": "user",
"content": input
}
],
temperature=0.1,
response_format = { "type": "json_object" },
max_tokens=2000,
)
return response.choices[0].message.content

def get_tweet_image_captioning(image_url, author_name, text):
image_prompt = f"""
This is a tweet from {author_name},
with the following text:
{text}.

Below is an image from the tweet.
Your task is to caption the image and provide a description. reference the text or author if necessary.

Output rules you MUST follow:
- "Summary": A brief high level, big picture description of the image. What is this and what is this for?
- "Description": A detailed description of the image. If there are text in the image, please include all of it in the description. (in its original language)
- "Tags": a brief list of high level tags that describe the image. (e.g. "cat", "anime girl", "food")

Return results in a JSON format (with "Answer" as key, contains list of dictionary with exactly these key names):
"""

vision_response = client.chat.completions.create(
model="gpt-4-vision-preview",
messages=[
{
"role": "user",
"content": [
{"type": "text", "text": image_prompt},
{
"type": "image_url",
"image_url": {
"url": image_url,
},
},
],
}
],
max_tokens=1000,
)
# Post process the response with GPT 3.5 json mode
json_captions = get_valid_json_with_gpt35(vision_response.choices[0].message.content)
return json_captions

代码
文本
[35]
sample_image_df = df[df.media_type=='Image'].head(30)
sample_image_urls = sample_image_df.images_urls.tolist()
sample_authors = sample_image_df.author_name.tolist()
sample_texts = sample_image_df.text.tolist()
代码
文本
[ ]

代码
文本
[42]
cur_idx = 26
image_url = sample_image_urls[cur_idx][0]
author_name = sample_authors[cur_idx]
text = sample_texts[cur_idx]

display(Image(url=image_url))
Image
代码
文本
[43]

print(f"Image url: {image_url}\n"
f"Author name: {author_name}\n"
f"Text: {text}" )

result = get_tweet_image_captioning(image_url, author_name, text)
Image url: https://pbs.twimg.com/media/GGQj7ObbQAAaKgl?format=jpg&name=900x900
Author name: Kars
Text: Cover for Fate/Strange Fake volume 9 which will release on March 8.

https://dengekibunko.jp/product/fate/322308000304.html… #strangefake
代码
文本
[44]
print(json.dumps(json.loads(result), indent=4))
{
    "Answer": [
        {
            "Summary": "The image is an illustrated cover art for 'Fate/Strange Fake' volume 9 which is set to release on March 8 as mentioned in the tweet by Kars.",
            "Description": "The image features an anime-style illustration of a red-haired female character with a determined expression. She is wearing a white Greek-style toga with a purple sash, which appears to be unraveling, and black and white armored gloves. The character has a red choker and earrings, and blood is visible on her shoulder. Behind her, a chaotic burst illustrates a dramatic scene with dark red visual effects that resemble flames or shards of destruction, contrasting against the brighter colors in the foreground. There is no text within the image itself.",
            "Tags": [
                "anime",
                "book cover",
                "Fate/Strange Fake",
                "illustration",
                "red-haired anime character"
            ]
        }
    ]
}
代码
文本
[ ]

代码
文本

Download images

代码
文本
[10]
df.head(2)
, , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
textauthor_nameauthor_handledatelangurlmentioned_urlsis_retweetmedia_typeimages_urlsnum_replynum_retweetnum_likenum_viewWeekdayNameWeekdayNumber
0Towards Long Context RAG \n\nGemini 1.5 Pro is...LlamaIndex@llama_index2024-03-01enhttps://twitter.com/llama_index/status/1763620...[]FalseImage[https://pbs.twimg.com/media/GHmjUsMaEAA5hRQ?f...3692980Friday4
1LayerDiffusion 这个可以直接生成透明背景图片的项目已经可以在forge的扩展上...歸藏@op74182024-03-01zhhttps://twitter.com/op7418/status/176356361919...[]FalseVideoNone7712670Friday4
,
代码
文本
[13]
import os
import requests
import time
from urllib.parse import urlparse

def download_images(df, output_dir='downloaded_images'):
if not os.path.exists(output_dir):
os.makedirs(output_dir)

for _, row in df.iterrows():
if row['images_urls'] is not None:
url_parts = urlparse(row['url'])
twitter_name = url_parts.path.split('/')[1]
tweet_id = url_parts.path.split('/')[-1]

for i, image_url in enumerate(row['images_urls'], start=1):
image_id = f"{twitter_name}__{tweet_id}_{i}"
image_path = os.path.join(output_dir, f"{image_id}.jpg")

try:
response = requests.get(image_url, stream=True)
response.raise_for_status()

with open(image_path, 'wb') as file:
for chunk in response.iter_content(chunk_size=8192):
file.write(chunk)

print(f"Downloaded image: {image_id}")
time.sleep(1) # Add a delay to avoid being banned by Twitter

except requests.exceptions.RequestException as e:
print(f"Error downloading image: {image_id}")
print(f"Error message: {str(e)}")

print("Image download completed.")
代码
文本
[15]
df.shape
(1026, 16)
代码
文本
[16]
download_images(df, output_dir='downloaded_images')
Downloaded image: llama_index__1763620476847632744_1
Downloaded image: MadSealCutter__1763107184580112694_1
Downloaded image: sophiamyang__1762125912051519947_1
Downloaded image: Sentdex__1761574584959095097_1
Downloaded image: OrwellNGoode__1760960242915930329_1
Downloaded image: LostLeanore__1760738125918425471_1
Downloaded image: FedeItaliano76__1760596748764917765_1
Downloaded image: FedeItaliano76__1760596748764917765_2
Downloaded image: FedeItaliano76__1760596748764917765_3
Downloaded image: FedeItaliano76__1760596748764917765_4
Downloaded image: chrisalbon__1760760129300070602_1
Downloaded image: DrJimFan__1760695377651781950_1
Downloaded image: DrJimFan__1760695377651781950_2
Downloaded image: DrJimFan__1760695377651781950_3
Downloaded image: DrJimFan__1760695377651781950_4
Downloaded image: elonmusk__1759295781196927438_1
Downloaded image: elonmusk__1759295781196927438_2
Downloaded image: elonmusk__1759295781196927438_3
Downloaded image: IronPineapple___1760394643265462645_1
Downloaded image: JeffDean__1760291769252762110_1
Downloaded image: ELDENRING__1760076880764449173_1
Downloaded image: karpathy__1759996549109776702_1
Downloaded image: astraorsa__1759782862931493013_1
Downloaded image: OfirPress__1759562221305090282_1
Downloaded image: EGCTV_Official__1759304647456477381_1
Downloaded image: Culture_Crit__1758876004158750857_1
Downloaded image: OpenAIDevs__1758631343595168142_1
Downloaded image: Ehco1996__1758300529237852335_1
Downloaded image: ollama__1758201836685967599_1
Downloaded image: lmsysorg__1758224805676159392_1
Downloaded image: JeffDean__1758146211029405951_1
Downloaded image: supersat__1757939524251107734_1
Downloaded image: onevisualstudio__1757653164906459361_1
Downloaded image: op7418__1757619736190607858_1
Downloaded image: op7418__1757619736190607858_2
Downloaded image: KaroshiMyriad__1757569821481525646_1
Downloaded image: AravSrinivas__1756771041790370189_1
Downloaded image: AravSrinivas__1756771041790370189_2
Downloaded image: AravSrinivas__1756771041790370189_3
Downloaded image: AravSrinivas__1756771041790370189_4
Downloaded image: TechEmails__1756765277478621620_1
Downloaded image: TechEmails__1756765277478621620_2
Downloaded image: TechEmails__1756765277478621620_3
Downloaded image: TechEmails__1756765277478621620_4
Downloaded image: cloudwu__1756594618060476630_1
Downloaded image: jobergum__1755939930579022229_1
Downloaded image: NickADobos__1755686482801836381_1
Downloaded image: NickADobos__1755686482801836381_2
Downloaded image: NickADobos__1755686482801836381_3
Downloaded image: NickADobos__1755686482801836381_4
Downloaded image: SearchDataEng__1755418541313208611_1
Downloaded image: joshm__1755263737945027019_1
Downloaded image: c_valenzuelab__1754970403309605371_1
Downloaded image: c_valenzuelab__1754970403309605371_2
Downloaded image: c_valenzuelab__1754970403309605371_3
Downloaded image: ManCity__1754614120043716836_1
Downloaded image: natfriedman__1754519304471814555_1
Downloaded image: jerryjliu0__1753923945789903351_1
Downloaded image: jerryjliu0__1753923945789903351_2
Downloaded image: CrisGiardina__1753891698822820328_1
Downloaded image: khoomeik__1753511199877333254_1
Downloaded image: khoomeik__1753511199877333254_2
Downloaded image: AI_NewsWaltz__1753488198758527311_1
Downloaded image: maccaw__1753298752776134723_1
Downloaded image: pmddomingos__1752952346970317048_1
Downloaded image: llama_index__1752748298392502521_1
Downloaded image: joeyabanks__1752486533729308928_1
Downloaded image: Toadsanime__1752377404255813787_1
Downloaded image: IroncladDev__1752349724105945181_1
Downloaded image: llama_index__1752008109835559123_1
Downloaded image: rebecca_hoshino__1751462835484598417_1
Downloaded image: goocarlos__1750531961297518698_1
Downloaded image: svpino__1750235992559173914_1
Downloaded image: RLanceMartin__1750246031512715429_1
Downloaded image: lewangx__1750159578560336103_1
Downloaded image: DrJimFan__1749484835369050392_1
Downloaded image: virattt__1749166976033861832_1
Downloaded image: m1ssuo__1748705460859863525_1
Downloaded image: dotey__1748827229109334363_1
Downloaded image: dotey__1748827229109334363_2
Downloaded image: dotey__1748827229109334363_3
Downloaded image: dotey__1748827229109334363_4
Downloaded image: dotey__1748827229109334363_5
Downloaded image: GobeUncleWang__1748611815343276061_1
Downloaded image: bo_wangbo__1747865035345715249_1
Downloaded image: meterscao__1747813278875799876_1
Downloaded image: meterscao__1747813278875799876_2
Downloaded image: meterscao__1747813278875799876_3
Downloaded image: meterscao__1747813278875799876_4
Downloaded image: nalalandoz__1747188775971876948_1
Downloaded image: nalalandoz__1747188775971876948_2
Downloaded image: nalalandoz__1747188775971876948_3
Downloaded image: nalalandoz__1747188775971876948_4
Downloaded image: ManCity__1746995854152532341_1
Downloaded image: bindureddy__1746329582670872625_1
Downloaded image: melaniesclar__1745557310695772582_1
Downloaded image: nickfloats__1741166489364025536_1
Downloaded image: juliewdesign___1741187503736942661_1
Downloaded image: juliewdesign___1741187503736942661_2
Downloaded image: juliewdesign___1741187503736942661_3
Downloaded image: juliewdesign___1741187503736942661_4
Downloaded image: laike9m__1745998971817152764_1
Downloaded image: juliewdesign___1745884836059922702_1
Downloaded image: juliewdesign___1745884836059922702_2
Downloaded image: juliewdesign___1745884836059922702_3
Downloaded image: juliewdesign___1745884836059922702_4
Downloaded image: Rainmaker1973__1745421959989457206_1
Downloaded image: jerryjliu0__1745486856291266821_1
Downloaded image: hwchase17__1745171912358060124_1
Downloaded image: hwchase17__1745171912358060124_2
Downloaded image: lateinteraction__1745190350879408394_1
Downloaded image: liuyi0922__1744567260369592706_1
Downloaded image: swyx__1744467383090372743_1
Downloaded image: swyx__1744467383090372743_2
Downloaded image: swyx__1744467383090372743_3
Downloaded image: swyx__1744467383090372743_4
Downloaded image: jerryjliu0__1744407483719045583_1
Downloaded image: jerryjliu0__1744407483719045583_2
Downloaded image: bclavie__1742950315278672040_1
Downloaded image: LangChainAI__1744080648481260015_1
Downloaded image: LangChainAI__1744080648481260015_2
Downloaded image: yihong0618__1742910304370216972_1
Downloaded image: yihong0618__1742910304370216972_2
Downloaded image: yihong0618__1742910304370216972_3
Downloaded image: yihong0618__1742910304370216972_4
Downloaded image: yihong0618__1742910304370216972_5
Downloaded image: yihong0618__1742910304370216972_6
Downloaded image: DMEEENGR__1743011666571456567_1
Downloaded image: 8teAPi__1742584464461713788_1
Downloaded image: DrJimFan__1742604125672701965_1
Downloaded image: pronounced_kyle__1742588127628361809_1
Downloaded image: pronounced_kyle__1742588127628361809_2
Downloaded image: yihong0618__1742105215506264342_1
Downloaded image: yihong0618__1742105215506264342_2
Downloaded image: michaelcurzi__1741291161673682964_1
Downloaded image: csdncto__1741089436912451602_1
Downloaded image: dotey__1741254641407365315_1
Downloaded image: dotey__1741254641407365315_2
Downloaded image: dotey__1741254641407365315_3
Downloaded image: Tisoga__1741334292687671713_1
Downloaded image: norabelrose__1740409771516432460_1
Downloaded image: op7418__1740405945778532793_1
Downloaded image: lateinteraction__1736804963760976092_1
Downloaded image: lucyj_ford__1739281068103213476_1
Downloaded image: lucyj_ford__1739281068103213476_2
Downloaded image: goocarlos__1739534482959679492_1
Downloaded image: indigo11__1739487929523986531_1
Downloaded image: indigo11__1739487929523986531_2
Downloaded image: J_Hol95__1739244274896576608_1
Downloaded image: ZyMazza__1739363209394655698_1
Downloaded image: jerryjliu0__1739307854576943105_1
Downloaded image: MagnusCarlsen__1739232164531539992_1
Downloaded image: phobography__1738651647818019095_1
Downloaded image: phobography__1738651647818019095_2
Downloaded image: phobography__1738651647818019095_3
Downloaded image: phobography__1738651647818019095_4
Downloaded image: op7418__1738614091349172544_1
Downloaded image: op7418__1738614091349172544_2
Downloaded image: op7418__1738614091349172544_3
Downloaded image: op7418__1738614091349172544_4
Downloaded image: op7418__1738614091349172544_5
Downloaded image: juliewdesign___1738640616240685253_1
Downloaded image: juliewdesign___1738640616240685253_2
Downloaded image: juliewdesign___1738640616240685253_3
Downloaded image: juliewdesign___1738640616240685253_4
Downloaded image: ianzelbo__1738666688466264349_1
Downloaded image: ianzelbo__1738666688466264349_2
Downloaded image: ianzelbo__1738666688466264349_3
Downloaded image: predict_addict__1738535734305284479_1
Downloaded image: Laporte__1738294181783597331_1
Downloaded image: ocolegro__1737899295573991452_1
Downloaded image: GregKamradt__1737921395974430953_1
Downloaded image: nash_su__1737674255805079904_1
Downloaded image: nash_su__1737674255805079904_2
Downloaded image: Tisoga__1736544319199478175_1
Downloaded image: AravSrinivas__1736090919718605169_1
Downloaded image: VictoriqueM__1736405477443948767_1
Downloaded image: depthsofwiki__1735800801455419697_1
Downloaded image: martinmbauer__1735693863774269641_1
Downloaded image: cstanley__1735658235183698128_1
Downloaded image: MinakoOikawa__1735554941245403571_1
Downloaded image: bentossell__1735310560730685587_1
Downloaded image: andrew_n_carr__1734994458175783006_1
Downloaded image: mattshumer___1734603816203423954_1
Downloaded image: llama_index__1734747959026442727_1
Downloaded image: burny_tech__1734320844724211772_1
Downloaded image: RobLynch99__1734278713762549970_1
Downloaded image: RobLynch99__1734278713762549970_2
Downloaded image: RobLynch99__1734278713762549970_3
Downloaded image: DrJimFan__1734269362100437315_1
Downloaded image: ThierryBreton__1733235664915706220_1
Downloaded image: ChatGPTapp__1733569316245930442_1
Downloaded image: malware_yml__1733094321702969504_1
Downloaded image: tutulifestyle__1733297791383019699_1
Downloaded image: tutulifestyle__1733297791383019699_2
Downloaded image: vista8__1732742803774714021_1
Downloaded image: elonmusk__1732393496428896557_1
Downloaded image: yihong0618__1732277019466166462_1
Downloaded image: yihong0618__1732277019466166462_2
Downloaded image: yihong0618__1732277019466166462_3
Downloaded image: yihong0618__1732277019466166462_4
Downloaded image: jxnlco__1732153111664353786_1
Downloaded image: BrianRoemmele__1731038758622085403_1
Downloaded image: BrianRoemmele__1731038758622085403_2
Downloaded image: BrianRoemmele__1731038758622085403_3
Downloaded image: KaroshiMyriad__1730502240316846158_1
Downloaded image: goodside__1730410630673244654_1
Downloaded image: goodside__1730410630673244654_2
Downloaded image: KilUrselfMyMan__1730337772194402708_1
Downloaded image: elonmusk__1730278921248161877_1
Downloaded image: LiveOverflow__1729798452094128278_1
Error downloading image: xiaohuggg__1729693538613629377_1
Error message: 404 Client Error: Not Found for url: https://pbs.twimg.com/media/GAEVzZTa0AAjeQZ?format=jpg&name=900x900
Downloaded image: xiaohuggg__1729693538613629377_2
Downloaded image: llama_index__1729303619760259463_1
Downloaded image: hanyingcl__1729104525267735007_1
Downloaded image: DrJimFan__1729162728072433876_1
Error downloading image: ZeyuanAllenZhu__1728965612309987454_1
Error message: 404 Client Error: Not Found for url: https://pbs.twimg.com/media/F_6DJNobMAAWAnJ?format=jpg&name=900x900
Downloaded image: emollick__1728936758157414670_1
Downloaded image: emollick__1728936758157414670_2
Downloaded image: llama_index__1728887986673291705_1
Downloaded image: LangChainAI__1728852352864579740_1
Downloaded image: LangChainAI__1728852352864579740_2
Downloaded image: Dino_illus__1728566697689227598_1
Downloaded image: gunsnrosesgirl3__1728041488578154752_1
Downloaded image: gunsnrosesgirl3__1728041488578154752_2
Downloaded image: gunsnrosesgirl3__1728041488578154752_3
Downloaded image: gunsnrosesgirl3__1728041488578154752_4
Downloaded image: himseIf_65__1727805740893553089_1
Downloaded image: 0xgaut__1727800201799250318_1
Downloaded image: ShouldHaveCat__1727674905443905550_1
Downloaded image: wshuyi__1727592948051874262_1
Downloaded image: wshuyi__1727592948051874262_2
Downloaded image: wshuyi__1727592948051874262_3
Downloaded image: wshuyi__1727592948051874262_4
Downloaded image: hausman_k__1612509549889744899_1
Downloaded image: w_hgm__1727281601900580932_1
Downloaded image: blader__1727472955838607378_1
Downloaded image: localhost_5173__1727136250791116881_1
Downloaded image: rui314__1726865145958420696_1
Downloaded image: elonmusk__1726814360071184719_1
Downloaded image: not_2b_or_2b__1726099458184597745_1
Downloaded image: not_2b_or_2b__1726099458184597745_2
Downloaded image: not_2b_or_2b__1726099458184597745_3
Downloaded image: lilianweng__1726350054540407065_1
Downloaded image: Artosis__1725228495633039636_1
Downloaded image: willieneis__1724847118555471943_1
Downloaded image: willieneis__1724847118555471943_2
Downloaded image: willieneis__1724847118555471943_3
Downloaded image: llama_index__1724891023674061108_1
Downloaded image: omarsar0__1724465107046940893_1
Downloaded image: mattshumer___1724662946528145456_1
Downloaded image: appleqyq__1724255202289815660_1
Downloaded image: tandejian__1724117701587800281_1
Downloaded image: Tisoga__1723632250137481246_1
Downloaded image: Tisoga__1723632250137481246_2
Downloaded image: karpathy__1723140519554105733_1
Downloaded image: GregKamradt__1722386725635580292_1
Downloaded image: dotey__1722323876267364767_1
Downloaded image: dotey__1722323876267364767_2
Downloaded image: nearcyan__1722067382930133364_1
Downloaded image: yi_ding__1721728060876300461_1
Downloaded image: yi_ding__1721668276894527933_1
Downloaded image: altryne__1721016891077013774_1
Downloaded image: altryne__1721016891077013774_2
Downloaded image: Culture_Crit__1721203514406269238_1
Downloaded image: 0xgaut__1720531804384264600_1
Downloaded image: llama_index__1720465247474221178_1
Downloaded image: 9hills__1720370827710087459_1
Downloaded image: elonmusk__1720109081904463926_1
Downloaded image: Andercot__1719484732763762890_1
Downloaded image: Andercot__1719484732763762890_2
Downloaded image: Manjusaka_Lee__1719394692511748416_1
Downloaded image: DelComplex__1719087956311396481_1
Downloaded image: DelComplex__1719087956311396481_2
Downloaded image: DelComplex__1719087956311396481_3
Downloaded image: ballondor__1719104753093755246_1
Downloaded image: XDash__1718894566135480760_1
Downloaded image: jerryjliu0__1718790810647527826_1
Downloaded image: jerryjliu0__1718790810647527826_2
Downloaded image: jerryjliu0__1718790810647527826_3
Downloaded image: ErlingHaaland__1718705767027450029_1
Downloaded image: jerryjliu0__1718022124802318714_1
Downloaded image: rrhoover__1717930217828651038_1
Downloaded image: MinakoOikawa__1717793376651878778_1
Downloaded image: Andercot__1717367802724757608_1
Downloaded image: Andercot__1717367802724757608_2
Downloaded image: Andercot__1717367802724757608_3
Downloaded image: Andercot__1717367802724757608_4
Downloaded image: Andercot__1717367802724757608_5
Downloaded image: qry51811566__1717090251217506307_1
Downloaded image: mranti__1715304758616191273_1
Downloaded image: oran_ge__1714467331257278669_1
Downloaded image: Megabits_mzq__1713821502100189357_1
Downloaded image: jerryjliu0__1712943016590381554_1
Downloaded image: ljsabc__1713204104749855097_1
Downloaded image: _vztu__1712682819800224011_1
Downloaded image: RickLamers__1711940099578196048_1
Downloaded image: manelferreira___1711788177458090388_1
Downloaded image: dotey__1710379636926845400_1
Downloaded image: dotey__1710379636926845400_2
Downloaded image: elizlaraki__1710308831631212786_1
Downloaded image: elizlaraki__1710308831631212786_2
Downloaded image: elizlaraki__1710308831631212786_3
Downloaded image: elizlaraki__1710308831631212786_4
Downloaded image: venturetwins__1710321733184667985_1
Downloaded image: ReT0ky0__1710143197740154985_1
Downloaded image: nottmsusa__1709824327393169490_1
Downloaded image: nottmsusa__1709824327393169490_2
Downloaded image: nottmsusa__1709824327393169490_3
Downloaded image: nottmsusa__1709824327393169490_4
Downloaded image: ylecun__1709815801136701455_1
Downloaded image: ylecun__1709815801136701455_2
Downloaded image: ylecun__1709815801136701455_3
Downloaded image: ylecun__1709815801136701455_4
Downloaded image: shing19_eth__1710001460916928677_1
Downloaded image: shing19_eth__1710001460916928677_2
Downloaded image: qinbafrank__1709152838352318526_1
Downloaded image: madebyollin__1708204657708077294_1
Downloaded image: madebyollin__1708204657708077294_2
Downloaded image: goodside__1708484087579656638_1
Downloaded image: goodside__1708484087579656638_2
Downloaded image: askziye__1707741300693561606_1
Downloaded image: blader__1707509143387717718_1
Downloaded image: ExpLang_Cn__1707289622328602991_1
Downloaded image: ljsabc__1706558224881877371_1
Downloaded image: TaNGSoFT__1705913691454206438_1
Downloaded image: hwchase17__1704903312724693119_1
Downloaded image: hwchase17__1704903312724693119_2
Downloaded image: DrJimFan__1704537601749959007_1
Downloaded image: DrJimFan__1704537601749959007_2
Downloaded image: DrJimFan__1704553166610825695_1
Downloaded image: GRRMspeaking__1704526114968793089_1
Downloaded image: AFinnstark__1704173458832187807_1
Downloaded image: ylecun__1704098609535320365_1
Downloaded image: ylecun__1704098609535320365_2
Downloaded image: 0xgaut__1702394230478360637_1
Downloaded image: monday_chen__1701965083616620873_1
Downloaded image: notmyChris__1700838436486463533_1
Downloaded image: notmyChris__1700838436486463533_2
Downloaded image: mtrainier2020__1700865631539839350_1
Downloaded image: mtrainier2020__1700865631539839350_2
Downloaded image: KaroshiMyriad__1700779144349696338_1
Downloaded image: EuroExpert___1700549641719238945_1
Downloaded image: nearcyan__1700289415128506463_1
Downloaded image: jerryjliu0__1699928967858327727_1
Downloaded image: jerryjliu0__1699928967858327727_2
Downloaded image: Tisoga__1699794330347782321_1
Downloaded image: jerryjliu0__1699448945481773208_1
Downloaded image: 0xgaut__1698724639260688661_1
Downloaded image: 0xgaut__1698724639260688661_2
Downloaded image: zebulgar__1697417073297870891_1
Downloaded image: AIatMeta__1697645416899322076_1
Downloaded image: AFinnstark__1697696696023536035_1
Downloaded image: yetone__1697278433712390326_1
Downloaded image: AFinnstark__1696848161246007388_1
Downloaded image: omarsar0__1695440652048257251_1
Downloaded image: realwuzhe__1694881407187701833_1
Downloaded image: Barret_China__1694955512402784689_1
Downloaded image: goocarlos__1694648237259673723_1
Downloaded image: RLanceMartin__1694402095376658726_1
Downloaded image: ShouldHaveCat__1694172609783427193_1
Downloaded image: OpenAI__1694062483462594959_1
Downloaded image: MapleShadow__1693522272362127638_1
Downloaded image: MapleShadow__1693522272362127638_2
Downloaded image: MapleShadow__1693522272362127638_3
Downloaded image: MapleShadow__1693522272362127638_4
Downloaded image: PicturesFoIder__1693257394015383975_1
Downloaded image: ilyamiskov__1693275019311214754_1
Downloaded image: lexfridman__1691547357299585024_1
Downloaded image: lexfridman__1691547357299585024_2
Downloaded image: bysau___1691236539588579328_1
Downloaded image: bysau___1691236539588579328_2
Downloaded image: swyx__1691142824564228096_1
Downloaded image: swyx__1691142824564228096_2
Downloaded image: swyx__1691142824564228096_3
Downloaded image: swyx__1691142824564228096_4
Downloaded image: tualatrix__1690958062100910080_1
Downloaded image: jerryjliu0__1690772077979242496_1
Downloaded image: The_AdProfessor__1690043512555991040_1
Downloaded image: LangChainAI__1689749660519616514_1
Downloaded image: karpathy__1689814718792577024_1
Downloaded image: jeremyphoward__1689464587077509120_1
Downloaded image: historyinmemes__1689389324662341632_1
Downloaded image: docmilanfar__1689077815663300608_1
Downloaded image: gregocoder__1689011333210275840_1
Downloaded image: netcapgirl__1688226909103017985_1
Downloaded image: aaaaaakuan__1688323985518592000_1
Downloaded image: Reynor02__1688333236315844608_1
Downloaded image: PierreDeWulf__1687765097916125184_1
Downloaded image: PierreDeWulf__1687765097916125184_2
Downloaded image: kiss_xoxokiss__1678701947245961217_1
Downloaded image: jessfraz__1686208859248156672_1
Downloaded image: Andercot__1686215574177841152_1
Downloaded image: DrJimFan__1686116470810632193_1
Downloaded image: DrJimFan__1686116470810632193_2
Downloaded image: stats_feed__1685880678620033024_1
Downloaded image: TweetsOfCats__1685408841855283200_1
Downloaded image: Andercot__1685088671131906048_1
Downloaded image: Andercot__1685088671131906048_2
Downloaded image: Andercot__1685088625187495936_1
Downloaded image: Frost_Giant__1684697921466609667_1
Downloaded image: Jimmy_JingLv__1684453965159882752_1
Downloaded image: Jimmy_JingLv__1684453965159882752_2
Downloaded image: Jimmy_JingLv__1684453965159882752_3
Downloaded image: Jimmy_JingLv__1684453965159882752_4
Downloaded image: andrewmccalip__1684433849781202944_1
Downloaded image: jerryjliu0__1684354464734642177_1
Downloaded image: Catshealdeprsn__1684177841351524352_1
Downloaded image: dystopiabreaker__1684086173449469952_1
Downloaded image: thukeg__1683759393723289605_1
Downloaded image: tzhongg__1683158877284741120_1
Downloaded image: S_Y_yama__1683037579636260864_1
Downloaded image: michelleefang__1682884641852887040_1
Downloaded image: yitaiw__1683102294584487937_1
Downloaded image: ShouldHaveCat__1682873492029489153_1
Downloaded image: dylan_ebert___1682413292646481922_1
Downloaded image: MengTo__1682317455727955970_1
Downloaded image: MengTo__1682317455727955970_2
Downloaded image: MengTo__1682317455727955970_3
Downloaded image: MengTo__1682317455727955970_4
Downloaded image: ErlingRoIe__1682694672991256577_1
Downloaded image: nikitonsky__1682457876629954561_1
Downloaded image: nikitonsky__1682457876629954561_2
Downloaded image: jerryjliu0__1682558166851264513_1
Downloaded image: se_5eeeee__1682387000631103489_1
Downloaded image: se_5eeeee__1682387000631103489_2
Downloaded image: se_5eeeee__1682387000631103489_3
Downloaded image: se_5eeeee__1682387000631103489_4
Downloaded image: overlordayn__1681631554672513025_1
Downloaded image: overlordayn__1681631554672513025_2
Downloaded image: overlordayn__1681631554672513025_3
Downloaded image: fuxiangPro__1681609930003066880_1
Downloaded image: llama_index__1681438906296991749_1
Downloaded image: SchmartinMartin__1681388261216772096_1
Downloaded image: DrJimFan__1681372700881854465_1
Downloaded image: wong2_x__1681252426609729536_1
Downloaded image: Fruagood__1680892338670047232_1
Downloaded image: icreatelife__1680727587213959168_1
Downloaded image: oxpsats__1680839761592987648_1
Downloaded image: taesdawn26__1680024441080938496_1
Downloaded image: Hisa0808__1680184093986934784_1
Downloaded image: _Shreya_Trivedi__1679722800461008896_1
Downloaded image: ronawang__1679867848741765122_1
Downloaded image: ronawang__1679867848741765122_2
Downloaded image: jxnlco__1679343037988651008_1
Downloaded image: amazingmap__1678715279205978112_1
Downloaded image: dotey__1678812082886569984_1
Downloaded image: dotey__1678812082886569984_2
Downloaded image: dotey__1678812082886569984_3
Downloaded image: dotey__1678812082886569984_4
Downloaded image: dotey__1678812082886569984_5
Downloaded image: AnthropicAI__1678759122194530304_1
Downloaded image: swyx__1678512823457165312_1
Downloaded image: swyx__1678512823457165312_2
Downloaded image: yoheinakajima__1678443482866933760_1
Downloaded image: NUFCJoey__1675598019020877824_1
Downloaded image: MissOllie2020__1677950613940842497_1
Downloaded image: Piglei__1678251797230809089_1
Downloaded image: DrJimFan__1678089693920133120_1
Downloaded image: catshouldnt__1677728469390880769_1
Downloaded image: AdamSinger__1677685487870386176_1
Downloaded image: AdamSinger__1677685487870386176_2
Downloaded image: kazoo1984kazuno__1677627340011233280_1
Downloaded image: makomako713__1677556585386868736_1
Downloaded image: archillect__1677294054504054797_1
Downloaded image: CaimingXiong__1677058800673759232_1
Downloaded image: GrantSlatton__1677037048916525056_1
Downloaded image: DrJimFan__1677000660791992320_1
Downloaded image: historyinmemes__1676575828920901636_1
Downloaded image: huhexian__1675785291330904064_1
Downloaded image: culturaltutor__1675189186251325441_1
Downloaded image: madzadev__1674338168139816960_1
Downloaded image: 85Jsh__1674497466316607489_1
Downloaded image: DrJimFan__1674103173928329216_1
Downloaded image: Sirupsen__1673309920769323008_1
Downloaded image: Sirupsen__1673309920769323008_2
Downloaded image: Sirupsen__1673309920769323008_3
Downloaded image: PicturesFoIder__1673557157441331200_1
Downloaded image: c_h_a_m_p_i_8__1672589819032240128_1
Downloaded image: c_h_a_m_p_i_8__1672589819032240128_2
Downloaded image: c_h_a_m_p_i_8__1672589819032240128_3
Downloaded image: c_h_a_m_p_i_8__1672589819032240128_4
Downloaded image: _dirtyiron___1672633120301121536_1
Downloaded image: ShouldHaveCat__1672619669453242368_1
Downloaded image: timshi_ai__1671360218599673856_1
Downloaded image: 9hills__1671406363359186949_1
Downloaded image: 9hills__1671403595848384512_1
Downloaded image: 9hills__1671403595848384512_2
Downloaded image: fi56622380__1671411447723851776_1
Downloaded image: fi56622380__1671411447723851776_2
Downloaded image: WebDesignMuseum__1670470949853102081_1
Downloaded image: WebDesignMuseum__1670470949853102081_2
Downloaded image: WebDesignMuseum__1670470949853102081_3
Downloaded image: WebDesignMuseum__1670470949853102081_4
Downloaded image: Culture_Crit__1668947429280940036_1
Downloaded image: huige545__1668983007573671938_1
Downloaded image: SxrgioSZN__1668330167331340288_1
Downloaded image: ManCity__1667636986046193665_1
Downloaded image: MinakoOikawa__1667033885157498880_1
Downloaded image: Barret_China__1666702175203127296_1
Downloaded image: Yellowriver478__1666579698405740545_1
Downloaded image: Yellowriver478__1666579698405740545_2
Downloaded image: Yellowriver478__1666579698405740545_3
Downloaded image: sayashk__1666313565869940736_1
Downloaded image: sayashk__1666313565869940736_2
Downloaded image: karpathy__1666182244107689985_1
Downloaded image: bentossell__1666006706957041664_1
Downloaded image: PicturesFoIder__1665097885547995136_1
Downloaded image: ManCity__1665025226986356738_1
Downloaded image: mtrainier2020__1664645650586415104_1
Downloaded image: billyuchenlin__1663603372220616704_1
Downloaded image: ItakGol__1661714548594823174_1
Downloaded image: ItakGol__1661714548594823174_2
Downloaded image: PicturesFoIder__1661408563678400514_1
Downloaded image: raycat2021__1661364808174776320_1
Downloaded image: rebecca_hoshino__1660974868567818240_1
Downloaded image: ESPNFC__1661023551955275777_1
Downloaded image: AlbicelesteTalk__1660761829876940800_1
Downloaded image: 101Neg__1660223918026919936_1
Downloaded image: robertnishihara__1658938195340566534_1
Downloaded image: City_Xtra__1658941703397449729_1
Downloaded image: ManCity__1658919723063541804_1
Downloaded image: EverythingOOC__1658499514423037954_1
Downloaded image: AFinnstark__1658521340339421184_1
Downloaded image: AFinnstark__1658521340339421184_2
Downloaded image: AFinnstark__1658521340339421184_3
Downloaded image: AFinnstark__1658521340339421184_4
Downloaded image: AFinnstark__1658521340339421184_5
Downloaded image: historyinmemes__1658530134469533730_1
Downloaded image: DashHuang__1658149351812919299_1
Downloaded image: ErlingHaaland__1657773453053767683_1
Downloaded image: ErlingHaaland__1657773453053767683_2
Downloaded image: liuyi0922__1657225538556268544_1
Downloaded image: liuyi0922__1657225538556268544_2
Downloaded image: Anc_Aesthetics__1657211983119233024_1
Downloaded image: PicturesFoIder__1657275146514624512_1
Downloaded image: erenomoto__1656832544241774593_1
Downloaded image: erenomoto__1656832544241774593_2
Downloaded image: raycat2021__1656650706533883905_1
Downloaded image: ylecun__1656073592759623691_1
Downloaded image: laike9m__1655845264425615360_1
Downloaded image: PicturesFoIder__1655743972554293249_1
Downloaded image: _seanliu__1655461547299454977_1
Downloaded image: _seanliu__1655461547299454977_2
Downloaded image: yInggp7__1655210867670278144_1
Downloaded image: sofish__1645093794159939586_1
Downloaded image: culturaltutor__1653972331495141377_1
Downloaded image: ErlingHaaland__1653885983501287425_1
Downloaded image: lmsysorg__1653843200975704069_1
Downloaded image: _akhaliq__1653570483365855233_1
Downloaded image: GoogleAI__1649151495429033984_1
Downloaded image: TOMAS3N__1651081652645543937_1
Downloaded image: TOMAS3N__1651081652645543937_2
Downloaded image: Football__Tweet__1650746857184804865_1
Downloaded image: AiBreakfast__1649583732649771010_1
Downloaded image: elonmusk__1649168604552740866_1
Downloaded image: sanchitgandhi99__1649046650793648128_1
Downloaded image: togethercompute__1647917989264519174_1
Downloaded image: laike9m__1648254568269221888_1
Downloaded image: HongyiJin258__1647062309960028160_1
Downloaded image: paulg__1646417024338341888_1
Downloaded image: City_Xtra__1645892154110390272_1
Downloaded image: JayScambler__1645603816111308800_1
Downloaded image: karpathy__1645485475996790784_1
Downloaded image: shing19_eth__1644772961021480960_1
Downloaded image: indigo11__1644236211605876736_1
Downloaded image: jerryjliu0__1644489328591257600_1
Downloaded image: lexfridman__1644417299762356232_1
Downloaded image: City_Xtra__1644069856516493322_1
Downloaded image: AiBreakfast__1643450191369093120_1
Downloaded image: GRRMspeaking__1643269750699577346_1
Downloaded image: chris_j_paxton__1642991016838938624_1
Downloaded image: Cixelyn__1642942540558266368_1
Downloaded image: SailToArchipel__1642314693615448067_1
Downloaded image: DrJimFan__1642563455298473986_1
Downloaded image: demishassabis__1642304915560071174_1
Downloaded image: williamLberman__1642001800533508096_1
Downloaded image: cellier___1642127294562205696_1
Downloaded image: _akhaliq__1641615268744142848_1
Downloaded image: jlowin__1641155964601548802_1
Downloaded image: liuyi0922__1640984539286650881_1
Downloaded image: liuyi0922__1640984539286650881_2
Downloaded image: liuyi0922__1640984539286650881_3
Downloaded image: liuyi0922__1640984539286650881_4
Downloaded image: op7418__1641016251547009025_1
Downloaded image: nicolas_ouporov__1640469903181508608_1
Downloaded image: radio1985head__1640719659413671938_1
Downloaded image: farmostwood__1616862868430790656_1
Downloaded image: cto_junior__1640304980174204931_1
Downloaded image: cto_junior__1640304980174204931_2
Downloaded image: WTL_SC2__1640278121906835459_1
Downloaded image: WTL_SC2__1640278121906835459_2
Downloaded image: nash_su__1639404405811478528_1
Downloaded image: nash_su__1639404405811478528_2
Downloaded image: nash_su__1639404405811478528_3
Downloaded image: nash_su__1639404405811478528_4
Downloaded image: dotey__1639324678656258048_1
Downloaded image: dotey__1639324678656258048_2
Downloaded image: dotey__1639324678656258048_3
Downloaded image: lexfridman__1639691412630568960_1
Downloaded image: thukeg__1639525600338804737_1
Downloaded image: MinakoOikawa__1639314726516842496_1
Downloaded image: POKImari02__1639164928719486976_1
Downloaded image: POKImari02__1639164928719486976_2
Downloaded image: POKImari02__1639164928719486976_3
Downloaded image: POKImari02__1639164928719486976_4
Downloaded image: HackEngine___1638875299843837953_1
Downloaded image: DrJimFan__1638558742391451649_1
Downloaded image: yetone__1638085647293640705_1
Downloaded image: ufcfooty__1638189259000520705_1
Downloaded image: RLanceMartin__1637852940064161792_1
Downloaded image: itstimconnors__1637539892887719941_1
Downloaded image: gosbyqin__1637170905381216257_1
Downloaded image: yetone__1636627775221297152_1
Downloaded image: yetone__1636627775221297152_2
Downloaded image: tmmt_san__1400956237726949378_1
Downloaded image: tmmt_san__1400956237726949378_2
Downloaded image: tmmt_san__1400956237726949378_3
Downloaded image: tmmt_san__1400956237726949378_4
Downloaded image: williamlegate__1636435022356856842_1
Downloaded image: monday_chen__1636580255451295745_1
Downloaded image: _akhaliq__1636416647518097408_1
Downloaded image: alexalbert____1636488553457913856_1
Downloaded image: hwchase17__1636383376633651203_1
Downloaded image: siyuanbear__1636195311046778882_1
Downloaded image: siyuanbear__1636195311046778882_2
Downloaded image: siyuanbear__1636195311046778882_3
Downloaded image: siyuanbear__1636195311046778882_4
Downloaded image: jacksonfall__1636107218859745286_1
Downloaded image: goodside__1635872117031047174_1
Downloaded image: shing19_eth__1635711436042432515_1
Downloaded image: goodside__1635711013566795776_1
Downloaded image: goodside__1635711013566795776_2
Downloaded image: goodside__1635711013566795776_3
Downloaded image: goodside__1635711013566795776_4
Downloaded image: DrJimFan__1635694095460102145_1
Downloaded image: GanymedeNil__1634729689850814467_1
Downloaded image: wesbos__1634310926219333642_1
Downloaded image: natfriedman__1634234197455020032_1
Downloaded image: GanymedeNil__1633827637247479816_1
Downloaded image: DrJimFan__1633534455771172864_1
Downloaded image: DrJimFan__1633534455771172864_2
Downloaded image: omarsar0__1632937187124625408_1
Downloaded image: xathis__1632717593357213698_1
Downloaded image: yetone__1631935757630984193_1
Downloaded image: yetone__1631935757630984193_2
Downloaded image: altryne__1631685467967225856_1
Downloaded image: mr_easonyang__1628690381155233793_1
Downloaded image: mr_easonyang__1628690381155233793_2
Downloaded image: mr_easonyang__1628690381155233793_3
Downloaded image: DataChaz__1630888066842755073_1
Downloaded image: micsolana__1630975976313348096_1
Downloaded image: archillect__1630546045267501056_1
Downloaded image: fromsoftware_pr__1630477908522270722_1
Downloaded image: MaybeMonad__1630395468550410240_1
Downloaded image: FIFAWorldCup__1630321578444554240_1
Downloaded image: HiTw93__1611890436011921408_1
Downloaded image: HiTw93__1611890436011921408_2
Downloaded image: HiTw93__1611890436011921408_3
Downloaded image: HiTw93__1611890436011921408_4
Downloaded image: jike_collection__1626912466981781505_1
Downloaded image: Linmiv__1626197453203730435_1
Downloaded image: vladquant__1624996869654056960_1
Downloaded image: vladquant__1624996869654056960_2
Downloaded image: vladquant__1624996869654056960_3
Downloaded image: karpathy__1624847051426234368_1
Image download completed.
代码
文本
[ ]

代码
文本
[ ]

代码
文本
[ ]

代码
文本
双击即可修改
代码
文本
数据分析
数据处理
数据分析数据处理
已赞1
推荐阅读
公开
charpter4_regression_expansion/lasso
机器学习
机器学习
xuxh@dp.tech
更新于 2024-08-09
公开
charpter22_EM/em
机器学习
机器学习
xuxh@dp.tech
更新于 2024-08-09