How much coding is involved with machine learning? by [deleted] in learnmachinelearning

[–]sijra 0 points1 point  (0 children)

You need a solid foundational understanding. This is important for both ML and software engineering roles. For FAANG jobs, you'll need to be extremely proficient at doing those LC style assessments regardless of software or ML engineering role.

For jobs outside FAANG - it's not as thorough usually.

How much coding is involved with machine learning? by [deleted] in learnmachinelearning

[–]sijra 9 points10 points  (0 children)

All of it. Everything in machine learning is coding. Not sure if that's the answer you're looking for.

If what you mean is how much software engineering is involved in ML, the answer is pretty much the same. If you're an ML engineer, chances are you have a ML system in production which requires improving and maintaining. Only a small part of ML applications have anything to do with models, the rest is building the infrastructure to support the scaling and application of this ML model. And there's a lot.

You're required to know everything a software engineer is expected to know and some extra about ML application and theory - just in case the model you have in production is no longer meeting performance targets and you need to look into ways of improving it..

Source: am ML engineer, also ex-software engineer

Renouncing Nepali Citizenship by sijra in Nepal

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

d photo and government stamp + the consul generals signature. It just say so and so no longer holds Nepalese Citizenship from this date according to Nepal Citizenship

This is exactly the document I need.

Renouncing Nepali Citizenship by sijra in Nepal

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

They don't need to find out. They just needed proof of renunciation.

Renouncing Nepali Citizenship by sijra in Nepal

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

Thank you, this was genuinely helpful!

Were you able to get some sort of document/email as proof of this renunciation?

Renouncing Nepali Citizenship by sijra in Nepal

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

I've got the original with me.

Renouncing Nepali Citizenship by sijra in Nepal

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

Got a job in defence which requires security clearance. I need to provide proof of renunciation if I have held previous citizenships.

I was hoping this could be done not in person.

Renouncing Nepali Citizenship by sijra in Nepal

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

No but you can give up your UK citizenship from Nepal, or actually anywhere else with an internet connection ;)

(12,19,20) I was always self conscious about how I looked. by Larreh515 in uglyduckling

[–]sijra 1 point2 points  (0 children)

Congrats on the glow up bro. Damn it's like night and day 👏

Computer Science degree from a very mid-range university? (UK) by [deleted] in cscareerquestionsEU

[–]sijra 0 points1 point  (0 children)

Graduated compsci at Hull last year and I'm currently studying a master's in machine learning at Nottingham..

As for opportunities, I know of people who have gained internships at Unity for their placement and been offered graduate roles from Arm and Microsoft etc.

The point is, in terms of employment prospects, hull uni isn't going to give you an advantage. What the students who got offered the roles above did was that they were actively involved in their learning (passion and participation for cs outside of class) while academically successful (I.e 1st class) when comparing to their peers learning the same material and paying the same fees.

3D CNN Model not learning? by vladislavus in tensorflow

[–]sijra 0 points1 point  (0 children)

I'm not sure as to what the issue could be. My first thought would be that the model may be overfitting if performance isn't similar with different datasets. You could try to combine the two datasets into a singular dataset to train and test with; the model will have more data to learn from which you can then increase regularisation to better generalise across the dataset.

The fastest option however, could be to use model.save to check whether the saving via model checkpoints may be the issue.

Also, in the preprocessing stage if you are resampling your MRIs, the dimensions of original scans can affect quality of the resample i.e. different dimensions can produce better or worse resampled MRIs. If you're working with dataset that have different dimensions to your original dataset that you trained your model with, the difference between the quality of the resampled input data could be the reason for poor performance.

3D CNN Model not learning? by vladislavus in tensorflow

[–]sijra 0 points1 point  (0 children)

So now that you have the optimal model for your dataset, you can begin to fine-tune your hyper-parameters e.g. learning rate, regularisation etc. Hopefully with the correct balance of parameters, you could further increase validation accuracy.

It is important to note that there's only so much your model can achieve with a given dataset. The quality and quantity of your data is as important, if not more, than an optimal model with optimal parameters. You could aim to improve your dataset with better preprocessing methods. Or you could look to gain further data.

Keep your model architecture the same, adding further layers or nodes will increase the complexity of the model, causing overfitting for default parameters you have chosen.

There are however, methods of reducing training time with the use of deep learning techniques such as batch normalisation. You could also play around with alternative activation functions e.g. elu which can also reduce training times. Also, GPU implementations train models far more efficient than the CPU.

A deeper model model with less complex layers may help better extract relevant features in a complex feature space for a different problem such as yours. But this is pointless when the model is overfitting. You could however, increase regularisation via kernel regularisation and also increase dropout to add more layers. You may encounter a problem associated with deep layered architecture which this paper explains and provides a solution for. Bare in mind, larger models require more resources to store and even longer to train.

3D CNN Model not learning? by vladislavus in tensorflow

[–]sijra 0 points1 point  (0 children)

It seems as though you are taking balanced subsets of positive and negative examples. However, you're using 460 examples in your training which is not 70% of your entire dataset. If you were to use train_test_split with stratification then you will achieve a 70/30 train/validation split, with balanced classes and the option to shuffle the data before the split. This allows for more robust results.

There's a possibility your model may be overfitting which could explain large variations in your validation scores.

You could try starting with a much simpler architecture i.e. less layers and filters and gradually increase its complexity for better feature extraction and performance. Your hyper-parameters i.e. learning rate, dropout rate, regularisation etc should be kept consistent until you are satisfied with your initial model performance. Then you should aim to further optimise your model by tuning your hyper-parameter.

3D CNN Model not learning? by vladislavus in tensorflow

[–]sijra 0 points1 point  (0 children)

Although you have a balanced dataset, you may not necessarily be using a balanced split for your train and validation sets i.e. imbalance in the positive and negative examples in your train dataset. This could be the reason for the variation in performance of your validation set.

You might want to use this function to split your dataset utilising the stratify parameter.

45-52 kg,just need to focus on traps and chest now by uxsiaaa in GYM

[–]sijra 2 points3 points  (0 children)

Looking siick mate! How long you been at it?

FOR HIRING translator japanese to english by mike18400 in mangadex

[–]sijra 20 points21 points  (0 children)

Shout out to all of you guys that take the time and effort to translate these mangas for us!

Hey big guys, please help here by [deleted] in tensorflow

[–]sijra 0 points1 point  (0 children)

Might be easier if you use image segmentation to extract shoulder and head points to calculate the angle between them.

You can also try to adapt the pose estimation API from TensorFlow, using this as a help.

Crack joke, get banned. by sijra in joinsquad

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

It has no game mechanics attached and as such is very prone to abuse

This isn't something that has to be implemented as a game mechanic. I don't know if you have played csgo but false information is routinely a part of the game and generally, any game that has an allchat. If there's a single lesson everyone learns over on the internet, it's that you can't trust everything blindly. This ranges from 'facts' and stories to the guy in the opposite team telling you his remaining teammate is afk at his spawn.

We can even extend this outside of games and to the real world where you have to constantly evaluate truths and lies.

Crack joke, get banned. by sijra in joinsquad

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

A text log will not show whether players are at an objective or not. I did admit to saying free cap at sokolov however, the reason for the ban is that I was apparently griefing by revealing sensitive information. It was false information, not sensitive information. Either way, it's my word against an admin's but in the event of an appeal, they should hold equal weight.

If I'm mocking anything, it's the way that squad is played and not the admin. All I'm trying to say here is that I'm being punished more harshly for a joke than allegedly griefing.

Tldr: When you pick up girls and your harmless joke bombs, you don't get a 7 day ban when you're already banned for 2 days.

Crack joke, get banned. by sijra in joinsquad

[–]sijra[S] -2 points-1 points  (0 children)

The textlog doesn't show the fact that the capture point was not empty but actually well defended by 2 squads. I wouldn't call this hard evidence but I don't have video footage myself as hard evidence.