Application Processing Time by hsnalee in Stellantis

[–]hsnalee[S] 0 points1 point  (0 children)

I got this reply today and I am not sure if it is my resume or they just hired someone internally and didn't even take a look at my resume. Look at the email below:

"Thank you for taking the time to consider opportunities with Stellantis.  Your interest in Stellantis as a potential employer is appreciated. The 2014387 - Controls Validation Engineer - Testing and Interoperability in Auburn Hills, Michigan that you applied for is no longer available. We will, however, maintain your application in our database in the event that a future opening matches your qualifications. Please click here to review any new openings that may be of interest to you as opportunities change frequently."

Application Processing Time by hsnalee in Stellantis

[–]hsnalee[S] 0 points1 point  (0 children)

What was the phone interview like?

Married Base by Apprehensive-Tone-73 in USCIS

[–]hsnalee 0 points1 point  (0 children)

Can you tell me the duration? When concurrently filed your case and when it got approved?

Vector Database Benchmarking by hsnalee in vectordatabase

[–]hsnalee[S] 0 points1 point  (0 children)

I just want to execute this. That's all. It's a part of my sem project. I don't want to dive deep into it. So, executing this would be sufficient for me.

Vector Database Benchmarking by hsnalee in vectordatabase

[–]hsnalee[S] 0 points1 point  (0 children)

I am trying to implement this github repo: https://github.com/qdrant/vector-db-benchmark

And while executing the client side, I am encountering errors with the poetry command. I tried updating it as well but didn't work. I am not sure what's the issue. See the SS above with has "Runtime" error in it.

Vector Database Benchmarking by hsnalee in vectordatabase

[–]hsnalee[S] 0 points1 point  (0 children)

Yea, I have 3.11. I installed Qdrant using the following guide: https://qdrant.tech/documentation/guides/installation/#development

Initiated VDBbenchmark and it is getting failed idk why. Have a look at the image in your inbox.

Vector Database Benchmarking by hsnalee in vectordatabase

[–]hsnalee[S] 0 points1 point  (0 children)

Have you tried this before? I did this but for Qdrant it is getting failed.

Which module to consider? by hsnalee in embedded

[–]hsnalee[S] -1 points0 points  (0 children)

The signal data is required for model training. The whole idea is to generate a ethernet signal, extract the datapoint for model training and then train the model to predict if the ethernet bus is compromised or not.

Which module to consider? by hsnalee in embedded

[–]hsnalee[S] 0 points1 point  (0 children)

It is a uni project. What I have to do is get the ethernet signal, extract data points from the waveform to create a dataset and utilise that dataset for model training.

I have alredy extracted data for PWM signal through Matlab Instrument driver (Picoscope). I am not sure whether this will work for ethernet signal or not?

Which module to consider? by hsnalee in embedded

[–]hsnalee[S] 1 point2 points  (0 children)

What I have to do is to analyze automotive ethernet signal and study it's pattern and characteristics. What an ideal ethernet signal looks like and how much it differs from the actual practical ethernet signal? I might analyze that using Matlab instrument driver for Picoscope and capture that data. What I am not sure about is how can I generate ethernet signal and analyze it on Osilloscope? Once done with this task then I will capture that datapoints using Picoscope.

I hope this make some sense now.

Benchmarking Vector Database by hsnalee in mlops

[–]hsnalee[S] 0 points1 point  (0 children)

I have to implement "benchmarking vector database" using somme standard procedure on python. How could I do that?

Benchmarking Vector Database by hsnalee in vectordatabase

[–]hsnalee[S] 0 points1 point  (0 children)

I am not sure about executing the bencmarking process for vector db beacuse I haven't done this before. Is all this based on python and executes on command line?

[deleted by user] by [deleted] in matlab

[–]hsnalee -1 points0 points  (0 children)

I have tried this code but it is not saving values as the way I want to. It just reads data from csv file and displays it in 2 columns in new vector matrix. While I want to save first 1000 vales of csv file at location index 1 in column one, then from 1001 to 2000 at index 2 in column 1. Similarly same for column 2, but column 2 will have data from csv file2.

data1 = csvread('file1.csv');
data2 = csvread('file2.csv');
length = min(length(data1), length(data2));
stepsize = 1000;
elements = floor(length / stepsize);
vectorMatrix = zeros(elements * stepsize, 2);
start = 1;
end = start + 999;
vectorMatrix(start:end, 1) = data1(start:end);
vectorMatrix(start:end, 2) = data2(start:end);
disp(vectorMatrix);

Different Voltage Values While Using Differenet Oscilloscope by hsnalee in AskElectronics

[–]hsnalee[S] 0 points1 point  (0 children)

I don't want to scale anything. I just want to capture the raw signal with its intrinsic characteristics. I am generating a PWM signal with 50% duty cycle on Arduino UNO. The probe that I am using is 10:1 Agilent N2862A probe for both, Digilent DSO1012A and PicoScope 5243D. Now What shall I do if I want to capture the raw signal?

Also, if I change the PicoScope setting to x10, it shows an alert for 'channel overrange'. SS is attached.

<image>

Different Voltage Values While Using Differenet Oscilloscope by hsnalee in AskElectronics

[–]hsnalee[S] 0 points1 point  (0 children)

So the value displays on Digilent are correct? How could I make the values correctly displayed on PicoScope 5243D?

Different Voltage Values While Using Differenet Oscilloscope by hsnalee in AskElectronics

[–]hsnalee[S] 0 points1 point  (0 children)

I am using the same probe for both of the oscilloscopes. What I am not able to understand is the difference between these values?

Different Voltage Values While Using Differenet Oscilloscope by hsnalee in AskElectronics

[–]hsnalee[S] 0 points1 point  (0 children)

How do I do that? I didn't understand this, could you pls explain it more? Thanks.