Skip to content
Snippets Groups Projects
Commit b6a32539 authored by NARCON Nicolas's avatar NARCON Nicolas
Browse files

REFAC: move files

parent 8ad5e814
No related branches found
No related tags found
2 merge requests!22Enable TFRecords creation,!21Enable TFRecords
File moved
......@@ -26,7 +26,7 @@ can be more conveniently exported as SavedModel (see how to build a model with
keras in Tensorflow 2).
"""
import argparse
from tricks import ckpt_to_savedmodel
from otbtf.tricks import ckpt_to_savedmodel
def main():
......
File moved
......@@ -25,7 +25,7 @@ for TF 1.X versions.
"""
import tensorflow.compat.v1 as tf
from deprecated import deprecated
from otbtf import gdal_open, read_as_np_arr as read_as_np_arr_from_gdal_ds
from python.otbtf.otbtf import gdal_open, read_as_np_arr as read_as_np_arr_from_gdal_ds
tf.disable_v2_behavior()
......
# -*- coding: utf-8 -*-
import setuptools
with open("../README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="otbtf",
version="0.1",
author="Remi Cresson",
author_email="remi.cresson@inrae.fr",
description="OTBTF: Orfeo ToolBox meets TensorFlow",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://gitlab.irstea.fr/remi.cresson/otbtf",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Scientific/Engineering :: Image Processing",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
packages=setuptools.find_packages(),
python_requires=">=3.6",
keywords="remote sensing, otb, orfeotoolbox, orfeo toolbox, tensorflow, tf",
)
  • Cresson Remi @remi.cresson

    mentioned in commit f7d35d7f

    By Narcon Nicolas on 2022-03-18T11:45:21 (imported from GitLab)

    ·

    mentioned in commit f7d35d7f

    By Narcon Nicolas on 2022-03-18T11:45:21 (imported from GitLab)

    Toggle commit list
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment