Gemini Advanced 发布了,$20/月(头 2 个月免费)

146 天前
 Davy
https://one.google.com/explore-plan/gemini-advanced
5990 次点击
所在节点    Google
52 条回复
aitianci
146 天前
Bard 怎么不出 App 啊,我觉得图片识别比 Bing 好用
Fike
146 天前
@aitianci 看公告后边应该会出
estk
146 天前
Upgrade your Google One plan to get Gemini Advanced
TRY 719.99 TRY 0 for 2 months,
TRY 719.99/month after
FuzzySloth2
146 天前
@estk chatgpt 才 499 里拉
zwzwzwzwzxt
146 天前
ChatGemini
146 天前
建议用免费的 chatgemini.net
ovtfkw
146 天前
支持中文吗
jaya2024
146 天前
蹲一个拼车。
kilasuelika
146 天前
这个 gemini 我感觉经常瞎说。比如随便问一个
does c++ boost.lockfree queue support blocking pop.

Yes, the C++ Boost.Lockfree queue supports blocking pop. It provides a pop() function that will block the calling thread until an element is available to be popped from the queue. This is in contrast to the non-blocking pop() function, which will return immediately if the queue is empty

这就是瞎说的,lockfree 只支持 non-blocking pop. 这个问题我问了好几个 ai,只有 gpt 能准确回答出来。其它的要不是错的,要不就是虚构一些不存在的东西
flyun
146 天前
@aitianci 如果你使用 Android 手机,推荐我开发的支持 Gemini 第三方开源 APP ,我也觉得图片识别很好用,尤其配合图片翻译 prompt 后 https://www.v2ex.com/t/1010749
outgoing4443
146 天前
蹲个测评
NeedMe123456
146 天前
@aitianci 目前只有 US 的 Android 有
SetoKaiba
146 天前
有没有万能的 v 友知道怎么在 iOS 的 Google App 里能有 Gemini 的 tab ,我已经设置 iPhone 语言英文了。
https://support.google.com/gemini/answer/14579026
mxT52CRuqR6o5
145 天前
20 刀用的是 ultra 吗?
mumbler
145 天前
测试了下,找资料能力比 gpt4 强,无缝对接 google 搜索,中文写作能力也强过 gpt4 ,做高中数学题还是一塌糊涂,回头再试试写代码,希望 gemini 能逼出 gpt5
FuzzySloth2
145 天前
@mxT52CRuqR6o5 是,实际使用还是答非所问+拒绝回答
youthfire
145 天前
尝试问了几次中超球队阵容,没有一次对的,把五年前的,两年前的,现在的,甚至从来没加入过的各种混编。哪怕告诉它参考数据源甚至纠正它,更新后还是继续错。 让人想到早期的 gpt3.5 。其实信息错误没什么,但在纠正它后还是继续保持错误也不知道为什么那么执拗。
lianyue13
145 天前
@SetoKaiba 分批推送,等着就行了
Aaarnold
145 天前
@kilasuelika gemini advanced:No, C++ Boost.Lockfree queue does not inherently support a blocking pop operation. By design, the entire library focuses on lock-free operations, meaning they avoid using traditional locks that could bottleneck threads. Instead, Boost.Lockfree relies on atomic operations and other techniques to ensure consistency without blocking.

This absence of a blocking pop doesn't mean you can't achieve a similar behavior. Here are some approaches:

**1. Busy Waiting:** This involves looping and constantly checking if the queue is empty until an element is available. This can be resource-heavy and should be used with caution.

**2. Sleep and Retry:** Similar to busy waiting, but instead of continuously checking, the thread sleeps for a short period before checking again. This reduces CPU usage but introduces latency.

**3. Event Handling:** Use platform-specific mechanisms like condition variables or POSIX semaphores. This allows the thread to be notified when an element becomes available, avoiding busy waiting or unnecessary sleeps.

**4. Consider Alternative Data Structures:** If blocking behavior is crucial, consider alternatives like `std::queue` from the C++ Standard Library or other thread-safe concurrent queue libraries that offer blocking operations.

Remember, the choice of strategy depends on your specific use case and performance requirements. Ensure you understand the trade-offs between thread safety, performance, and resource usage before implementing any solution.
kilasuelika
145 天前
@Aaarnold 这个答案是对的,你怎么用到的这个 advanced

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/1015075

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX