Skip to content

Commit fded74a

Browse files
committedMar 18, 2024
new doc
1 parent b29ca30 commit fded74a

File tree

4 files changed

+80
-1
lines changed

4 files changed

+80
-1
lines changed
 

‎202403/20240317_01.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -81,14 +81,15 @@ PostgreSQL中国用户会:
8181
沉没成本: 投入越多投入时间越长, 越会形成继续投入的惯性.
8282

8383
社区分层架构:
84-
- 社区管理线: 顶层核心人群 (活跃的行业领袖(企业中上层)、网红达人(企业中上层)、...) 强 连接各地方核心人群. 弱 连接全国普通会员.
84+
- 社区管理线: 顶层核心人群(可按 运营 高校 海外 文档 翻译 行业垂直等功能划分) (活跃的行业领袖(企业中上层)、网红达人(企业中上层)、...) 强 连接各地方核心人群. 弱 连接全国普通会员.
8585
- 社区管理线: 各地方核心人群 (活跃的地方行业领袖(企业中上层)、网红达人(企业中上层)、...) 强 连接各地方核心人群. 弱 连接全国普通会员.
8686
- 社区业务线骨干: 全国垂类领域核心业务专家 (企业业务骨干) (mvp/ace/...) 强 连接各地普通会员.
8787
- 社区业务线骨干: 垂类领域核心业务专家 (企业业务骨干) , 强 连接各地普通会员.
8888
- 社区普通会员
8989

9090
强连接关系网络的构建:
9191
- 通过全国型线下活动, 建立 “顶层核心人群+地方核心人群” 的强连接关系网络.
92+
- 吃饭 爬山 K歌 喝茶等娱乐 兼顾 线下专业活动
9293
- 通过各地方线下活动, 建立 “地方核心人群+地方普通会员” 的强连接关系网络. 地方活动成本低, 可以高频搞.
9394

9495
3、变现模式

‎202403/20240318_01.md

+76
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
## 马斯克开源3410亿参数大模型Grok
2+
3+
### 作者
4+
digoal
5+
6+
### 日期
7+
2024-03-18
8+
9+
### 标签
10+
PostgreSQL , PolarDB , DuckDB , 大模型 , grok , 专家分类
11+
12+
----
13+
14+
## 背景
15+
开源项目地址:
16+
- https://github.com/xai-org/grok-1
17+
18+
更多介绍:
19+
- https://finance.sina.com.cn/tech/roll/2024-03-18/doc-inansyiy2523231.shtml
20+
21+
# Grok-1
22+
23+
This repository contains JAX example code for loading and running the Grok-1 open-weights model.
24+
25+
Make sure to download the checkpoint and place `ckpt-0` directory in `checkpoint`.
26+
Then, run
27+
28+
```shell
29+
pip install -r requirements.txt
30+
python run.py
31+
```
32+
33+
to test the code.
34+
35+
The script loads the checkpoint and samples from the model on a test input.
36+
37+
Due to the large size of the model (314B parameters), a machine with enough GPU memory is required to test the model with the example code.
38+
The implementation of the MoE layer in this repository is not efficient. The implementation was chosen to avoid the need for custom kernels to validate the correctness of the model.
39+
40+
# Downloading the weights
41+
42+
You can download the weights using a torrent client and this magnet link:
43+
```
44+
magnet:?xt=urn:btih:5f96d43576e3d386c9ba65b883210a393b68210e&tr=https%3A%2F%2Facademictorrents.com%2Fannounce.php&tr=udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce
45+
```
46+
47+
# License
48+
49+
The code and associated Grok-1 weights in this release are licensed under the
50+
Apache 2.0 license. The license only applies to the source files in this
51+
repository and the model weights of Grok-1.
52+
53+
54+
#### [期望 PostgreSQL|开源PolarDB 增加什么功能?](https://github.com/digoal/blog/issues/76 "269ac3d1c492e938c0191101c7238216")
55+
56+
57+
#### [PolarDB 开源数据库](https://openpolardb.com/home "57258f76c37864c6e6d23383d05714ea")
58+
59+
60+
#### [PolarDB 学习图谱](https://www.aliyun.com/database/openpolardb/activity "8642f60e04ed0c814bf9cb9677976bd4")
61+
62+
63+
#### [购买PolarDB云服务折扣活动进行中, 55元起](https://www.aliyun.com/activity/new/polardb-yunparter?userCode=bsb3t4al "e0495c413bedacabb75ff1e880be465a")
64+
65+
66+
#### [PostgreSQL 解决方案集合](../201706/20170601_02.md "40cff096e9ed7122c512b35d8561d9c8")
67+
68+
69+
#### [德哥 / digoal's Github - 公益是一辈子的事.](https://github.com/digoal/blog/blob/master/README.md "22709685feb7cab07d30f30387f0a9ae")
70+
71+
72+
#### [About 德哥](https://github.com/digoal/blog/blob/master/me/readme.md "a37735981e7704886ffd590565582dd0")
73+
74+
75+
![digoal's wechat](../pic/digoal_weixin.jpg "f7ad92eeba24523fd47a6e1a0e691b59")
76+

‎202403/readme.md

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
### 文章列表
44
----
5+
##### 20240318_01.md [《马斯克开源3410亿参数大模型Grok》](20240318_01.md)
56
##### 20240317_01.md [《德说-第277期, 社区的商业模式探讨》](20240317_01.md)
67
##### 20240314_06.md [《PostgreSQL 17 preview - 新增 "builtin" collation provider》](20240314_06.md)
78
##### 20240314_05.md [《翻译: 如何使用 PostgreSQL 执行(军事)地理分析任务》](20240314_05.md)

‎README.md

+1
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ digoal's|PostgreSQL|文章|归类
9898

9999
### 所有文档如下
100100
----
101+
##### 202403/20240318_01.md [《马斯克开源3410亿参数大模型Grok》](202403/20240318_01.md)
101102
##### 202403/20240317_01.md [《德说-第277期, 社区的商业模式探讨》](202403/20240317_01.md)
102103
##### 202403/20240314_06.md [《PostgreSQL 17 preview - 新增 "builtin" collation provider》](202403/20240314_06.md)
103104
##### 202403/20240314_05.md [《翻译: 如何使用 PostgreSQL 执行(军事)地理分析任务》](202403/20240314_05.md)

0 commit comments

Comments
 (0)
Please sign in to comment.