BioGPT:biomedical分野の事前学習モデル
この部分のコンパイル失敗・・・悲しい
pip install fastBPE
git clone https://github.com/glample/fastBPE.git
export FASTBPE=${PWD}/fastBPE
cd fastBPE
g++ -std=c++11 -pthread -O3 fastBPE/main.cc -IfastBPE -o fast
BioGPT: Generative Pre-trained Transformer for Biomedical Text Generation and Mining
https://download.arxiv.org/pdf/2210.10341v2.pdf
ChatGPT先生に聞いてみた
how to install BioGPT by Docker
Here is a step by step guide to install BioGPT using Docker:
Install Docker on your Mac by following the instructions on the official Docker website.
Pull the BioGPT Docker image from Docker Hub:
bashCopy codedocker pull biogpt/biogpt
Start a Docker container from the image:
cssCopy codedocker run -it --name biogpt -p 8888:8888 biogpt/biogpt
Access the BioGPT Jupyter Notebook by opening a web browser and navigating to http://localhost:8888.
Use the Jupyter Notebook to access and use the BioGPT models.
Note: You may need to replace localhost with the IP address of your Docker host if you are running Docker on a remote machine.
I hope this helps!