23ws-LLMcoder/LLMcoder-GitHub-Python-Mix-Direct
Dataset Card for LLMcoder-GitHub-Python-Mix-Direct Python target autocomplete suggestions in the format of conversations for OpenAI's fine-tuning. Dataset Details Dataset Description Curated by: [More Information Needed] Funded by [optional]: [More Information Needed] Shared by [optional]: [More Information Needed] Language(s) (NLP): [More Information Needed] License: [More Information Needed] Dataset Sources [optional] The data… See the full description on the dataset page: https://huggingface.co/datasets/23ws-LLMcoder/LLMcoder-GitHub-Python-Mix-Direct.
0216
1#!/usr/bin/env python2# -*- coding: utf-8 -*- #3from __future__ import unicode_literals4 5AUTHOR = 'Jake VanderPlas'6SITENAME = 'Python Data Science Handbook'7SITESUBTITLE = u'Essential Tools for Working with Data'8SITEURL = ''9SITESUBURL = 'PythonDataScienceHandbook/'10PATH = 'content'11TIMEZONE = 'America/Los_Angeles'12DEFAULT_LANG = 'en'13 14# Feed generation is usually not desired when developing15FEED_ALL_ATOM = None16CATEGORY_FEED_ATOM = None17TRANSLATION_FEED_ATOM = None18AUTHOR_FEED_ATOM = None19AUTHOR_FEED_RSS = None20 21# Set the article URL22ARTICLE_URL = 'blog/{date:%Y}/{date:%m}/{date:%d}/{slug}/'23ARTICLE_SAVE_AS = 'blog/{date:%Y}/{date:%m}/{date:%d}/{slug}/index.html'24 25DEFAULT_PAGINATION = 1026 27# Uncomment following line if you want document-relative URLs when developing28#RELATIVE_URLS = True29 30#MARKUP = ('md', 'ipynb')31#PLUGINS = ['ipynb.markup']32 33MARKUP = ['md']34PLUGIN_PATHS = ['./plugins', './plugins/pelican-plugins']35PLUGINS = [36 'summary', # auto-summarizing articles37 'feed_summary', # use summaries for RSS, not full articles38 'ipynb.liquid', # for embedding notebooks39 'liquid_tags.img', # embedding images40 'liquid_tags.video', # embedding videos41 'liquid_tags.include_code', # including code blocks42 'liquid_tags.literal'43]44IGNORE_FILES = ['.ipynb_checkpoints']45 46# for liquid tags47CODE_DIR = 'downloads/code'48NOTEBOOK_DIR = 'downloads/notebooks'49 50# THEME SETTINGS51THEME = './theme/'52 53ABOUT_PAGE = 