2,207,694 questions
Tooling
0
votes
1
replies
58
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
53
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
37
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
23
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
61
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
4
replies
73
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
51
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
35
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
65
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
23
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 %...
-10
votes
0
answers
77
views
I need to disperse data per day [closed]
I have 80 millions of rows per week and I need to disperse per day. Which tool is the most recommended? SQL Server is not good, it takes a long time to calculate and insert data. I thought about using ...
0
votes
0
answers
38
views
Python modules from .pth files overwrites editable install
I have a „central“ Python 3.12 venv that is shared by several users.
I wanted to set up a local clone of this environment for developing. To be clever about it, I only set up an empty environment and ...
5
votes
1
answer
51
views
Display problem using UnevaluatedExpr in Sympy with python
When I add another expression to Unevaluated(), then try to print it, the unevaluated output is surrounded by ().
The problem comes when the first coefficient in the resulting expression to be ...
3
votes
1
answer
75
views
How I can display a menu with spellcheck suggestions?
I am making a self spellckeck tkEntry:
import tkinter as tk
import language_tool_python
from lib.widgets.text.pastable_entry import PasteableEntry
class SpellCheckEntry(PasteableEntry):
def ...
3
votes
1
answer
49
views
python argparse bug? 'nargs' and 'action' crashes with unexpected keyword 'nargs'
Sanity check, please.
This code:
import argparse
def parse_cmd_line():
parser = argparse.ArgumentParser( )
parser.add_argument('-c', '--create', nargs='*', action="store_true")
...