完全にオープンな約1,720億パラメータ(GPT-3級)の大規模言語モデル 「llm-jp-3-172b-instruct3」を一般公開 ~GPT-3.5を超える性能を達成~ , NII, 2024.12 #4702
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
name: Issue Correction | |
on: | |
issues: | |
types: [opened, labeled] | |
jobs: | |
correct_issue_title: | |
runs-on: ubuntu-latest | |
if: github.actor == 'AkihikoWatanabe' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.10' | |
- name: Install dependencies | |
run: pip install PyGithub feedparser openai==1.55.3 | |
- name: Correct Issue | |
env: | |
TOKEN: ${{ secrets.TOKEN }} | |
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | |
run: python .github/scripts/correct_issue.py |