Remove step for copying models to local folder

This commit is contained in:
Joshua Lochner 2023-10-02 15:17:38 +02:00
parent d27c693ced
commit d80d05bc9b
1 changed files with 0 additions and 11 deletions

View File

@ -14,17 +14,6 @@ An example project to show how to run 🤗 Transformers in an [Electron](https:/
npm install
```
1. Add your model files to `./models/`. For this demo, we use [distilbert-base-uncased-finetuned-sst-2-english](https://huggingface.co/distilbert-base-uncased-finetuned-sst-2-english/tree/main) from the Hugging Face Hub. It should look something like this:
```
distilbert-base-uncased-finetuned-sst-2-english/
├── config.json
├── tokenizer.json
├── tokenizer_config.json
└── onnx/
├── model.onnx
└── model_quantized.onnx
```
1. Run the application:
```bash
npm run start