Skip to content

Commit

Permalink
md
Browse files Browse the repository at this point in the history
  • Loading branch information
dingguanglei committed Dec 27, 2018
1 parent 8d754fd commit 59b3167
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 12 deletions.
23 changes: 12 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
![logo](https://github.com/dingguanglei/jdit/blob/master/resources/logo.png)
![Jdit](https://raw.githubusercontent.com/dingguanglei/jdit/master/resources/logo.png)

---

Expand Down Expand Up @@ -44,7 +44,7 @@ This method is recommended, because you can keep the newest version.
3. Install
You will find packages in `jdit/dist/`. Use pip to install.
```
pip install dist/jdit-0.0.3-py3-none-any.whl
pip install dist/jdit-0.0.6-py3-none-any.whl
```

### From pip
Expand Down Expand Up @@ -190,50 +190,51 @@ This will be shown in the tensorboard.

### Learning curves

![tb_scalars](https://github.com/dingguanglei/jdit/blob/master/resources/tb_scalars.png)
![tb_scalars](https://raw.githubusercontent.com/dingguanglei/jdit/master/resources/tb_scalars.png
)

### Model structure

![tb_graphs](https://github.com/dingguanglei/jdit/blob/master/resources/tb_graphs.png)
![tb_graphs](https://raw.githubusercontent.com/dingguanglei/jdit/master/resources/tb_graphs.png)

### Dataset

You need to apply ``self.watcher.embedding(data, data, label)``)

![tb_projector](https://github.com/dingguanglei/jdit/blob/master/resources/tb_projector.png)
![tb_projector](https://raw.githubusercontent.com/dingguanglei/jdit/master/resources/tb_projector.png)

### Log
All of these will be saved in ``log/fashion_classify``, because of parameter ``logdir = "log/fashion_classify"``.

![Log list](https://github.com/dingguanglei/jdit/blob/master/resources/class_log.jpg)
![Log list](https://raw.githubusercontent.com/dingguanglei/jdit/master/resources/class_log.jpg)

#### Process data
For the most thing that we care about are training process and valid process data.
They are saved in ``Train.csv`` and ``Valid.csv``. The following are the content.

**Train.csv**

![Valid data](https://github.com/dingguanglei/jdit/blob/master/resources/class_valid.png)
![Valid data](https://raw.githubusercontent.com/dingguanglei/jdit/master/resources/class_valid.png)

**Valid.csv**

![Training data](https://github.com/dingguanglei/jdit/blob/master/resources/class_train.png)
![Training data](https://raw.githubusercontent.com/dingguanglei/jdit/master/resources/class_train.png)

#### Model
The info of model will be saved in ``net.csv``. (The file name is given by your variable name(``net``).)
If your model changes during the process, it will be recorded in this file.

![Model info](https://github.com/dingguanglei/jdit/blob/master/resources/class_net.png)
![Model info](https://raw.githubusercontent.com/dingguanglei/jdit/master/resources/class_net.png)

#### Learning rate trace
From file ``opt.csv`` you can see the learning rate variation. It will be saved only feature changed.

![Optimizer info](https://github.com/dingguanglei/jdit/blob/master/resources/class_opt.png)
![Optimizer info](https://raw.githubusercontent.com/dingguanglei/jdit/master/resources/class_opt.png)

#### Dataset info
From file ``datasets.csv`` you can see the information of your dataset.

![Dataset info](https://github.com/dingguanglei/jdit/blob/master/resources/class_dataset.png)
![Dataset info](https://raw.githubusercontent.com/dingguanglei/jdit/master/resources/class_dataset.png)

#### Others

Expand Down
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@

setup(
name="jdit", # pypi中的名称,pip或者easy_install安装时使用的名称,或生成egg文件的名称
version="0.0.4",
version="0.0.6",
author="Guanglei Ding",
author_email="dingguanglei.bupt@qq.com",
maintainer='Guanglei Ding',
maintainer_email='dingguanglei.bupt@qq.com',
description=("Make it easy to do research on pytorch"),
# long_description=open('docs/source/index.rst').read(),
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
license="Apache License 2.0",
keywords="pytorch research framework",
platforms=["all"],
Expand Down Expand Up @@ -42,6 +43,9 @@
'Programming Language :: Python :: Implementation',
'Programming Language :: Python :: 3.6',
# 'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Visualization '
],
# 此项需要,否则卸载时报windows error
zip_safe=False
Expand Down

0 comments on commit 59b3167

Please sign in to comment.