microsoft/TypeAgent

Public

mirrored from https://github.com/microsoft/TypeAgentAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
65fbb77c6aa9b693c218ad6e029e3e766b5ccb59

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

python/fineTuning/setup.py

14lines · modecode

1# Copyright (c) Microsoft Corporation and Henry Lucco.
2# Licensed under the MIT License.
3
4from setuptools import setup, find_packages
5
6setup(
7 name='chaparral',
8 version='0.1',
9 packages=find_packages(),
10 install_requires=[],
11 author='Microsoft, Henry Lucco',
12 description="A library for fine-tuning TypeAgent Models",
13 license='MIT'
14)