I have a jupyter notebook that i am executing from command line using jupyter run Anomaly.ipynb now in my notebook i am exporting the dataframe as csv df.to_cs
I have been trying to vectorize a function that takes two 2D arrays and return a 2D array of the same shape, so that I can apply it element wise to two 4D array
When pipenv install uwsgi This error comes, ld: library not found for -lintl I guess it requires X-code library ? I tried this as well $xcode-select --install x
When pipenv install uwsgi This error comes, ld: library not found for -lintl I guess it requires X-code library ? I tried this as well $xcode-select --install x
I have a problem and I can't figure it out. I have the following code that must save the data that is sent to him by an http request, first on the aws bucket an
I'm trying to get each class names with its corresponding value from each div listing. From this page: https://www.dotproperty.id/en/properties-for-sale/riau-is
I want to calculate a hash (md5) from a .CSV in pyspark stationed in ADLS gen2. It seems that pyspark can't transform a df into bytes. import hashlib df = spar
Why does calling spyder as 'root' on cli execute the spyder '5' version software, while doing the same as a normal 'user' executes spyder '4'? How do I make it
I would like to calculate the percentage of overlap between 2 ranges. for example: I have two lists x and y x ['567.630', '592.927'] y ['593.000', '618.297'] In
I'm trying to get each class names with its corresponding value from each div listing. From this page: https://www.dotproperty.id/en/properties-for-sale/riau-is
i have programmed a little a Kivy/Python-program that opens an image and displays it. But it can cleary be seen, that there is a drop in image quality 2, when c
code working fine on parrot os but showing error on ubuntu def count_down(count): count_min = math.floor(count/60) count_sec = count%60 if count_min<10:
I need to fix this error, I'm not very good with APIs. I am keen to understand how to fix it, since I'm trying to learn Python. The code: @client.command() asyn
import speech_recognition as sr import gtts from playsound import playsound import os r = sr.Recognizer() ACTIVATION_COMMAND = "hey sam" def get_audio():
I've been having this main issue in my code i've been trying to compile. I am trying to make a GUI-based application, utilizing the tkinter and pandas libraries
I have two columns which have delimiters: column1 column2 a,b,c,d e,f,g,h h,i j,k l,m,n o,p,q ... ... I am trying to group them as ae
# GRADED FUNCTION: two_layer_model def two_layer_model(X, Y, layers_dims, learning_rate = 0.0075, num_iterations = 3000, print_cost=False): """ Impleme
The nginx on my Google Linux server is not printing error logs in the file /var/log/nginx/error.log. The content of my /etc/nginx/sites-available/app file is: s
I have implemented a neural network from scratch. I have taken random values as both input and output. When I use a single layer( with sigmoid activation) the n
model = Sequential() model.add(LSTM(100, input_shape = [X_sequence.shape[1], X_sequence.shape[2]])) model.add(Dropout(0.5)) model.add(Dense(1, activation="sigmo