Skip to content

Commit

Permalink
大模型
Browse files Browse the repository at this point in the history
  • Loading branch information
dlimeng committed Mar 5, 2024
1 parent 2733665 commit 26d7a27
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,3 +111,5 @@
[2024-03-03日报](ai-generated-daily/2024-03-03.md)

[2024-03-04日报](ai-generated-daily/2024-03-04.md)

[2024-03-05日报](ai-generated-daily/2024-03-05.md)
24 changes: 24 additions & 0 deletions ai-generated-daily/2024-03-05.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
1.Stable Diffusion 3: Research Paper

https://stability.ai/news/stable-diffusion-3-research-paper

2.Claude 3 测评

https://zhuanlan.zhihu.com/p/685464269

3.LeCun放出「视觉世界模型」论文

论文链接:https://arxiv.org/pdf/2403.00504.pdf

4.扩展校正Transformer实现高分辨图像生成

https://stabilityai-public-packages.s3.us-west-2.amazonaws.com/Stable+Diffusion+3+Paper.pdf


5.0.5秒,无需GPU,Stability AI与华人团队VAST开源单图生成3D模型TripoSR

TripoSR 模型代码:https://github.com/VAST-AI-Research/TripoSR

TripoSR 模型权重:https://huggingface.co/stabilityai/TripoSR

TripoSR Demo:https://huggingface.co/spaces/stabilityai/TripoSR
19 changes: 19 additions & 0 deletions langchain/ReActDemo2.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import turtle

screen = turtle.Screen()
screen.bgcolor("black")

pen = turtle.Turtle()
pen.color("red")
pen.fillcolor("pink")
pen.begin_fill()

pen.left(140)
pen.forward(180)
pen.circle(90, 200)
pen.setheading(60)
pen.circle(90, 200)
pen.forward(180)

pen.end_fill()
turtle.done()

0 comments on commit 26d7a27

Please sign in to comment.