Posts

Showing posts from December 27, 2018

How to use tile function in Keras?

Image
1 I want to build a neural network with Keras,but I got a error: AttributeError: 'NoneType' object has no attribute '_inbound_nodes' ,and this is my example code: from keras.layers.merge import concatenate img = Input(shape=(64,64,3)) text_input = Input(shape=(192,)) text_emb = Reshape(target_shape=(1, 1, 256))(Dense(256, activation='relu')(text_input)) tiled_emb = keras.backend.tile(text_emb, (-1, 64, 64, 1)) img_feat = Conv2D(400,4,padding='same')(img) con = concatenate([tiled_emb,img_feat]) conv4 = Conv2D(512, 1)(con) flat = Flatten()(conv4) validity = Dense(1, activation='sigmoid')(flat) Model([img, text_input], validity) tensorflow keras share | improve this question asked Nov 11 at 16:01 IceLee 45 5 add a comment  |  1 I want to build a neural network with Keras,but I got a error: AttributeError: 'NoneType' object has no attribute '_inbound_nodes' ,and this is my

Auslandschinesen

Image
Dieser Artikel oder Abschnitt bedarf einer Überarbeitung . Näheres ist auf der Portal Diskussion:China#Auslandschinesen angegeben. Hilf mit, ihn zu verbessern, und entferne anschließend diese Markierung. Tor zur Chinatown von Montreal: Inschrift: " 唐人街 , Tángrénjiē " wörtl.: "Straße der Tang-Menschen" Als Auslandschinesen , gelegentlich auch Überseechinesen , werden Chinesen bezeichnet, die außerhalb der Volksrepublik China und der Republik China auf Taiwan leben. Schätzungen sprechen heute von etwa 40 Millionen Auslandschinesen. Im Sprachgebrauch des Chinesischen wird allgemein unterschieden zwischen: Haiwai Huaqiao ( 海外華僑  /  海外华侨 , hǎiwài huáqiáo ) als Menschen mit einem Pass der VR China oder der Republik China, die dauerhaft im Ausland leben; und Haiwai Huaren ( 海外華人  /  海外华人 , hǎiwài huárén ) als Menschen mit chinesischer Herkunft, die die Staatsbürgerschaft des Landes in dem sie leben angenommen haben. Auslandschinesen sind zum größten Teil ethnische Han-Ch

Editing a User LocalStorage using AngularJS

Image
0 I am creating a webpage where I can perform CRUD functions using localStorage on AngularJS. So far I am able to ADD, DELETE users and save them to the localStorage. But I am unable to save the edited user details in the localStorage. The " $scope.selectUser = function (user) " is the function I use for editing a user. Editing a user works, but they get erased on web page refresh. Which means the data of the edited user isn't getting stored. Looking for someone to guide me. Thanks in advance var myApp = angular.module("myApp", ); myApp.controller("myController", function ($scope) console.log("in controller..."); $scope.newUser = ; $scope.info = ""; if (localStorage.getItem("users") === null) $scope.users = [ email: "John@yahoo.com", firstName: "John", lastName: "Doe", contact: "281-283-2480", role: "Supplier-Admin", company: "Apple" , email: