Newest Questions
24,178,346 questions
0
votes
0
answers
5
views
I am having trouble training a SetFit model using a variety of embedding models and logistic regression
First post on here and I am a bit new to setfit as I have only trained one model with it but I don't think I am encountering a beginner problem. So here is the scoop. I was training a an embedding ...
1
vote
0
answers
7
views
Does Move to/from Control/Debug Registers ignore the field mod?
Description of this operation says that the 2 bits in the mod field of ModR/M are ignored.
In my disassembler I want to simplify it and just OR the third byte of opcode 0F 20 /r with value 0xC0, which ...
Tooling
0
votes
0
replies
2
views
Advices for parsing OCLs
I'm thinking about passing OCLs for creating complex search expressions to a web API. OCL is restricted by the MDriven model so that the risc of injections is less than with SQL but it still exists. ...
-1
votes
0
answers
19
views
How to apply effects to audio that is streamed via Apple Music
I am trying to apply basic effects such as pitch and reverb to Apple Music songs that the user selects via MusicKit. The problem is that MusicKit is solely for playing content and there is no audio ...
-3
votes
0
answers
19
views
Need help configuring email for user verification [closed]
I'm currently trying to make user verification with email address. I am hosting the product on Vercel while using Hostinger email service to send out emails for verification when a user signs up.
I'm ...
Tooling
0
votes
0
replies
3
views
Implicit surface mesh creation using Meshes.jl
Is there an easy way to generate a simple triangular mesh, given an implicit surface defined by
S = {(u,v) : f(u,v) = 0} where f(u,v) = ± sqrt(1-(v²)-((u-v²)²)) ?
Currently, I have successfully ...
-2
votes
1
answer
24
views
Oracle Cloud VM not reachable on port 80 despite public subnet, IGW, routing, and service listening [closed]
`
I’m running an Ubuntu 22.04 VM on Oracle Cloud Infrastructure (OCI) Free Tier and cannot access a web service over HTTP, even though all networking appears correct.
Setup:
Single VCN and single ...
0
votes
0
answers
19
views
k8 cluster ASP.NET Core 8 error exec /usr/bin/dotnet: exec format error
I have notification service that I have in a docker image and am trying to push to a aks cluster.
locally everything works with docker desktop and k8 cluster thru docker desktop. I am running windows ...
0
votes
1
answer
28
views
QML Module not installed (C++ backend)
I'm trying to make a C++ backend class with QML_ELEMENT macro visible to App.qml, but it doesn't work. I've added qt_add_qml_module to CMakeLists.txt, but it doesn't seem to create the module. Here ...
0
votes
1
answer
15
views
Tokenizer configuration - MLX
I'm currently trying to load a model on MLX. But when I'm loading the model and use the tokenizer there is the following issue:
with an incorrect regex pattern: https://huggingface.co/mistralai/...
Advice
1
vote
4
replies
9
views
Does Move to/from Control Registers ignore the field mod?
Description of this operation says that the 2 bits in the mod field of ModR/M are ignored.
In my disassembler I want to simplify it and just OR the third byte of opcode 0F 20 /r with value 0xC0, which ...
0
votes
2
answers
24
views
Calculating a Percent with a Filter on Text Dates
I've consulted a few threads on how to calculate percent and I am not sure why but I do not get the same result as I expect to. This is the closest to my actual value:
select round(
(100.0 *
...
-2
votes
0
answers
27
views
Suspicious opened port on Android 15 [closed]
I have a Samsung Galaxy S21 with all recent updates installed; Android version 15, One UI version 7.0, not rooted.
I discovered that my device exposes an open TCP port which changes every time after ...
1
vote
1
answer
62
views
Why does cpp execute 2 different implementations of the same functions based on the ability to evaluate the result in compile-time?
In the following code, two completely different implementations of std::find are used depending on whether the comparison can be performed at compile time. If the compiler can compare the const char* ...
-2
votes
2
answers
40
views
create_access_token() takes 0 positional arguments but 1 was given
Please help me to understand the reason
My code is so and I recive this error, from the header
def create_access_token(**data: dict) -> str:
to_encode = data.copy()
expire = datetime.utcnow(...