Die Suche ergab 20 Treffer

von aleph
Montag 1. Mai 2017, 12:05
Forum: Installation/Konfigurieren
Thema: tensorflow verwenden
Antworten: 7
Zugriffe: 3254

Re: tensorflow verwenden

@kbr: Der Python-Interpreter in den Einstellungen ist auf C:\Anaconda\python.exe eingestellt. Was soll ich genau noch machen?
von aleph
Montag 1. Mai 2017, 11:24
Forum: Installation/Konfigurieren
Thema: tensorflow verwenden
Antworten: 7
Zugriffe: 3254

Re: tensorflow verwenden

@aleph: Das sieht so ein bisschen so aus als wenn Du `tensorflow` für eine Python-Installation installiert hast und jetzt versuchst das in einer anderen Python-Installation auszuführen. Ich habe nur Anaconda 4.3.1 64 Bit, Python 3.6 installiert. Edit: Ich mache gerade mal "conda update --all&q...
von aleph
Montag 1. Mai 2017, 11:09
Forum: Installation/Konfigurieren
Thema: tensorflow verwenden
Antworten: 7
Zugriffe: 3254

Re: tensorflow verwenden

Ich habe nach "anaconda pycharm tensorflow" gegoogelt und gefunden: http://stackoverflow.com/questions/37866877/pycharm-anaconda-import-tensor-flow-library-issue Ich habe Go to settings (ctrl+alt+s or File menu->Settings or alt+f+t) Under Prject: go to Project Interpreter Choose the interp...
von aleph
Montag 1. Mai 2017, 08:16
Forum: Installation/Konfigurieren
Thema: tensorflow verwenden
Antworten: 7
Zugriffe: 3254

tensorflow verwenden

ch habe Anaconda und Tensorflow wie in https://www.tensorflow.org/install/install_windows#installing_with_anaconda beschrieben installiert. Wenn ich von cmd aus das Testprogramm >>> import tensorflow as tf >>> hello = tf.constant('Hello, TensorFlow!') >>> sess = tf.Session() >>> print(sess.run(hello...
von aleph
Samstag 18. März 2017, 17:12
Forum: Allgemeine Fragen
Thema: Indizes sortierter Liste angeben
Antworten: 5
Zugriffe: 1299

Re: Indizes sortierter Liste angeben

OK, danke.
von aleph
Samstag 18. März 2017, 16:47
Forum: Tkinter
Thema: Zeichenfeld
Antworten: 4
Zugriffe: 2073

Zeichenfeld

Wie mache ich mit Tkinter ein Fenster, in dem man mit einem Pinsel als Mauszeiger einer bestimmten Dicke in ein Zeichenfeld zeichnen kann?
von aleph
Samstag 18. März 2017, 16:46
Forum: Allgemeine Fragen
Thema: Indizes sortierter Liste angeben
Antworten: 5
Zugriffe: 1299

Re: Indizes sortierter Liste angeben

Danke!

Code: Alles auswählen

liste = [0.5, 0.1, 0.3]
liste_mit_indizes = [(index, element) for index, element in enumerate(liste)]
sortierte_liste_mit_indizes = sorted(liste_mit_indizes, key=lambda item: item[1])
print(sortierte_liste_mit_indizes)
von aleph
Samstag 18. März 2017, 16:26
Forum: Allgemeine Fragen
Thema: Indizes sortierter Liste angeben
Antworten: 5
Zugriffe: 1299

Indizes sortierter Liste angeben

Ich habe eine Liste mit Gleitkommazahlen. Jetzt würde ich gerne jedes Listenelement x durch das Tupel (Index von x, x) ersetzen und diese neue Liste nach dem zweiten Eintrag jedes Tupels sortieren.

Wie mache ich sowas?
von aleph
Samstag 18. März 2017, 12:31
Forum: Installation/Konfigurieren
Thema: Installation von TensorFlow für Anaconda 4.3.1 64 auf Windows 10
Antworten: 2
Zugriffe: 2625

Re: Installation von TensorFlow für Anaconda 4.3.1 64 auf Windows 10

Folgendes geht auch nicht: C:\Anaconda\Scripts>pip install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-1.0.1-cp35-cp35m-win_amd64.whl tensorflow-1.0.1-cp35-cp35m-win_amd64.whl is not a supported wheel on this platform. Edit: Ich hab hier was gefunden...
von aleph
Samstag 18. März 2017, 11:19
Forum: Installation/Konfigurieren
Thema: Installation von TensorFlow für Anaconda 4.3.1 64 auf Windows 10
Antworten: 2
Zugriffe: 2625

Installation von TensorFlow für Anaconda 4.3.1 64 auf Windows 10

Ich will TensorFlow für Anaconda 4.3.1 64 Bit auf Windows 10 installieren. Hier ist die Anleitung: https://www.tensorflow.org/install/install_windows Ich gehe nach "Installing with native pip" vor. pip3 finde ich auf meinem System nicht, also habe ich gemacht: C:\Anaconda\Scripts>pip insta...
von aleph
Donnerstag 9. Februar 2017, 15:16
Forum: Links und Tutorials
Thema: Kostenlose E-Books von Packt
Antworten: 238
Zugriffe: 70882

Re: Kostenlose E-Books von Packt

Kann mir bitte jemand das E-Book Python Machine Learning per E-Mail zusenden? (Kontakt per PM)
von aleph
Mittwoch 1. Februar 2017, 17:03
Forum: Installation/Konfigurieren
Thema: numpy/scipy/h5py für Windows und Python 3.6.0
Antworten: 7
Zugriffe: 2946

Re: numpy/scipy/h5py für Windows und Python 3.6.0

Ich habe das mal wie dort beschrieben ausprobiert: https://www.jetbrains.com/help/pycharm/2016.3/configuring-available-python-interpreters.html https://docs.continuum.io/anaconda/ide_integration#pycharm Bloß geht das nicht: Obwohl Anaconda als Interpreter eingestellt ist, kann ich ihn nicht verwende...
von aleph
Mittwoch 1. Februar 2017, 06:35
Forum: Installation/Konfigurieren
Thema: numpy/scipy/h5py für Windows und Python 3.6.0
Antworten: 7
Zugriffe: 2946

Re: numpy/scipy/h5py für Windows und Python 3.6.0

Anaconda 4.3.0 für Windows unterstützt jetzt anscheinend Python 3.6.0: https://www.continuum.io/downloads

Muss ich einfach meine momentane Python-Installation deinstallieren und dann Anaconda installieren? Funktioniert das mit einer bestehenden PyCharm-Installation, oder muss ich da noch was machen?
von aleph
Mittwoch 1. Februar 2017, 04:07
Forum: Wissenschaftliches Rechnen
Thema: Floating Point Rechnen auf Grafikkarten
Antworten: 7
Zugriffe: 5780

Re: Floating Point Rechnen auf Grafikkarten

Kann man eigentlich mit Python einfach GPU-Computing verwenden?
von aleph
Samstag 21. Januar 2017, 06:37
Forum: Installation/Konfigurieren
Thema: numpy/scipy/h5py für Windows und Python 3.6.0
Antworten: 7
Zugriffe: 2946

Re: numpy/scipy/h5py für Windows und Python 3.6.0

Danke, ich werde warten (ich habe Zeit), bis Anaconda Python 3.6.0 unterstützt.
von aleph
Samstag 21. Januar 2017, 06:16
Forum: Wissenschaftliches Rechnen
Thema: RSA Verfahren
Antworten: 4
Zugriffe: 1857

Re: RSA Verfahren

Code: Alles auswählen

        self.y=(X^a)%N
Verwendet Python da die Square-and-Multiply modulare Exponentiation? Wenn nicht, ist das für große p,q extrem langsam.
von aleph
Donnerstag 19. Januar 2017, 18:47
Forum: Installation/Konfigurieren
Thema: numpy/scipy/h5py für Windows und Python 3.6.0
Antworten: 7
Zugriffe: 2946

numpy/scipy/h5py für Windows und Python 3.6.0

Was ist der einfachste Weg, numpy, scipy und h5py für Windows und Python 3.6.0 zu installieren?
von aleph
Donnerstag 19. Januar 2017, 16:00
Forum: Python mit anderen Sprachen verwenden
Thema: Cython mit Python 3.6.0?
Antworten: 2
Zugriffe: 2701

Re: Cython mit Python 3.6.0?

Danke!
von aleph
Donnerstag 19. Januar 2017, 15:41
Forum: Python mit anderen Sprachen verwenden
Thema: Cython mit Python 3.6.0?
Antworten: 2
Zugriffe: 2701

Cython mit Python 3.6.0?

Funktioniert Cython schon mit Python 3.6.0? Ich habe nur gefunden, dass es mit Python 3.2 läuft.
von aleph
Donnerstag 19. Januar 2017, 15:32
Forum: Installation/Konfigurieren
Thema: Python-Plugin für Visual Studio Code installieren
Antworten: 1
Zugriffe: 2847

Python-Plugin für Visual Studio Code installieren

Ich habe auf Windows 10 64 Visual Studio Code installiert, und dann die Installationsschritte vom Python-Plugin gemacht: https://marketplace.visualstudio.com/items?itemName=donjayamanne.python 1. Install the extension Make sure jedi and ctags are installed. 2. Install jedi using pip install jedi. 3....