Commit Graph

721 Commits

Author SHA1 Message Date
xzw
1e93a3dbd1
Merge pull request #91 from Anooyman/main
RAG module update
2024-03-17 13:15:13 +08:00
edward_ke
b050fe8122 Update README_EN.md 2024-03-17 10:40:26 +08:00
edward_ke
50a5129c77 Update basic RAG pipeline
只加了基本的 pipeline,还未进行测试,等具体接口确定之后进行调试
2024-03-17 10:31:11 +08:00
HongCheng
0553c3877b Merge branch 'main' of https://github.com/chg0901/EmoLLM 2024-03-17 10:57:57 +09:00
HongCheng
441d06463a update gitignore (add *.jsonl) 2024-03-17 10:57:51 +09:00
HongCheng
4bcacd8b67
Delete generate_data/curr_merge.json
This is a merged file
2024-03-17 10:19:14 +09:00
HongCheng
baba0d611d move scripts/upload_openxlab.py and scripts/trans_process.py 2024-03-17 10:13:18 +09:00
HongCheng
05ff5e8407 moving files in scripts related to generate data to generate_data folder
also optimizing the merge_json.py
2024-03-17 10:05:50 +09:00
HongCheng
24a16455ab
Update qwen_gen_data_NoBash.py 添加对qwen-max的异常处理 2024-03-17 08:53:50 +09:00
HongCheng
b47a102994
Update zhipuai_gen_data.py 添加glm-4 response获取异常处理
# 解决方法
``` python
    try:
        response = client.chat.completions.create(
            model='glm-4',
            messages=messages,
            top_p=top_p,
        )
    except:
        response = client.chat.completions.create(
            model='glm-4',
            messages=messages,
            top_p=top_p,
        )

``` 
# 报错
``` python
    # Error code: 400, with error text {"error":{"code":"1301","message":"系统检测到输入或生成内容可能包含不安全或敏感内容,请您避免输入易产生敏感内容的提示语,感谢您的配合。"}}
```
2024-03-17 08:45:33 +09:00
xzw
025061b0ab
Merge pull request #88 from chg0901/patch-8
Update qwen_gen_data_NoBash.py 修改生成数量和保存间隔
2024-03-16 23:20:17 +08:00
xzw
f89b73e10b
Merge pull request #87 from chg0901/patch-7
Update zhipuai_gen_data.py 修改生成的数量
2024-03-16 23:20:01 +08:00
HongCheng
8b3c439717
Update qwen_gen_data_NoBash.py 修改生成数量和保存间隔 2024-03-17 00:18:24 +09:00
HongCheng
9bcb5acab7
Update zhipuai_gen_data.py 修改生成的数量 2024-03-17 00:17:03 +09:00
xzw
60fe587f06
Merge pull request #86 from SmartFlowAI/dev
merge clean_qa
2024-03-16 23:10:14 +08:00
aJupyter
24f9ad7cb4 deleted .idea 2024-03-16 23:08:43 +08:00
aJupyter
4ceb8bd587 Merge branch 'wwwyfff-clean-QA' into dev 2024-03-16 23:08:03 +08:00
aJupyter
ebe031af1a add gitignore 2024-03-16 23:06:42 +08:00
aJupyter
93c810f31a Merge branch 'clean-QA' of github.com:wwwyfff/EmoLLM into wwwyfff-clean-QA 2024-03-16 23:03:42 +08:00
xzw
3c0a12543a
Merge pull request #85 from SmartFlowAI/dev
Dev
2024-03-16 22:51:17 +08:00
xzw
7658803a32
Merge pull request #82 from chg0901/patch-5
Update qwen_gen_data_NoBash.py 修改遍历顺序, 先遍历领域area再遍历心情emotions
2024-03-16 22:48:44 +08:00
xzw
de3f6658b6
Merge pull request #83 from chg0901/patch-6
Update zhipuai_gen_data.py 修改遍历顺序, 先遍历领域area再遍历心情emotions
2024-03-16 22:46:30 +08:00
HongCheng
9851eca641
Update zhipuai_gen_data.py 2024-03-16 23:38:51 +09:00
HongCheng
0eee2198df
Update qwen_gen_data_NoBash.py 2024-03-16 23:38:07 +09:00
MING_X
71c46bcdbf
Merge pull request #80 from chg0901/main
update qwen, zhipuai gen_data and readme
2024-03-16 21:26:07 +08:00
HongCheng
a9721ea582
Update config.yml 2024-03-16 22:02:11 +09:00
HongCheng
33e11caf97
Update requirements.txt 2024-03-16 22:01:35 +09:00
HongCheng
93067cfd64
Update config.yml 2024-03-16 22:00:51 +09:00
HongCheng
a82ae114ea
Update config.yml in generate_data 2024-03-16 21:57:29 +09:00
HongCheng
d51c894d3f
Update requirements.txt 2024-03-16 21:56:19 +09:00
HongCheng
eb12c3aa2b update qwen, zhipuai gen_data and readme 2024-03-16 21:46:02 +09:00
王友昉
da6286c151 clean qa 2024-03-16 20:45:30 +08:00
MING_X
82465ae12b
Merge pull request #79 from chg0901/patch-4
Update ChatGLM3-6b-ft_EN.md
2024-03-16 19:40:02 +08:00
HongCheng
5174fcb68b
Update ChatGLM3-6b-ft_EN.md 2024-03-16 20:21:20 +09:00
xzw
0c7cf9be68
Update LICENSE 2024-03-16 18:50:10 +08:00
xzw
826ab30b0f
Merge pull request #75 from chg0901/patch-3
Update ChatGLM3-6b-ft.md
2024-03-16 18:41:42 +08:00
xzw
660e36b952
Merge pull request #78 from SmartFlowAI/dev
Dev
2024-03-16 18:41:25 +08:00
xzw
ca1b0d2c20
Merge branch 'main' into dev 2024-03-16 18:40:42 +08:00
xzw
031b8ebc0b
Merge pull request #72 from Anooyman/main
Add RAG README.md
2024-03-16 18:39:22 +08:00
MING_X
ef5eb66a4f
Update README_EN.md 2024-03-16 15:58:07 +08:00
MING_X
0cb5cb4037
Merge pull request #73 from chg0901/patch-2
Update README_EN.md with xlab demo links
2024-03-16 15:45:53 +08:00
MING_X
a703b9a690
Update README.md 2024-03-16 15:42:16 +08:00
HongCheng
72b6c4a000
Update ChatGLM3-6b-ft.md 2024-03-16 15:59:22 +09:00
王友昉
9bcd4e060b QA clean 2024-03-16 13:12:15 +08:00
HongCheng
968234fbe7
Update README_EN.md with xlab demo links 2024-03-16 11:01:15 +09:00
Anooyman
c08e4dccd6
Merge branch 'dev' into main 2024-03-16 08:39:25 +08:00
edward_ke
55a9f48b20 Update README.md 2024-03-16 08:32:35 +08:00
edward_ke
2cce4d44a5 Update README.md 2024-03-16 08:29:47 +08:00
xzw
5485b4c124
Update web_demo-aiwei.py 2024-03-15 21:12:24 +08:00
Anooyman
000491f1be
Merge Main code (#2)
* Add files via upload

* 新增ENmd文档

* Update README.md

* Update README_EN.md

* Update LICENSE

* [docs] update lmdeploy file

* add ocr.md

* Update tutorial.md

* Update tutorial_EN.md

* Update General_evaluation_EN.md

* Update General_evaluation_EN.md

* Update README.md

Add InternLM2_7B_chat_full's professional evaluation results

* Update Professional_evaluation.md

* Update Professional_evaluation.md

* Update Professional_evaluation.md

* Update Professional_evaluation.md

* Update Professional_evaluation_EN.md

* Update README.md

* Update README.md

* Update README_EN.md

* Update README_EN.md

* Update README_EN.md

* [DOC] update readme

* Update LICENSE

* Update LICENSE

* update personal info and small format optimizations

* update personal info and translations for contents in a table

* Update RAG README

* Update demo link in README.md

* Update xlab app link

* Update xlab link

* add xlab model

* Update web_demo-aiwei.py

* add bitex

---------

Co-authored-by: xzw <62385492+aJupyter@users.noreply.github.com>
Co-authored-by: এ許我辞忧࿐♡ <127636623+Smiling-Weeping-zhr@users.noreply.github.com>
Co-authored-by: Vicky <vicky_3021@163.com>
Co-authored-by: MING_X <119648793+MING-ZCH@users.noreply.github.com>
Co-authored-by: Nobody-ML <1755309985@qq.com>
Co-authored-by: 8baby8 <3345710651@qq.com>
Co-authored-by: chaoke <101492509+8baby8@users.noreply.github.com>
Co-authored-by: aJupyter <ajupyter@163.com>
Co-authored-by: HongCheng <kwchenghong@gmail.com>
Co-authored-by: santiagoTOP <“1537211712top@gmail.com”>
2024-03-15 19:51:04 +08:00