Instructions to use ierhon/neural-chatbot with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Keras
How to use ierhon/neural-chatbot with Keras:
# Available backend options are: "jax", "torch", "tensorflow". import os os.environ["KERAS_BACKEND"] = "jax" import keras model = keras.saving.load_model("hf://ierhon/neural-chatbot") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -34,7 +34,7 @@ while True:
|
|
| 34 |
print(f"Bot: {response}")
|
| 35 |
```
|
| 36 |
## todset.py
|
| 37 |
-
This file converts a file into a dataset used by `train.py`. The file has lines, each of them has two parts, before "→" is the input and after is the output. Here's an example:
|
| 38 |
```txt
|
| 39 |
Hey→Hello.
|
| 40 |
Hi.→Hello.
|
|
|
|
| 34 |
print(f"Bot: {response}")
|
| 35 |
```
|
| 36 |
## todset.py
|
| 37 |
+
This file converts a file (usually `dataset.txt`) into a dataset used by `train.py`. The file has lines, each of them has two parts, before "→" is the input and after is the output. Here's an example:
|
| 38 |
```txt
|
| 39 |
Hey→Hello.
|
| 40 |
Hi.→Hello.
|