created a templete folder that includes a nav bar.html but it is not showing...
enter image description herenav bar is not showing and giving this errorTemplateDoesNotExist at /navbar/ in the browser. i have created a folder and put in the nav bar as shown in the screenshot...
View ArticleLearning Python, need help making an object with user-given values that will...
I'm wrapping up an assignment that's due today, but I had an early shift this morning and my brain is turning into goo. What I'm doing here is creating a superclass (Employee) and a subclass...
View ArticleIssue Installing TensorFlow or PyTorch
I am trying to Install TensorFlow or PyTorch. I tried doing in a normal project and also a virtual project. These are the errors I get and I tried many different versions and reading documentation.pip...
View Articleflask celery throw error "urls must start with a leading slash"
I'm trying to implement the celery using flask and when i run this command celery -A src.celery_worker.celery_app worker --loglevel=debug to start the celery worker, it throwing error:Couldn't import...
View ArticleUnderstanding backpropagation with softmax
I am sorry if this is a stupid question, but I just can't wrap my head around this.I am trying to create my first neural network, which takes MNIST data (28x28) on which are hand-drawn numbers 0-9 and...
View ArticleNoReverseMatch at / .Reverse for ‘login’ not found. ‘login’ is not a valid...
I'm currently building a website using Django and have some issues, can someone please help me with this. Here is my urls.py file:from django.urls import path, includefrom . import viewsimport...
View ArticleUnable to select element from hidden bootstrap dropdown in Selenium (Python)
0In my project I have to select an item from the hidden bootstrap drop-down, however, I'm unable to select it. I have tried multiple ways but so far nothing works. I searched on YouTube and it was...
View ArticleHow to compare multiple cells data with multiple columns using python
I have an excel with some data like below image.enter image description here If you compare column A and column B WITH column D and E(A1,B1 present in D and E and A3,B3 present in D,E...) so these two...
View ArticleHandle NaN values in Scipy.mannwhitneyu (scipy.stats.mannwhitneyu)
I have a dataset of logIC50 values(say A) and another dataset of categorical clinical drug response (say B). There are mainly two important observations in B - sensitive and resistant. But there are...
View ArticleHow to add new tokens to an existing Huggingface tokenizer?
How to add new tokens to an existing Huggingface AutoTokenizer?Canonically, there's this tutorial from Huggingface https://huggingface.co/learn/nlp-course/chapter6/2 but it ends on the note of "quirks...
View ArticleMocking db connections and return values inside a flask route
I have the following flask app route:# routes.pyfrom flask import jsonifyfrom app.utils.db import db_connection, db_query@api.route("/some/route", methods=["GET"])@authdef...
View ArticleHow to find the coordinates in a text?
This is my some of text:`PalHebron Governorate, Palestine31°31′27″N 35°6′32″E / 31.52417°N 35.10889°E / / 31.52417; 35.10889 (Hebron/Al-Khalil Old Town)Cultural:(ii), (iv), (vi)20.6...
View ArticleAsyncio in corroutine RuntimeError: no running event loop in a discord bot code
Error in terminal after running bot.pyThis is the call_once_a_day() Can't seem to resolve the runtime error for a long time,the code is for a discord bot for stocks written in python and the...
View ArticleHow to log output of script
I want to log the output of my python file into a txt. I also want to still see it in the terminal too.I tried using sys.stdout, but it did not still have terminal output. To log it I open my log file...
View ArticleConvert a Python Date, Time or DateTime string into Associated Format
The ProblemI am working on a python application that analyzes user input, and attempts to work out how to regenerate it. Part of this is ingesting dates / times / datetimes of arbitrary formats as...
View ArticleHow to convert df to csv file using to_csv without quotation marks and...
I convert dfs to CSV file as folowing:df_test.to_csv('path', sep=';', index=False, header=False)The output rows in the file should be like this:smiles;6Instead:"smiles;6"Tried:df_test.to_csv('path',...
View ArticleAssignment problem using scipy optimize linprog to solve in Python
I am running into an error when trying to run my code for this Assignment Cost minimization problem in Python and was hoping someone could illuminate me on what I have done incorrectly here.The...
View ArticleIs Python a functional programming language or an object oriented language?
According to tutorialspoint.com, Python is a functional programming language."Some of the popular functional programming languages include: Lisp, Python, Erlang, Haskell, Clojure,...
View ArticleHow to resample a dataframe to stretch from start to enddate in intervals...
I have the following setup:I have sparse information about queries hitting my endpoint at certain timepoints in a csv file. I parse this csv file with dates according to date_format='ISO8601' in the...
View Articlecan't uninstall python 3.11.x on windows(no software/no path)
I'm having trouble uninstalling Python.There's no app, so it can't be uninstalled.There's no path, so it can't be uninstalled either.So, if I want to install another version of Python, it will overlap...
View Article