-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() |