Skip to content
Snippets Groups Projects
Commit 8ca00d23 authored by Felix Matthias Krumm's avatar Felix Matthias Krumm
Browse files

fixed pi spelling

parent 72df9b14
Branches
Tags
1 merge request!109fixed pi spelling
...@@ -80,7 +80,7 @@ A CNN is a great way to make a machine recognize images and classify them. It is ...@@ -80,7 +80,7 @@ A CNN is a great way to make a machine recognize images and classify them. It is
If you want to take a deeper look into the math behind it here is [an Article](https://towardsdatascience.com/gentle-dive-into-math-behind-convolutional-neural-networks-79a07dd44cf9) If you want to take a deeper look into the math behind it here is [an Article](https://towardsdatascience.com/gentle-dive-into-math-behind-convolutional-neural-networks-79a07dd44cf9)
which further explains some of the special mechanics used in CNNs. It also touches the topic of 3D inputs. which further explains some of the special mechanics used in CNNs. It also touches the topic of 3D inputs.
If you now actually want to play with this machine learning model check out the jupyter notebook for Convolutional Neural Networks. There we try to guess what is pictured on 32*32 images. Spoiler: with the limited hardware of a PI we wont have that much luck. But you can try to improve it by changing the network parameters yourself. If you now actually want to play with this machine learning model check out the jupyter notebook for Convolutional Neural Networks. There we try to guess what is pictured on 32*32 images. Spoiler: with the limited hardware of a Pi we wont have that much luck. But you can try to improve it by changing the network parameters yourself.
Also there is a really good visual representation of a [CNN guessing handwritten digits](https://www.cs.cmu.edu/~aharley/vis/conv/flat.html) by Adam Harley, if you are more the visual type. Also there is a really good visual representation of a [CNN guessing handwritten digits](https://www.cs.cmu.edu/~aharley/vis/conv/flat.html) by Adam Harley, if you are more the visual type.
......
# Accessing JupyterLab # Accessing JupyterLab
To access JupyterLab from your Raspberry Pi running with a GUI, you can open the browser and enter [127.0.0.1:8888](http://127.0.0.1:8888). When asked for a password just leave the field empty and press `ENTER` to continue. To access JupyterLab from your Raspberry Pi running with a GUI, you can open the browser and enter [127.0.0.1:8888](http://127.0.0.1:8888). When asked for a password just leave the field empty and press `ENTER` to continue.
If you are running your Pi without a graphical user interface you can access jupyterlab using the Raspberry Pis hostname or IP-address at port 8888. If the hostname has not been changed this would be [raspberrypi:8888](http://raspberrypi:8888) If you are running your Pi without a graphical user interface you can access jupyterlab using the Raspberry Pi's hostname or IP-address at port 8888. If the hostname has not been changed this would be [raspberrypi:8888](http://raspberrypi:8888)
![login page](./images/jupyterlab-login.png) ![login page](./images/jupyterlab-login.png)
......
...@@ -29,7 +29,7 @@ Next click on "Choose SD Card" and select the micro-SD card you wish to flash th ...@@ -29,7 +29,7 @@ Next click on "Choose SD Card" and select the micro-SD card you wish to flash th
**Warning: Flashing an image will delete all files on the selected drive. Make sure you have no files on the micro-SD card that you wish to keep!** **Warning: Flashing an image will delete all files on the selected drive. Make sure you have no files on the micro-SD card that you wish to keep!**
Before you click on write you now have the opportunity to configure your Pis hostname and WiFi settings. You can still do this later but it is recommended to do it now, especially if you are using the lite image. To open the configuration window press `CTRL + Shift + X `. You can also configure your keyboard layout in this window. Before you click on write you now have the opportunity to configure your Pi's hostname and WiFi settings. You can still do this later but it is recommended to do it now, especially if you are using the lite image. To open the configuration window press `CTRL + Shift + X `. You can also configure your keyboard layout in this window.
**Notice:** The configuration window is available in Raspberry Pi Imager versions above 1.6 and will not be available in older versions. In future versions accessing this menu might function differently. For instructions on how to configure WiFi and ssh access see the section below. **Notice:** The configuration window is available in Raspberry Pi Imager versions above 1.6 and will not be available in older versions. In future versions accessing this menu might function differently. For instructions on how to configure WiFi and ssh access see the section below.
...@@ -42,7 +42,7 @@ The next step is learning how you can access JupyterLab. To find out go [here](J ...@@ -42,7 +42,7 @@ The next step is learning how you can access JupyterLab. To find out go [here](J
## Manual WiFi and ssh configuration ## Manual WiFi and ssh configuration
This section is only relevant for a headless configuration when using an older version of Raspberry Pi Imager than 1.6 or if you need to change settings after you have already flashed the image to an SD-card. This section is only relevant for a headless configuration when using an older version of Raspberry Pi Imager than 1.6 or if you need to change settings after you have already flashed the image to an SD-card.
### SSH ### SSH
To enable SSH for a headless configuration place a file named `ssh` without any file extensions in the root directory of the boot partition of your Pis SD-card. The contents of the file do not matter. To enable SSH for a headless configuration place a file named `ssh` without any file extensions in the root directory of the boot partition of your P'is SD-card. The contents of the file do not matter.
### WiFi ### WiFi
WiFi can also be configured using a similar method. Create a textfile named `wpa_supplicant.conf` in the same folder as the `ssh` file above. WiFi can also be configured using a similar method. Create a textfile named `wpa_supplicant.conf` in the same folder as the `ssh` file above.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment