Initial Commit (tested training, testing, and TRT conversion)

This commit is contained in:
Lu Junjie
2024-10-20 17:01:07 +08:00
parent 86d2f311f8
commit 5738088bae
221 changed files with 59249 additions and 6 deletions

View File

@@ -0,0 +1,4 @@
---
DisableFormat: true
SortIncludes: false
---

6
flightlib/build/.gitignore vendored Normal file
View File

@@ -0,0 +1,6 @@
# Ignore everything in this directory
*
# Except this file
!.gitignore
!.clang-format
!setup.py

15
flightlib/build/setup.py Normal file
View File

@@ -0,0 +1,15 @@
from setuptools import setup, Extension
#
setup(name='flightgym',
version='0.0.1',
author="Junjie Lu / Yunlong Song",
author_email='lqzx1998@tju.edu.cn / song@ifi.uzh.ch',
description="Flightmare: A Quadrotor Simulator",
long_description='This project is modified based on Flightmare by Yunlong Song, Thanks for his excellent work!',
packages=[''],
package_dir={'': './'},
package_data={'': ['flightgym.cpython-36m-x86_64-linux-gnu.so']},
zip_fase=True,
url=None,
)