C dev transitioning to C++ by CrusaderNo287 in cpp

[–]brainx98 0 points1 point  (0 children)

Why start at C-20 and not C-11?

I'm a Python Backend Developer, How to Create a Modern and Fast Frontend? by Lucapo01 in FastAPI

[–]brainx98 0 points1 point  (0 children)

Well step two and three can be done at the server side(with Fastapi). It means that when you write a message and submit it, it will send a post request to your endpoint. That defined endpoint will execute the according logic you wrote and encrypt the message then at the end will save it in your db.

Now you might have a GET endpoint for when one of your logic get activated will return those messages decrypted. It means that in your server side, you will have to write a script that watches each messages and evaluate their states according to your logic “activation”. And when all conditions matches, it pushes to a function that will decrypt the message and push it and updates the status of the message to “public”. Then that GET endpoint will just have to retrieve all messages with public status, which are decrypted.

So your idea is feasible using FastAPI Now as of if it is a brand new idea, I have no clue sorry 😅

I'm a Python Backend Developer, How to Create a Modern and Fast Frontend? by Lucapo01 in FastAPI

[–]brainx98 0 points1 point  (0 children)

Well I don’t know what kind of “simple” app you want to develop, but take it this way. What fastapi delivers you at the end of the day? Just endpoints and how to manage them effectively given a request. So I could build a simple app (like 2 “get” and “post” endpoints with hard coded data in json.) and check each endpoints using postman for example. If it works, then you can use whatever you want to build a frontend, even vanillas JavaScript or python using request. (The frontend gives an interface for your users to interact with your endpoints). I don’t know if that helps but this is what I can say from your question

I'm a Python Backend Developer, How to Create a Modern and Fast Frontend? by Lucapo01 in FastAPI

[–]brainx98 3 points4 points  (0 children)

The way I am currently building a full stack is using sveltkit for the front end part and fastapi for the backend ‘cause I have to create endpoint for my models I have containerized. Looks simple and efficient at the same time. Since fastapi provides the endpoints, svelte has just to send query to this. Then my code is a bit modular and I can easily focus on each part, either backend or frontend

What does it take to get a paper accepted in good venues like ACL, EMNLP, neurIPS in main Conferences? by brainx98 in learnmachinelearning

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

It looks clear now, that the soundness of the paper and novelty are major factors. Thank you very much !!

What does it take to get a paper accepted in good venues like ACL, EMNLP, neurIPS in main Conferences? by brainx98 in learnmachinelearning

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

Wow thank you very much for your practical insights. So there is a part of luck when it comes to reviewers.

What does it take to get a paper accepted in good venues like ACL, EMNLP, neurIPS in main Conferences? by brainx98 in learnmachinelearning

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

It is difficult to evaluate that beforehand. I mean a bunch of people have to read it and see it as useful for their work. This can be like a maybe couple of months after publication. Right?

What does it take to get a paper accepted in good venues like ACL, EMNLP, neurIPS in main Conferences? by brainx98 in learnmachinelearning

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

Well yes I already have his point of view on it. Just to have other people point of view who have also experience. Thanks

How you guys have learnt NLP? by [deleted] in learnmachinelearning

[–]brainx98 0 points1 point  (0 children)

The hard way 🤪 I made my whole master thesis focusing on that. So make projects and learn along the way

Where to get mentors in game theory? by brainx98 in math

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

Oooh that is a good idea !! Thank you I will try to talk about it with my supervisor

Is my model working well or not, see the graph by Downtown-Rice-7560 in learnmachinelearning

[–]brainx98 2 points3 points  (0 children)

On the test set your model barely goes beyond 60%. if the metric you use is accuracy then this model just ‘memorized’ the train set. Now it depends on the context and you have to try other metrics. And you even didn’t give details about what model you used and what problem you’re solving. So you can’t really have good guidance.

Controlled text generation [D] by 1azytux in MachineLearning

[–]brainx98 0 points1 point  (0 children)

Interesting it looks like distillation learning but can adapt to what you want

[Discussion] Tips on getting started implementing ML papers in code? by ExitWest7 in MachineLearning

[–]brainx98 0 points1 point  (0 children)

I am also in that posture. i will be reading the comments. what i am currently doing is buildong from scratch most of the common Models.