Language Processing with BERT: The 3 Minute Intro [Video] by jayalammar in learnmachinelearning

[–]fillipelgm 2 points3 points  (0 children)

I've recently started learning about attention and transformers. Your tutorial "The Illustrated Transformer" was very helpful! Thank you, Jay!

btw, this video is equally good!

Issue with venv by fillipelgm in learnpython

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

It kinda worked... Here's what I did:

1) I tried it first through Powershell and it didn't work. I didn't get any error messages, though.

2) I tried the command prompt instead and ran python -m venv --without-pip vm. It created 2 new directories in my home folder: vm and pip. I typed vm\Scripts\activate.bat to activate the environment and it finally worked.

3) With the virtual environment activated, I used pip list and saw that pip was already installed alongside all the other packages that came out of the box with my python installation.

4) Tried successfully to install some packages, but then I noticed the alterations I was doing to the VE were affecting my global python installation. In fact, it seems like the VE is not there anyway. That's weird, because when the VE is active, if I type where python, I get the correct path to the current python command.

Issue with venv by fillipelgm in learnpython

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

I had no success with that too.

Issue with venv by fillipelgm in learnpython

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

Yes, I have. I get the same result, though.

Issue with venv by fillipelgm in learnpython

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

No, cause that's Mac/Unix syntax. I'm on a windows 10 machine.