forked from Artem-Gulyaev/deep_learning_workshop_tasks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.txt
52 lines (40 loc) · 1.62 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
This repo contains datasets and Machine Learning
tasks/solutions related the the Machine Learning
workshop.
HOW TO WORK HERE (ACTION ITEMS):
1) Please create a SEPARATE BRANCH for >>yourself<<
and name it whatever you like.
2) If you need to commit your solution to the repo,
please do it in
*) YOUR BRANCH, not in the master,
*) subfolder of relevant workshop folder.
e.g. for John Smith:
<branch jsmith>
PROJECT_ROOT/workshop2/jsmith/mycoolsolution1.py
PROJECT_ROOT/workshop2/jsmith/mycoolsolution2.py
3) If you need to commit new data to the dataset,
please do it on MASTER BRANCH, to make your examples
be available to everyone.
4) If you have some reasonable and valuable improvement
for the whole project, please feel free to merge it
to the MASTER BRANCH after getting approval from majority
of participants.
REQUIREMENTS:
# numpy to be installed (for vectorized computations)
sudo pip install numpy
# matplotlib to be installed (for plotting the data)
sudo pip install matplotlib
# h5py to be installed (for H5 files support,
# which are designed to store nonuniform
# data structures, like various data-sets)
sudo pip install h5py
# [optional] pyinstaller to be installed (for standalone
# python scripts executables)
# NOTE: you don't install pyinstaller, then
# do not set GENERATE_PYTHON_STANDALONE_EXECUTABLES
# CMake parameter to True.
sudo pip install pyinstaller
FOR CONVENIENCE:
* You can add custom run procedures in your IDE, to
make it convenient to start relevant python script
directly from IDE.