chaojixiaokeai commited on
Commit
1fdc2a8
·
verified ·
1 Parent(s): 0fd9942

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +51 -37
README.md CHANGED
@@ -1,37 +1,51 @@
1
- # CortexNet Documentation Hub
2
-
3
- This folder contains full documentation for CortexNet in both Chinese and English.
4
-
5
- ## Chinese (简体中文)
6
-
7
- - [技术架构书](./zh-CN/ARCHITECTURE_BOOK.md)
8
- - [白皮书](./zh-CN/WHITEPAPER.md)
9
- - [快速开始与使用指南](./zh-CN/QUICKSTART_AND_USAGE.md)
10
- - [训练与部署手册](./zh-CN/TRAINING_AND_DEPLOYMENT.md)
11
- - [适配与兼容设计](./zh-CN/ADAPTATION_AND_COMPATIBILITY.md)
12
- - [基准与评测方法](./zh-CN/BENCHMARKING_AND_EVALUATION.md)
13
- - [路线图与版本策略](./zh-CN/ROADMAP.md)
14
- - [开源发布与协作指南](./zh-CN/OPEN_SOURCE_GUIDE.md)
15
- - [API 参考](./zh-CN/API_REFERENCE.md)
16
- - [常见问题(FAQ)](./zh-CN/FAQ.md)
17
- - [架构可视化](./zh-CN/ARCHITECTURE_VISUAL.md)
18
- - [Hugging Face 发布指南](./zh-CN/HF_PUBLISHING.md)
19
-
20
- ## English
21
-
22
- - [Architecture Book](./en/ARCHITECTURE_BOOK.md)
23
- - [Whitepaper](./en/WHITEPAPER.md)
24
- - [Quickstart and Usage](./en/QUICKSTART_AND_USAGE.md)
25
- - [Training and Deployment](./en/TRAINING_AND_DEPLOYMENT.md)
26
- - [Adaptation and Compatibility](./en/ADAPTATION_AND_COMPATIBILITY.md)
27
- - [Benchmarking and Evaluation](./en/BENCHMARKING_AND_EVALUATION.md)
28
- - [Roadmap and Versioning](./en/ROADMAP.md)
29
- - [Open Source Collaboration Guide](./en/OPEN_SOURCE_GUIDE.md)
30
- - [API Reference](./en/API_REFERENCE.md)
31
- - [FAQ](./en/FAQ.md)
32
- - [Architecture Visuals](./en/ARCHITECTURE_VISUAL.md)
33
- - [Hugging Face Publishing Guide](./en/HF_PUBLISHING.md)
34
-
35
- ## Release Reports
36
-
37
- - [Release Benchmark Reports](./reports/README.md)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ license: apache-2.0
5
+ library_name: cortexnet
6
+ tags:
7
+ - cortexnet
8
+ - llm
9
+ - state-space-model
10
+ - sparse-attention
11
+ ---
12
+
13
+ # CortexNet
14
+
15
+ CortexNet is a unified neural architecture implementation for language modeling and reasoning.
16
+
17
+ This Hugging Face model repository is used as the public project card and release artifact index.
18
+
19
+ ## Install
20
+
21
+ ```bash
22
+ pip install cortexnet
23
+ ```
24
+
25
+ ## Quickstart
26
+
27
+ ```python
28
+ import torch
29
+ from cortexnet import CortexNet, CortexNetConfig
30
+
31
+ cfg = CortexNetConfig(vocab_size=32000, hidden_size=256, num_layers=4, num_heads=8, lite=True)
32
+ model = CortexNet(cfg).eval()
33
+ input_ids = torch.randint(0, cfg.vocab_size, (1, 16))
34
+ with torch.no_grad():
35
+ out = model(input_ids)
36
+ print(out["logits"].shape)
37
+ ```
38
+
39
+ ## Links
40
+
41
+ - GitHub: https://github.com/chaojixiaokeai/CortexNet
42
+ - PyPI: https://pypi.org/project/cortexnet/
43
+ - GitHub Release: https://github.com/chaojixiaokeai/CortexNet/releases
44
+ - Docs Hub: https://github.com/chaojixiaokeai/CortexNet/tree/main/docs
45
+
46
+ ## Included Files
47
+
48
+ - `README.md`: this model card
49
+ - `PROJECT_README.md`: project root README
50
+ - `DOCS_INDEX.md`: bilingual docs index
51
+ - `reports/`: release smoke benchmark reports and JSON artifacts