a smart doorbell
Commercial Engineer (not a real engineer btw)
Now ML Engineer
Love to tinker
I need HDMI out and my video card doesn't have it.
I need HDMI out and my video card doesn't have it.
Is there a way to enable the video out of the motherboard while a GPU is attached?
I need HDMI out and my video card doesn't have it.
Is there a way to enable the video out of the motherboard while a GPU is attached?
Is there still a free port on the GPU?
I need HDMI out and my video card doesn't have it.
Is there a way to enable the video out of the motherboard while a GPU is attached?
Is there still a free port on the GPU?
Yeah, but it's DisplayPort, I need HDMI
I need HDMI out and my video card doesn't have it.
Is there a way to enable the video out of the motherboard while a GPU is attached?
Is there still a free port on the GPU?
Yeah, but it's DisplayPort, I need HDMI
Why not just buy an adapter for €10?
I need HDMI out and my video card doesn't have it.
Is there a way to enable the video out of the motherboard while a GPU is attached?
Is there still a free port on the GPU?
Yeah, but it's DisplayPort, I need HDMI
Why not just buy an adapter for €10?
...
I need HDMI out and my video card doesn't have it.
Is there a way to enable the video out of the motherboard while a GPU is attached?
Is there still a free port on the GPU?
Yeah, but it's DisplayPort, I need HDMI
Why not just buy an adapter for €10?
I'm a poor, broke student and €10 is 4 days worth of food
I need HDMI out and my video card doesn't have it.
Is there a way to enable the video out of the motherboard while a GPU is attached?
Is there still a free port on the GPU?
Yeah, but it's DisplayPort, I need HDMI
Why not just buy an adapter for €10?
I'm too lazy to go out and too impatient to buy online
I need HDMI out and my video card doesn't have it.
Is there a way to enable the video out of the motherboard while a GPU is attached?
Is there still a free port on the GPU?
Yeah, but it's DisplayPort, I need HDMI
Why not just buy an adapter for €10?
Cuz it's too easy
I need HDMI out and my video card doesn't have it.
Is there a way to enable the video out of the motherboard while a GPU is attached?
Is there still a free port on the GPU?
Yeah, but it's DisplayPort, I need HDMI
Why not just buy an adapter for €10?
Listen here you lil shit
I need HDMI out and my video card doesn't have it.
Is there a way to enable the video out of the motherboard while a GPU is attached?
Is there still a free port on the GPU?
Yeah, but it's DisplayPort, I need HDMI
Why not just buy an adapter for €10?
It's personal now, I wanna know if it can be done
Risk of death
Risk of death
Code would be simple and easy to maintain
Risk of death
Code would be simple and easy to maintain
System would work reliably with no false positives
model = Sequential()
model.add(Conv2D(32, kernel_size=(3, 3), activation='relu', input_shape=input_shape))
model.add(Conv2D(64, kernel_size=(3, 3), activation='relu'))
model.add(MaxPooling2D(pool_size=(2, 2)))
model.add(Dropout(0.25))
model.add(Flatten())
model.add(Dense(128, activation='relu'))
model.add(Dropout(0.5))
model.add(Dense(num_classes, activation='softmax'))
model = Sequential()
model.add(Conv2D(32, kernel_size=(3, 3), activation='relu', input_shape=input_shape))
model.add(Conv2D(64, kernel_size=(3, 3), activation='relu'))
model.add(MaxPooling2D(pool_size=(2, 2)))
model.add(Dropout(0.25))
model.add(Flatten())
model.add(Dense(128, activation='relu'))
model.add(Dropout(0.5))
model.add(Dense(num_classes, activation='softmax'))
Credit Yung-Hsiang Shawn Chang
mfccs = np.mean(librosa.feature.mfcc(y=X, sr=sample_rate, n_mfcc=40).T,axis=0)
def algorithm_pipeline(X_train_data, X_test_data, y_train_data, y_test_data,
model, param_grid, cv=10, scoring_fit='neg_mean_squared_error',
do_probabilities = False):
gs = GridSearchCV(
estimator=model,
param_grid=param_grid,
cv=cv,
n_jobs=-1,
scoring=scoring_fit,
verbose=3
)
fitted_model = gs.fit(X_train_data, y_train_data)
if do_probabilities:
pred = fitted_model.predict_proba(X_test_data)
else:
pred = fitted_model.predict(X_test_data)
return fitted_model, pred
How to keep this from becoming the 598th piece of trash in an endless heap of failed, abandoned projects and misery