Salt example
View lightworks.Dockerfile
# Lightworks | |
# | |
# VERSION 0.0.1 | |
FROM ubuntu:18.04 | |
RUN apt-get update | |
RUN apt-get install -y wget | |
RUN wget https://cdn.lwks.com/lightworks-14.5.0-amd64.deb | |
# Dependencies for Lightworks | |
RUN apt-get install -y libldap-2.4-2 libjack0 | |
RUN apt-get install -y ./lightworks-14.5.0-amd64.deb |
View README.md
UNet test
View .gitignore
bin/ | |
.vscode/ | |
obj/ |
View recommendation.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View LICENSE
MIT License | |
Copyright (c) 2016 Jakub Sołtys | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is | |
furnished to do so, subject to the following conditions: |
View README_word2vec_uw_2018_04_18.txt
https://research.googleblog.com/2018/04/introducing-semantic-experiences-with.html | |
https://books.google.com/talktobooks/ | |
http://www.deepdata.pl/uncategorized/przygotowanie-polskiego-modelu-word2vec-z-wykorzystaniem-korpusu-opensubtitles/ | |
https://github.com/emsi/wordvectors/ | |
https://github.com/Kyubyong/wordvectors |
View uuid_url64.py
import re | |
import uuid | |
import base64 | |
def uuid_url64(): | |
"""Returns a unique, 16 byte, URL safe ID by combining UUID and Base64 | |
""" | |
rv = base64.b64encode(uuid.uuid4().bytes).decode('utf-8') | |
return re.sub(r'[\=\+\/]', lambda m: {'+': '-', '/': '_', '=': ''}[m.group(0)], rv) |