Python3 Module has no asset erros
I have never come across this before when working with Python. When I type:import areas - no errors - import workswhen I type:areas.triangle(3,5) : I get this error:AttributeError: module 'areas' has...
View ArticleProblem updating shopify price with selenium bot
I have created a bot to auto-update my product prices on Shopify with Selenium Python. I told this bot to locate the price_element clear it, and then send the new prices as a 2 decimal place formated...
View ArticlePairwise differences between rolling average values for different window widths
This code aims to compute the rolling average of a signal for a range of window widths (i.e. how many points are averaged), and then calculate the sum of all pairwise differences between averages at...
View ArticleMultithreading with Specified Condition in Python
I am currently working on a Raspberry Pi project where I am using an analog to digital converter (ADC), and in my code, I would like the ADC to receive information continuously and fill a list with the...
View ArticleProblem in importing UMAP while importing bertopic
So everything worked fine with my code and then suddenly the hdbscan was not working anymore, than I re-instaled all packages and now I have a problem with umap.I did what was suggested here and in...
View ArticleProblem with pyinstaller in Python 3.12, don't recognize the import
The problem is that im trying to use pyinstall, so i ran pip install pyinstaller as a first option but when i import the library says the next error:Import "pyinstaller" could not be...
View ArticleHow can I differentiate between a PyTorch Tensor and a nested tensor?
Recently, PyTorch introduced the nested tensor. However, if I create a nested tensor, e.g.,import torcha = torch.randn(20, 128)nt = torch.nested.nested_tensor([a, a], dtype=torch.float32)and then look...
View ArticleHow to separate 2 values in a singular array point, source is an HDF5 file...
I have 2 values in a single bracket of an array, left being I and right being Q values for signals. The hdf5 file is very large and currently I'm trying to just separate the 2 values within each...
View Articletyping Protocol valid for Enumerator member
What is the right typing to accept an Enumerator Type which should match a Protocol ?I mean the Enumerator should have members defined inside a ProtocolHere is a simplified code exemple.from typing...
View ArticleRewrite for-loop vectorized using Numpy
I have the following code:def obj(f, pis, rs): out = np.zeros(f.size) for pi, r in zip(pis, rs): out += r * pi / (1 + np.dot(r, f)) return outp = np.array([0.42, 0.08, 0.42, 0.08])r = np.array([[-1.0,...
View ArticleFastAPI array of JSON in Request Body for Machine Learning prediction
I’m working with FastAPI for Model inference in Machine Learning, so I need to have as inputs an array of JSON like this:[ {"Id":"value","feature1":"value","feature2":"value","feature3":"value" },...
View ArticleValueError: Input 0 of layer "sequential_3" is incompatible with the layer:...
I am building a 1d CNN model which can input 10 second long ecg frames and detect a specific heart disorder. I have 130,464 training data and 32,616 testing data. My input data is of the shape...
View Articleget_attribute method doesn't work on Python with Selenium
So, I'm having trouble getting a element from a web page with Selenium and PythonThe div in question is:<div class="col-sm-6 col-lg-4 broker-details"><div class=" "><h6>MICHAEL...
View Articlehow to get Json object in a nested Json data
from the below Json data I need to fetch values corresponding to AAAA and BBBB and assign it to variables i.e. List_AAAA = [9090, 9091] and List_BBBB = ['MONACO' , 'NICE']{"id": 1234,"name":...
View Articleipynb python file to executable exe file
I am using jupyter notebook for coding, hence my file format is ipynb. I would like to turn this piece of code into an executable file .exe for later uses.So far I have managed to get the exe file by...
View ArticleSetting grouped barplot colour based on the catagory and not the grouping...
I am trying to change how the colours are displayed when plotting a grouped barplot with seaborn.In the following minimal example,you get the output you would expect, the colour being set on the group....
View ArticleHow to track the value of target function during ortools...
I'm using ortools SCIP to solve a really large mixed-integer-programming problem.That problem costs more than 30 minutes.The SCIP uses branch-cut-and-price to solve the mixed-integer-programming...
View ArticleConverting a complex PDF schedule table to JSON in Python, handling empty...
I am trying to convert a PDF containing a university department's class schedule into JSON format using Python. The table in the PDF is similar to the one shown in the attached image. I have tried...
View Article"This result object does not return rows" error with pandas .read_sql()
I am trying to simply delete records that are from the previous month in a sql table. df_month_exist = pd.read_sql(''' DELETE FROM DATATABLE WHERE RECORD_MONTH = DATEADD(MONTH, DATEDIFF(MONTH, -1,...
View ArticleGradient color on broken barh plot in matplotlib
I am trying to reproduce this:using this code:import matplotlib.pyplot as pltimport numpy as npimport pandas as pdfrom matplotlib.lines import Line2Dcolors = ["#CC5A43","#5375D4"]*3data = {"year":...
View Article