Skip to content
GitLab
Explorer
Connexion
Navigation principale
Rechercher ou aller à…
Projet
AutoKara
Gestion
Activité
Membres
Labels
Programmation
Tickets
Tableaux des tickets
Jalons
Wiki
Wiki externe
Code
Requêtes de fusion
Dépôt
Branches
Validations
Étiquettes
Graphe du dépôt
Comparer les révisions
Extraits de code
Compilation
Pipelines
Jobs
Planifications de pipeline
Artéfacts
Déploiement
Releases
Registre de conteneur
Registre de modèles
Opération
Environnements
Surveillance
Incidents
Analyse
Données d'analyse des chaînes de valeur
Analyse des contributeurs
Données d'analyse CI/CD
Données d'analyse du dépôt
Expériences du modèle
Aide
Aide
Support
Documentation de GitLab
Comparer les forfaits GitLab
Forum de la communauté
Contribuer à GitLab
Donner votre avis
Raccourcis clavier
?
Extraits de code
Groupes
Projets
Afficher davantage de fils d'Ariane
bakaclub
AutoKara
Validations
0b245bc5
Valider
0b245bc5
rédigé
5 years ago
par
Kubat
Parcourir les fichiers
Options
Téléchargements
Correctifs
Plain Diff
Update README.md
parent
ba7e363c
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
Modifications
1
Masquer les modifications d'espaces
En ligne
Côte à côte
Affichage de
1 fichier modifié
README.md
+48
-2
48 ajouts, 2 suppressions
README.md
avec
48 ajouts
et
2 suppressions
README.md
+
48
−
2
Voir le fichier @
0b245bc5
#
a
uto
k
ara
#
A
uto
K
ara
AI that can time automatically karas.
AI that can time automatically karas.
\ No newline at end of file
# Some documentation first
-
https://realpython.com/python-virtual-environments-a-primer/
-
https://www.pyimagesearch.com/2016/11/14/installing-keras-with-tensorflow-backend/
# Installation
## Python
You need python 3 with the tensorflow library. We will set up a virtual envireonment to not mess up with the system.
To do that you will need
[
virtualenv
](
https://virtualenv.pypa.io/en/stable/
)
and
[
virtualenvwrapper
](
https://virtualenvwrapper.readthedocs.io/en/latest/
)
.
One way to do it, in the correct directory (the project's one), enter the commands:
```
bash
$
python3
-m
venv
env
# create the virtual envireonment, do it once
$
source env
/bin/activate
# use the virtual envireonement
# Here goes the install commands
$
pip
install
--upgrade
tensorflow
$
pip
install
numpy scipy
$
pip
install
scikit-learn
$
pip
install
pillow
$
pip
install
h5py
$
pip
install
keras
$
deactivate
# quit the virtual envireonment
```
Or, an other way to do it:
```
bash
$
mkvirtualenv keras_tf
-p
python3
# create the virtual envireonment, do it once
$
workon keras_tf
# use the virtual envireonement
# Here goes the install commands
$
pip
install
--upgrade
tensorflow
$
pip
install
numpy scipy
$
pip
install
scikit-learn
$
pip
install
pillow
$
pip
install
h5py
$
pip
install
keras
# don't know how to quit, find it yourself
```
\ No newline at end of file
Ce diff est replié.
Cliquez pour l'agrandir.
Aperçu
0%
Chargement en cours
Veuillez réessayer
ou
joindre un nouveau fichier
.
Annuler
You are about to add
0
people
to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Enregistrer le commentaire
Annuler
Veuillez vous
inscrire
ou vous
se connecter
pour commenter