remove jax example (#30498)

remove example
This commit is contained in:
Arthur 2024-05-01 16:34:57 +02:00 committed by GitHub
parent 1e05671d21
commit 3c69d81eeb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -430,17 +430,6 @@ examples_tensorflow_job = CircleCIJob(
) )
examples_flax_job = CircleCIJob(
"examples_flax",
cache_name="flax_examples",
install_steps=[
"pip install --upgrade --upgrade-strategy eager pip",
"pip install -U --upgrade-strategy eager .[flax,testing,sentencepiece]",
"pip install -U --upgrade-strategy eager -r examples/flax/_tests_requirements.txt",
],
)
hub_job = CircleCIJob( hub_job = CircleCIJob(
"hub", "hub",
additional_env={"HUGGINGFACE_CO_STAGING": True}, additional_env={"HUGGINGFACE_CO_STAGING": True},
@ -570,7 +559,6 @@ REGULAR_TESTS = [
EXAMPLES_TESTS = [ EXAMPLES_TESTS = [
examples_torch_job, examples_torch_job,
examples_tensorflow_job, examples_tensorflow_job,
examples_flax_job,
] ]
PIPELINE_TESTS = [ PIPELINE_TESTS = [
pipelines_torch_job, pipelines_torch_job,