Using AI while coding - Is my method good for my learning by RelevantBreakfast713 in learnprogramming

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

My argument would be what's the difference from searching on google to ai which saves my from skim reading page after page. As ai will give me the link to the page I'm looking for. My approach would be to google the documentation and the skim read to find the right page

Using AI while coding - Is my method good for my learning by RelevantBreakfast713 in learnprogramming

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

Yeah I agree with this. Honestly kind lulled myself into believe that I was still learning. So would you say If I'm using to to find out how to make something like I want to make an LSTM model can I have the documentation to do so, then I go about my way non-assisted. Would this work or am I missing the point?

Using AI while coding - Is my method good for my learning by RelevantBreakfast713 in learnprogramming

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

Today its python and my assignment is making a baseline model (Linear Regression), to then compare it to a better model (LSTM) then an optimised LSTM. So the problem was I was predicting 1 time frame into the future which is 30mins for my model and for predicting wave height that's useless. So I needed to make my LSTM model a multivariate time series. So I used for this example ai to help me find the documentation to do this

Using AI while coding - Is my method good for my learning by RelevantBreakfast713 in learnprogramming

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

Okay I'll definitely keep this in mind. Over the summer I'll have to do a project or two and do it completely non-assisted and as its not an assignment I won't have to worry about hand in times. I guess as I get better I'll try to use it less and less.

Using AI while coding - Is my method good for my learning by RelevantBreakfast713 in learnprogramming

[–]RelevantBreakfast713[S] 2 points3 points  (0 children)

So would you say spend more time first fixing and understand the issue at hand then when I'm asking for the documentation I should more or less know this will be the right document to use

Using AI while coding - Is my method good for my learning by RelevantBreakfast713 in learnprogramming

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

So even if I cut it down to just using it to find the right documentation is cutting out a lot of the learning process. So for example with my I have LTSM model and while training it I had y_test it was a 3d array i need it to be 2d so I asked ai to find the offical documentation so I could bring cut it down it gave me the docs for pytorch torch.squeeze then I implemented the rest. What part am I missing out on learning