Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/Alexyskoutnev/SecurityGPT

This repository contains code, models, and resources related to our research project on enhancing the classification of Security Bug Reports (SBRs) within software source code using Large Language Models (LLMs). We have developed and fine-tuned LLMs to address the critical task of identifying security vulnerabilities in code.
https://github.com/Alexyskoutnev/SecurityGPT

Last synced: 4 days ago
JSON representation

This repository contains code, models, and resources related to our research project on enhancing the classification of Security Bug Reports (SBRs) within software source code using Large Language Models (LLMs). We have developed and fine-tuned LLMs to address the critical task of identifying security vulnerabilities in code.

Awesome Lists containing this project

README

        

# SecurityGPT
SecurityGPT is a custom GPT model designed to classify bug report documents. The model was trained on bug reports from Chromium and OpenStack.
## Installation
To automate the installation process, run the following commands:
```console
conda create -n securityGPT python=3.10
conda activate securityGPT
chmod +x install.sh
./install.sh
```

To install SecurityGPT in your local Python environment, use the following commands:
```console
pip3 -e install .
```
To check all dependencies, run the following command:
```console
pip3 list
```