Bootstrap knowledge of LLMs ASAP. With a bias/focus to GPT.
Avoid being a link dump. Try to provide only valuable well tuned information.
Neural network links before starting with transformers.
# #!/bin/bash | |
GITBOOK_REP=$1 | |
SUMMARY_FILE="SUMMARY.md" | |
echo $OUTPUT_FILE | |
if [ -d "$GITBOOK_REP" ]; then | |
echo "Entering directory '$GITBOOK_REP'..." | |
cd $GITBOOK_REP |
Collection of License badges for your Project's README file.
This list includes the most common open source and open data licenses.
Easily copy and paste the code under the badges into your Markdown files.
Translations: (No guarantee that the translations are up-to-date)
Download git-bash from git-scm: | |
http://www.git-scm.com/ | |
In git bash use the 'cd' command to navigate you your project's root folder. | |
Use the 'ls' command to list the files in the current directory to help you navigate. | |
`git init` | |
`git remote add origin https://github.com/username/project.git` |
# Compiled source # | |
################### | |
*.com | |
*.class | |
*.dll | |
*.exe | |
*.o | |
*.so | |
# Packages # |
People
:bowtie: |
😄 :smile: |
😆 :laughing: |
---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
😚 :kissing_closed_eyes: |
😳 :flushed: |
😌 :relieved: |
😆 :satisfied: |
😁 :grin: |
😉 :wink: |
😜 :stuck_out_tongue_winking_eye: |
😝 :stuck_out_tongue_closed_eyes: |
😀 :grinning: |
😗 :kissing: |
😙 :kissing_smiling_eyes: |
😛 :stuck_out_tongue: |
This is just a small post in response to [this tweet][tweet] by Julien Pauli (who by the way is the release manager for PHP 5.5). In the tweet he claims that objects use more memory than arrays in PHP. Even though it can be like that, it's not true in most cases. (Note: This only applies to PHP 5.4 or newer.)
The reason why it's easy to assume that objects are larger than arrays is because objects can be seen as an array of properties and a bit of additional information (like the class it belongs to). And as array + additional info > array
it obviously follows that objects are larger. The thing is that in most cases PHP can optimize the array
part of it away. So how does that work?
The key here is that objects usually have a predefined set of keys, whereas arrays don't:
{ | |
"cmd": ["make", "html"], | |
"working_dir": "${project_path:${folder}}", | |
"windows": | |
{ | |
"cmd": ["make.bat", "html"] | |
} | |
} |