Warning: Undefined array key "jpg" in /srv/www/vhosts/tb-software.ch/httpdocs/page/wp-content/plugins/wp-compress-image-optimizer/wp-compress-core.php on line 1575

Warning: Undefined array key "png" in /srv/www/vhosts/tb-software.ch/httpdocs/page/wp-content/plugins/wp-compress-image-optimizer/wp-compress-core.php on line 1575

Warning: Undefined array key "gif" in /srv/www/vhosts/tb-software.ch/httpdocs/page/wp-content/plugins/wp-compress-image-optimizer/wp-compress-core.php on line 1575

Warning: Undefined array key "svg" in /srv/www/vhosts/tb-software.ch/httpdocs/page/wp-content/plugins/wp-compress-image-optimizer/wp-compress-core.php on line 1575

Warning: Undefined array key "jpg" in /srv/www/vhosts/tb-software.ch/httpdocs/page/wp-content/plugins/wp-compress-image-optimizer/classes/enqueues.class.php on line 434

Warning: Undefined array key "png" in /srv/www/vhosts/tb-software.ch/httpdocs/page/wp-content/plugins/wp-compress-image-optimizer/classes/enqueues.class.php on line 434

Warning: Undefined array key "gif" in /srv/www/vhosts/tb-software.ch/httpdocs/page/wp-content/plugins/wp-compress-image-optimizer/classes/enqueues.class.php on line 434

Warning: Undefined array key "svg" in /srv/www/vhosts/tb-software.ch/httpdocs/page/wp-content/plugins/wp-compress-image-optimizer/classes/enqueues.class.php on line 434
Tensorflow für AI Anwendungen - TB-Software

Tensorflow für AI Anwendungen

Windows 10 / Windows 11

Hier ist eine sechsschrittige Anleitung zur Installation von TensorFlow in Jupyter Notebook, sowohl in Deutsch als auch in Englisch, für Ihre WordPress-Seite:

Deutsch:

  1. Miniconda installieren: Laden Sie Miniconda3 für Windows von der Miniconda-Website herunter und installieren Sie es.
  2. Jupyter Notebook installieren: Öffnen Sie das Miniconda-Terminal und geben Sie conda install jupyter ein.
  3. Jupyter Notebook starten: Geben Sie im Miniconda-Terminal jupyter notebook ein.
  4. TensorFlow installieren: Fügen Sie in einem Jupyter-Notebook-Zellblock !pip install tensorflow ein.
  5. TensorFlow testen: Schreiben Sie einen Testcode in Jupyter Notebook:
   import tensorflow as tf
   a = tf.constant(2)
   b = tf.constant(3)
   c = tf.add(a, b)
   print(c.numpy())
  1. Eigene Umgebung für TensorFlow erstellen: Erstellen Sie eine dedizierte Python-Umgebung für TensorFlow mit Conda oder virtualenv (optional, aber empfohlen).

English:

  1. Install Miniconda: Download Miniconda3 for Windows from the Miniconda website and install it.
  2. Install Jupyter Notebook: Open the Miniconda terminal and enter conda install jupyter.
  3. Launch Jupyter Notebook: In the Miniconda terminal, type jupyter notebook.
  4. Install TensorFlow: In a Jupyter Notebook cell, input !pip install tensorflow.
  5. Test TensorFlow: Write a test code in Jupyter Notebook:
   import tensorflow as tf
   a = tf.constant(2)
   b = tf.constant(3)
   c = tf.add(a, b)
   print(c.numpy())
  1. Create a Dedicated Environment for TensorFlow: Set up a specific Python environment for TensorFlow using Conda or virtualenv (optional but recommended).