Newest Questions
24,148,511 questions
0
votes
0
answers
11
views
NewtonSoft Json.Schema - Prevent Description Attribute to be passed in object definitions
As you can see in the code example below, I'm trying to generate a json schema for the MotionConfigSchema class. It contains 2 fields (Yaw and Roll) that are of type Channel. I want to add a ...
0
votes
0
answers
4
views
Confused about the role of Activity's production exchange in Excel Importer
I often build LCA foreground inventory in Excel following the template provided by Brightway docs and tutorial.
I got used to not add an exchange of type "production" in my activities, ...
Tooling
0
votes
0
replies
5
views
The Most Efficient Way for Random Forest Models Serialization Memory-Wise
I am training sklearn.ensemble.RandomForestRegressor on 272k rows of data with 38 features.
{
"n_estimators": 200,
"n_jobs": -1,
"random_state": 42
"...
0
votes
0
answers
13
views
AttributeError: 'GroupedData' object has no attribute 'transformWithState'
I'm learning about custom state handlers in pyspark. I followed the documentation at this link. I created the following sample custom state handler. When running in spark 4.0.3 I face the following ...
Best practices
0
votes
1
replies
10
views
Bootstrap modal and focus
Is there a way to programmatically set focus on an element inside a shown bootstrap5 modal?
I am not interested in initial focus when showing a modal.
Rather, some user interaction inside the modal ...
0
votes
0
answers
18
views
The UI button doesn't open the new panel on the first click
using UnityEngine.UI;
using TMPro;
using UnityEngine;
public class ProvincePanelUI : MonoBehaviour
{
private UIManager uiManager;
public UnitPanelUI unitPanel;
public Transform ...
0
votes
0
answers
18
views
How to fix model parameter estimates MPlus bi-factor CFA
If not clear from the title, this code is in MPlus.
When I run the following code, I get the following issue, but I'm not sure how to fix it. The output doesn't give me fit statistics and I'm not sure ...
Best practices
0
votes
1
replies
53
views
What are the best practices for writing clean and readable Python code? Body:
I am a beginner in Python programming and I want to improve the quality of my code. I would like to know the best practices for writing clean, readable, and organized Python programs. For example, how ...
Tooling
1
vote
0
replies
13
views
How to read a group of a .zarr file using R?
I want to use R to read a group from a .zarr file, which was originally created using python's xarray.
in python when I do:
import xarray as xr
path_zarr = "path/to/data.zarr"
ds = xr....
0
votes
0
answers
17
views
MSAL Flutter (msal_auth 3.5.0) returns home tenant ID instead of client tenant ID in multi‑tenant setup
I’m integrating MSAL authentication in a Flutter app using the msal_auth: ^3.5.0 plugin with Flutter SDK 3.38.2.
I have a Microsoft account with my organization’s domain.
The same account has been ...
Advice
0
votes
0
replies
25
views
Oracle 19c: Best approach to optimize an API that repeatedly joins very large tables for count, pagination, and data retrieval
I'm looking for advice on the overall query design rather than optimization of a single SQL statement.
Environment
Oracle Database 19c
Large OLTP database
API is executed for a single tenant (:...
0
votes
0
answers
21
views
Why does container.put() overwrite concurrent updates to different columns in GridDB Cloud Python client?
I'm testing concurrent updates from two independent Python services.
Both services retrieve exactly the same row.
row = container.get(42)
The row initially contains
{
"id":42,
"...
0
votes
0
answers
33
views
Visual Studio 2026 with CMake not building for x86_64
I am currently trying to get a CMake project to compile 64 bit binaries instead of 32 bit ones in my CMake OpenGL Project in Visual Studio 2026 written in C.
If the project is not built with 64 bit ...
-5
votes
0
answers
23
views
Inconsistent RAG issue [closed]
I am working on a NL2SQL pipeline where user sends a query and we have to turn it into a SQL query so I have query expansion rules basically the normalization rules and chart generation rules, SQL ...
Advice
0
votes
4
replies
54
views
Concat multiple row values into for a single empId
Like I have user Data 50 emp inside each user has different skills 3 rows same user but skill column value is different
I want to concat the skill and display in single row for each user don't want ...