Posts

Showing posts from March 28, 2019

Liste der Einträge im National Register of Historic Places im Hidalgo County (Texas)

Image
Die Liste der Registered Historic Places im Hidalgo County führt alle Bauwerke und historischen Stätten im texanischen Hidalgo County auf, die in das National Register of Historic Places aufgenommen wurden. Aktuelle Einträge | Lfd. Nr. Name im NRHP Bild Datum der Eintragung Adresse/Lage Ort NRHP-ID Beschreibung 1 Border Theater 49980828 28. August 1998 905 North Conway Blvd. Mission 98001124 2 Casa de Palmas 50030418 18. April 2003 101 N. Main St. McAllen 03000276 3 Cine El Rey 50020426 26. April 2002 311 S. 17th St. McAllen 02000402 4 Cortez Hotel 50041223 23. Dezember 2004 260 S. Texas Ave. Weslaco 04001397 5 El Sal Del Rey Archeological District 49790827 27. August 1979 Address Restricted Linn 79002977 6 John Shary Building 50020830 30. August 2002 900 Doherty Mission 02000907 7 La Lomita Historic District 49750528 28. Mai 1975 5 mi. S of Mission on FM 1016 Mission 75002165 8 Lomita Boulevard Commercial Historic District 49980918 18. September 1998 400 to 700 Blocks S. Conway

Keras finetunning InceptionV3 tensor dimension error

Image
0 I am trying to finetune a model in Keras: inception_model = InceptionV3(weights=None, include_top=False, input_shape=(150, 150, 1)) x = inception_model.output x = GlobalAveragePooling2D()(x) x = Dense(256, activation='relu', name='fc1')(x) x = Dropout(0.5)(x) predictions = Dense(10, activation='softmax', name='predictions')(x) classifier = Model(inception_model.input, predictions) ####training training training ... save weights classifier.load_weights("saved_weights.h5") classifier.layers.pop() classifier.layers.pop() classifier.layers.pop() classifier.layers.pop() ###enough poping to reach standard InceptionV3 x = classifier.output x = GlobalAveragePooling2D()(x) x = Dense(256, activation='relu', name='fc1')(x) x = Dropout(0.5)(x) predictions = Dense(10, activation='softmax', name='predictions')(x) classifier = Model(classifier.input, predictions) But I get the error: ValueErr

Liste der Einträge im National Register of Historic Places im Henderson County (Texas)

Image
Die Liste der Registered Historic Places im Henderson County führt alle Bauwerke und historischen Stätten im texanischen Henderson County auf, die in das National Register of Historic Places aufgenommen wurden. Aktuelle Einträge | Lfd. Nr. Name im NRHP Bild Datum der Eintragung Adresse/Lage Ort NRHP-ID Beschreibung 1 Faulk and Gauntt Building 49800609 0 9. Juni 1980 217 N. Prairieville St. Athens 80004135 Weblinks |   Commons: National Register of Historic Places in Henderson County, Texas  – Sammlung von Bildern, Videos und Audiodateien Suchmaske Datenbank im National Register Information System, National Park Service .mw-parser-output div.NavFrameborder:1px solid #A2A9B1;clear:both;font-size:95%;margin-top:1.5em;min-height:0;padding:2px;text-align:center.mw-parser-output div.NavPicfloat:left;padding:2px.mw-parser-output div.NavHeadbackground-color:#EAECF0;font-weight:bold.mw-parser-output div.NavFrame:afterclear:both;content:"";display:block.mw-parser-output div.Nav

Single Server (Replica) Availability Group

Image
6 2 First time caller, long time listener. I have a situation where I need to stand up a single server Availability Group for around 2 months (i.e. move DBs to a new server, rebuild the current server, and add the rebuilt current server to the AG). Both servers are physical and have roughly the same specs. Windows Server 2016, SQL Server 2014. My thought was to stand up the AG with the listener now so that when the current server is rebuilt and added to the group, we wouldn't need to add the listener then and update all of our apps/clients (i.e. that would force two migrations, one to the new server, one for the new listener). I've tested this situation on a few test servers and its working as expected. I also can't foresee a reason not to do this, but I thought it would be worth the community ask since we're talking about Production DBs. My question is has anyone tried this and had any issues? Would anyone recommend against this solution. Thanks. sql-