microsoft/TypeAgent

Public

mirrored fromhttps://github.com/microsoft/TypeAgentAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
78c691a1dc6954d7bec8ba6b3df51daf1480fffe

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)