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 59b3167 commit 9897f30
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 13 deletions.
14 changes: 9 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ You only need to implement you ideas and don't do anything with training
framework, multiply-gpus, checkpoint, process visualization, performance
evaluation and so on.

Guide: [https://dingguanglei.com/jdit](https://dingguanglei.com/jdit)
Guide: [https://dingguanglei.com/tag/jdit](https://dingguanglei.com/tag/jdit)

Docs: [https://jdit.readthedocs.io/en/latest/index.html](https://jdit.readthedocs.io/en/latest/index.html)

Expand Down Expand Up @@ -259,13 +259,17 @@ easily by using jdit framework. Jdit framework can deal with
## More
For other templates, you can see and learn form here.

[Classification Guide](https://dingguanglei.com/jdit)
Guide List:

[Gan for Generation Guide](https://dingguanglei.com/jdit)
* [Classification](https://dingguanglei.com/jdit_start)

[Gan for Pix2pix Guide](https://dingguanglei.com/jdit)
* [Generative Adversarial Networks](https://dingguanglei.com/jdit_gan)

[Parallel Task Guide](https://dingguanglei.com/jdit)
* [Gan for Generation](https://dingguanglei.com/jdit_gan_generataion)

* [Gan for Pix2pix](https://dingguanglei.com/jdit_gan_pix2pix)

* [Parallel Task](https://dingguanglei.com/jdit_parallel)

......

Expand Down
6 changes: 0 additions & 6 deletions jdit/parallel/parallel_trainer.py
Original file line number Diff line number Diff line change
Expand Up @@ -305,12 +305,6 @@ class SupParallelTrainer(object):
"""

# def __new__(cls, unfixed_params_listsss, train_func=None):
# instance = super(SupParallelTrainer, cls).__new__(cls)
# if not train_func:
# instance.build_task_trainer = MethodType(train_func, instance)
# return instance

def __init__(self, unfixed_params_list: list, train_func=None):
"""
Expand Down
4 changes: 2 additions & 2 deletions jdit/trainer/instances/fashionClassParallelTrainer.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,10 @@ def trainerParallel():
},

{'task_id': 2, 'gpu_ids_abs': [],
'depth': 4, 'lr': 1e-3,
'depth': 4, 'lr': 1e-2,
},
{'task_id': 2, 'gpu_ids_abs': [],
'depth': 8, 'lr': 1e-2,
'depth': 8, 'lr': 1e-3,
},
]
tp = SupParallelTrainer(unfixed_params, build_task_trainer)
Expand Down

0 comments on commit 9897f30

Please sign in to comment.