Source code for deepforest
# -*- coding: utf-8 -*-
"""Top-level package for DeepForest."""
__author__ = """Ben Weinstein"""
__email__ = 'ben.weinstein@weecology.org'
__version__ = '1.3.0'
import os
_ROOT = os.path.abspath(os.path.dirname(__file__))
[docs]def get_data(path):
"""helper function to get package sample data"""
return os.path.normpath(os.path.join(_ROOT, 'data', path))