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.
| from sqlalchemy import ( | |
| Column, | |
| ForeignKey, | |
| Integer, | |
| Text, | |
| create_engine) | |
| from sqlalchemy.ext.declarative import declarative_base | |
| from sqlalchemy.orm import ( | |
| relationship, | |
| sessionmaker) |
I'm going to walk you through the steps for setting up a AWS Lambda to talk to the internet and a VPC. Let's dive in.
So it might be really unintuitive at first but lambda functions have three states.
| First install pip for Python2. Download the get-pip.py file from https://bootstrap.pypa.io/get-pip.py | |
| $ cd <download location> | |
| $ sudo -H python ./get-pip.py | |
| Installing pip also installs Python3 | |
| To run Python3 | |
| $ python3 | |
| Install pip3 by just executing the same file as in the step above, but this time using Python3 | |
| $ sudo -H python3 ./get-pip.py |
This gist contains lists of modules available in
in AWS Lambda.
| import android.content.Context; | |
| import android.graphics.Bitmap; | |
| import android.graphics.Canvas; | |
| import android.graphics.Paint; | |
| import android.graphics.PorterDuffXfermode; | |
| import android.graphics.Rect; | |
| import android.graphics.RectF; | |
| import android.graphics.Bitmap.Config; | |
| import android.graphics.PorterDuff.Mode; | |
| import android.graphics.drawable.BitmapDrawable; |
| public class SomeFragment extends Fragment { | |
| MapView mapView; | |
| GoogleMap map; | |
| @Override | |
| public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { | |
| View v = inflater.inflate(R.layout.some_layout, container, false); | |
| $(function(){ | |
| $.widget('custom.actualito_autocomplete', $.ui.autocomplete, { | |
| _renderMenu: function(ul, items){ | |
| var that = this, | |
| currencyCategory = ''; | |
| $.each(items, function(index, item){ | |
| if(item.type != currencyCategory){ | |
| ul.append( "<li class='ui-autocomplete-category list_item_container filter'>" + item.type + "</li>" ); | |
| currencyCategory = item.type; | |
| } |
| class MyGeoResource(Resource): | |
| def apply_sorting(self, objects, options=None): | |
| if options and "longitude" in options and "latitude" in options: | |
| return objects.distance(Point(options['latitude'], options['longitude'])).order_by('distance') | |
| return super(MyGeoResource, self).apply_sorting(objects, options) |