Nilesh Pandey

Results 23 comments of Nilesh Pandey

It may sound stupid but would you upload your preprocessed dataset used for training? thanks

![image](https://user-images.githubusercontent.com/32990329/55182849-f1fd4e80-5164-11e9-81a4-26e8028a975e.png) ![image](https://user-images.githubusercontent.com/32990329/55182859-f7f32f80-5164-11e9-8e75-4ba0829804ec.png)

Smile direction. ![image](https://user-images.githubusercontent.com/32990329/55183805-00e50080-5167-11e9-9663-65a1bbd0391e.png) ![image](https://user-images.githubusercontent.com/32990329/55183823-0a6e6880-5167-11e9-9f5a-367e22d104ff.png)

how did you find the direction of the change?

``` def _saveVideo_ffmpeg_(videourl:str,audiourl:str,title:str,path:str): try: video = ffmpeg.input(videourl) audio = ffmpeg.input(audiourl) ffmpeg.concat(video, audio, v=1, a=1).output(''.join([path,title,".mp4"])).run() except ValueError as e: logger.exception(e) ```

Hi, so where you guys able to make keras or tensorflow implementation? I did try your pytorch version code with cyclic learning rate. looking forward for keras implementation, if possible...

could you also explain what is inject_index and crossover do. if len(style) < 2: inject_index = [len(self.progression) + 1] else: inject_index = random.sample(list(range(step)), len(style) - 1) crossover = 0 for...