2,207,696 questions
Advice
0
votes
7
replies
100
views
How do I optimize my code to solve SAT with a Rubik's cube in O(n²)?
In short, I created an algorithm that solves SAT by modeling it with a generalized Rubik's cube, and it doesn't matter if it's not the most optimal Rubik's cube solution — so I wrote the paper.
Paper ...
0
votes
1
answer
34
views
Why the right click menu not shown when I use an async service in order to check
I am using a thread and I queue the requests for language tool:
import threading
import queue
import language_tool_python
class SpellCheckService:
def __init__(self, pure_english:bool=False):
...
Advice
0
votes
9
replies
75
views
Hey guys How to create leaderboard for my quiz app in python
can someone guide me or explain how to create a leaderboard for my quizz app game, fist of all, i started this quizz app to study for my business exam, however i came up with an warmup ideas and also ...
Advice
0
votes
8
replies
66
views
dict of count JSON
I have tried to make a a function get_statistics to make a dictionary of the JSON persistence. I started doing it manually, but it wants me to do it automatically. Currently stuck making my code of ...
Advice
0
votes
2
replies
93
views
Career Change Help - Help a brotha
I’m 28, a Physics graduate, and for the last 2.5 years I’ve been working as a consultant in the supply chain space. Most of my day-to-day work is dealing with data and building visualisations in Power ...
Tooling
0
votes
1
replies
76
views
Which tools are best for finding high-quality backlink opportunities for a new website
Running US-focused tech blog ezoon.co from . Covering AI startups, Silicon Valley news, VC funding. Need tools for: 1. Scraping TechCrunch, VentureBeat, CNBC tech from US sources 2. Auto-generate ...
Tooling
0
votes
1
replies
71
views
Which tools are best for finding high-quality backlink opportunities for a new website?
Running US-focused tech blog ezoon.co from Pakistan. Covering AI startups, Silicon Valley news, VC funding. Need tools for: 1. Scraping TechCrunch, VentureBeat, CNBC tech from US sources 2. Auto-...
Tooling
0
votes
3
replies
46
views
Advice on tools to code web-GUI or standalone-app to control iterative LLM finetuning workflow?
I’m fine-tuning LLMs using PyTorch on a workstation’s GPU that’s physically accessible in our office. I’d like to build a GUI—either a web-based one accessible from any office computer or a standalone ...
Advice
0
votes
0
replies
25
views
Chronos2: Training data
After reading some articles it is still unclear to me why exactly the AutoGluon tutorial for Chronos2 creates training data. If I am not wrong, foundation models use transfer learning and the weights ...
1
vote
1
answer
70
views
Initialize interpeter before it runs main script
I need to run python script with costly initialization (0.5 seconds). To mitigate initialization time multiple interpreters are pooled, so when need to execute arises, interpreter is taken from pool ...
Advice
0
votes
5
replies
89
views
Can I execute a function whenever a Python class has its properties changed?
In the Python program my colleagues and I are writing, we have one very important class that needs to be protected against having its properties changed erroneously. This class controls a lot of ...
Advice
0
votes
4
replies
60
views
An AI Assistant Chatbot based on RAG for University?
so one of the biggest hurdles I currently face is navigating through my University website to find the relevant data like fee structure for my course(which is updated bi annually) and other ...
Advice
0
votes
1
replies
40
views
Numerical meaning of Lightgbm Gain feature importance
I am using lightgbm to solve a binary classification problem. After training process, I use gain importance to analyse the model. The top 20 feature importance (gain) looks like the following
| ...
Advice
0
votes
2
replies
75
views
Backend Roadmap with python
I'm currently with minimal knowledge of python. I'm aspiring to become a heavy backend engineer using python language for the start, please I need a precise advice on how to start. And what to learn ...
0
votes
0
answers
28
views
Databricks %run command not using a variable value from called notebook
Question: When Notebook_A is executed, it's not displaying value of my_variable. Why?
Remarks: I though you can use %run command to make variables defined in one notebook available in another. The %...