* Added tensorflow and keras to requirements.txt to streamline running MNIST example. Updated instructions to include installing python dependenices for the training script.
* add output example whitespace back
* edit readme and fixed typo
These are simple examples of how to use GGML for inferencing.
The first example uses convolutional neural network (CNN), the second one uses fully connected neural network.
-## Building the examples
+## Python environment setup and build the examples
```bash
git clone https://github.com/ggerganov/ggml
cd ggml
+# Install python dependencies in a virtual environment
+python3 -m venv ggml_env
+source ./ggml_env/bin/activate
+pip install -r requirements.txt
+# Build the examples
mkdir build && cd build
cmake ..
make -j4 mnist-cnn mnist
torchvision==0.15.2
transformers==4.29.2
gguf==0.4.5
+tensorflow==2.15.0
+keras==2.15.0