saeed68gm

Results 11 comments of saeed68gm

Did this ever get anywhere? I have a similar issue...

Thanks for the answer @Thomasforweb . I tried it and it didn't really work for me. My module got undefined. Although I only added timer to public->controllers->mycontroller.js Is this because...

Here is the code for controller after adding timer: ``` var apptyme = angular.module('mean.tyme', ['timer']); apptyme.controller('TymeController', ['$scope', '$location', 'Global', 'Tyme', 'MeanUser', function($scope, $location, Global, Tyme, MeanUser) { $scope.global = Global;...

Hey @Thomasforweb here is the link to the plunker. This is only the public folder of my package in mean.io: https://plnkr.co/edit/5nxxGDDJbFUsUTHyfsBZ

I tried following this tutorial: http://storybynumbers.com/meanio-asset-management.html I added these three lines to config/assets.js: ``` "bower_components/moment/moment.js", "bower_components/humanize-duration/humanize-duration.js", "bower_components/angular-timer/dist/angular-timer.min.js", ``` And this line to tyme/app.js: `Tyme.angularDependencies(['timer']);` Now when I try to inject...

Do we need to update the histogram summary functions? I get an error saying that the functions are deprecated and are now part of the summary package: https://www.tensorflow.org/api_docs/python/tf/summary/histogram

I read that this issue is caused because tf.nn.max_pool_with_argmax is only supported on GPU. @Joker316701882 if you post your code for the graph, I can fix the issue

Looks like some issue with the new tensorflow commits of Conv2D definition as well. They change the property name of stride to "dilations" and it's causing some errors because the...

@LRLLRL @YedidyahD I did some more research and it looks like the operation MaxPoolWithArgmax is missing from tensorflow cpu operations. So my suggestion is that you modify the source code...

@ginger0106 I haven't tried the solution, but it seems strange as I don't see a fc7 layer in the prototxt file. There is only one fully connected layer with 1000...