s********k 发帖数: 6180 | 1 除了不能透露的机密,产品商业化这些对于初创更重要,最近看了看李志飞,余凯之类
访谈,感觉AI的商业化产品化道路很难啊,没有爆发的赛道,而且一开始做AI,很多时
候不得不继续规划下面事情也得跟AI有关,感觉反而有点束缚了,就像博士毕业不愿意
做马工那种束缚。
wdong现在看起来有客户了,起步可喜可贺,有没有产品商业化上经验讲讲 |
r****t 发帖数: 10904 | 2 产品和商业化CTO不管吧。这两样比技术要单纯多了,
基本上就一句话,
def make_a_poduct_and_monetize():
while input = user.conversations.next():
idea = extract(input)
if user.wants(idea):
product = build(idea)
if user.buys(product):
scale(product)
return 0
elif user.uses(product):
scale(product, purchase=False)
return 0
else:
continue
def build(idea):
runway -= cost(idea)
xp += learning(idea)
if runway < 0:
raise StopIteration
return __code__(idea)
def scale(product, purchase=True):
while True:
if purchase:
sell(product.copy())
else:
sell_ads(product.copy())
编不下去了。
|
s*i 发帖数: 5025 | 3 Help!
I tried your code but the third line always returns NULL
【在 r****t 的大作中提到】 : 产品和商业化CTO不管吧。这两样比技术要单纯多了, : 基本上就一句话, : def make_a_poduct_and_monetize(): : while input = user.conversations.next(): : idea = extract(input) : if user.wants(idea): : product = build(idea) : if user.buys(product): : scale(product) : return 0
|
w***g 发帖数: 5958 | 4 I can confirm this bug.
【在 s*i 的大作中提到】 : Help! : I tried your code but the third line always returns NULL
|
r****t 发帖数: 10904 | 5 Then the loop continues, as it is supposed to.
Suggest either
1. try a different user, or
2. try re-write extract() method.
【在 s*i 的大作中提到】 : Help! : I tried your code but the third line always returns NULL
|
b****u 发帖数: 1130 | 6 产品和商业化最难,一点不单纯。
我现在的CTO天天在琢磨产品。
【在 r****t 的大作中提到】 : 产品和商业化CTO不管吧。这两样比技术要单纯多了, : 基本上就一句话, : def make_a_poduct_and_monetize(): : while input = user.conversations.next(): : idea = extract(input) : if user.wants(idea): : product = build(idea) : if user.buys(product): : scale(product) : return 0
|