火种 ctf_分析我的火种数据

火种 ctf

Originally published at https://www.linkedin.com on March 27, 2020 (data up to date as of March 20, 2020).

最初于 2020年3月27日 https://www.linkedin.com 发布 (数据截至2020年3月20日)。

Day 3 of social distancing.

社会疏离的第三天。

As I sit on my couch scrolling through my Instagram feed to see yet another drawing of an orange — apparently the latest Instagram challenge to pass the time — I was starting to get… bored. Who would’ve thought that an INTP like myself would succumb to boredom in day 3 of social distancing?

当我坐在沙发上滚动查看我的Instagram提要时,看到另一幅橙色的图画(显然是Instagram最新挑战),我开始感到…… 无聊 。 谁会想到像我这样的INTP会在社交疏远的第三天屈服于无聊?

With no cool restaurants to explore, no plans with friends to hang out, no gyms to go to anytime soon — why not start a project to pass the time?

没有很酷的餐厅可供探索,没有与朋友闲逛的计划,没有健身房可供短期使用-为什么不启动一个打发时间的项目?

But, what project? I know I wanted to do something that would allow me to gain insight on some aspect of my life, and what’s more relevant to a 20 year old’s life than dating? In today’s ultra-digital world, dating has become synonymous with Tinder. I mean, how else are we supposed to meet and connect with people nowadays? Through physical and social communities like friends, mutuals, school, and work as has literally been the case for hundreds of generations prior? Nope, that’s crazy.

但是,什么项目? 我知道我想做些能让我对生活的某些方面有深入了解的事情,与20岁的生活比约会更重要的是什么? 在当今的超数字世界中,约会已成为Tinder的代名词。 我的意思是,我们今天应该如何与其他人见面并建立联系? 通过像朋友,互助,学校和工作这样的物质和社会社区,几百代人以前确实是这样? 不,那太疯狂了

Tinder allows us to connect with people within our communities that we would never have met otherwise — for better or for worse. And as with many social media apps, Tinder allows you to request your own personal data.

Tinder使我们能够与社区中的人们保持联系,否则我们将再也见不到,无论好坏。 与许多社交媒体应用程序一样,Tinder允许您请求自己的个人数据。

And so I did.

所以我做到了。

火种数据 (Tinder Data)

The requested Tinder data was in JSON format, and follows this simplified structure:

请求的Tinder数据为JSON格式,并遵循以下简化结构:

Image for post
Tinder Data Structure
火种数据结构

Reading in the data into Python with the following script:

使用以下脚本将数据读入Python:

import json with open('data.json') as json_file: 
data ​= json.load(json_file)

Now, the first problem was taking this data structure and converting it to one that I could easily traverse through to analyze. Because Usage is simply a count aggregated daily, it was natural to convert this into a standard tabular data structure with rows as dates and columns as the aforementioned features.

现在,第一个问题是采用这种数据结构并将其转换为我可以轻松遍历以进行分析的结构。 由于“用法”只是每天汇总的计数,因此很自然地将其转换为标准的表格数据结构,其中行作为日期,列作为上述功能。

import pandas as pd 
df = pd.DataFrame(list(data['Usage']['app_opens'].keys())) for x in list(data['Usage'].keys()):
df[x]= list(data['Usage'][x].values())

Here’s the first five rows of the data frame — aka my first 5 days on Tinder:

这是数据框的前五行,也就是我在Tinder上的前五天:

Image for post
My first 5 days on Tinder
我在Tinder上的前5天

With the Messages, however, I wanted to explore other alternatives. Since an individual message can be viewed as an object with attributes text and sent date, I defined a Message Class/Object, and stored these in a dictionary where the key indicated the unique match ID.

但是,对于“消息”,我想探索其他替代方法。 由于可以将一条单独的消息视为具有属性文本和发送日期的对象,因此我定义了一个消息类别/对象,并将它们存储在字典中,其中的键表示唯一的匹配ID。

class Message:
'''Fields: Text (Str)
Date (Datetime)'''
def __init__(self, text, date):
self.text = text
self.date = date
def __repr__(self):
message_rep = "{}: {}"
return message_rep.format(self.date, self.text)
message_dict={}
for x in data['Messages']:
match_id=x['match_id'].split()[-1]
sent = []
for messages in x['messages']:
sent_date = " ".join(messages['sent_date'].split()[0:-1])[:-3]
sent.append(Message(messages['message'].lower(),sent_date))
message_dict[match_id]=sent

Now, we need more Python to parse through the messages to derive basic insights. Here’s an excerpt containing the basic idea:

现在,我们需要更多的Python来解析消息以得出基本见解。 以下是包含基本思想的摘录:

day_count, time_count, emoji_count = {}, {}, {}
day_time, date_count, word_count = {}, {}, {}
for matches in message_dict:
messages = message_dict[matches]
for msg in messages:
date=msg.date.split(" ")
day=date[0][:-1]
time = date[-1][:2]+':00'
dt="-".join(date[1:4])
words=msg.text.split(" ")
check_lst = [[day, day_count], [time, time_count],
[day_time, day_time],[dt, date_count],
[words, word_count]]
i=0
while i < 4:
x=check_lst[i]
key=x[0]
dictionary = x[1]
if key not in dictionary.keys():
dictionary[key]=1
i=i+1
else:
dictionary[key]=dictionary[key]+1
i=i+1
for x in words:
t = str.maketrans(dict.fromkeys(string.punctuation))
x = x.translate(t)
stripped = list(x)
for char in stripped:
if char in emojis:
if char not in emoji_count.keys():
emoji_count[char]=1
else:
emoji_count[char]=emoji_count[char]+1

分析与见解 (Analysis & Insights)

Quick stats as of March 20th 2020:

截至2020年3月20日的快速统计数据:

  • 10,083 total app opens

    共有10,083个应用打开
  • Swiped right on 3,331 profiles, with a daily max of 92 on January 4 2019

    在3,331个配置文件上向右滑动,2019年1月4日每天最多92个
  • Swiped left on 38,132 profiles, with daily max of 2,145 profiles on January 4 2019

    向左滑动38,132个配置文件,2019年1月4日每天最多2,145个配置文件
  • 349 matches, with daily max of 12 matches on March 18 2020

    349场比赛,2020年3月18日每天最多12场比赛
  • 1,164 total messages sent

    共发送1,164条消息
  • 1,289 total messages received

    共收到1,289条消息
  • 125 unique conversations

    125个独特的对话
  • 32 social media/number exchanges

    32个社交媒体/号码交换
  • 16 meet ups

    16个聚会
  • countless dollars spent on bubble tea

    花在泡沫茶上的钱不计其数

Traversing through my sent messages, we get the following word cluster:

遍历我发送的消息,我们得到以下单词簇:

Image for post
My word cloud of sent messages
我发送邮件的词云

Looking at my top words:

看我的热门话:

Image for post

“damn you’re cute wanna grab bubbletea ? haha”

“该死的你很可爱,想去买泡泡茶吗? 哈哈”

Interesting. Seems fairly normal in the context of Tinder. Now, I’m curious as to why statistics is one of my top words…

有趣。 在Tinder的上下文中似乎很正常。 现在,我很好奇为什么统计是我的热门词汇之一……

Now, among the messages sent, about 4% of these were emojis. Evidently, emojis are well integrated into digital messaging. Here are my top 5 sent emojis:

现在,在发送的消息中,其中约4%是表情符号。 显然,表情符号已很好地集成到数字消息中。 这是我发送的前5个表情符号:

Image for post

Moreover, data indicates that 15% of my sent messages had only 6 words — with 38% of my sent messages falling between the 5–7 word count range.

此外,数据表明,我发送的邮件中有15%仅包含6个单词-我发送的邮件中有38%位于5-7个字数范围内。

Image for post
Length of messages sent
邮件长度

Looking at the distribution of conversation length measured in days, we see a left-skewed distribution — with 67% of conversations having tenure of less than one day.

查看以天为单位的会话长度分布,我们看到一个左偏分布-67%的会话的任期少于一天。

Image for post
Conversation tenure in days
会话天数

Among these single day conversations, a majority of them are dead-end: in other words, no messages were sent after my initial recorded message.

在这些单日对话中,大多数对话都是死胡同:换句话说,在我最初记录的消息之后没有发送任何消息。

Image for post
Response rate of single day conversations
单日对话的回应率

Now, before hammering down on my one-liners, there is a slight caveat: because I only have data on my sent messages, I used my first and last message within a match as a proxy for conversation length. As such, it is unclear which participant actually ended the conversation. So these ‘no responses’ could have been messages that I didn’t follow up on.

现在,在敲定单行代码之前,有一点警告:由于我的发送消息中只有数据,因此我将比赛中的第一条和最后一条消息用作对话长度的代理。 因此,不清楚哪个参与者实际结束了对话。 因此,这些“没有回应”可能是我没有跟进的消息。

In fact, looking at the count of messages sent versus received indicates that my messages are generally answered — at least when aggregating on the monthly level. So maybe my one liners are somewhat effective — sureeee.

实际上,查看已发送消息与已接收消息的数量表明,我的消息通常得到答复-至少在按月汇总时会得到答复。 因此,也许我的一支班轮比较有效- 保证人

Image for post
Monthly messages
每月留言

When are these messages actually sent out?

这些消息何时真正发出?

Image for post
Message activity
讯息活动

Data indicates that peak messaging time occurs at 9 pm.

数据表明高峰消息传递时间发生在晚上9点。

Cool — but these insights are only applicable once a match has actually occurred. We all know that 90% of Tinder consists of swiping.

很酷-但这些见解仅在实际发生匹配后才适用。 我们都知道90%的Tinder是刷卡。

Image for post
Monthly swiping activity
每月刷卡活动

It’s interesting to see that 18% of total swipes were done in my first month of Tinder.

有趣的是,在Tinder的第一个月中,刷卡总数就达到了18%。

Defining match rate as the proportion of matches to swipe rights, we see that my match rate generally hovers at around 12.5% — with the highest match rate of 45% in March 2019 despite its low matches.

将匹配率定义为匹配权与滑动权的比例,我们看到我的匹配率通常徘徊在12.5%左右,尽管匹配率较低,但2019年3月的最高匹配率为45%。

Image for post
Monthly matches
每月比赛

Assuming independence in swipes and holding the probability of a match fixed, we can think of each swipe right as a Bernoulli trial — where a successful outcome is a match.

假设刷卡独立,并且将比赛的可能性固定不变,那么我们可以将每次刷卡都视为一次伯努利试验-成功的结果就是一场比赛。

Mathematically, we have a random variable, Y, that follows a binomial distribution:

在数学上,我们有一个随机变量Y,它遵循二项式分布:

Image for post

Or in our context:

或在我们的上下文中:

Image for post

Given my Tinder data and assuming a fixed probability of success (p), the maximum likelihood estimate of the parameter p is simply the estimated match rate.

给定我的Tinder数据,并假设成功的概率为固定值(p),则参数p的最大似然估计值就是估计的匹配率。

Image for post

Holding the number of my received swipe rights constant, we can construct the following cumulative binomial probability distributions:

在我收到的刷卡权利数量不变的情况下,我们可以构建以下累积二项式概率分布:

Image for post
Cumulative probability of at least one match as a function of swipe rights
至少一项匹配的累积概率作为滑动权限的函数

The figure above shows the probability of at least one match given a fixed probability of success, p. We can see that the probability of at least one match increases with the number of swipe rights. In other words, a match is inevitable as you swipe right — this is, of course, holding the number of received swipe rights constant. This resulting convergence is a consequence of the Law of Large Numbers.

上图显示了在给定固定成功概率p的情况下至少一场比赛的概率。 我们可以看到,至少一项匹配的可能性随刷卡权限的数量而增加。 换句话说,当您向右滑动时,匹配是不可避免的-当然,这将使接收到的滑动权限的数量保持恒定。 最终的收敛是大数定律的结果。

Given my current swiping behaviour (p=0.10), it would take at least 30 swipes to get at least one match — emphasis on at least: meaning the number of matches could range from 1 to the number of swipe rights inclusive.

考虑到我目前的滑动行为(p = 0.10),至少需要进行30次滑动才能获得至少一场比赛- 至少要强调:意味着比赛次数的范围可以从1到包括滑动次数在内。

Image for post
Swiping behaviour
刷卡行为

Holding the number of my received swipe rights constant, a quick way to increase the probability of at least one match is to increase the number of swipe rights given. However, more doesn’t necessarily mean better: the trade-off between quality and quantity is more nuanced, so I’ll leave it at that.

保持我收到的刷卡权利数量不变,一种增加至少一场比赛的可能性的快速方法是增加所给定的刷卡权利数量。 但是,更多并不一定意味着更好:质量和数量之间的权衡更加细微,因此我将保留它。

A natural question that follows is how many of these matches actually lead to coffee or bubble tea? Data indicates a 12.8% conversion rate among my engaged matches. A 95% confidence interval estimate indicates a lower bound of 7% and an upper bound of 19% — the 6% margin of error could be telling of external factors, such as proximity, that could affect one’s interest to meet up.

随之而来的自然问题是,这些匹配中有多少实际上产生了咖啡或泡泡茶? 数据显示我参与的比赛中的转化率为12.8%。 95%的置信区间估计值指示下限为7%,上限为19%-6%的误差幅度可能表示外界因素(例如接近程度)可能会影响一个人满足兴趣的外部因素。

Now, assuming independence among engaged matches and that each person is equally open to meet up, we can think of this as yet again another Bernoulli trial — where a successful outcome is a meet up.

现在,假设参与比赛的独立性,并且每个人都同样愿意聚会,我们可以将其视为伯努利的又一次审判-成功的结局就是聚会。

Image for post

Given my Tinder data and assuming a fixed probability of success (p), the maximum likelihood estimate of the parameter p is simply the estimated conversion rate.

给定我的Tinder数据并假设成功的概率为固定值(p),则参数p的最大似然估计值就是估计的转换率。

Image for post

With these assumptions, we can make inferences on future outcomes such as calculating the probability of getting x number of meet ups — in other words, Prob(meet up = x | p = 0.128).

有了这些假设,我们就可以推断出未来的结果,例如计算获得x次见面的概率—换句话说,Prob(见面= x | p = 0.128)。

Pretty cool.

很酷

This is especially useful when it comes to allocating budgets for dates. Personally, first dates for me are around the $10 — $20 ball park — though, the variance on that is somewhat high. Assuming that I allocate $35 per month on dates and each date is $15, we can run simulations with 100 engaged matches over 6 months:

在分配日期预算时,这特别有用。 就我个人而言,第一次约会大约是10美元(20美元球场),但是,这方面的差异有些大。 假设我每月在日期上分配$ 35,每个日期为$ 15,我们可以在6个月内进行100次参与式比赛的模拟:

Image for post
Simulation expenses over 6 months
6个月的模拟费用

Since the number of engaged matches is large (n=100), the binomial distribution can be approximated by a Gaussian probability density. This resulting convergence in distribution is a consequence of the Central Limit Theorem.

由于参与比赛的数量很大(n = 100),因此可以通过高斯概率密度来近似二项式分布。 分布的最终收敛是中央极限定理的结果。

The probability of a deficit can be calculated as the area under the curve to the left of the red dotted line. Hence we can calculate this probability easily using the Gaussian approximation:

赤字的概率可以计算为红色虚线左侧曲线下方的面积。 因此,我们可以使用高斯近似轻松地计算该概率:

Image for post

Since the budget remaining is a linear function of meet ups — which we estimate through a Gaussian random variable — then, the budget remaining also follows a Gaussian distribution:

由于剩余预算是满足率的线性函数(我们通过高斯随机变量估算),因此,剩余预算也遵循高斯分布:

Image for post

With these assumptions, the probability of a deficit is 0.3594. Yikes — this is somewhat concerning given that I’m on a student budget.

根据这些假设,出现赤字的概率为0.3594。 Yikes-考虑到我的学生预算有限,这有点令人担忧。

So, it’s probably not financially viable to message 100 matches over 6 months given my current conversion rate. To stay on budget, I either: decrease the number of messaged matches or decrease my conversion rate. Hmm, tough call — I’d have to go with the former.

因此,考虑到我目前的转化率,在6个月内发送100个匹配消息可能在财务上不可行。 为了节省预算,我要么:减少信息匹配的次数,要么降低转化率。 嗯,艰难的举动-我不得不跟前一个去。

Tweaking the parameters in the binomial simulation we get the following results:

在二项式仿真中调整参数可获得以下结果:

Image for post
Tweaking parameters in budget simulation
预算模拟中的调整参数

Now, the probability of going over budget when I reduce my engagement to 75 matches is 0.06 (green density) — much better. Having said that, I also don’t want to end up with a big surplus since that would imply little to no dates (yellow). Hence, I should engage with 75 to 85 matches over the course of 6 months to fully utilize my budget.

现在,当我将参与度降低到75场比赛时,超出预算的可能性为0.06(绿色密度),好得多。 话虽如此,我也不想结余很多,因为那意味着很少甚至没有约会(黄色)。 因此,我应该在6个月的时间内进行75到85场比赛,以充分利用我的预算。

Cool. Now I have some new insights about my current Tinder behaviour — however, by no means is this analysis exhaustive. If you happen to have Python installed and have your own personal Tinder data — or if you just want to look at the back-end logic of the Python functions used in this analysis — feel free to check out the code that I wrote for this project:

凉。 现在,我对当前的Tinder行为有了一些新见解-但是,该分析绝不是详尽无遗的。 如果您恰好安装了Python并拥有自己的个人Tinder数据-或仅想查看此分析中使用的Python函数的后端逻辑-请随时查看我为该项目编写的代码:

https://github.com/dionbanno/dion_creates

https://github.com/dionbanno/dion_creates

对进一步项目的建议: (Recommendations for further projects:)

  • Can we perform A/B testing on certain key words and phrases to see if they increase the probability of a response/meet up?

    我们可以对某些关键词和短语进行A / B测试,以查看它们是否增加了回应/见面的可能性?
  • It would be cool to have a repository of individual Tinder data classified per user attribute such as location, gender, age, etc. and doing a regression analysis to see if certain user attributes affect success

    拥有按用户属性(例如位置,性别,年龄等)分类的单个Tinder数据存储库,并进行回归分析以查看某些用户属性是否影响成功,这将很酷。

最后的话 (Final words)

Data from this analysis indicates that 64% of matches go un-messaged. So shoot your shot. Go ignite those matches — who knows? It might be worth while.

来自该分析的数据表明,有64%的匹配未发送消息。 因此,射击。 点燃那些比赛-谁知道? 也许值得。

Feel free to leave your comments, and connect with me on LinkedIn. I’d also be curious to know — what metrics would you have chosen to analyze, and how?

随时发表您的评论,并在LinkedIn上与我联系。 我也很想知道-您将选择分析哪些指标,以及如何选择?

翻译自: https://medium.com/swlh/analyzing-my-tinder-data-3b4f05a4a34f

火种 ctf

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/389404.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

data studio_面向营销人员的Data Studio —报表指南

data studioIn this guide, we describe both the theoretical and practical sides of reporting with Google Data Studio. You can use this guide as a comprehensive cheat sheet in your everyday marketing.在本指南中&#xff0c;我们描述了使用Google Data Studio进行…

人流量统计系统介绍_统计介绍

人流量统计系统介绍Its very important to know about statistics . May you be a from a finance background, may you be data scientist or a data analyst, life is all about mathematics. As per the wiki definition “Statistics is the discipline that concerns the …

乐高ev3 读取外部数据_数据就是新乐高

乐高ev3 读取外部数据When I was a kid, I used to love playing with Lego. My brother and I built almost all kinds of stuff with Lego — animals, cars, houses, and even spaceships. As time went on, our creations became more ambitious and realistic. There were…

图像灰度化与二值化

图像灰度化 什么是图像灰度化&#xff1f; 图像灰度化并不是将单纯的图像变成灰色&#xff0c;而是将图片的BGR各通道以某种规律综合起来&#xff0c;使图片显示位灰色。 规律如下&#xff1a; 手动实现灰度化 首先我们采用手动灰度化的方式&#xff1a; 其思想就是&#…

分析citibike数据eda

数据科学 (Data Science) CitiBike is New York City’s famous bike rental company and the largest in the USA. CitiBike launched in May 2013 and has become an essential part of the transportation network. They make commute fun, efficient, and affordable — no…

上采样(放大图像)和下采样(缩小图像)(最邻近插值和双线性插值的理解和实现)

上采样和下采样 什么是上采样和下采样&#xff1f; • 缩小图像&#xff08;或称为下采样&#xff08;subsampled&#xff09;或降采样&#xff08;downsampled&#xff09;&#xff09;的主要目的有 两个&#xff1a;1、使得图像符合显示区域的大小&#xff1b;2、生成对应图…

r语言绘制雷达图_用r绘制雷达蜘蛛图

r语言绘制雷达图I’ve tried several different types of NBA analytical articles within my readership who are a group of true fans of basketball. I found that the most popular articles are not those with state-of-the-art machine learning technologies, but tho…

java 分裂数字_分裂的补充:超越数字,打印物理可视化

java 分裂数字As noted in my earlier Nightingale writings, color harmony is the process of choosing colors on a Color Wheel that work well together in the composition of an image. Today, I will step further into color theory by discussing the Split Compleme…

结构化数据建模——titanic数据集的模型建立和训练(Pytorch版)

本文参考《20天吃透Pytorch》来实现titanic数据集的模型建立和训练 在书中理论的同时加入自己的理解。 一&#xff0c;准备数据 数据加载 titanic数据集的目标是根据乘客信息预测他们在Titanic号撞击冰山沉没后能否生存。 结构化数据一般会使用Pandas中的DataFrame进行预处理…

比赛,幸福度_幸福与生活满意度

比赛,幸福度What is the purpose of life? Is that to be happy? Why people go through all the pain and hardship? Is it to achieve happiness in some way?人生的目的是什么&#xff1f; 那是幸福吗&#xff1f; 人们为什么要经历所有的痛苦和磨难&#xff1f; 是通过…

带有postgres和jupyter笔记本的Titanic数据集

PostgreSQL is a powerful, open source object-relational database system with over 30 years of active development that has earned it a strong reputation for reliability, feature robustness, and performance.PostgreSQL是一个功能强大的开源对象关系数据库系统&am…

Django学习--数据库同步操作技巧

同步数据库&#xff1a;使用上述两条命令同步数据库1.认识migrations目录&#xff1a;migrations目录作用&#xff1a;用来存放通过makemigrations命令生成的数据库脚本&#xff0c;里面的生成的脚本不要轻易修改。要正常的使用数据库同步的功能&#xff0c;app目录下必须要有m…

React 新 Context API 在前端状态管理的实践

2019独角兽企业重金招聘Python工程师标准>>> 本文转载至&#xff1a;今日头条技术博客 众所周知&#xff0c;React的单向数据流模式导致状态只能一级一级的由父组件传递到子组件&#xff0c;在大中型应用中较为繁琐不好管理&#xff0c;通常我们需要使用Redux来帮助…

机器学习模型 非线性模型_机器学习模型说明

机器学习模型 非线性模型A Case Study of Shap and pdp using Diabetes dataset使用糖尿病数据集对Shap和pdp进行案例研究 Explaining Machine Learning Models has always been a difficult concept to comprehend in which model results and performance stay black box (h…

5分钟内完成胸部CT扫描机器学习

This post provides an overview of chest CT scan machine learning organized by clinical goal, data representation, task, and model.这篇文章按临床目标&#xff0c;数据表示&#xff0c;任务和模型组织了胸部CT扫描机器学习的概述。 A chest CT scan is a grayscale 3…

Pytorch高阶API示范——线性回归模型

本文与《20天吃透Pytorch》有所不同&#xff0c;《20天吃透Pytorch》中是继承之前的模型进行拟合&#xff0c;本文是单独建立网络进行拟合。 代码实现&#xff1a; import torch import numpy as np import matplotlib.pyplot as plt import pandas as pd from torch import …

作业要求 20181023-3 每周例行报告

本周要求参见&#xff1a;https://edu.cnblogs.com/campus/nenu/2018fall/homework/2282 1、本周PSP 总计&#xff1a;927min 2、本周进度条 代码行数 博文字数 用到的软件工程知识点 217 757 PSP、版本控制 3、累积进度图 &#xff08;1&#xff09;累积代码折线图 &…

算命数据_未来的数据科学家或算命精神向导

算命数据Real Estate Sale Prices, Regression, and Classification: Data Science is the Future of Fortune Telling房地产销售价格&#xff0c;回归和分类&#xff1a;数据科学是算命的未来 As we all know, I am unusually blessed with totally-real psychic abilities.众…

openai-gpt_为什么到处都看到GPT-3?

openai-gptDisclaimer: My opinions are informed by my experience maintaining Cortex, an open source platform for machine learning engineering.免责声明&#xff1a;我的看法是基于我维护 机器学习工程的开源平台 Cortex的 经验而 得出 的。 If you frequent any part…

Pytorch高阶API示范——DNN二分类模型

代码部分&#xff1a; import numpy as np import pandas as pd from matplotlib import pyplot as plt import torch from torch import nn import torch.nn.functional as F from torch.utils.data import Dataset,DataLoader,TensorDataset""" 准备数据 &qu…