Skip to content

Commit 394ec21

Browse files
committed
add setup.sh
1 parent 499a572 commit 394ec21

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,16 @@
1515

1616
## 运行环境
1717

18+
OS: win10
19+
Python: 3.6
20+
21+
安装python依赖:
22+
23+
```sh
24+
chmod +x setup.sh
25+
./setup.sh
26+
```
27+
1828
## 数据集
1929

2030
- CTPN 训练使用的数据集格式与VOC数据集格式相同,目录格式如下:

setup.sh

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
pip install numpy scipy matplotlib pillow
2+
pip install xmltodict
3+
pip install opencv-python
4+
5+
# for gpu
6+
pip install tensorflow-gpu==1.9.0
7+
8+
# for cpu
9+
#pip install tensorflow==1.9.0
10+
11+
pip install keras

0 commit comments

Comments
 (0)