Skip to content

Commit d82004d

Browse files
committed
add Readme
1 parent 1b0cca1 commit d82004d

File tree

3 files changed

+14
-28
lines changed

3 files changed

+14
-28
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ __pycache__/
88

99
# Distribution / packaging
1010
.Python
11+
env/
1112
research/
1213
build/
1314
develop-eggs/

README.md

+12-27
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,27 @@
11
# Models-implementation
2-
This is an implementation of CNN's architectures using TensorFlow. The main goal of this project is to develop solutions for healthcare, based on machine learning & deep learning.
2+
This is an implementation of CNN's architectures using TensorFlow. The main goal of this project is to support the creation of machine learning & deep learning Pipelines .
33

44
[lien](./setup.py)
55

66
## Description
77
The repository is composed of:
88
- Scripts for launching training and evaluation: It includes the basic tf.Session() and tf.train.MonitoredSession with different hooks and scaffold for distributed training.
99
- Folder Densenet: Regroup image preprocessing functions, script for a slim-like implementation of Densenet
10-
- Folder utils: Convert data to Tfrecord format, analyse your data with statistics.py
10+
- Folder utils: Convert data to Tfrecord format, analyse your data depending on its nature
1111

12-
## Usage example
13-
14-
15-
## Release History
16-
17-
*name*
18-
**name**
19-
~~sssss~~
12+
##Installation
2013

21-
`print(a.0)`
14+
First, install Tensorflow (Or/And tensorflow-gpu) in order to perform computation in cpu-only (In GPU)
15+
Then, in order to use "slim" package, which is developped under : [lien](https://www.github.com/tensorflow/models/research/slim),
16+
git clone the above repository. Copy the "research" folder and perform both setup.py :
17+
- under research folder
18+
- under slim folder (make sure you delete BUILD file before running setup.py)
2219

23-
```markdown
24-
import sys
25-
print(sys.argv)
26-
```
20+
As a last step, git clone Models-implementation repo :
21+
https://www.github.com/medtune/Models-implementation
2722

28-
a
29-
a
30-
a
31-
a
32-
a
33-
a
34-
a
35-
a
3623

24+
## Usage example
3725

38-
# titre 2
3926

40-
| e | eezaeazeaz |
41-
| --- | --- |
42-
| ezaeazeeaze | eazeazeaz |
27+
## Release History

yaml/config/config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ image_size : 224
3030
#Nombre d'époques pour l'entraînement
3131
num_epochs : 100
3232
#State your batch size
33-
batch_size : 8
33+
batch_size : 16
3434
#Learning rate information and configuration (Up to you to experiment)
3535
initial_learning_rate : 0.0001
3636
#Decay factor

0 commit comments

Comments
 (0)